/*
Theme Name: PWD
Theme URI: 
Description: PWD.
Author: Devcom-media
Author URI: https://example.com/
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:  PWD
*/
 

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.grecaptcha-badge{
    display: none;
}

body{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #475770;  
} 
  
section{ 
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center; 
    position: relative; 
} 

h1{
    text-transform: uppercase;
    font-weight: 800;
    font-size: 24px;
    letter-spacing: 2.4px;
    margin: auto;
    margin-bottom: 3rem;
    max-width: 336px;
}
section .content{
    width: 100%;
    max-width: 470px;
    margin: auto;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

section .header,
section .footer{ 
    height: 80px;
}
 
section .footer a{
    color: inherit;
    text-decoration: unset;
}

section .footer a:hover{
    color: #09accc;
}
.video_container{
    line-height: 0;
} 
.video{
    width: 100%;
    height: 100vh;
    object-position: center;
    object-fit: cover;
}

.title_container{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.title_container:before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(9, 172, 204, 0.70);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.title_container h2{
    color: #FFF;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 4.8px;
    margin: 2rem 0;
    max-width: 405px;
}


@media screen and (min-width: 320px) and (max-width: 700px) {
    section{
        height: auto;
    }
    section .header,
    section .footer{ 
        height: auto
    }
    section .footer{ 
        margin-bottom: 2rem;
    } 
    .title_container h2{
        font-size: 33px;
        margin: 1rem 0;
    }
    .video{
        height: 400px;
    }
    .mobile{
        color: #FFF;
    }
    .mobile .video{ 
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        position: absolute; 
    }
    .mobile .content{
        min-height: 100vh;
    }
    .mobile .content:before{
        content: '';
        width: 100%;
        height: 100%;
        background: rgba(9, 172, 204, 0.70);
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    .logo{
        max-width: 300px;
        margin-top: 2rem;
    }
}