@import 'reset.css';
@import 'fonts.css';
html[dir="rtl"] body,
html[dir="rtl"] .hero .swiper-slide {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
html[dir="rtl"] .hero .swiper-slide h3,
html[dir="rtl"] .hero .swiper-slide p {
    font-size: inherit !important;
    line-height: inherit !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
:root {
    --text: #1D1E26;
    --black: #050508;
    --h2_fz: 60px;
    --h2_lh: 110%;
}
html{
    scroll-behavior: smooth;
}
html {
    scrollbar-width: thin;
    scrollbar-color: var(--green) transparent;
}
html::-webkit-scrollbar {
    width: 8px;
}
html::-webkit-scrollbar-track {
    background: transparent;
}
html::-webkit-scrollbar-thumb {
    background-color: var(--green);
    border-radius: 10px;
    border: 2px solid transparent;
}
button{
    cursor: pointer;
}
.overflow-hidden{
    overflow: hidden;
}
.container{
    max-width: 1352px;
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
.dn{
    display: none;
    visibility: hidden;
}

/* header */
.header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.header_wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    transition: all 0.3s ease;
}
.header_left{
    display: flex;
    align-items: center;
    gap: 60px;
}
.header_nav ul{
    display: flex;
    align-items: center;
    gap: 8px;
}
.header_nav ul li a{
    padding: 13px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.header_nav ul li a:hover{
    background-color: rgba(255, 255, 255, 0.10);
}
.header_right{
    display: flex;
    gap: 12px;
}
.header_btn{
    padding: 11px 16px;
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 1px #fff inset;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header.sticky 
.header_btn{
    background: rgba(104, 135, 93, 0.54);
}
.header_btn:hover{
    box-shadow: none;
    background:rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);  
}
.header_btn_order{
    box-shadow: none;
    background:rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}
.header_btn_order:hover{
    box-shadow: none;
    background:rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);  
}
.header_lang_box{
    position: relative;
}
.header_lang_other{
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    display: none;
    flex-direction: column;
    gap: 6px;
}
.header_lang_other.active{
    display: flex;
}
.header_burger{
    display: none;
}
.header_burger_btn{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    border-radius: 12px;
}
.header_burger_btn img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.header.sticky{
    position: fixed;
    top: -82px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(104, 135, 93, 0.54);
    backdrop-filter: blur(10px);
    transition: top 0.3s ease;
}
.header.sticky 
.header_wrapper{
    padding-top: 10px;
    padding-bottom: 10px;
}
.header.sticky.show{
    top: 0;
}

@media (max-width: 1050px) {
    .header_btn_contact,
    .header_btn_order,
    .header_nav{
        display: none;
    }
    .header_burger{
        display: flex;
    }
    .header_btn{
        width: 40px;
        height: 40px;
    }
    .header_wrapper{
        padding-top: 20px;
    }
}

/* mobile menu */
.mobile_menu_wrapper{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(5, 5, 8, 0.25);
    z-index: 100;
    padding: 16px;
    display: none;
    justify-content: center;
    align-items: center;
}
.mobile_menu_wrapper.active{
    display: flex;
}
.mobile_menu{
    padding: 40px;
    border-radius: 32px;
    background:rgba(255, 255, 255, 0.15);
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
    box-shadow: 19px 18px 32px 0px rgb(8, 4, 2, 0.25);
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.mobile_menu_top,
.mobile_menu_bottom{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mobile_menu_link{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
}
.mobile_menu_bottom a{
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.mobile_menu_contact{
    box-shadow: 0 0 0 1px #fff inset;
    color: #fff;
}
.mobile_menu_order{
    background-color: #fff;
    color: var(--text);
}
@media (max-width: 500px) {
    .mobile_menu_wrapper{
        align-items: flex-start;
    }
}

/* hero */
.hero{
    height: 100dvh;
    max-height: 1080px;
    padding-top: 120px;
    display: flex;
    align-items: center;
}
.hero .container{
    height: 100%;
}
.hero_wrapper{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 20px;
    /* align-items: flex-start; */
}
.hero_h1{
    color: #fff;
    font-size: 94px;
    font-weight: 400;
    line-height: 85px;
    max-width: 590px;
    margin-bottom: 18px;
}
.hero_p{
    font-size: 16px;
    color: #fff;
    line-height: 140%;
    max-width: 500px;
    margin-bottom: 32px;
}
.hero_btn{
    background-color: #fff;
    color: var(--text);
    padding: 16px 25px;
    border-radius: 8px;
    font-size: 16px;
    line-height: 24px;
    align-self: flex-start;
    margin-bottom: -7px;
}
.hero_box{
    max-width: 964px;
    align-self: flex-end;
}
.hero_slide{
    display: flex;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(236, 236, 236, 0.20);
    backdrop-filter: blur(10px);
    max-height: 128px;
}
.hero_slide_img{
    width: 73px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    /* height: 100%; */
}
.hero_slide_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero_slide_info{
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hero_slide_info p{
    font-size: 12px;
    color: #fff;
    line-height: 15px;
    font-weight: 200;
}
.hero_slide_info h3{
    font-size: 22px;
    line-height: 22px;
    color: #fff;
    font-weight: 400;
}
@media (max-width: 1200px) {
    .hero_btn{
        margin-bottom: 10px;
    }
    .hero_h1 {
        color: #fff;
        font-size: 77px;
        font-weight: 400;
        line-height: 72px;
    }
}
@media (max-width: 1000px) {
    .hero_box{
        align-self: flex-start;
        max-width: 700px;
    }
    .hero_h1{
        font-size: 74px;
        line-height: 70px;
    }
}
@media (max-width: 730px) {
    .hero{
        padding-top: 74px;
    }
    .hero_h1{
        font-size: 56px;
        line-height: 55px;
    }
    .hero_wrapper{
        overflow: hidden;
    }
    .hero .container{
        padding-right: 0;
        padding-left: 0;
    }
    .hero_btn{
        margin-left: 16px;
    }
    .hero_p,
    .hero_h1{
        padding-right: 16px;
        padding-left: 16px;
    }
    .hero 
    .swiper-wrapper{
        padding-left: 16px;
    }
}
@media (max-width: 440px) {
    .hero_box{
        max-width: 650px;
    }
}
@media (max-width: 400px) {
    .hero_btn {
        margin-bottom: 30px;
    }
    .hero_wrapper{
        padding-bottom: 26px;
    }
}

/* about */
.about{
    padding: 88px 0;
}
.about_wrapper{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.about_wrapper h2{
    font-size: 94px;
    font-weight: 400;
    line-height: 102px;
    color: var(--text);
}
.about_box{
    display: grid;
    grid-template-columns: 224px 1.5fr 1fr;
    gap: 34px;
}
.about_box_item img{
    width: 100%;
    object-fit: contain;
    border-radius: 32px;
    overflow: hidden;
    margin-top: 19px;
    margin-bottom: 32px;
}
.about_box_item_1 p{
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
.about_box_item h3{
    color: var(--text);
    font-size: 28px;
    line-height: 1;
    margin-bottom: 16px;
    font-weight: 400;
}
.about_box_item_2 p,
.about_box_item_3 p{
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
@media screen and (max-width: 1200px) {
    .about_wrapper h2 {
        font-size: 71px;
        line-height: 77px;
    }
}
@media screen and (max-width: 1120px) {
    .about_box{
        grid-template-columns: 1.5fr 1fr;
    }
    .about_box_item_1{
        grid-column: 1 / 3;
    }
    .about_box_item_1 p{
        max-width: 335px;
    }
}
@media screen and (max-width: 900px) {
    .about{
        padding: 65px 0;
    }
}
@media screen and (max-width: 740px) {
    .about_box{
        grid-template-columns: 1fr;
        gap: 64px;
    }
    .about_box_item_2{
        margin-top: 8px;
    }
    .about_box_item_1{
        grid-column: unset;
    }
    .about_box_item img{
        margin-top: 0;
        height: 325px;
        object-fit: cover;
    }

    .about_wrapper h2{
        font-size: 48px;
        line-height: 110%;
    }
    .about_box_item h3{
        font-size: 24px;
        line-height: 110%;
    }
    .about_box_item_2 p,
    .about_box_item_3 p{
        font-size: 14px;
    }
    .about_box_item h3{
        font-size: 28px;
    }
    .about{
        padding-bottom: 46px;
    }
}

/* banner */
.banner{
    margin: 60px 0;
}
.banner_wrapper{
    padding: 43px 43px 54px 43px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 38px;
    border-radius: 32px;
}
.banner_wrapper p{
    color: var(--text);
    font-size: 60px;
    font-weight: 400;
    line-height: 1.1;
    max-width: 1032px;
    text-align: center;
}
.banner_btn{
    background-color: var(--black);
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    padding: 11px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 274px;
}
@media screen and (max-width: 1200px) {
    .banner_wrapper p{
        font-size: 43px;
        max-width: 800px;
    }
}
@media screen and (max-width: 740px) {
    .banner{
        margin: 20px 0;
    }
    .banner_wrapper p{
        font-size: 41px;
    }
    .banner_wrapper{
        padding: 130px 24px 130px 24px;
    }
    .banner_btn{
        max-width: 274px;
        width: 100%;
    }
}
@media screen and (max-width: 340px) {
    .banner_wrapper p{
        font-size: 28px;
    }
    .banner_wrapper{
        padding: 180px 24px 180px 24px;
    }
}

/* services */
.services{
    padding: 88px 0;
}
.services_wrapper{
    display: flex;
    flex-direction: column;
}
.services_h2{
    font-size: var(--h2_fz);
    font-weight: 400;
    line-height: var(--h2_lh);
    color: var(--text);
    margin-bottom: 28px;
}
.services_p{
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
}
.services_nav{
    margin-bottom: 40px;
}
.services_slider_mobile{
    display: none;
    width: 100%;
}
/* services mobile slider */
.services_slide{
    display: flex;
    flex-direction: column;
}
.services_slide_img{
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 32px;
    overflow: hidden;
    margin-bottom: 56px;
}
.services_slide_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services_slide h3{
    font-size: 28px;
    line-height: 100%;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
}
.services_slide p{
    font-size: 16px;
    line-height: 140%;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 24px;
}
.services_slide_btn{
    padding: 12px;
    max-width: 450px;
    width: 100%;
    border-radius: 8px;
    border: 1px solid var(--black);
    color: var(--text);
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.services_pagination{
    top:400px!important;
}
.services_swiper .swiper-pagination-bullet{
    width: 8px!important;
    height: 8px!important;
    background-color: rgb(0, 0, 0, 0.13)!important;
    opacity: 1!important;
}
.services_swiper .swiper-pagination-bullet-active{
    width: 28px!important;
    height: 8px!important;
    border-radius: 20px!important;
    background-color: var(--black)!important;
}
/* services mobile slider end */
.service_sliders_all_box{
    display: none;
}
.service_sliders_all_box.active{
    display: block;
}
@media screen and (max-width: 1200px) {
    .services_h2{
        font-size: 43px;
    } 
}
@media screen and (max-width: 775px) {
    .gallery_container{
        display: none;
    }
    .services_slider_mobile{
        display: block;
    }
}
@media screen and (max-width: 740px) {
    .services_h2 {
        font-size: 36px;
    }
    .services{
        padding: 46px 0px;
    }
    .services_p,
    .services_nav{
        margin-bottom: 24px;
    }
}

/* products */
.products{
    padding: 88px 0 78px 0;
}
.products_wrapper{
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.products_wrapper h2{
    font-size: var(--h2_fz);
    font-weight: 400;
    line-height: var(--h2_lh);
    color: var(--text);
}
.products_wrapper p{
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}
.services_nav,
.products_nav{
    display: flex;
    gap: 2px;
    max-width: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.services_nav::-webkit-scrollbar,
.products_nav::-webkit-scrollbar{
    display: none;
}
.services_nav button,
.products_nav button{
    transition: all 0.3s ease;
    padding: 14px 24px;
    border-radius: 25px;
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    border:1px solid transparent;
    flex-shrink: 0;
}
.services_nav button.active,
.products_nav button.active{
    background-color: var(--black);
    color: #fff;
}
.services_nav button:hover,
.products_nav button:hover{
    border:1px solid var(--black);
}
.products_box{
    margin-top: -8px;
}
.products_box_item{
    display: flex;
    flex-direction: column;
    gap: 28px;
    display: none;
}

.products_box_item.active{
    display: flex;
}

.products_box_item p{
    color: var(--text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    max-width: 680px;
}
.products_item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.products_item img{
    transition: all 0.3s ease;
}
.products_item:hover img{
    transform: translateY(7px);
}

.product_slide p{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    color: var(--text);
}
@media screen and (max-width: 1200px) {
    .products_wrapper h2{
        font-size: 43px;
    }
    .product_slide p{
        font-size: 16px;
        line-height: 24px;
    }
}
@media screen and (max-width: 740px) {
    .products_wrapper h2{
        font-size: 36px;
    }
    .products{
        padding-top: 0;
        padding-bottom: 46px;
    }
}
@media screen and (max-width: 430px) {
    .products .container{
        padding-right: 0;
    }
    .products_wrapper_h2,
    .products_wrapper_p,
    .products_box_item_p{
        padding-right: 16px;
    }
}
@media screen and (max-width: 400px) {
    .products_wrapper h2{
        font-size: 28px;
    }
}
@media screen and (max-width: 305px) {
    .products_wrapper h2 {
        font-size: 20px;
    }
}
/* partners */
.partners{
    padding: 88px 0;
}
.partners_wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
}
.partners_wrapper h2{
    color: var(--text);
    font-size: 60px;
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
}
.partners_box{
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.partners_box_item{
    width: 204px;
    height: 111px;
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #F6F5F3;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partners_box_item:hover{
    transform: scale(1.05);
}
.partners_box_item img{
    height: 65px;
    object-fit: contain;
}
@media screen and (max-width: 1200px) {
    .partners_wrapper h2{
        font-size: 43px;
    }
}
@media screen and (max-width: 740px) {
    .partners_wrapper{
        gap: 46px;
    }
    .partners_wrapper h2{
        font-size: 36px;
    }
    .partners{
        padding: 46px 0px;
    }
}
@media screen and (max-width: 460px) {
    .partners_box_item{
        max-width: 272px;
        width: 100%;
        height: 80px;
    }
    .partners_box_item img{
        height: 50px;
    }
}

/* reviews */
.reviews{
    padding: 88px 0;
}
.reviews_wrapper{
    display: grid;
    grid-template-columns: 470px 1fr;
    gap: 80px;
}
.reviews_img{
    height: 500px;
    overflow: hidden;
    border-radius: 32px;
}
.reviews_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.reviews_box{
    padding-top: 88px;
    width: 600px;
}
.review_slide{
    display: flex;
    flex-direction: column;
}
.review_slide_name{
    font-size: 52px;
    line-height: 70px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
}
.review_slide_job{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 36px;
}
.review_slide_text p{
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #1D1E26;
    max-width: 516px;
}
.reviews_swiper_btns{
    position: relative;
    display: flex;
    align-items: center;
    gap: 40px;
    height: 24px;
    margin-top: 53px;
}
.reviews_button_next{
    position: relative!important;
    right: unset!important;
    left: unset!important;
    top: unset!important;
    bottom: unset!important;
    margin: 0!important;
    padding: 0!important;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reviews_button_prev{
    margin: 0!important;
    padding: 0!important;
    position: relative!important;
    right: unset!important;
    left: unset!important;
    top: unset!important;
    bottom: unset!important;
    width: 24px;
    height: 24px;
}
.reviews_button_prev svg{
    display: none;
}
.reviews_button_next svg{
    display: none;
}
.reviews_button_next img{
    transform: rotate(180deg);
}
.reviews_pagination{
    position: relative!important;
    right: unset!important;
    left: unset!important;
    top: unset!important;
    bottom: unset!important;
    width: auto!important;
}
.reviews_pagination .swiper-pagination-bullet{
    width: 8px!important;
    height: 8px!important;
    background-color: rgb(0, 0, 0, 0.13)!important;
    opacity: 1!important;
}
.reviews_pagination .swiper-pagination-bullet-active{
    width: 28px!important;
    height: 8px!important;
    border-radius: 20px!important;
    background-color: var(--black)!important;
}
@media screen and (max-width: 1200px) {
    .reviews_wrapper{
        gap: 50px;
        grid-template-columns: 1fr 600px;
    }
    .review_slide_name{
        font-size: 43px;
        line-height: 110%;
    }
}
@media screen and (max-width: 940px) {
    .reviews_wrapper{
        display: flex;
        flex-direction: column;
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
        gap: 47px;
    }
    .reviews_box{
        padding-top: 0;
        max-width: 600px;
        width: 100%;
    }
}
@media screen and (max-width: 740px) {
    .reviews{
        padding-top: 24px;
        padding-bottom: 46px;
    }
}
@media screen and (max-width: 570px) {
    .reviews_img {
        height: 400px
    }
    .review_slide_name{
        font-size: 36px;
        line-height: 110%;
    }
    .review_slide_job{
        font-size: 14px;
        line-height: 120%;
        margin-bottom: 24px;
    }
    .reviews_swiper_btns{
        margin-top: 40px;
        justify-content: center;
    }
    .reviews_button_prev,
    .reviews_button_next{
        display: none;
    }
}

/* faq */
.faq{
    padding: 88px 0;
}
.faq_wrapper{
    display: grid;
    grid-template-columns: 590px 1fr;
    gap: 50px;
}
.faq_left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.faq_left_p{
    color: #525252;
    font-size: 24px;
    font-weight: 400;
    line-height: 36px;
}
.faq_left_h2{
    margin-top: 16px;
    font-size: 60px;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 57px;
}
.faq_left_btn{
    background-color: var(--black);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    padding: 16px 31px;
    border-radius: 8px;
}
@media screen and (max-width: 1380px) {
    .faq_wrapper{
        gap: 20px;
    }
}
@media screen and (max-width: 1200px) {
    .faq_left_h2{
        font-size: 43px;
    }
    .faq_wrapper {
        grid-template-columns: 470px 1fr;
    }
}
@media screen and (max-width: 975px) {
    .faq_wrapper{
        display: flex;
        flex-direction: column;
    }
    .faq_left_h2{
        margin-bottom: 32px;
        margin-top: 16px;
    }
}
@media screen and (max-width: 740px) {
    .faq{
        padding-top: 40px;
        padding-bottom: 46px;
    }
}
@media screen and (max-width: 550px) {
    .faq_left_h2{
        font-size: 36px;
        line-height: 110%;
    }
}


/* contact */
.contact{
    padding: 88px 0;
}
.contact_wrapper{
    display: grid;
    grid-template-columns: 1fr 660px;
    gap: 40px;
}
.contact_info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
}
.contact_info_h2{
    font-size: 60px;
    font-weight: 400;
    line-height: 110%;
    max-width: 380px;
}
.contact_address,
.contact_phone{
    font-size: 22px;
    line-height: 36px;
    font-weight: 400;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 11px;
}
.contact_address img,
.contact_phone img{
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.contact_soc{
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.contact_soc_item{
    display: flex;
    align-items: center;
    gap: 11px;
    transition: all 0.3s ease;
}
.contact_soc_item:hover{
    transform: translateX(10px);
}
.contact_soc_item img{
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.contact_soc_item span{
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: var(--text);
}
.contact_soc_item.text_grey span{
    color: #525252;
    font-size: 16px;
}
.map-wrapper {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9; /* адаптив */
    border-radius: 20px;
    overflow: hidden;
    background: #f3f3f3;
    height: 100%;
}
/* сам iframe */
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;

    /* стиль как на скрине */
    filter: grayscale(100%) contrast(1.1) brightness(1.05);
}
.map-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(255,255,255,0) 60%,
        rgba(0,0,0,0.04) 100%
    );
}
@media screen and (max-width: 1200px) {
    .contact_info_h2{
        font-size: 43px;
        line-height: 110%;
    }
    .contact_wrapper{
        grid-template-columns: 385px 1fr;
        max-width: 100%;
    }
    .map-wrapper{
        aspect-ratio: unset;
    }
}
@media screen and (max-width: 800px) {
    .contact_wrapper{
        display: flex;
        flex-direction: column;
    }
    .contact_map{
        height: 400px;
    }
}
@media screen and (max-width: 740px) {
    .contact{
        padding-top: 0;
        padding-bottom: 62px;
    }
}
@media screen and (max-width: 550px) {
    .contact_info_h2{
        font-size: 36px;
        line-height: 110%;
    }
}
  
/* footer */
.footer{
    background-color: var(--black);
    display: flex;
    flex-direction: column;
}
.footer_top{
    display: grid;
    grid-template-columns:100px 1fr 100px;
    align-items: center;
    padding: 40px 15px;
    max-width: 1215px;
    width: 100%;
    margin: 0 auto;
}
.footer_top_center{
    display: flex;
    justify-content: center;
.banner_btn_order{
    box-shadow: none;
    background:rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}
.banner_btn_order:hover{
    box-shadow: none;
    background:rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}
}
.footer_top_center ul{
    display: flex;
    gap: 40px;
}
.footer_top_center ul li{
    list-style: none;
}
.footer_top_center ul li a{
    color: #fff;
    font-size: 14px;
}
.footer_top_right{
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}
.footer_top_right a{
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer_top_right a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer_bottom{
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 14px 15px;
}
.footer_bottom a,
.footer_bottom p{
    font-size: 14px;
    color: #7A7A7A;
}
@media (max-width: 870px) {
    .footer_top{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 64px;
    }
    .footer_top_center ul{
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 24px;
    }
}
@media (max-width: 460px) {
    .footer_top_center ul{
        flex-direction: column;
        row-gap: 20px;
        text-align: center;
    }
    .footer_bottom{
        flex-direction: column;
        gap: 25px;
        padding: 25px 15px;
    }
}