@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Unbounded:wght@200..900&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Lato", serif;
}
html {
    scroll-behavior: smooth;
}
.dn{
    display: none!important;
}
a {
    text-decoration: none;
    color: inherit;
}
button {
    border: none;
    background-color: transparent;
    cursor: pointer;
}
ul {
    list-style: none;
}
.hide{
    display: none!important;
}
.container{
    max-width: 1440px;
    height: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
/* @media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}
@media (min-width: 1500px) {
    .container {
        max-width: 1440px;
    }
} */
.app{
    position: relative;
    min-height: 100vh;
}
.footer{
    background: url('../../assets/img/footer_bg.jpg') no-repeat center center / cover;
    color: #fff;
    font-size: 16px;
}
.header_wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    height: 100%;
}
.footer_wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    padding: 35px 0;
}
.header_logo,
.footer_logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_left{
    display: flex;
    align-items: flex-end;
    gap: 30px;
}
.footer_left span{
    flex-shrink: 0;
}
.footer_right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
}
.footer_left span,
.footer_right a{
    font-size: 16px;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
}
.footer_right a{
    flex-shrink: 0;
}
.header_left{
    display: flex;
    align-items: center;
    gap: 80px;
}
.header_right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 80px;
}
.header{
    /* background: url('../css/img/header.png') no-repeat center center / cover; */
    background: url('../../assets/img/header.png') no-repeat center center / cover;
    height: 115px;
    color: #fff;
    font-size: 18px;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
}
.header_link{
    display: flex;
    align-items: center;
    height: 100%;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}
.header_link:hover,
.header_link:active{
    border-bottom: 2px solid #fff;
}

.header_burger{
    display: none;
    cursor: pointer;
}
.header_burger svg{
    width: 100%;
    height: 100%;
}

/* MOBILE MENU START---------------------------------------------------------------------------------------> */
.mobile_menu{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4998E0;
    z-index: 100;
    /* display: flex; */
    align-items: center;
    justify-content: center;
}
.mobile_menu.show{
    display: flex;
}
.mobile_menu_closer{
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    color: #fff;
}
.mobile_menu_closer svg{
    width: 30px;
    height: 30px;
    display: block;
}
.mobile_menu_social{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
.mobile_menu_nav{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.mobile_menu_nav a{
    font-size: 30px;
    color: #fff;
}
/* MOBILE MENU END---------------------------------------------------------------------------------------> */
@media (max-width: 1200px) {
    .header_left,
    .header_right{
        gap:50px;
    }
    .footer_left span,
    .footer_right a{
        font-size: 14px;
    }
}


@media (max-width: 1000px) {
    .header_wrapper{
        grid-template-columns: 1fr;
        position: relative;
    }
    .header_left,
    .header_right{
        display: none;
    }
    .header_burger{
        display: flex;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }
    .footer_wrapper{
        grid-template-columns: 1fr;
    }
    .footer_left,
    .footer_right{
        justify-content: center;
    }
    .footer_logo {
        grid-row: 1; /* Перемещаем лого на первую строку */
    }
}
@media (max-width: 768px) {
    .header{
        height: 80px;
    }
    .footer_logo img,
    .header_logo img{
        width: 150px;
    }
    .footer_left{
        flex-direction: column;
        align-items: center;
        
    }
    .home_contact_form_btn{
        gap: 15px!important;
        width: 250px!important;
    }
}