

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Book.ttf');
    src: url('../fonts/Avenir-Book.woff2') format('woff2'),
        url('../fonts/Avenir-Book.woff') format('woff'),
        url('../fonts/Avenir-Book.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Baskerville';
    src: url('../fonts/11a477d3ac9d8fde4dd37b3cfe2c65e2.woff2') format('woff2'),
        url('../fonts/11a477d3ac9d8fde4dd37b3cfe2c65e2.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html,
body{
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




.coming_soon_wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}
.coming_soon_inner{
    width: max-content;
    display: flex;
    margin: auto;
    flex-direction: column;
    position: relative;
    height: max-content;
    padding: 80px 20px;
}
.coming_soon_content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-bottom: 35vh;
}



.logo_wrapper{
    width: 100%;
    max-width: 399px;
    margin: 0px auto;
    display: flex;
    flex-direction: column;
}

.logo_container{
    width: 100%;
    position: relative;
    padding-bottom: calc((40 / 200) * 100%);
}

.logo_container img{
    width: 100%;
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
    transition: .35s all ease-in-out;
}




.coming_soon_content h3{
    font-size: 38px;
    line-height: 1;
    color: #000;
    text-decoration: none;
    text-align: center;
    width: 100%;
    margin-bottom: 18px;
    font-family: 'Baskerville';
    text-transform: uppercase;
    font-weight: 400;
}

.coming_soon_content h1{
    font-size: 87px;
    line-height: 1;
    color: #000;
    text-decoration: none;
    text-align: center;
    width: 100%;
    margin-bottom: 35px;
    font-family: 'Avenir';
    text-transform: uppercase;
    font-weight: 300;
}


.coming_soon_content h4{
    font-size: 32px;
    line-height: 1;
    color: #000;
    text-decoration: none;
    text-align: center;
    width: 100%;
    margin-bottom: 0px;
    font-family: 'Baskerville';
    text-transform: uppercase;
    font-weight: 300;
}


@media (max-width: 1599px) {
    .coming_soon_content h3{
        font-size: calc(38px / 1.2);
    }
    .coming_soon_content h1{
        font-size:  calc(87px / 1.2);
    }
    .coming_soon_content h4{
        font-size:  calc(32px / 1.2);
    }
    .logo_wrapper{
        max-width: 300px;
    }
}


@media (max-width: 767px) {
    .coming_soon_content h3{
        font-size: calc(38px / 1.4);
    }
    .coming_soon_content h1{
        font-size:  calc(87px / 1.4);
    }
    .coming_soon_content h4{
        font-size:  calc(32px / 1.4);
    }
    
}

@media (max-width: 576px) {
    .coming_soon_content h3{
        font-size: calc(38px / 1.6);
        margin-bottom: 25px;
    }
    .coming_soon_content h1{
        font-size:  calc(87px / 2.2);
        margin-bottom: 25px;
    }
    .coming_soon_content h4{
        font-size:  calc(32px / 1.6);
    }
    .coming_soon_content{
        margin-bottom: 25vh;
    }
    .logo_wrapper{
        max-width: 260px;
    }
    
}