
@font-face {
    font-family: 'Flama Semicondensed Book';
    src: url('fonts/FlamaSemicondensed-Book.woff2') format('woff2'),
        url('fonts/FlamaSemicondensed-Book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body{
    font-family: 'Flama Semicondensed Book';
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    background: #741639;
}

.body-wrapper{
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.body-wrapper.blur{
    filter: blur(20px);
}

div{
    box-sizing: border-box;
}

img{
    max-width: 100%;
    height: auto;
}

a{
    color: #fff;
    text-decoration: none!important;
}

.main{
    display: flex;
    flex-grow: 1;
    flex-direction: column;
}

.intro{
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: right center;
    padding-bottom: 80%;
    position: relative;
    overflow: hidden;
}

.intro:after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: -1px;
    height: 80vw;
    width: 50.25vw;
    background: url('img/graphic.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.logo1{
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100px;
}

.description{
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.description-inner{
    width: 100%;
    max-width: 540px;
    margin: 25px auto;
}

.logo2{
    margin-bottom: 25px;
}

.logo2 img{
    width: 540px;
}

.details{
    text-transform: uppercase;
    font-size: 20px;
    color: #fff;
    margin-bottom: 50px;
}

.details span{
    color: #e9642c;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.bottom-bar{
    padding: 15px;
    background: #a4d5d4;
    text-align: center;
}

.bottom-bar a,
.button{
    display: inline-block;
    background: #741639;
    padding: 8px 15px;
    text-transform: uppercase;
    margin: 5px;
    border-radius: 4px;
}

.modal{
    background: #a4d5d4;
    top: 20px;
    left: 20px;
    right: 20px;
    margin: 20px auto;
    position: absolute;
    max-width: 500px;
    color: #741639;
    display: none;
}

.modal.visible{
    display: block;
}

.modal-content{
    padding: 25px 15px;
}

.close{
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
}

.close:before{
    content: '';
    display: block;
    width: 100%;
    border-top: 1px solid #741639;
    transform: rotateZ(45deg);
    position: absolute;
    top: 50%;
    transform-origin: center;
}

.close:after{
    content: '';
    display: block;
    width: 100%;
    border-top: 1px solid #741639;
    transform: rotateZ(-45deg);
    position: absolute;
    top: 50%;
    transform-origin: center;
}

@media (min-width: 768px){
    .main{
        flex-direction: row-reverse;
    }

    .intro{
        width: 60%;
        padding-bottom: 0;
    }

    .intro:after{
        height: 100vh;
        width: 62.81vh;
    }

    .logo1{
        width: 200px;
    }

    .description{
        width: 40%;
    }

    .logo2{
        margin-bottom: 40px;
    }

    .details{
        margin-bottom: 100px;
    }

    .modal{
        top: 100px;
    }

    .modal-content{
        padding: 50px;
    }
}

@media (min-width: 992px){
    .details{
        font-size: 28px;
    }
}

@media (min-width: 1200px){
    .details{
        font-size: 30px;
    }
}