/***************************************************************
# Tags
***************************************************************/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
p,
ol,
ul {
    margin: 1rem 0;
    line-height: 1.4;
}

html {
    font-family: 'Open Sans', sans-serif;
    background: #da6223;
    color: white;
}





/***************************************************************
# Common
***************************************************************/

.wrapper {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background__image {
    position: absolute;
    top: -5% !important;
    left: -5% !important;
    width: 110%;
    height: 110%;
    object-fit: cover;
    object-position: 50% 50%;
    z-index: -1;
}

.button {
    background: #202020;
    color: inherit;
    text-decoration: none;
    padding: 1em 1.5em;
    border-radius: 0.4em;
    font-weight: 800;
    display: inline-block;
    position: relative;
    padding-left: 5em;
    overflow: hidden;
    transition: transform .5s ease, box-shadow .5s ease;
}
.button:hover {
    transform: translateY(-0.5em);
    box-shadow: 0px 5px 10px 0px rgba(0,0,0,0.3);
}

.button__icon-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 3.4em;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.button__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.8em;
    transform: translateX(-50%) translateY(-50%);
}

.container {
    max-width: 88rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    min-height: 90vh;
    align-items: flex-end;
}

.content {
    max-width: 43rem;
    padding-right: 3em;
}

.title {
    font-size: 10rem;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 800;
}

.title__alt-style {
    font-size: 0.4em;
    display: block;
    color: #FFD1B8;
}


.stripe {
    position: absolute;
    top: 0;
    right: 1em;
    display: flex;
    height: 100%;
    flex-flow: column;
    align-items: center;
}

.stripe:before,
.stripe:after {
    display: block;
    content: "";
    border-right: 10px solid white;
    margin-right: 0em;
    width: 0;
}

.stripe:before {
    flex: 1;
}

.stripe:after {
    height: 7em;
}

.stripe__text {
    writing-mode: vertical-lr;
    transform: rotateZ(180deg);
    padding: 1em 0;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.2em;
}




/***************************************************************
# Responsive
***************************************************************/

@media (max-width: 1199.98px) {

    .container {
        min-height: 100vh;
    }

    .content {
        padding-bottom: 2rem;
    }
}

@media (max-width: 991.98px) {
    .title {
        font-size: 8rem;
    }
}

@media (max-width: 767.98px) {

    .container {
        padding: 0 1rem;
    }

    .title {
        font-size: 6rem;
    }
}

@media (max-width: 575.98px) {
    .title {
        font-size: 4rem;
    }
}