*,::after,::before{margin:0;padding:0;box-sizing:border-box}*{margin:0;padding:0}p{margin:0}dl,ol,ul{list-style:none;margin-top:0;margin-bottom:0}html:focus-within{scroll-behavior:smooth}a:not([class]){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto}a{text-decoration:none;color:#000}canvas,img,picture,svg,video{max-width:100%;height:auto}canvas,img,picture,svg,video{vertical-align:middle}canvas,img,picture,svg,video{font-style:italic}canvas,img,picture,svg,video{background-repeat:no-repeat;background-size:cover}button,input,select,textarea{font:inherit}body,html{scroll-behavior:smooth;overflow-x:hidden}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,::after,::before{animation-duration:NaNs!important;animation-iteration-count:1!important;transition-duration:NaNs!important;scroll-behavior:auto!important;transition:none}}
html{
    background-color: #F9F9F9;
}
.header{
    z-index: 99999;
}
.container{
    max-width: 1600px;
    margin: 0 auto;
}
h2{
    font-size: 50px;
    font-weight: 400;
}
.txt-blue{
    color:#BDD7FF;
}
section{
    margin: 0 10px
}
.mobile-scroll-ico{
    display: none;
}
.popup{
    z-index: 999999;
}
.bottom-right-container{
    position: fixed;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    right: 16px;
    transform: translateX(-50%);
    z-index: 99999;
    gap: 16px;
}
.btn-up, .messengers__ico{
    width: 91px;
    height: 91px;
    cursor: pointer;
    z-index: 99999;
    position: relative;
}
.btn-up{
    visibility: hidden;
    opacity: 0;
    transition: 0.2s all ease-in-out;
}
.btn-up-active{
    visibility: visible;
    opacity: 1;
}
.messengers{
    position: relative;
    width: fit-content;
}
.messengers__list{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-70%);
    background-color: #FFF;
    border-top-left-radius: 200px;
    border-top-right-radius:200px;
    padding: 16px 20px 61px;
    gap: 18px;
    z-index: 99998;
    display: none;
}
.messengers__list img{
    min-width: 42px;
    min-height: 42px;
    transition: 0.2s all ease-in-out;
}
.messenger:not(:last-child){
    margin-bottom: 18px;
}
.messengers__list img:hover{
    transform: scale(1.1);
}
.mobile-menu{
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background-color: #fff;
    z-index: 99999999;
    padding: 150px 32px;
    display: none;
}
.header__menu-list-mobile{
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-content: center;
}
.header__menu-list-mobile li{
    text-align: center;
}




