body{
    margin: 0;
    font-family: 'NeueHaasDisplay', sans-serif;
    font-weight: 400;
    background-color: #f0f0f0;
}

.video-section {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100vh; 
    z-index: -1;
}

.video-wrap {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 300px;
    width: 100%;    
    height: 100%;
    margin: auto;
}

.video-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 24px;
    color: #fff;
}

.header a{
    text-decoration: none;
}

.construction-content-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;      
    text-align: center;
    z-index: 1;       
}

.construction-content-wrapper h1{
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    margin: 0;   
    margin-bottom: 8px;   
}

.construction-content-wrapper p{
    margin: 0;
    font-style: normal;
    line-height: normal;      
}

.construction-content-wrapper a.btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    overflow: hidden;  
    z-index: 1;
}

.construction-content-wrapper a.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #00823E;
    z-index: -1;
    transition: width 0.3s ease;
}

.construction-content-wrapper a.btn:hover::before {
    width: 100%;
}

.construction-content-wrapper a.btn:hover {
    color: white; 
}

.construction-content-wrapper .construction-buttons{
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer{
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}

.footer .footer-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 24px;
    color: #fff;
}

.footer .footer-wrapper a{
    display: block;
    color: #fff;
    text-decoration: none;
}

.phone, .email{
    text-align: center;
}

.footer .phone, .footer .email{
    display: flex;
    flex-direction: column;
    gap: 21px;
}

.footer .phone span, .footer .email span{
    font-weight: 600;
}

.header .logos-wrap{
    display: flex;
    gap: 16px;
}

.footer .footer-wrapper .logos-wrap{
    display: none;
}

@media screen and (max-width: 992px) {
    .header .logos-wrap{
        display: none;
    }

    .header{
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .header img{
        width: 130px;
    }

    .video-wrap {
        width: 300%;
        padding: 50vw;
    }

    .video-wrap iframe{
        left: -40%;
    }

    .construction-content-wrapper {
        width: max-content;
    }

    .footer .footer-wrapper .logos-wrap{
        display: flex;
        flex-wrap: wrap;    
        justify-content: center;
        align-items: center;
        gap: 16px;
        width: 23%;
    }

    .footer .footer-wrapper .logos-wrap a{
        width: 26%;
    }
}