/* Styles */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@200;400&display=swap');

@font-face {
    font-family: 'body-regular';
    src: url('/wp-content/plugins/coming-soon/themes/default/fonts/body-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'body-bold';
    src: url('/wp-content/plugins/coming-soon/themes/default/fonts/body-bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;

}

html, 
body {
    height: 100%;
    font-family: 'body-regular'!important;
}

.logo{
    display: none;
    max-width: 250px;
    padding: 0 0 2rem 3rem;
}

.logo img{
    width: 150px;
    max-height: 100%;
    
}

.panel{
    width: 100%;
    margin-bottom: 0!important;
   
}

.left-panel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #0C2131;
    height: 70vh;
    padding-bottom: 30vh;
}

.left-panel .heading{
    font-family:'body-bold';
    font-size: clamp(3rem, 10vw, 100px);
    margin-top: -200px!important;
    padding: 0 5vh;  
    text-align: center;
    line-height:0.9;
}
.left-panel .subheading{
    font-family:'body-regular';
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    padding: 0 5vh;  
}

.left-panel .subheading:after{
    position: absolute;
    content: '';
    width: 40px;
    height: 2px;
    bottom: -30px;
    left: calc(50% - 20px);
    background: #0C2131;
}

.left-panel .big{
    font-weight: 700;
    font-size: 1.20rem;
}

.right-panel{
    background: url('/wp-content/plugins/coming-soon/themes/default/images/main-img.jpg');
    background-size: cover;
    height: 30vh;
    display: flex;
}
.right-panel img{
    width: 400px;
    margin: auto;
    max-width: 100%;
}


#coming-soon-content{
    display: flex;
    height: 100%;
    max-height: 100vh;
    flex-direction: column;
    overflow: hidden;
}


@media (min-width: 769px) { 
    #coming-soon-content{
        height: 100%;
        max-height: 100vh;
        flex-direction: row;
        overflow: hidden;
    }

    .panel{
        width: 50%;
        height: 100vh;
    }

    .logo{
        display: block;
        position: absolute;
        left: 0;
        bottom: 10px;
    }
}

@media (max-width: 768px) { 
    .right-panel img{
        max-width: 160px;
    }
}