@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500;600;700&display=swap');
:root {
    font-size: 16px;
}
*:not(.no-animated):not(.slick-track):not(.slick-slide){
    -moz-transition: all .15s ease-out;
    -webkit-transition: all .15s ease-out;
    -ms-transition: all .15s ease-out;
    -o-transition: all .15s ease-out;
    transition: all .15s ease-out;
    outline: 0;
}
body.loading{
    display: flex;
    flex-direction: column;
    background-color: #e4cecc;
    padding: 20px;
    min-height: 100vh;
    font-family: 'Montserrat', Sans-Serif;
}
body.loaded{
    background-color: #8a2533;
}
body.loaded #loader{
    display: none!important;
    z-index: 1;
}

body #loader{
    top: 10%;
    left: 0;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 3;

}

body #loader .loader-img{
    height: 90%;
    width: 100%;
    background-repeat: no-repeat;
    background-size: 110% auto;
    background-position: center center;
    position: absolute;
}

.container-fluid{
    display: flex;
    flex: 1;
    width: 100%;
    z-index: 2;
}
header #lang-menu{
    width: 100%;
    max-width: 440px;
    list-style: none;
    margin: 0;
    padding: 0 0 10px 0;
}

header #lang-menu li{
    text-transform: uppercase;
}
header #lang-menu li a{
    color:#6394a0;
    text-decoration: none;
    font-size: 12px;
    font-family: 'Montserrat', Sans-Serif;
    font-weight: 600;
}
header #lang-menu li.selected a,
header #lang-menu li a:hover {
    color: #e4cecc;
}
header #logo svg{
    width: 100%;
    max-width: 450px;
}

body.loaded header #logo svg path,
body.loaded header #logo svg rect,
body.loaded header #logo svg polygon{
    fill: #e4cecc;
}
a.option{
    opacity: 0;
    position: relative;
    display: flex;
    flex: 1;
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    color:#6394a0;
    text-decoration: none;
    text-align: center;
    width: 100%;
    line-height: 34px;
    align-items: center;
    justify-content: center;
    max-height: 100px;
    max-width: max-content;
    text-transform:uppercase;
}
a.option:hover{
    color:#e4cecc;
}
a.option img{
    height: 100%;
    width: auto;
    display: none;
    position: absolute;
    top: 0;
    left: -50px;
}
a.option img.img-right{
    left: auto;
    right:  -50px;
}
a.option:hover img{
    display: block;
}
body.loaded a.option{
    opacity: 1;
}
.button-return{
    text-decoration: none;
    color:#FFF;
    background-color:#8a2533;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 50px;
}
.button-return:hover{
    text-decoration: none;
    color:#FFF;
    background-color:#6394a0;
}
.button-return:before{
    font-family: 'Montserrat', sans-serif;
    content: "<";
    margin-right: 10px;

}
.button-download{
    text-decoration: none;
    color:#FFF;
    background-color:#8a2533;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 50px;
}
.button-download:hover{
    text-decoration: none;
    color:#FFF;
    background-color:#6394a0;
}

@media(min-width: 768px) {
    body{
        background-color: #dbddc6;
        padding: 65px;
    }

    header #lang-menu{
        margin-bottom: 20px;
        max-width: 1160px;
    }
    header #lang-menu li a{
        font-size: 27px;
    }
    header #logo svg{
        width: 100%;
        max-width: 440px;
    }

    a.option{
        font-size:calc(1em + 6.5vw);
        line-height:calc(0.8em );
        max-height: none;
    }

    a.option img {
        height: 100%;
    }

    body #loader {
        top: auto;
        bottom: 0;
        left: 0;
    }
    body #loader .loader-img {
        height: 100%;
        width: 100%;
    }
    body #loader{
        height: 80vh;

    }

    body #loader .loader-img{
        background-size: 50% auto;
        background-position: center center;
    }

    .button-return{
        text-decoration: none;
        color:#FFF;
        background-color:#8a2533;
        text-transform: uppercase;
        font-size: 20px;
        font-family: 'Montserrat', sans-serif;
        padding: 10px 20px;
        border-radius: 50px;
        margin-bottom: 80px;
    }
    .button-download{
        text-decoration: none;
        color:#FFF;
        background-color:#8a2533;
        text-transform: uppercase;
        font-size: 20px;
        font-family: 'Montserrat', sans-serif;
        padding: 10px 20px;
        border-radius: 50px;
        margin-bottom: 80px;
    }
}

@media(min-width: 992px) {

}