@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('fonts/MuseoSansCyrl-100.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('fonts/MuseoSansCyrl-300.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('fonts/MuseoSansCyrl-500.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('fonts/MuseoSansCyrl700.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Museo Sans Cyrl';
    src: url('fonts/MuseoSansCyrl-900.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
:root {

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Museo Sans Cyrl';
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}
/*16px = 1rem*/

header{
    position: sticky;
    top: 0;
    z-index: 999;
    transform: translateZ(0);
    will-change: transform;
}





.container {
    width: 86%;
    margin: 0 auto;
}

.header_desktop{
    background: rgba(255, 255, 255, 1);
    transition: all 0.3s ease-in-out;
    border-bottom: 0.13vw solid rgba(242, 242, 242, 0.3);
}

/* Стили для header после скролла */
/* .header_desktop.scrolled {
    background: rgba(242, 242, 242, 1);
    border-bottom: 0.13vw solid rgba(242, 242, 242, 1);

} */

/* 
.header_desktop .header_desktop_wrapper .header_links_block
.menu .header_links-item:hover{
    color: rgba(239, 172, 7, 1);
}
.header_desktop.scrolled .header_desktop_wrapper .header_links_block
.menu .header_links-item:hover{
    color: rgba(239, 172, 7, 1);
} */

.header_desktop_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1vw;
}

.menu{
    display: flex;
    gap: 4vw;
    margin-left: 15vw;

}

.logo_header{
    width: 5.5vw;
    padding-top: 1vw;
}

.logo_header img {
    width: 100%;
    transition: all 0.3s ease;
}


.header_links-item{
    color: rgba(84, 136, 140, 1);
    font-size: 1vw;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
    display: flex;
    gap: 1vw;
    align-items: center;
}

.cta-button{
    align-items: center;
    justify-content: center;
    color: white;
    background: rgba(125, 110, 87, 1);
    border-radius: 0.5vw;
    padding: 1vw 2vw;
    text-align: center;
    line-height: 1.1;
    font-size: 0.9vw;
    font-weight: 500;
    margin-right: 5vw;
    transition: background 0.5s ease-in-out ;
    cursor: pointer;
}

.cta-button:hover, .header_desktop.scrolled .cta-button:hover{
    background: rgba(160, 144, 121, 1);
}


/* .header_desktop.scrolled .cta-button {
    background: rgba(255, 181, 0, 0.32);
    border-color: rgba(255, 181, 0, 1); 
    color: black;
} */

.header_desktop.scrolled .default-logo{
    display: none;
}

.header_desktop.scrolled .header_links_block .menu .header_links-item {
   color: black;
}

.header_links-item img{
    width: 1.5vw;
}

.first_banner{
}

.map {
    width: 54%;
    height: 40vw;
    position: relative;
    box-shadow: 
        inset 10px 0 10px -1vw white,   /* Внутренняя белая тень слева */
        inset 0 10px 10px -1vw white;    /* Внутренняя белая тень снизу */
}
.map_shadow_left {
    position: absolute;
    left: 0;
    top: 0;
    width: 14vw; /* ширина тени, можно регулировать */
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to right, white 20%, transparent 100%);
    z-index: 2;
}
.map_shadow_bottom {
    position: absolute;
    bottom: 0;
    width: 100%; /* ширина тени, можно регулировать */
    height: 14vw;
    pointer-events: none;
    background: linear-gradient(to top, white 0%, transparent 100%);
    z-index: 2;
}

.map iframe{
    width: 100%;
    height: 100%;
}

.first_banner_img{
    z-index: -1;
    width: 100%;
    
}

.first_banner_img img{
    width: 100%;
    height: 100%;
}

/* .first_banner_img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.53);
    pointer-events: none; 
} */



.first_banner_wrapper{
    padding: 18vw 0 15vw 0;
    
}

.first_banner_wrapper{
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.first_banner_head{
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    font-size: 4vw;
    font-weight: 700;
}

.first_banner_head span{
    color: rgba(255, 181, 0, 1);
}

.first_banner_body{
    display: flex;
    flex-direction: column;
    
}

.first_banner_body-item{
    font-size: 1.4vw;
    color: white;
    font-weight: 400;

}

.first_banner_cta{
    color: white;
    background: rgba(240, 172, 7, 1);
    font-size: 1.4vw;
    width: 20vw;
    text-align: center;
    padding: 1vw 2vw 1vw 2vw;
    border-radius: 2vw;
    margin-top: 2vw;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.5s ease-in-out;
}

.first_banner_cta:hover{
    background: rgba(255, 196, 53, 1);
}


.big_image{
    width: 100%;
    position: sticky;
    top: 6vw;
    z-index: -1;
}

.big_image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animate_block{
    position: relative;
}


.animate_img{
    width: 100%;
    position: sticky;
    top: 0;
    z-index: -1;
}

.animate_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info_block_scroll{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 77%;
    margin: 0 auto;
    padding-bottom: 10vw;
    margin-top: -50vw;
    position: sticky;
    top: -100vh;

}
.non-margin{
    margin-top: 0 !important;
}

.info_block_scroll-item{
    margin-top: -10vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.scroll-left{
    margin-left: 45vw;
}

.info_block_scroll-item_title{
    font-weight: 400;
    font-size: 1.2vw;
    color: white;
}

.info_block_scroll-item_info {
    display: flex;
    gap: 1vw;
    align-items: baseline;
    
}

.blocks_nak{
    position: relative;
}

.numeric{
    font-weight: 700;
    font-size: 3.3vw;
    text-transform: uppercase;
    align-items: center;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFB500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.metrik{
    font-weight: 400;
    font-size:2.5vw;
    color: white !important;
    display: flex;
    flex-direction: column;
    justify-content: end;
    

}


.info_block_scroll-item_img{
    width: 30vw;
}

.info_block_scroll-item_img img{
    width: 100%;
}

.floors_block{
    position: sticky;
    top: 0;
    z-index: 400;
    height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.floors_block::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(26, 26, 26, 0.59) 85.92%);
    pointer-events: none; 
}
.floors_block_img{
    width: 100%;
    position: absolute;

}

.floors_block_img img{
    width: 100%;
    object-fit: cover;
    z-index: -1;
}

.floors_block_text{
    padding: 5vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
    z-index: 2;
    color: white;
}

.null{
    opacity: 0;
}

.floors_block_text_head{

    font-weight: 400;
    font-size: 1.3vw;
    
}

.floors_block_text_floors{

    font-weight: 700;
    font-size: 2.3vw;
    color: white;
}

.floors_block_text_floors span{
    font-weight: 400;
}

.floors_block_text_text{

    font-weight: 400;
    font-size: 1.3vw;

}

.address_block_wrapper{
    display: flex;

}

.adress_block_img{
    width: 51%;
    height: unset;
}

.adress_block_img img{
    width: 100%;
    object-fit: cover;
}

.adress_block_info{
    width: 45%;

}

.adress_block_info_wrapper{
    padding: 4vw;
    padding-right: 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 2vw;
}


.adress_block_info_line{
    display: flex;
    gap: 3vw;
}

.adress_block_info_line-item{
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.adress_block_info_body{
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
}
.adress_block_info_body-item{
    display: flex;
    gap: 1vw;
    align-items: center;
}

.adress_block_info_body-item_img{
    width: 1.2vw;
}

.adress_block_info_body-item_img img{
    width: 100%;
}

.adress_block_info_body-item_text{
    font-weight: 400;
    font-size: 0.9vw;

}

.adress_block_info_head{
    font-weight: 500;
    font-size: 1.1vw;
    color: rgba(71, 123, 146, 1);
}




.contact-container {
    margin-top: -.5vw;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: rgba(26, 30, 34, 1);
}



.contact-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 78%;
    gap: 10vw;
    margin: 0 auto;
    color: white;
    padding-top: 5vw;
    padding-bottom: 5vw;
}

.contact-info {
    flex: 1;
 
}

.contact-info-head {
    font-size: 3vw;
    margin-bottom: 1.5vw;
    font-weight: 400;
    font-family: 'Montserrat' , sans-serif;

}



.phone, .download {
    display: flex;
    align-items: center;
    margin-top: 2vw;
    gap: 1vw;
    font-weight: 700;
}


.phone {
    margin-top: 2vw;
    font-size: 1.1vw;
}


.phone img, .download img{
    width: 1.6vw;
}


.download-link {
    color: white;
    text-decoration: none;
    font-size: 1.1vw;
}

.download-link:hover {
    text-decoration: underline;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    
}

.form-group {
    margin-bottom: 1.5vw;
}
.policy_link{
    
    
    font-size: 0.9vw;
    font-weight: 300; 
    color: white;
    
}
input, textarea {
    width: 100%;
    padding:  1vw;
    padding-left: 1.5vw;
    border-radius: 0.5vw;
    border: none;
    background-color: transparent;
    color: rgba(0, 0, 0, 1);
    font-size: 1vw;
    border: 0.1vw solid rgba(231, 231, 231, 1);
    background: rgba(255, 255, 255, 1);
}



input{
    width: 85%;
}
textarea {
    resize: none;
    height: 7vw;
    width: 85%;
}

input:focus, textarea:focus{
    border: 0.1vw solid white;
    outline: none;
    
}

.checkbox {
    display: flex;
    margin-top: 3vw;
    flex-direction: column;
    pointer-events: auto;
}

.hidden-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    visibility: hidden;
    display: none;
    -webkit-appearance: none;
    appearance: none;
}

.checkbox-container-popup {
    display: flex;
    align-items: center;
    margin-bottom: 1.5vw;
    font-size: 0.8vw;
    color: rgba(255, 255, 255, 1);
    pointer-events: auto;
}

.custom-checkbox-popup {
    position: relative;
    display: inline-block;
    margin-right: 0.6vw;
    cursor: pointer;
    width: 1.5vw;
    margin-left: auto;
    margin-top: -1vw;
    pointer-events: auto;
}

.custom-checkbox-popup img {
    width: 1.5vw;
    
    position: absolute;
    top: 0;
    left: 0;
}

.checkbox-popup-unchecked {
    display: block;
}

.checkbox-popup-checked {
    display: none;
}

.custom-checkbox-popup.checked .checkbox-popup-unchecked {
    display: none;
}

.custom-checkbox-popup.checked .checkbox-popup-checked {
    display: block;
}

.checkbox span {
    font-size: 0.9vw;
    font-weight: 300;
    color: white;
    cursor: pointer;
    
}

.btn_block{
    display: flex;
    justify-content: left;
    align-items:end;
    width: 70%;
}

.submit-btn {
    background-color: transparent;
    color: white;
    border: none;
    padding: 1vw 2.8vw;
    border-radius: 0.5vw;
    font-size: 0.9vw;
    cursor: pointer;
    font-weight: 300;
    transition: background-color 0.3s;
    border: 0.1vw solid rgba(159, 144, 121, 1)
    
}

.submit-btn:hover {
    background-color: rgba(159, 144, 121, 1);
}














  
  


.reverse{
    display: flex;
    flex-direction: row-reverse;
}



.footer_desktop{
    background: rgba(26, 30, 34, 1);
}

.footer_desktop_wrapper{
    display: flex;
    justify-content: space-between;
    gap: 2vw;
    padding-top: 2vw;
    padding-bottom: 3vw;
}

.footer_desktop_firstline{
    display: flex;
    align-items: center;
    gap: 1vw;
}

.footer_desktop_secondline{
    display: flex;
    gap: 3vw;
    align-items: center;
    color: white;
    
}
.checkbox_wrapper{
    display: flex; gap: 1vw; align-items: center; margin:0;
}
.c2025{
    font-weight: 400;
    font-size: 0.9vw;
    color: rgba(151, 151, 151, 1);
    padding-left: 10vw;
}

.footer_link{
    color: rgba(255, 255, 255, 1);
    font-weight:400;
}
.policy{
    font-weight: 400;
    font-size: 0.9vw;
    color: rgba(151, 151, 151, 1);
    border-bottom:0.1vw solid #ccc ;
    margin-top: 3vw;
}

.foot_men{
    margin-top: 3vw;
}

.foot_men .menu{
    margin-left: 0;
    
}

.logo_footer{
    width: 5vw;
}

.logo_footer img{
    width: 100%;
}

.footer_desktop_firstline .header_links_block{
    margin-left: 5vw;
}

.footer_desktop_line{
    border: 0.1vw solid rgba(45, 45, 45, 1);
    width: 86%;
    margin: 0 auto;
}




.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup {
    width: 34.37vw; /* 535px / 1920px * 100 */
    
    background-color: rgb(17, 16, 16);
    border-radius: 0.5vw;
    position: relative;
    padding: 0 0 2vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;

}

.popup_img{
    width: 100%;
    z-index: 0;
}

.popup_img img{
    width: 100%;
}

.close-button {
    position: absolute;
    top: 1vw;
    right: 1vw;
    background: none;
    border: none;
    font-size: 1.5vw;
    cursor: pointer;
    font-weight: bold;
    z-index: 4;
    color: white;
}

#contactForm{
    padding: 0 2vw 2vw 2vw;
}

.popup-title {
    font-size: 1.5vw;
    font-weight: 400;
    margin-bottom: 2vw;
    text-align: center;
    color: white;
    margin-top: 1.5vw;
}

.form-input-popup {
    width: 100%;
    padding: 0.8vw 1vw;
    margin-bottom: 1vw;
    border: 1px solid #ccc;
    border-radius: 0.3vw;
    font-size: 0.9vw;
    color: rgba(0, 0, 0, 1) !important;
    background: white;
    
}



.custom-checkbox-popup {
    position: relative;
    display: inline-block;
    margin-right: 0.6vw;
    cursor: pointer;
    width: 1.5vw;
    margin-left: auto;
}



.checkbox-popup-unchecked {
    display: block;
}

.checkbox-popup-checked {
    display: none;
}

.custom-checkbox-popup.checked .checkbox-popup-unchecked {
    display: none;
}

.custom-checkbox-popup.checked .checkbox-popup-checked {
    display: block;
}

.privacy-link {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
}

.submit-button {
    width: 100%;
    padding: 0.8vw;
    background-color: rgba(211, 203, 193, 1);
    color: rgba(0, 0, 0, 1);
    border: none;
    border-radius: 0.3vw;
    cursor: pointer;
    font-size: 1vw;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.submit-button:hover{
    background-color: rgba(214, 129, 64, 1);
    color: rgba(255, 255, 255, 1);
}

.map_block_info_btn{
    transition: all 0.3s ease-in-out;

}

.map_block_info_btn:hover{
    background-color: rgba(214, 129, 64, 1);
    color: rgba(255, 255, 255, 1);
    border: 0.15vw solid rgba(214, 129, 64, 1);
}

/* .about_block{
   
    width: 87%;
    margin: 0 auto;
    margin-bottom: 5vw;
    margin-top: 5vw;
}

.about_block_wrapper{
    display: flex;
    flex-direction: column;
    gap: 5vw;
}
  
.about_block_head{
    font-family: 'Montserrat' , sans-serif;
    font-weight: 700;
    font-size: 2.1vw;
    line-height: 1.4;
    color: rgba(77, 122, 142, 1);
    width: 86vw;
    margin: 0 auto;
}

.about_block_body{
    display: flex;
    flex-direction: column;
}

.about_block_body_firstline{
    display: flex;
    gap: 5vw;
    align-items: center;
    margin-top: 2vw;
}

.about_block_body_firstline_img{
    width: 42vw;
    
}

.about_block_body_firstline_img img{
    width: 100%;
    object-fit: cover;
}

.about_block_body_firstline_body{
    width: 32vw;
    font-weight: 400;
    font-size: 1.3vw;
    line-height: 1.4;
}

.about_block_body_secondline{
    display: flex;
    gap: 9vw;
}

.about_block_body_secondline_img{
    width: 37vw;
    margin-top: -10vw;
}

.about_block_body_secondline_img img{
    width: 100%;
}

.about_block_body_secondline_head{
    font-family: 'Montserrat' , sans-serif;
    font-weight: 700;
    font-size: 3.5vw;
    line-height: 1.4;
    text-transform: uppercase;
    color: rgba(77, 122, 142, 1);
    padding-top: 7vw;
}

.about_block_body_secondline_head span{
    margin-left: 4vw;
}

.about_block_body_text{
    font-weight: 400;
    font-size: 1.4vw;
    line-height: 1.5;
    text-align: center;
    width: 67vw;
    margin: 0 auto;
    margin-top: 7vw;

} */

.about_block {
    width: 87%;
    margin: 0 auto;
    margin-bottom: 5vw;
    margin-top: 5vw;
}

.about_block_wrapper {
    display: flex;
    flex-direction: column;
    gap: 5vw;
}

.about_block_head {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.1vw;
    line-height: 1.4;
    color: rgba(77, 122, 142, 1);
    width: 86vw;
    margin: 0 auto;
}

.about_block_body {
    display: flex;
    flex-direction: column;
}

.about_block_body_firstline {
    display: flex;
    gap: 5vw;
    align-items: center;
    margin-top: 2vw;
}

.about_block_body_firstline_img {
    width: 42vw;
    height: 50vw; 
    overflow: hidden; 
    position: relative;
}

.about_block_body_firstline_img img {
    width: 100%;
    height: 120%; /* Изображение больше контейнера */
    object-fit: cover;
    object-position: center top; 
    transition: transform 2s ease-out; 
    /* Начальное положение - изображение смещено вниз */
    transform: translateY(0%);
}

/* Класс, который будет добавлен через JavaScript */
.about_block_body_firstline_img.active img {
    transform: translateY(-10%); /* Смещение изображения вверх при активации */
}

.about_block_body_firstline_body {
    width: 32vw;
    font-weight: 400;
    font-size: 1.3vw;
    line-height: 1.4;
}

.about_block_body_secondline {
    display: flex;
    gap: 9vw;
}

.about_block_body_secondline_img {
    width: 37vw;
    height: 25vw;
    margin-top: -10vw;
    overflow: hidden; /* Добавлено для обрезки изображения */
}

.about_block_body_secondline_img img {
    width: 100%;
    height: 130%;
    object-fit: cover;
    object-position: center top; 
    transition: transform 2s ease-out; 
    transform: translateY(0%);
}

.about_block_body_secondline_img.active img {
    transform: translateY(-20%); /* Смещение изображения вверх при активации */
}

.about_block_body_secondline_head {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 3.5vw;
    line-height: 1.4;
    text-transform: uppercase;
    color: rgba(77, 122, 142, 1);
    padding-top: 7vw;
}

.about_block_body_secondline_head span {
    margin-left: 4vw;
}

.about_block_body_text {
    font-weight: 400;
    font-size: 1.4vw;
    line-height: 1.5;
    text-align: center;
    width: 67vw;
    margin: 0 auto;
    margin-top: 7vw;
}



.info_banner{
    margin-top: 5vw;

}

.policy_block{
    display: flex;
    flex-direction: column;
    gap: 2vw;
    padding: 4vw 0 4vw 0;
}

.info_banner_wrapper{
    display: flex;
    justify-content: space-between;
}

.info_banner_leftside{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.info_banner_leftside_head{
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1.4vw;
    line-height: 1.4;
    color: rgba(125, 110, 87, 1);

}

.info_banner_leftside_head_size{
    font-size: 1.5vw;
}

.info_banner_leftside_head_swiper{
    font-weight: 500 !important;
}
.info_banner_leftside_text{
    width: 90%;
    color: rgba(0, 0, 0, 1);
    font-weight: 300;
    font-size: 1.2vw;
    line-height: 1.5;

}

.info_banner_rightside{
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    margin-left: -1vw;
}

.info_banner_rightside_text{
    font-weight: 300;
    font-size: 1.4vw;
    line-height: 1.4;
    color: rgba(0, 0, 0, 1);

}

.info_banner_rightside_line{
    height: 0.1vw;
    width: 100%;
    background: rgba(30, 30, 30, 1);
}

.c2025_logo{
    display: flex;
    flex-direction: column;
    gap: 1vw;
    margin-top: -2.2vw;
    align-self: center;
}
.footer_logo_company{
    padding-left: 9.5vw;
    
}
.footer_logo_company img{
    width: 2.5vw !important;
}


.big_head{
font-weight: 700;
font-size: 2.5vw;

margin-top: -0.8vw;
/* margin-left: 2vw; */
text-transform: uppercase;

}

.big_text{
    margin-top: -1vw;
    font-weight: 300;
    font-size: 1.3vw;
}


.swp_btn img{
    width: 1.5vw;
    margin-top: 1.2vw;
    cursor: pointer;
}


.custom-checkbox img{
    width: 1.3vw;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.custom-checkbox-popup img{
    width: 1vw;
    cursor: pointer;
    pointer-events: auto;
}

.checkbox-unchecked, .checkbox-checked, .checkbox-popup-unchecked, .checkbox-popup-checked{
    transition: all 0.2s ease;
    pointer-events: auto;
    user-select: none;
}
.time_block{
    
    padding-bottom: 5vw;
    width: 80%;
    margin: 0 auto;
    margin-top: 5vw;
}

.time_block_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;

}


.time_block_wrapper_item{
    display: flex;
    flex-direction: column;
    gap: 1vw;
    align-items: center;
    text-align: center;
}

.time_block_wrapper_item_head{
    font-family: 'Museo Sans Cyrl';
    font-weight: 300;
    font-size: 4.5vw;
    line-height: 1.4;
    color: rgba(57, 117, 122, 1);

}

.time_block_wrapper_item_text{
    font-weight: 300;
    font-size: 1.2vw;
    color: rgba(0, 0, 0, 1);
}



.header_mobile_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1vw;
}

.header_mobile{
    display: none;
}
.desktop{
    display: flex;
}
.mobile{
    display: none;
}
.footer_mobile{
    display: none;
}

.map_block{
  margin-top: 3vw;

}

.map_block_info{
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.map_block_wrapper{
    width: 91%;
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.map_block_info_head{
    font-weight: 400;
    font-size: 3.5vw;
    color: rgba(125, 110, 87, 1);
}

.map_block_info_text{
    font-weight: 400;
    font-size: 1.4vw;
    color: rgba(28, 28, 28, 1);
}

.map_block_info_btn{
    padding: 2vw;
    font-size: 1vw;
    border-radius: 2vw;
    background: rgba(237, 238, 237, 1);
    width: 17vw;
    border: 0.15vw solid rgba(196, 196, 196, 1);
    text-align: center;
    text-decoration: none;
    color: black;
}

.contact-info_body{
    display: flex;
    flex-direction: column;
    gap: 2vw;
}

.contact-info_body_block{
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
    color: rgba(255, 255, 255, 1);

    font-weight: 300;
    font-size: 1.1vw;

}

.contact-info_body_row{
    display: flex;
    gap: 3vw;
}

.form_head{
font-weight: 300;
font-size: 2vw;
color: white;
}

.form_text{
    font-weight: 250;
    font-size: 1.05vw;
    color: white;
    margin-top: -0vw;
}

.swipers_block_item_static{
    display: flex;
    gap: 2vw;
    flex-direction: column;
}

.swipers_block_item_static_head{
    font-family: 'Montserrat' , sans-serif;
    font-weight: 500;
    font-size: 1.2vw;
    color: rgba(84, 136, 140, 1);
}


.swipers_block_item_static_list{
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
   
}

.swipers_block_item_static_list-item{
    display: flex;
    gap: 0.3vw;
    align-items: first baseline;
    font-weight: 300;
    white-space: nowrap;
    font-size: 1.1vw;

}

.swipers_block_item_static_list-item img{
    width: 1vw !important;
    height: 1vw !important;
    
}



.swipers_block_item_swiper_text{
    font-weight: 400;
    font-size: 1.1vw;
    line-height: 1.5;
    padding-bottom: 2vw;

}

.swiper{
    
  max-width: 42vw;
    overflow: hidden;
  
}

.swiper-wrapper {
    display: flex;
    
    position: relative;
    
  }
  
  .swiper-slide {
    flex-shrink: 0;
   
    position: relative;
  }


.swiper-slide img{
    width: 42vw;
    opacity: 1 !important;
}


.swiper-pagination {
    display: flex;
    justify-content: center;
    z-index: 10;

    margin-top: 1vw;
  }
  
  .swiper-pagination-bullet {
    width: 0.75vw;
    height: 0.75vw;
    margin: 0 0.5vw;
    background-color: rgba(217, 217, 217, 1);
    border-radius: 50%;
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: rgba(119, 119, 119, 1);
  }

  .info_swiper{
    display: flex;
    margin-top: 5vw;
    margin-bottom: 5vw;
    flex-direction: column;
    gap: 8vw;
}
.list_info{
    display: flex;
    gap: 2vw;
}

.info_swiper_wrapper{
    display: flex;
    gap: 2vw;
    width: 87%;
    margin: 0 auto;
}

.swiper_cont{
    
}

.swiper_control{
    display: flex;
    align-items: center;
    gap: 1vw;
    justify-content: center;
    
    width: 42vw;
}



.info_swiper_wrapper_rightside{
    display: flex;
    flex-direction: column;
    gap: 2vw;
    width: 43vw;
}



.swiper-slide-active {
    opacity: 1 !important; 
}
  


.reverse{
    display: flex;
    flex-direction: row-reverse;
}

@media screen and (max-width: 992px) {
    .desktop, .footer_desktop{
        display: none;
    }
    .mobile{
        display: flex;
    }
    .info_swiper_wrapper{
        flex-direction: column;
        
    }
    .info_swiper{
        gap: 13vw;
        display: flex;
        flex-direction: column;
        padding-bottom: 10vw;
    }
    .reverse{
        flex-direction: column;
    }
    .swiper{
        max-width: unset;
    }

    .swiper-slide img{
        width: 100%;
        opacity: 1 !important;
    }

    .swiper_control{
        display: flex;
        align-items: center;
        gap: 4vw;
        justify-content: center;
        
        width: 100%;
    }

    .swp_btn img{
        width: 5vw;
        margin-top: 4vw;
        cursor: pointer;
    }

    .swiper-pagination {
        display: flex;
        justify-content: center;
        z-index: 10;

        margin-top: 3vw;
    }
    
    .swiper-pagination-bullet {
        width: 3vw;
        height: 3vw;
        margin: 0 2vw;
        background-color: rgba(217, 217, 217, 1);
        border-radius: 50%;
        opacity: 0.5;
        cursor: pointer;
        transition: opacity 0.3s ease;
    }
    .swiper-pagination-bullet-active {
        opacity: 1;
        background-color: rgba(119, 119, 119, 1);
      }
    .swipers_block_item_static_list{
        display: flex;
        flex-direction: column;
        gap: 2vw;
       
    }
    
    .swipers_block_item_static_list-item{
        display: flex;
        gap: 2vw;
        align-items: center;
        font-weight: 300;
        white-space: nowrap;
        font-size: 3.5vw;
        
    
    }
    
    .swipers_block_item_static_list-item img{
        width: 3.5vw !important;
        height: 3.5vw !important;
        
    }
    

    .info_swiper_wrapper_rightside{
        width: 100%;
        padding: 3vw 0;

    }
    
    .swipers_block_item_static_head{
        font-size: 3.7vw;
        text-transform: uppercase;
        font-weight: 700;
        color: rgba(125, 110, 87, 1);
        padding: 3vw 0;
    }
    
    .header_mobile{
        display: block;
        background: rgba(255, 255, 255, 1);
    }
    .logo_header{
        width: unset;
        padding-top: 1vw;
        padding-left: 1vw;
    }
    .container{
        width: 85%;
    }
    .header_desktop{
        display: none;
    }
    .header_mobile_wrapper{
        width: 100%;
        padding: 2.5vw 0;
        padding-left: 6%;
        padding-right: 6%;
    }
    .header_mobile_wrapper .logo_header img{
        width: 8vw;
    }
    .header_mobile_wrapper .header_links_block .menu .header_links-item{
        font-size: 3vw;
        gap: 1vw;
        justify-content: left;
        font-weight: 700;
        align-items: center;
    }
    .header_links-item img{
        width: 3vw;
    }
    
    .menu{
        margin-left: unset;
    }

    .footer_logo_company{
        padding-left: 4vw;
        
    }
    .footer_logo_company img{
        width: 8vw !important;
    }

    .cta-button{
        padding: 3vw 4vw !important;
        width: 30vw;
        margin-top: 1vw;
        text-align: center;
        line-height: 1.2;
        border-radius: 2vw;
        margin-right: 0;
    }
    .btn{
        font-size: 2.7vw;
    }
    .btn span{
        font-size: 2.5vw;
    }

    .first_banner{
        height: 100vw;
        margin-top: -13vw;
    }

    
    .info_banner_wrapper{
        flex-direction: column;
        gap: 12vw;
    }
    .info_banner_leftside{
        width: 100%;
    }
    .info_banner_rightside{
        width: 100%;
        gap: 4vw;
        padding-bottom: 10vw;
    }
    .info_banner_leftside_head{
        /* font-weight: 400; */
        font-size: 4.4vw;
    }
    .info_banner_leftside_text{
        width: unset;
        font-size: 3vw;
        font-weight: 300;
    }
    .info_banner_rightside_text{
        font-size: 4.7vw;
        font-weight: 400;
    }
    .info_banner_rightside_line{
        width: 100%;
        border-bottom: 0.1vw solid rgba(182, 182, 182, 1);
    }
    .address_block_wrapper{
        flex-direction: column;
        gap: 5vw;
    }
    .map_block_wrapper{
        width: 100%;
    }
    .map{
        width: 100%;
        height: 60vw;
    }
    .adress_block_img{
        width: 100%;
    }

    .info_banner_leftside_head{
        margin-top: 15vw;
    }

    
    
    .big_text{
        margin-top: 0;
    }
    .info_banner_leftside_text{
        font-size: 4vw;
    }
    .list_info {
        flex-direction: column;
        gap: 3vw;
    }
    .contact-container {
        width: 100vw;
        min-width: 0;
        height: auto;
        margin: 0;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin-top: -1vw;
    }

    .form_head{
        font-size: 6vw;
    }
    .form_text{
        font-size: 4vw;
        margin-top: -2vw;
    }
    .background-image {
        height: 65vw;
        object-fit: cover;
        border-radius: 0;
        z-index: 3;
    }
    .contact-overlay {
        height: 100%;
        border-radius: 0;
    }
    .contact-content {
        flex-direction: column;
        width: 100vw;
        margin: 0;
        padding: 0 0 8vw 0;
        min-width: 0;
        background: rgba(26, 30, 34, 1);
        z-index: 3;
        overflow: hidden;
    }
    .contact-info {
        padding: 0vw 6vw 2vw 6vw;
        gap: 3vw;
        
    }
    .big_head{
        font-weight: 700;
        margin-top: 0;
        font-size: 5vw;
    }
    .contact-info-head {
        font-size: 7vw;
        font-weight: 300;
        margin-bottom: 4vw;
    }
    .contact-info p,
    .contact-info .address,
    .contact-info .email {
        font-size: 3vw;
        margin-bottom: 2vw;
        word-break: break-all;
    }
    .phone, .download {
        font-size: 3vw;
        gap: 2vw;
        margin-top: 4vw;
    }
    .phone img, .download img {
        width: 5vw;
    }
    .download-link {
        font-size: 3vw;
    }
    .contact-form {
        margin-top: 10vw;
        padding: 0 6vw 6vw 6vw;
        width: 100%;
        background: transparent;
    }
    .form-group {
        margin-bottom: 4vw;
    }
    input, textarea {
        font-size: 3.5vw;
        padding: 4vw;
        border-radius: 2vw;
        width: 100%;
    }
    #mainContactForm{
        display: flex;
        flex-direction: column;
        gap: 3vw;
    }
    textarea {
        height: 30vw;
        font-size: 3.5vw;
    }
    .checkbox {
        font-size: 3vw;
        margin-bottom: 4vw;

    }

    .checkbox a{
        font-size: 4vw;
    }
    
    .btn_block {
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .form-group.checkbox label {
        color: #fff !important;
    }

    main{
        overflow: hidden;
    }
    .footer_mobile{
        display: block;
        background: rgba(26, 30, 34, 1);
        overflow: hidden;
    }
    .footer_mobile_wrapper{
        display: flex;
        flex-direction: column;
        gap: 4vw;
        padding: 6vw 5%;
    }
    .footer_mobile_firstline{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        gap: 6vw;
    }
    .footer_mobile_firstline_text{
        display: flex;
        flex-direction: column;
        gap: 4vw;
    }
    .logo_footer{
        width: unset;
        align-items: flex-end;
        display: flex;
        gap: 2vw;

    }
    .mob_block{
        display: block;
    }
    .desk_block{
        display: none;
    }

    .logo_footer img{
        width: 11vw;
    }

    .footer_mobile_firstline_text-item img{
        width: 5vw;
    }

    .footer_mobile_firstline_text-item{
        display: flex;
        align-items: center;
        gap: 4vw;
        color: white;
        font-weight: 500;
    }
    .footer_mobile_secondline_text-item{
        display: flex;
        align-items: center;
        gap: 2vw;
        color: white;
        font-weight: 500;
        justify-content: space-between;
    }


    .footer_mobile_secondline_text-item span, .footer_mobile_secondline_text-item_link{
        font-weight: 400;
        font-size: 3vw;
        color: rgba(151, 151, 151, 1);
    }
    
    .custom-checkbox {
        width: 5vw;
        height: 5vw;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 3vw;
        cursor: pointer;
        pointer-events: auto;
    }
    .custom-checkbox img {
       width: 100%;


        cursor: pointer;
        pointer-events: auto;
    }
    .form-group.checkbox span {
        font-size: 4vw;
        
    }
    .checkbox_wrapper{
        display: flex; gap: 1vw; align-items: left; margin: unset;
        align-items: flex-start;
    }
    .checkbox_wrapper span{
        word-break: break-word;
    }
    .submit-btn {
        background-color: transparent;
        color: white;
        border: none;
        padding: 4vw 10vw;
        border-radius: 2.5vw;
        font-size: 3.5vw;
        cursor: pointer;
        font-weight: 300;
        transition: background-color 0.3s;
        border: 0.1vw solid rgba(159, 144, 121, 1)
        
    }

    .btn_block{
        justify-content: left;
    }

    .contact-info_body{
        gap: 8vw;
    }
    .contact-info_body_block{
        gap: 3vw;
    }

    .contact-info_body_item{
        font-size: 3.4vw;
        display: flex;
        align-items: center;
        gap: 2vw;
    }
    .contact-info_body_block .download{
        font-size: 4vw;
        font-weight: 400;
        padding: 3vw 0;
    }
    

    .contact-info_body_row{
        flex-direction: column;
        gap: 5vw;
    }
    .info_banner_leftside_head_swiper{
        font-weight: 500 !important;
    }

    
}


@media screen and (max-width: 600px) {
  .popup-overlay {
    align-items: flex-start;
    padding: 6vw 0;
  }
  .popup {
    width: 92vw !important;
    min-width: unset;
    max-width: 98vw;
    height: auto !important;
    min-height: unset;
    max-height: 98vh;
    border-radius: 3vw;
    padding: 6vw 4vw 4vw 4vw;
    box-sizing: border-box;
    overflow-y: auto;
    font-size: 4vw;
  }
  .popup-title {
    font-size: 6vw;
    margin-bottom: 5vw;
  }
  .form-input-popup {
    font-size: 4vw;
    padding: 3vw 2vw;
    border-radius: 3vw;
    margin-bottom: 3vw;
  }
  .checkbox-container-popup {
    font-size: 3vw;
    margin-bottom: 4vw;
  }
  .custom-checkbox-popup {
    width: 5vw;
    height: 5vw;
    margin-right: 2vw;
    cursor: pointer;
    pointer-events: auto;
  }
  .custom-checkbox-popup img{
    width: 5vw;
    height: 5vw;
   
  }

  .policy_link{
    font-size: 3vw;
  }
  .submit-button {
    font-size: 4vw;
    padding: 3vw;
    border-radius: 3vw;
  }

  .popup_img img{
    width: 100%;
    padding: 2vw;
    margin-top: 4vw;
  }
  .close-button {
    font-size: 7vw;
    top: 2vw;
    right: 6vw;
  }
}

/* Стили для уведомлений */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.notification.show {
    transform: translateX(0) !important;
}

.notification-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.notification-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.notification-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    color: inherit;
    opacity: 0.7;
}

.notification-close:hover {
    opacity: 1;
}