.header{
    position: absolute;
    top: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 8px 0;
}
.header-active{
    position: fixed !important;
    top: 0;
    background-color: rgba(0, 0, 0, .7);
}
.header .container{
    display: flex;
    justify-content: space-between;
}
.header__left{
    display: flex;
    justify-content: space-between;
    max-width: 765px;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.header__logo, .footer__logo{
    max-width: 135px;
    max-height: 50px;
}
.burger{
    display: none;
    cursor: pointer;
}
.header__menu-list .header__menu-list{
    display: grid;
    grid-template-columns: repeat(3,min-content);
    max-width: 670px;
    height: 100%;
    grid-row-gap: 13px;
    grid-column-gap: 34px;
}
.header__menu-list .menu-item{
    font-size: 20px;
    white-space: nowrap;
}
.header__menu-list .menu-item a{
    color: white;
}
.header__right{
    display: flex;
    justify-content: right;
    max-width: 700px;
    align-content: center;
    flex-wrap: wrap;
    width: 100%;
}
.header__info, .footer__info{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header__info-top{
    position: relative;
    color: white;
}
.header__info-bottom{
    color: white;
}
.header__info-hours{
    margin-right: 123px;
}
.header__info-hours .header__info-top::before{
    content: "";
    width: 17px;
    height: 17px;
    background-image: url("../icons/hours.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateX(-100%) translateY(-50%);
    margin-left: -8px;
}
.header__info-phone .header__info-top::before{
    content: "";
    width: 18px;
    height: 19px;
    background-image: url("../icons/phone.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateX(-100%) translateY(-50%);
    margin-left: -8px;
}
.header__info-phone{
    margin-right: 36px;
}
.btn-cart{
    width: 44px;
    height: 44px;
    border: none;
    background-color: rgba(0, 0, 0, .4);
    border-radius: 8px;
    cursor: pointer;
}
.header .header__btn{
    padding: 20px 0;
    font-size: 14px;
    max-width: 240px;
}



.main-screen{
    margin-bottom: 60px;
}
.main-screen .container{
    padding: 264px 0 132px 0 ;
}
.main-screen{
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 60px;
}
.main-screen__title{
    color: white;
    font-size: 60px;
    margin-bottom: 30px;
    max-width: 850px;
    font-weight: 600;
}
.main-screen__title .txt-blue{
    font-size: 49px;
    font-weight: 400;
}
.main-screen__title .txt-blue img{
    margin-left: 17px;
}
.main-screen__subtitle{
    font-size: 26px;
    color: white;
    margin-bottom: 36px;
}
.btn{
    font-size: 23px;
    font-weight: 600;
    padding: 31px 0;
    border-radius: 20px;
    cursor: pointer;
    border: none;
    max-width: 390px;
    width: 100%;
    text-align: center;
}
.btn-blue{
    background: linear-gradient(90deg,rgba(42, 75, 125, 1) 0%, rgba(122, 158, 211, 1) 100%);
    color: white;
}
.btn-white{
    color:#152E54;
    background: linear-gradient(90deg,rgba(203, 209, 218, 1) 0%, rgba(232, 241, 255, 1) 100%);
}
.main-screen__btns{
    display: flex;
    gap: 28px;
    margin-bottom: 85px;
}
.main-screen__adv{
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 754px;

}
.advantage{
    display: flex;
    gap: 12px;
    align-content: center;
}
.advantage__left{
    color: #E6EFFC;
    font-size: 72px;
    font-weight: 600;
}
.advantage__right{
    color: #E8E8E8;
    font-size: 26px;
}
.advantage__right,.advantage__left{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.categories{
    margin-bottom: 151px;
}
.categories__list{
    display: flex;
    justify-content: space-between;
}
.categoty{
    padding: 21px 18px 18px;
    background: linear-gradient(180deg,rgba(62, 47, 32, .6) 0%, rgba(135, 91, 49, .6) 100%);
    display: grid;
    grid-template-columns: 1fr;
    color: white;
    border-radius: 20px;
    align-items: center;
    max-width: 273px;
    width: 100%;
    justify-items: center
}
.category__pic{
    max-height: 220px;
    margin-bottom: 20px;
}
.categoty__name{
    font-size: 22px;
    text-align: center;
    margin-bottom: 10px;
}
.categoty__more{
    display: flex;
    gap: 8px;
    align-items: center;
    color: white;
    align-self: flex-end;
    justify-self: end;
    cursor: pointer;
}



.advantages{
    margin-bottom: 150px;
}
.advantages__title{
    margin-bottom: 74px;

}
.advantages__title .txt-blue{
    font-weight: 500;
    color: #7A9ED3;
}
.advantages__list{
    display: flex;
    justify-content: space-between;
    gap: 18px;
}
.advantages__item{
    max-width: 384px;
    width: 100%;
    height: 343px;
    border-radius: 20px;
    border: 1px solid #191919;
    padding: 30px;
}
.advantages__number{
    font-size: 70px;
    margin-bottom: 20px;
}
.advantages__txt{
    font-size: 26px;
}


.partners{
    margin-bottom: 150px;
}
.partners__title{
    margin-bottom: 30px;
}
.partners__top{
    font-size: 26px;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
}
.swiper-wrapper{
    align-items: center;
}
.slider__btns{
    display: flex;
    gap: 20px;
}
.slider__next, .slider__prev{
    cursor: pointer;
}
.slider__next{
    transform: rotate(180deg);
}
.partners__slider{
    padding-bottom: 60px !important;
}
.partners__slider .swiper-pagination{
    bottom: 0 !important;
}
.swiper-pagination-bullet{
    background: #616161 !important; 
}
.swiper-pagination-bullet-active{
    background: black !important; 
}

.solutions{
    margin-bottom: 270px;
}
.solutions__top{
    display: flex;
    justify-content: space-between;
    margin-bottom: 46px;
}
.solutions__subtitle{
    font-size: 30px;
}
.solutions__list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 90px;
}
.solution__img{
    width: 468px;
    height: 468px;
    object-fit: contain;
    border-radius: 20px;
}
.solution__info{
    position: relative;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin: 0 auto;
    margin-top: -20px;
    max-width: 400px;
}
.solution__name{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    max-width: 246px;
}
.solution__arrow{
    position: absolute;
    top: 26px;
    right: 20px;
}


.reasons{
    margin-bottom: 150px;
}
.reasons__title{
    margin-bottom: 70px;
}
.reasons__list{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.reason{
    background-color: #F1F0EC;
    border-radius: 20px;
    border: 1px solid #AFAFAF;
    display: flex;
    flex-direction: column;
    padding: 17px 25px 0 28px; 
    max-width: 23%;
    height: 355px;
}
.reason__top{
    display: flex;
    justify-content: space-between;
}
.reason__name{
    font-weight: 600;
    font-size: 26px;
    margin-bottom: 14px;
    max-width: 272px;
}
.reason__txt{
    font-size: 22px;
}
.reason__icon{
    height: 113px;
}
.reason__number{
    font-size: 80px;
    color: #8C8C8B;
    position: relative;
}
.reason_check{
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
}


.series{
    margin-bottom: 150px;
}
.series__title{
    margin-bottom: 55px;
}
.series__list{
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
}
.product{
    padding: 0 30px 21px;
    background-color: #F1F0EC;
    display: flex;
    flex-direction: column;
    border: 1px solid #AFAFAF;
    border-radius: 20px;
    width: 500px;
}
.product__name{
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 12px;
}
.product__size{
    font-size: 20px;
    color:#616161;
    margin-bottom: 10px;
}
.product__desc{
    font-size: 22px;
    margin-bottom: 40px;
}
.product__buttons{
    display: flex;
    justify-content: space-between;
    gap: 16px;
}
.product__buttons .btn{
    font-size: 14px;
    padding: 20px 36px;
}
.product__price{
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    margin-top: auto;
}
.product__img{
    height: 414px;
    object-fit: contain;
    margin: 0 auto;
}


.inside{
    margin-bottom: 150px;
}
.inside__img{
    margin: 0 auto;
    display: block;
}
.inside__title{
    margin-bottom: 88px;
    text-align: center;
}
.inside__subtitle-mobile{
    display: none;
}
.inside__sheme{
    position: relative;

}
.inside__element{
    position: absolute;
    display: flex;
    align-items: center;
    padding: 44px 24px 16px 32px;
    cursor: pointer;
}
.inside__element img{
    display: none;
}
.inside__element-pic{
    width: 180px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}
.inside__element-arrow{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateX(100%);
}
.inside__element-active{
    border: 1px solid #AFAFAF;
    padding: 16px 24px 16px 32px;
    backdrop-filter: blur(5px);
    background-color: rgba(241, 240, 236, .2);
    border-radius:20px;
}
.inside__element-active img{
    display: block;
}
.inside__element-7, .inside__element-8, .inside__element-9, .inside__element-10, .inside__element-11, .inside__element-12{
    flex-direction: row-reverse;
}
.inside__element-name{
    max-width: 350px;
    font-size: 24px;
    width: fit-content;
}
.inside__element-1{
    top: 0;
    left: 24px;
}
.inside__element-arrow-1{
    top: 65%;
    right: 16px;
}
.inside__element-2{
    top: 125px;
    left: 0;
}
.inside__element-arrow-2{
    top: 65%;
}
.inside__element-3{
    top: 250px;
    left: 0;
}
.inside__element-arrow-3{
    top: 65%;
}
.inside__element-4{
    top: 375px;
    left: 0;
}
.inside__element-arrow-4{
    top: 65%;
    width: 272px;
    height: 273px;
}
.inside__element-5{
    top: 500px;
    left: 0;
}
.inside__element-arrow-5{
    top: 86%;
    right: 114px;
}
.inside__element-6{
    top: 650px;
    left: 24px;
}
.inside__element-arrow-6{
    top: 0;
    transform: translateY(-100%);
    right: 90px;
}
.inside__element-7{
    top: 0px;
    right: 24px;
}
.inside__element-arrow-7{
    top: 19%;
    transform: translateX(-100%);
    left: 0;
}
.inside__element-8{
    top: 150px;
    right: 0;
}
.inside__element-arrow-8{
    top: 50%;
    transform: translateX(-100%);
    left: 0;
    width: 125px;
}
.inside__element-9{
    top: 275px;
    right: 0;
}
.inside__element-arrow-9{
    top: 50%;
    transform: translateX(-100%);
    left: 0;
    width: 100px;
}
.inside__element-10{
    top: 400px;
    right: 0;
}
.inside__element-arrow-10{
    top: 60%;
    transform: translateX(-100%) translateY(-100%);
    left: 0;
    height: 264px;
    width: 136px;
}
.inside__element-11{
    top: 550px;
    right: 24px;
}
 .inside__element-name .inside__element-exit{
    display: none;
}
.inside__element-arrow-11{
    top: 90%;
    transform: translateX(-100%) translateY(-100%);
    left: 0;
}
.inside__ico{
    display: none;
}
.inside__element-12{
    top: 625px;
    right: 24px;
}
.inside__element-arrow-12{
    top: 50%;
    transform: translateX(-100%) translateY(-100%);
    left: 0;
}

.int{
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 40px;
    padding: 80px 0 140px;
    margin-bottom: 150px;
}
.int__title{
    color:white;
    margin-bottom: 70px;
}
.int__list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 790px;
}
.int__item{
    display: flex;
    flex-direction: column;
    background-color: #F1F0EC;
    border-radius: 20px;
    padding: 20px;
    border: 1px solid #AFAFAF;
}   
.int__icon{
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
}
.int__name{
    margin-bottom: 15px;
    font-size: 23px;
    font-weight: 600;
}
.int__txt{
    font-size: 20px;
}




.install{
    margin-bottom: 107px;
}
.install .container .install__top{
    display: flex;
    gap: 150px;
    justify-content: space-between;
}
.install__title{
    margin-bottom: 24px;
}
.install__subtitle{
    font-size: 30px;
    margin-bottom: 30px;
}
.install__txt{
    font-size: 26px;
    margin-bottom: 30px;
}
.install__top-right{
    background-color: #F1F0EC;
    border: 1px solid #AFAFAF;
    border-radius: 20px;
    padding: 40px;
    height: 452px;
}
.install__pics{
    display: flex;
    justify-content: space-between;
    margin-top: 36px;
}
.install__top{
    margin-bottom: 50px;
}
.install__bottom{
    display: flex;
    justify-content: space-between;
}
.stage{
    display: flex;
    flex-direction: column;
    gap: 27px;
    align-items: center;
    justify-content: center;
}
.stage__name{
    color: #8C8C8B;
    font-size: 30px;
}
.stage__number{
    font-size: 60px;
}



.expert{
    margin-bottom: 250px;
}
.expert__title{
    margin-bottom: 30px;
}
.expert__top{
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}
.expert__subtitle{
    font-size: 30px;
    margin-bottom: 30px;
}
.expert__txt{
    font-size: 26px;
}
.expert__top-left{
    max-width: 50%;
}
.expert__txt{
    font-size: 26px;
}
.fact{
    background-color: #F1F0EC;
    border-radius: 20px;
    border: 1px solid #AFAFAF;
    display: flex;
    gap: 30px;
    align-items: center;
    width: 100%;
    height: 170px;
    padding: 28px 0 30px 25px;
}
.fact__info{
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 450px;
}
.fact__name{
    font-weight: 600;
    font-size: 22px;
}
.expert__top-right{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}
.expert__mid{
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
    grid-template-columns: 1fr 1fr;
}
.expert__mid img, .expert__bottom img{
    max-height: 525px;
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.news-window{
    background-color: #F1F0EC;
    border-radius: 20px;
    border: 1px solid #AFAFAF;
    max-width: 463px;
    display: flex;
    flex-direction: column;
    gap: 19px;
    padding: 91px 56px 20px 20px;
    align-self: end;
}
.news-window__txt{
    font-size: 26px;
}
.news-window__btn{
    padding: 32px 0;
    font-size: 22px;
    background: linear-gradient(180deg,rgba(203, 209, 218, 1) 0%, rgba(232, 241, 255, 1) 40%, rgba(203, 209, 218, 1) 100%);
    text-align: center;
}
.expert__bottom{
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr 1fr 2fr;
}


.gallary__title{
    margin-bottom: 70px;
    text-align: center;
}
.gallary__tabs{
    max-width: 90%;
    background-color: #F1F0EC;
    border: 1px solid #AFAFAF;
    border-radius: 20px;
    display: grid;
    margin-bottom: 70px;
    grid-template-columns: 210px 1fr 1fr 1fr 1fr;
    margin-left:auto ;
    margin-right: auto;
}
.gallary__tab{
    padding: 31px 0;
    font-size: 26px;
    text-align: center;
    transition: .2s;
    cursor: pointer;
}
.gallary__tabs-mobile{
    display: none;
}
.gallary__tab-active{
    background-color: #BFBFBE;
}
.gallary__tab:hover{
    background-color: #BFBFBE;
}
.gallary__tab:not(:last-child){
    border-right: 1px solid #AFAFAF;
}
.gallary__container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.gallary_pic{
    width: 100%;
    height: 433px;
    object-fit: cover;
    border-radius: 20px;
}
.hidden{
    display: none !important;
}
.gallary{
    margin-bottom: 150px;
}



.reviews{
    margin-bottom: 176px;
    background-color: #F1F0EC;
    border-radius: 20px;
    border: 1px solid #AFAFAF;
    padding: 55px 0;
}
.reviews .news-window__btn{
    display: block;
    max-width: 387px;
}
.reviews .container{
    display: flex;
    gap: 45px;
}
.reviews__left{
    min-width: 540px;
}
.reviews__title{
    padding-bottom: 44px;
    margin-bottom: 32px;
    border-bottom: 1px solid #888888;
}
.reviews__subtitle{
    font-size: 30px;
    margin-bottom: 25px;
}
.reviews__right{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}
.review{
    border-radius: 20px;
    padding: 30px 30px 61px 30px;
    border: 1px solid #888888;
}
.bg-white{
    background-color: rgba(255, 255, 255, .6);
}
.review__name, .review__prof{
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 10px;
}
.review__prof{
    margin-bottom: 22px;
}
.review__txt{
    font-size: 22px;
}




.get-call{
    margin-bottom: 217px;
}
.get-call .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 27px;
}
.get-call__title{
    margin-bottom: 26px;
}
.get-call__subtitle{
    font-size: 30px;
    margin-bottom: 26px;
}
.get-call__stages{
    padding: 25px;
    border: 1px solid #AFAFAF;
    background-color: rgba(241, 240, 236, .2);
    border-radius: 20px;
}
.get-call__txt{
    font-size: 30px;
    margin-bottom: 12px;
}
.get-call__stage{
    display: flex;
    gap: 12px;
}
.get-call__stage__num{
    position: relative;
    font-size: 41px;
    color: #8C8C8B;
}
.get-call__stage_txt{
    font-size: 22px;
}
.get-call__stage_check{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-50%);
    width: 21px;
}
.get-call__stage__icon{
    object-fit: scale-down;
    width: 70px;
}
.get-call__right{
    border-radius: 20px;
    background-color: #F1F0EC;
    border: 1px solid #AFAFAF;
    padding: 57px 65px 30px;
}
.get-call__right .wpcf7-form-control-wrap{
    width: 100%;
    display: block;
}
.form_input{
    font-size: 26px;
    padding: 45px 50px;
    background-color: white;
    border-radius: 7px;
    border: none;
    margin-bottom: 0;
    width: 100%;
}
.wpcf7-not-valid-tip{
    position: absolute;
}
.form_select option{
    font-size: 16px;
}
.form_select option:first-child{
    display: none;
}
.form_submit{
    width: 100%;
    font-size: 30px;
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(90deg,rgba(42, 75, 125, 1) 0%, rgba(122, 158, 211, 1) 100%);
    color: white;
    border-radius: 34px;
}
.wpcf7-acceptance{
    display: block;
    margin: 0 auto;
    font-size: 18px;
    color: #141E28;
    text-align: left;
    width: fit-content;
}
.wpcf7-acceptance .wpcf7-list-item-label{
    max-width: 485px;
    display: inline-block;
}
.wpcf7-acceptance label{
    display: flex;
    align-items: center;
    gap: 16px;
}
.wpcf7-acceptance input{
    min-width: 20px;
    min-height: 20px;
}

.contacts{
    margin-bottom: 30px;
}
.contacts__title{
    margin-bottom: 70px;
}
.adress__city{
    color: #767676;
    font-size: 27px;
    margin-bottom: 18px;
}
.adress__street{
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 22px;
}
.contacts__adress{
    margin-bottom: 70px;
}
.map{
    border-radius: 20px;
    overflow: hidden;
}


.footer{
    background-color: #F1F0EC;
    border: 1px solid #AFAFAF;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 80px 0;
}
.footer__top{
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 57px;
}
.footer__top-left{
    display: flex;
    gap: 60px;
    align-items: center;
}
footer .header__menu-list .menu-item a{
    color: #191919;
}
.footer__top-right{
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.footer__info {
    height: fit-content;
    justify-content: center;
}
.footer__info-top{
    position: relative;
}
.footer__info-bottom{
    font-size: 18px;
    font-weight: 500;
}
.footer__info-mail .footer__info-top::before ,.footer__info-hours .footer__info-top::before , .footer__info-phone .footer__info-top::before{
    content: "";
    width: 17px;
    height: 17px;
    background-image: url("../icons/mail_blue.svg");
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateX(-100%) translateY(-50%);
    margin-left: -8px;
}
.footer__info-hours .footer__info-top::before{
    background-image: url("../icons/mdi_clock_blue.svg");
}
.footer__info-phone .footer__info-top::before{
    background-image: url("../icons/phone_blue.svg");
}
.footer__bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__social{
    display: flex;
    gap: 30px;
}
.footer__docs{
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    font-size: 18px;
}
.footer__org-name, .footer__info-phone a{
    font-size: 18px;
}




.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, .4);
    display: none;
}
.popup__container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background-color: #FFFFFF;
    padding: 37px 52px;
    max-width: 444px;
    width: 100%;
}
.popup__txt{
    text-align: center;
    font-size: 22px;
    margin-bottom: 10px;
}
.popup .form_input{
    background-color: #EAEAEA;
    padding: 30px 24px;
    font-size: 16px;
    color: #717171;
    margin-bottom: 10px;
}
.popup .form_submit{
    padding: 27px 0;
    font-size: 20px;
    border-radius: 17px;
    margin-top: 30px;
}
.popup .wpcf7-acceptance .wpcf7-list-item-label{
    color: #717171;
    font-size: 14px;
}
.popup__exit{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    cursor: pointer;
}

/* Блог */
.post-content{
    margin-top: 240px;
}
.post-page .header__menu-list .menu-item a, .post-page .header__info-top , .post-page .header__info-bottom{
    color: rgba(25, 25, 25, 1);
}
.post-page .header__info-phone .header__info-top::before ,.post-page .header__info-hours .header__info-top::before{
    filter: brightness(0.5);
}
@media(max-width: 1600px){

    .header__logo, .footer__logo {
        max-width: 100px;
        max-height: 38px;
    }
    .header .header__btn {
        padding: 11px 0;
        font-size: 12px;
        max-width: 240px;
        border-radius: 8px;
    }
    .reason {
        height: 260px;
        padding: 17px 16px 0 16px;
    }
    h2 {
        font-size: 28px;
    }
    .btn {
        font-size: 16px;
        padding: 18px 0;
        border-radius: 10px;
        max-width: 247px;
    }
    .container{
        max-width: 1000px;
    }
    section{ 
        margin: 0px 2px;
    }
    .inside__element-name{
        font-size: 15px;
    }
    .inside__element{
        padding: 44px 10px 16px 10px;
    }
    .inside__element-active{
        padding: 16px 10px 16px 10px;
    }   
    .inside__element-pic {
        width: 140px;
    }
    .inside__element-name {
        max-width: 220px;
    }
    .header__menu-list .menu-item {
        font-size: 12px;
    }
    .header__menu-list .header__menu-list {
        grid-column-gap: 16px;
    }
    .header__info{
        font-size: 12px;
    }
    .header__info-hours {
        margin-right: 32px;
    }
    .header .header__btn {
        max-width: 160px;
    }
    
    .main-screen {
        border-radius: 30px;
    }
    .main-screen__title {
        font-size: 35px;
        max-width: 700px;
    }
    .main-screen__title .txt-blue {
        font-size: 26px;
    }
    .main-screen__subtitle {
        font-size: 18px;
        margin-bottom: 73px;
    }
    .main-screen__title .txt-blue img{
        max-width: 94px;
    }
    .main-screen__btns {
        margin-bottom: 62px;
    }
    .main-screen .container {
        padding: 152px 0 200px 0;
    }
    .categoty {
        padding: 16px 10px 10px;
        max-width: 185px;
    }
    .advantages__title {
        margin-bottom: 40px;
    }
    .categoty__name {
        font-size: 18px;
    }
    .category__pic {
        max-height: 140px;
    }
    .advantages__number {
        font-size: 46px;
    }
    .advantages__txt {
        font-size: 20px;
    }
    .advantages__item {
        height: 230px;
    }
    .advantages {
        margin-bottom: 100px;
    }
    .partners__top {
        font-size: 20px;
        margin-bottom: 60px;
    }
    .solutions__subtitle {
        font-size: 22px;
    }
    .solutions__list {
        gap: 40px;
    }
    .solution__img {
        width: 300px;
        height: 300px;
    }
    .solution__info {
        padding: 12px;
        margin: 0 auto;
        margin-top: -44px;
        max-width: 260px;
    }
    .solution__arrow {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    .solution__name {
        font-size: 18px;
        max-width: 190px;
    }
    .solution__txt{
        font-size: 14px;
    }
    .solutions {
        margin-bottom: 125px;
    }
    .reason__icon {
        height: 80px;
    }
    .reasons__list{
        gap: 16px;
    }
    .reason__number {
    font-size: 60px;
    }
    .reason_check {
        width: 24px;
    }
    .reason__name {
        font-size: 18px;
        max-width: 180px;
    }
    .reason__txt {
        font-size: 14px;
    }
    .series__list {
        gap: 30px;
    }
    .product {
        width: 310px;
        padding: 0 20px 21px;
    }
    .product__img {
        height: 240px;
    }
    .product__name {
        font-size: 28px;
    }
    .product__size {
        font-size: 16px;
    }
    .product__desc {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .product__price {
        font-size: 22px;
        margin-bottom: 14px;
    }
    .product__buttons .btn {
        font-size: 12px;
        padding: 12px 0;
        border-radius: 8px;
        max-width: 151px;
    }
    .int__name {
        font-size: 20px;
    }

    .int__txt {
        font-size: 16px;
    }
    .int__icon {
        margin-bottom: 16px;
    }
    .int {
        padding: 65px 0 65px;
    }
    .int__name {
        margin-bottom: 8px;
    }
    .int__item {
        padding: 12px;
        max-width: 350px;
    }
    .int__list {
        gap: 20px;
        max-width: 730px;
    }
    .int__icon {
        width: 34px;
        height: 34px;
        margin-bottom: 12px;
    }
    .install__subtitle {
        font-size: 22px;
    }
    .install__txt {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .install__pics img{
        max-height: 100px;
    }
    .install__top-right {
        padding: 30px;
        height: 330px;
    }
    .inside__img{
        max-height: 650px;
    }

    .inside__element-1, .inside__element-6 {
        left: -76px;
    }
    .inside__element-2, .inside__element-3, .inside__element-4 , .inside__element-5 {
        left: -110px;
    }
    .inside__element-7 {
        top: -50px;
        right: -76px;
    }
    .inside__element-8 {
        top: 85px;
    }
    .inside__element-9 {
        top: 200px;
    }
    .inside__element-arrow-10 {
        height: 217px;
        width: 173px;
    }
    .inside__element-8, .inside__element-9, .inside__element-10{
        right: -110px;
    }
    .inside__element-10 {
        top: 276px;
    }
    .inside__element-11{
        top: 440px;
        right: -76px;
    }
    .inside__element-arrow-11 {
        width: 114px;
        height: 63px;
    }
    .inside__element-arrow-12{
        width: 300px;
        height: 330px;
    }
    .inside__element-1 {
        top: -33px;
    }
    .inside__element-arrow-2 {
        top: 100%;
        right: 20%;
    }
    .inside__element-2 {
        top: 73px;
    }
    .inside__element-3 {
        top: 180px;
    }
    .inside__element-4 {
        top: 286px;
    }
    .inside__element-arrow-4 {
        height: 160px;
    }
    .inside__element-5 {
        top: 386px;
    }
    .inside__element-arrow-5 {
        top: 86%;
        right: 19px;
        height: 33px;
    }
    .inside__element-6 {
        top: 523px;
    }
    .inside__element-arrow-6 {
        top: 0;
        transform: translateY(-100%);
        right: 24px;
    }
    .int__title {
        margin-bottom: 32px;
    }
    .stage__number {
        font-size: 40px;
    }
    .stage__name {
        font-size: 20px;
    }
    .stage img{
        max-width: 240px;
    }
    .expert__subtitle {
        font-size: 22px;
        margin-bottom: 24px;
    }
    .expert__txt {
        font-size: 18px;
    }
    .expert__mid img, .expert__bottom img {
        max-height: 300px;
    }
    .fact {
        height: 120px;
        padding: 12px 0 12px 16px;
    }
    .fact__name {
        font-size: 18px;
    }
    .fact__info {
        gap: 10px;
        max-width: 372px;
    }
    .fact img{
        max-height: 100px;
    }
    .expert__top-right {
        gap: 14px;
    }
    .news-window__txt {
        font-size: 16px;
    }
    .news-window__btn {
        padding: 14px 0;
        border-radius: 8px;
        font-size: 16px;
        text-align: center;
    }
    .news-window {
        padding: 39px 20px 20px 20px;
        align-self: end;
    }
    .expert {
        margin-bottom: 125px;
    }
    .gallary__tab {
        padding: 20px 0;
        font-size: 18px;
    }
    
    .gallary_pic {
        height: 270px;
    }
    .gallary__container {
        gap: 12px;
    }
    .reviews__left {
        min-width: 285px;
    }
    .reviews__subtitle {
        font-size: 24px;
    }
   .reviews .news-window__btn {
        max-width: 260px;
    }
    .review {
        border-radius: 10px;
        padding: 20px 20px 30px 20px;
        border: 1px solid #888888;
    }
    .review__name, .review__prof {
        font-size: 18px;
    }
    .review__txt {
        font-size: 14px;
    }
    .get-call__title {
        max-width: 386px;
    }
    .get-call__subtitle {
        font-size: 20px;
        max-width: 365px;
    }
    .get-call__right{
        padding: 30px;
    }
    .map {
        max-height: 470px;
        border-radius: 10px;
        overflow: hidden;
    }
    .get-call__txt {
        font-size: 20px;
    }
    .get-call__stage_txt {
        font-size: 16px;
    }
    .get-call__stage__num {
        font-size: 34px;
    }
    .get-call__stage_check {
        width: 16px;
    }
    .form_input {
        font-size: 20px;
        padding: 30px 30px;
    }
    .form_submit {
        width: 100%;
        font-size: 24px;
        padding: 29px 0;
    }
    .wpcf7-acceptance .wpcf7-list-item-label {
        font-size: 14px;
    }
    .get-call {
        margin-bottom: 125px;
    }
    .contacts__title {
        margin-bottom: 44px;
    }
    .adress__city {
        font-size: 22px;
        margin-bottom: 12px;
    }
    .adress__street {
        font-size: 26px;
    }
    .footer__top-left {
        gap: 30px;
    }
    .footer__info-bottom {
        font-size: 12px;
    }
    .footer__org-name, .footer__info-phone a {
        font-size: 12px;
    }
    .footer {
        padding: 60px 0;
    }
    .footer__docs {
        gap: 6px;
        font-size: 12px;
    }
    .footer__social {
        gap: 10px;
    }
    .footer__info {
        font-size: 12px;
    }
    .footer__social img{
        max-width: 28px;
    }
    .btn-up, .messengers__ico{
        width: 60px;
        height: 60px;
    }
    .footer__top {
        margin-bottom: 24px;
    }
    .messengers__list img {
        min-width: 30px;
        min-height: 30px;
    }
    .messengers__list {
        padding: 16px 8px 61px;
    }
    .advantage__left{
        font-size: 50px;
    }
    .advantage__right {
        color: #E8E8E8;
        font-size: 16px;
    }
    .advantage__icon{
        max-width: 45px;
    }
    .main-screen__adv{
        max-width: 630px;
    }
    .popup__txt{
        font-size: 20px;
    }
    .popup .form_input{
        padding: 22px 24px;
    }
    .popup .form_submit {
        padding: 18px 0;
        font-size: 18px;
        border-radius: 10px;
        margin-top: 16px;
    }
    .wpcf7-acceptance .wpcf7-list-item-label {
        max-width: 270px;
    }
}

@media(max-width: 1000px){
    .inside__subtitle-mobile{
        display: block;
    }
    .mobile-scroll-ico{
        display: block;
    }
    h2 {
        font-size: 26px;
    }
    .container{
        max-width: 800px;
    }
    .header__menu{
        display: none;

    }
    .burger{
        display: block;
        margin-left: 32px;
    }
    .header__left{
        width: fit-content;
    }
    .header__right{
        max-width: 100%;
    }
    .header__info{
        display: none;
    }
    .categories__list {
        justify-content: space-between;
        flex-wrap: wrap;
        justify-content: center;
        gap: 76px;
    }
    .advantages__number {
        font-size: 30px;
    }
    .advantages__list {
        gap: 8px;
    }
    .advantages__item {
        max-width: 195px;
        height: 210px;
        border-radius: 20px;
        padding: 10px;
    }
    .advantages__title {
        margin-bottom: 44px;
    }
    .advantages__txt {
        font-size: 18px;
    }
    section{
        margin-bottom: 100px !important;
    }
    .reasons__title, .series__title{
        display: flex;
        justify-content: space-between;
    }
    .reasons__list {
        display: grid;
        gap: 12px;
        grid-template-columns: repeat(8, 290px);        
        overflow-x: scroll;
        margin-right: -200px;
        padding-right: 200px;
    }
    .reason {
        max-width: 290px;
    }
    .series__list{
        display: grid;
        grid-template-columns: repeat(6, 374px);
        overflow-x: scroll;
        margin-right: -200px;
        padding-right: 200px;
    }
    .product__img {
        height: 325px;
    }
    .inside__title{
        margin-bottom: 16px;
    }
    .inside__subtitle-mobile{
        display: block;
        margin: 0 auto;
        text-align: center;
        max-width: 290px;
        margin-bottom: 21px;
    }
    .install .container .install__top {
        gap: 32px;
        flex-direction: column;
    }
    .install__title br{
        display: none;
    }
    .install__pics{
        justify-content: space-around;
    }
    .install .mobile-scroll-ico{
        justify-self: end;
    }
    .install__bottom{
        display: grid;
        gap: 12px;
        grid-template-columns: repeat(4, 280px);        
        overflow-x: scroll;
        margin-right: -200px;
        padding-right: 200px;
    }
    .news-window__txt {
        font-size: 16px;
    }
    .news-window__btn{
        font-size: 16px;
        padding: 12px 0;
        border-radius: 8px;
    }
    .fact img {
        max-height: 65px;
    }
    .gallary__tabs {
        grid-template-columns: 140px 1fr 1fr 1fr 1fr;
    }
    .gallary__tab {
        font-size: 16px;
    }
    .gallary__container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .reviews__left {
        min-width: 260px;
    }
    .reviews__subtitle {
        font-size: 20px;
    }
    .review {
        border-radius: 20px;
        padding: 16px 16px 16px 16px;
    }
    .review__txt {
        font-size: 14px;
    }
    .get-call__subtitle {
        font-size: 20px;
    }
    .get-call__right {
        border-radius: 20px;
        background-color: #F1F0EC;
        border: 1px solid #AFAFAF;
        padding: 20px 20px 20px;
    }
    .int .mobile-scroll-ico{
        display: none;
    }
    .inside__ico{
        display: block;
        position: absolute;
        cursor: pointer;
        width: 48px;
        height: 48px;
    }
    .inside__ico-1{
        left: 46%;
        top: 12%;
    }
    .inside__ico-2{
        left: 16%;
        top: 50%;
    }
    .inside__ico-3{
        left: 44%;
        top: 55%;
    }
    .inside__ico-4{
        left: 50%;
        top: 81%;
    }
    .inside__ico-5{
        left: 16%;
        top: 76%;
    }
    .inside__ico-6{
        left: 33%;
        top: 32%;
    }
    .inside__ico-7{
        left: 17%;
        top: 11%;
    }
    .inside__ico-8{
        left: 77%;
        top: 27%;
    }
    .inside__ico-9{
        left: 82%;
        top: 37%;
    }
    .inside__element{
        position: fixed;
        top: 0;
        left: 0;
        border: none;
        width: 100vw;   
        height: 100vh;
        justify-content: center;
        align-items:center;
    }
    .inside__element-pic{
        display: none;
    }
    .inside__element-name{
        display: block;
        padding: 16px 80px 16px 21px;
        font-size: 16px;
        background-color: #FFFFFF;
        border-radius: 10px;
        max-width: 360px;
        position: relative;
    }
    .inside__element{
        display: none;
    }
    .inside__element-active{
        display: flex;
    }
    .inside__element-active img {
        display: none;
    }
    .inside__element-name .inside__element-exit{
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        width: 20px;
    }
}
@media(max-width:800px){
    section {
        margin: 0px 10px;
    }
    .main-screen .container {
        padding: 36px 10px 462px 10px;
    }
    .header{
        position: initial;
        margin: 0 10px;
        transform: translateX(0);
        width: initial;
        padding-bottom: 30px;
    }
    .header__logo{
        max-width: 84px;
    }
    .header .header__btn {
        padding: 12px 0;
        font-size: 10px;
        border-radius: 8px;
    }
    .header-active{
        width: 100%;
        left: 0;
        margin: 0;
        padding-left: 10px;
        padding-right: 10px;
        background-color:#fff;
    }
    .main-screen-active{
        margin-top: 76px;
    }
    .main-screen{
        border-radius:20px;
    }
    .main-screen__title{
        font-size: 24px;
        margin-bottom: 10px;
    }
    .main-screen__title .txt-blue {
        font-size: 18px;
        margin-bottom: 14px;
    }
    .main-screen__title .txt-blue img{
        max-width: 70px;
    }
    .main-screen__subtitle {
        font-size: 14px;
        max-width: 295px;
    }
    .btn {
        font-size: 10px;
        padding: 13px 0;
        border-radius: 8px;
    }
    .advantage__left {
        font-size: 32px;
        font-weight: 600;
    }
    .advantage__right {
        font-size: 12px;
    }
    .advantage__left img{
        max-width: 28px;
    }
    .main-screen__adv {
        gap: 16px;
    }
    .main-screen{
        background-image: url("../img/main-mobile.png") !important;
    }
    .categories__list {
        justify-content: left;
        gap: 12px;
    }
    .category__pic {
        max-height: 91px;
    }
    .categoty__name {
        font-size: 9px;
    }
    .categoty__more{
        font-size: 7px;
    }
    .categoty__more img{
        width: 13px;
        height: 13px;
    }
    .categoty {
        padding: 16px 10px 10px;
        max-width: 113px;
        border-radius: 8px;
    }
    h2 {
        font-size: 24px;
    }
    .advantages__list{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .slider__btns{
        display: none;
    }
    .solutions__top{
        flex-direction: column;
        gap: 8px;
    }
    .solutions__subtitle {
        font-size: 18px;
    }
    .solutions__subtitle br{
        display: none;
    }
    .solutions__list{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .solution__img {
        max-width: 100%;
        max-height: 100%;
        height: 100%;
        width: 100%;
    }
    .solution__name {
        font-size: 10px;
        max-width: 100%;
    }
    .solution__txt{
        font-size: 8px;
    }
    .solution__info {
        padding: 7px;
        border-radius:9px;
    }
    .solution__arrow {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 14px;
    }
    .reason__icon {
        height: 74px;
    }
    .reason__number {
        font-size: 52px;
    }
    .reason__name {
        font-size: 18px;
    }
    .reason__txt {
        font-size: 14px;
    }
    .reason {
        max-width: 248px;
        height: 233px;
    }
    .reasons__list{
        gap: 0;
    }
    .product {
        width: 217px;
    }
    .product__img {
        height: 180px;
    }
    .product__name {
        font-size: 18px;
        margin-bottom: 5px;
    }
    .product__size {
        font-size: 9px;
        margin-bottom: 5px;
    }
    .product__desc {
        font-size: 10px;
        margin-bottom: 17px;
    }
    .product__price {
        font-size: 13px;
        margin-bottom: 8px;
    }
    .product{
        border-radius:8px;
        padding: 0 11px 21px;
    }
    .series__list {
        grid-template-columns: repeat(6, 217px);
    }
    .product__buttons .btn{
        font-size: 6px;
        max-width: 92px;
    }
    .series-eco .series__list{
        grid-template-columns: repeat(3, 217px);
    }
    .inside__ico {
        width: 30px;
        height: 30px;
    }
    .int{
        background-image: url("../img/int-bg-mobile.png") !important;
        border-radius: 20px;
        position: relative;
        height: 527px;
        margin-bottom: 250px !important;
        padding: 21px 0 65px;
    }
    .int__list{
        display: grid;
        grid-template-columns: repeat(6, 221px);
        gap: 13px;
        overflow-x: scroll;
        margin-right: -200px;
        padding-right: 200px;
        position: absolute;
        bottom: 0;
        transform: translateY(140%);
    }
    .int__name{
        font-size: 13px;
        margin-bottom: 8px;
    }
    .int .mobile-scroll-ico{
        display: block;
        position: absolute;
        bottom: -36px;
        right: 0;

    }
    .int .container{
        padding: 0 10px;
    }
    .int__title .txt-blue br{
        display: none;
    }
    .int__txt {
        font-size: 11px;
    }
    .int__icon {
        width: 24px;
        height: 24px;
        margin-bottom: 14px;
    }
    .int__item {
        padding: 12px;
    }
    .install__subtitle {
        font-size: 20px;
        margin-bottom: 20px;
    }
    .install__txt {
        font-size: 16px;
        margin-bottom: 14px;
    }
    .install__top-right .install__txt{
        font-size: 14px;
    }
    .install__pics img {
        max-height: 67px;
    }
    .install__top-right {
        padding: 10px;
        height: 213px;
    }
    .expert__title {
        margin-bottom: 18px;
    }
    .expert__top{
        flex-direction: column;
    }
    .expert__top-left {
        max-width: 100%;
    }
    .expert__subtitle {
        font-size: 18px;
        margin-bottom: 18px;
    }
    .expert__txt {
        font-size: 14px;
    }
    .fact__name {
        font-size: 14px;
    }
    .fact__txt{
        font-size: 12px;
    }
    .expert__mid {
        display: grid;
        gap: 10px;
        margin-bottom: 20px;
        grid-template-columns: 1fr;
    }
    .expert__bottom{
        position: relative;
    }
    .news-window {
        max-width: 224px;
        padding: 44px 27px 10px 10px;
        align-self: end;
        position: absolute;
        bottom: 0;
        right: 0;
        transform: translateY(110%);
        gap: 0;
    }
    .news-window .news-window__btn{
        font-size: 11px;
        padding: 14px 0;
    }
    .expert__bottom {
        gap: 5px;
        grid-template-columns: 1fr 2fr;
    }
    .expert__mid img, .expert__bottom img {
        border-radius: 8px;
    }
    .expert{
        margin-bottom: 250px !important;
    }
    .news-window__txt {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .gallary__tabs{
        display: none;
    }
    .gallary__tabs-mobile{
        display: block;
        position: relative;
        margin-bottom: 32px;
    }
    .gallary__select{
        background-color: #F1F0EC;
        border-radius: 14px;
        padding: 20px 0;
        text-align: center;
        border: 1px solid #AFAFAF;
        position: relative;
        cursor: pointer;
    }
    .gallary__select img{
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        width: 17px;
    }
    .gallary__tabs-mobile .tabs__list{
        max-width: 80%;
        width: 100%;
        margin: 0 auto;
        background-color: #F1F0EC;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
        position: absolute;
        bottom:0;
        left: 50%;
        transform: translateX(-50%) translateY(100%);
        display: none;
         
    }
    .gallary__tabs-mobilel .gallary__tab:not(:last-child){
        border-bottom: 1px solid #AFAFAF;
    }
    .reviews .container{
        flex-direction: column;
        padding: 0 10px;
    }
    .reviews__title {
        padding-bottom: 24px;
        margin-bottom: 32px;
    }
    .reviews__subtitle {
        font-size: 18px;
    }
    .reviews .news-window__btn{
        max-width: 240px;
        font-size: 14px;
    }
    .btn {
        font-size: 14px;
        padding: 20px 0;
    }
    .review__name{
        font-size: 14px;
        margin-bottom: 2px;
    }
    .review__prof {
        font-size: 12px;
        margin-bottom: 4px;
    }
    .review__txt{
        font-size: 9px;
    }
    .get-call .container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 27px;
    }
    .get-call__subtitle {
        font-size: 18px;
    }
    .form_submit {
        width: 100%;
        font-size: 15px;
        padding: 20px 0;
        border-radius: 17px;
    }
    .form_input {
        font-size: 14px;
        padding: 28px 30px;
    }
    .adress__city {
        font-size: 18px;
    }
    .adress__street {
        font-size: 24px;
    }
    .map{
        max-height: 369px;
    }
    .footer__top{
        flex-direction: column;
        align-items: center;
        gap: 34px
    }
    .footer__top-right{
        flex-direction: column;
        align-items: center;
        gap: 34px;
    }
    .footer__bottom{
        flex-direction: column-reverse;
        align-items: center;
        gap: 34px
    }
    .footer__social{
        display: none;
    }
    .main-screen__btns .btn{
        font-size: 10px;
    }
}
