@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
    font-family: 'Monster Black';
    src: url('../font/Montserrat-Black.woff2') format('woff2'),
    url('../font/Montserrat-Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improves performance by showing fallback text first */
}
@font-face {
    font-family: 'Monster Semibold';
    src: url('../font/Montserrat-SemiBold.woff2') format('woff2'),
    url('../font/Montserrat-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap; /* Improves performance by showing fallback text first */
}



*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
img{
    max-width: 100%;
}
.container{
    padding: 0 15px;
}


body{
    font-family: Inter, sans-serif;
    font-size: 16px;
    color: #332C2B;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased
}
.head{
    background: #332C2B;
    padding: 15px 0;
    position: relative;
    z-index: 1;
}
.head__container{
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
}
.head__logo{
    max-width: 160px;
    width: 100%;
    display: block;
    text-decoration: none;
}
.head__img{}
.head__right{
    display: flex;
    align-items: center;
    gap: 15px;
}
.head__menu{
    position: fixed;
    top: -100vh;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-height: calc(100vh - 94px);
    overflow-y: auto;
    text-align: center;
    background: #332C2B;
    padding: 15px 0;
    gap: 10px;
    border-top: 2px solid #fff;
    z-index: 100;
    transition: top .5s;
}
.head__menu.show{
    top: 94px;
}
span.head__link:hover{
    text-decoration: none;
}
.head__link{
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}
.head__sub{
    display: none;
}
.head__sub.show{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 10px;
    justify-content: center;
}
.head__sub-link{
    color: #ffffff;
    width: 49%;
    padding: 7px 5px;
    border: 1px solid #fff;
    text-decoration: none;
}
.head__langs{
    background: #fff;
    height: 25px;
    width: 50px;
    padding: 0 5px;
    cursor: pointer;
}
.head__lang{}
.head__mobile-btn{
    width: 30px;
    height: 22px;
    position: relative;
    border-bottom: 2px solid #fff;
    cursor: pointer;
}
.head__mobile-btn:before, .head__mobile-btn:after{
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
    background: #ffffff;
}
.head__mobile-btn:before{
    top: 0px;
}
.head__mobile-btn:after{
    top: 10px;
}
.head__{

}
.head__sub-link.js-request-btn{
    cursor: pointer;
}
.head--arr{
    background: url("../img/menu-arr.svg") center no-repeat;
    width: 20px;
    height: 16px;
    position: relative;
    top: 3px;
    display: inline-block;
    margin-left: 5px;
    transition: .5s;
    cursor: pointer;
}
.head__item{
    display: block;
    width: 100%;
}
.head__item.active .head--arr{
    transform: rotateZ(180deg);
}

.main{
    padding: 30px 0;
}
.main__bg{
    width: 100%;
    display: block;
}
.main__container{
    /*padding: 0 15px;*/
}
.main__title{
    font-family: 'Monster Black', sans-serif;
    font-size: 21px;
    margin-bottom: 15px;
    /*letter-spacing: 3px;*/
}
.monster{
    font-family: 'Monster Semibold', sans-serif;
}
.main__description{
    font-family: 'Monster Semibold', sans-serif;
    font-size: 18px;
    margin-bottom: 30px;
}
.main__description+.main__list{
    padding-top: 0;
}
.main__section{
    border-top: 1px solid #ccc;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main__section:last-child{
    padding-bottom: 0;
}
.main__subtitle{
    font-family: 'Monster Black', sans-serif;
    font-size: 20px;
    /*text-align: center;*/
    margin-bottom: 15px;
}
.main__left{}
.main__img{
    max-width: 300px;
    display: block;
    margin: 0 auto 30px;
    border-radius: 15px;
}
.main__right{}
.main__info{
    /*text-align: justify;*/
    /*margin-bottom: 15px;*/
    line-height: 160%;
    margin-bottom: 20px;
}
.main__info:last-child{
    margin-bottom: 0;
}
.main__info+.main__list{
    padding-top: 0;
}
.main__info.bold{
    font-weight: bold;
}
.main__list{
    list-style-type: none;
    padding-top: 15px;
    line-height: 160%;
}
.main__list+.main__info{
    margin-top: 30px;
}
.main__item{
    position: relative;
    margin-bottom: 5px;
    padding-left: 15px;
}
.main__item:last-child{
    margin-bottom: 0;
}
.main__item:before{
    content: '';
    position: absolute;
    top: 10px;
    left: 5px;
    width: 4px;
    height: 4px;
    border-radius: 5px;
    background: #000;
}
.main__cta{
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.main__btn{
    background: #332C2B;
    color: #ffffff;
    padding: 10px 10px;
    border-radius: 7px;
    text-align: center;
    text-decoration: none;
    display: block;
    border: 1px solid transparent;
    transition: .3s;
}

/*.main__*/


.foot{
    background: #332C2B;
    padding: 30px 0;
}
.foot__container{
    /*padding: 0 15px;*/
}
.foot__top{
    border-bottom: 1px solid #CFD8E0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
}
.foot__logo{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}
.foot__img{
    max-width: 160px;
}
.foot__logo-descr{
    color: #fff;
    margin-bottom: 15px;
}
.foot__nav{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.foot__link{
    width: 49%;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 0;
    text-align: center;
}
.foot__link:hover{
    text-decoration: underline;
}
.foot__bottom{
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 0 0;
}
.foot__copy{
    color: #fff;
}
.foot__policy{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.foot__policy-link{
    color: #ffffff;
    text-decoration: none;
}
.foot__policy-link:hover{
    text-decoration: underline;
}
.foot__mail{
    color: #ffffff;
    text-decoration: none;
}
.foot__mail:hover{
    text-decoration: underline;
}
/*.foot__*/

.about{

}
.about__title{
    font-family: 'Monster Black', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
}
.about__subtitle{}
.about__img{
    margin: 0 0 20px;
    display: block;
    max-width: 300px;
    border-radius: 15px;
}
.about__total{
    font-size: 25px;
}
/*.about__*/
.about .main__subtitle{
    margin-bottom: 25px;
    font-size: 24px;
}

.bold{
    font-weight: bold;
}

.key{

}
.key__list, .key__sys{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 30px;
}
.key__item{
    background: #332C2B;
    border-radius: 10px;
    color: #ffffff;
    font-family: 'Monster Black', sans-serif;
    font-size: 17px;
    padding: 15px;
}
.no-border{
    border: none;
    padding-top: 0!important;
}
.main__info.bold{

}
.monster_b{
    font-family: 'Monster Black', sans-serif;
}
.monster_s{
    font-family: 'Monster Semibold', sans-serif;
}
.tech{

}
.tech__section{
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    border-bottom: 1px solid #cccccc;
}
.tech__section:last-child{
    border: none;
}
.tech__title{
    font-family: 'Monster Black', sans-serif;
    font-size: 25px;
    margin-bottom: 30px;
}
.tech__subtitle{
    font-family: 'Monster Semibold', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
}
.tech__section:nth-child(1) .tech__left, .tech__section:nth-child(3) .tech__left {
    order: 2;
}
.tech__img{
    max-width: 345px;
    width: 100%;
    display: block;
    margin: auto;
    border-radius: 15px;
}
.tech__info{
    margin-bottom: 15px;
    line-height: 1.7;
}
.tech__info2{
    margin-bottom: 0;
}
.tech__info.bold{
    font-weight: bold;
    margin-bottom: 0;
}
.tech__list{
    margin-bottom: 20px;
}
.tech__sys{
    padding: 30px 0;
    border-bottom: 1px solid #cccccc;
}
.tech__total{
    font-size: 25px;
    text-transform: uppercase;
}
.key__right .tech__list{
    margin-bottom: 0;
}

.products{

}
.products__section{}
.products__list{
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 35px;
}
.products__col{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.products__description{
    text-align: center;
    font-size: 17px;
    width: 100%;
}
.products__box:hover{
    background: slategrey;
}
.products__box{
    border: 1px solid #E0E0E0;
    width: 46%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 1px 1px 1px 1px #E0E0E0;
    border-radius: 15px;
    padding: 15px 30px;
    color: #000;
    text-decoration: none;
    transition: .5s;
}
.products__box:hover .products__name, .products__box:hover .products__category{
    color: #fff;
}
.products__name{
    font-family: 'Monster Black', sans-serif;
    margin-bottom: 5px;
    font-size: 20px;
    transition: .5s;
}
.products__category{
    font-family: Inter, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 18px;
    transition: .5s;
}
.products__img{}
.products__info{
    margin-bottom: 15px;
}
.products__cons{}
.products__subtitle{
    border-top: 1px solid #CFD8E0;
    padding-top: 20px;
    font-family: 'Monster Black', sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.products__faq-text{
    font-family: 'Monster Semibold', sans-serif;
    font-size: 17px;
}
/*.products__*/


.product{
    padding: 30px 0;
}
.product__container{

}
.product__title{
    font-family: 'Monster Black', sans-serif;
    font-size: 25px;
    margin-bottom: 10px;
}
.product__desc{
    font-size: 16px;
    margin-bottom: 20px;
}
.product__box{}
.product__slider{}
.product__info{}
.product__help{
    font-family: 'Monster Black', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}
.product__help-description{
    margin-bottom: 10px;
}
.product__why{
    font-size: 19px;
    font-family: "Montserrat", sans-serif;
    font-weight: 800;
    margin-bottom: 10px;
}
.product__list{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}
.product__item:before{
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}
.product__item{
    position: relative;
    padding-left: 15px;
}
.product__advantage{
    font-weight: bold;
    margin-bottom: 3px;
}
.product__detail{}
/*.product__*/

.slider{
    position: relative;
    margin-bottom: 30px;
}
.slider__slides{
    list-style: none;
    margin: 0 auto 30px;
    padding: 0;
    position: relative;
    min-height: 180px;
}
.slider__slide{
    display: none;
    margin: 0;
    padding: 0;
}
.slider__slide--active{
    display: block;
}
.slider__img{
    max-width: 180px;
    margin: 0 auto;
    display: block;
    max-height: 453px;
}
.slider__pagination{
    display: flex;
    justify-content: center;
    gap: 12px;
}
.slider__pagination-img{
    cursor: pointer;
    opacity: 0.4;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 4px;
    transition: opacity 0.25s ease, border-color 0.25s ease;
}
.slider__pagination-img--active{
    opacity: 1;
    border-color: #332C2B;
}
.slider__pagination-picture{
    max-height: 80px;
    display: block;
}
.slider__arrows{
    position: absolute;
    top: 220px;
    left: 0;
    width: 100%;
}
.slider__arrow{
    position: absolute;
    top: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.slider__arrow:hover{
    background-color: #eee;
}
.slider__arrow-left{
    background: url("../img/sl-arr.svg") center no-repeat #F8F8F8;
    background-size: 30px;
    left: 0;
    transform: scaleX(-1);
}
.slider__arrow-right{
    background: url("../img/sl-arr.svg") center no-repeat #F8F8F8;
    background-size: 30px;
    right: 0;
}

.table{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}
.table__title{
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
.table__col{
    background: #F8F8F8;
    border-radius: 15px;
    padding: 20px;
    border: 1px solid #ccc;
}
.table__list{
    list-style-type: none;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.table__item:before{
    content: '';
    position: absolute;
    top: 6px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #333;
    border-radius: 50%;
}
.table__item{
    position: relative;
    padding-left: 20px;
}

.knew{}
.knew__title{
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.knew__description{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 15px;
}

.benefit{
    padding: 30px 0;
}
.benefit__list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.benefit__item:nth-child(1){
    background: url("../img/d1.svg") 0 center  no-repeat;
    background-size: 30px;
}
.benefit__item:nth-child(2){
    background: url("../img/d2.svg") 0 center  no-repeat;
    background-size: 30px;
}
.benefit__item:nth-child(3){
    background: url("../img/d3.svg") 0 center  no-repeat;
    background-size: 30px;
}

.benefit__item{
    padding-left: 50px;
    position: relative;
}
.benefit__item:before{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
}
.benefit__item:last-child:before{
    content: none;
}
.benefit__title{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 17px;
}
.benefit__sub-title{
    font-weight: bold;
    font-size: 15px;
}

.standard{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.standard__title{
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 10px;
}
.standard__col{}
.standard__info{}

.dosage{
    /*padding: 30px 0;*/
}
.dosage__col{}
.dosage__title{
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 10px;
}
.dosage__info{
    margin-bottom: 10px;
}
.dosage__reg{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
}
.dosage__img{}

.banner{
    background: rgba(51, 44, 43, 0.03);
    padding: 30px 0;
}
.banner__img{
    display: block;
    margin: 0 auto 15px;
}
.banner__title{
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 20px;
    margin-bottom: 10px;
}
.banner__info{}

.faq{
    padding: 30px 0;
}
.faq__title{
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 25px;
    margin-bottom: 20px;
}
.faq__subtitle{
    font-family: "Monster Semibold", sans-serif;
    font-size: 17px;
    margin-bottom: 35px;
}
.faq__section{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq__sec{
    padding: 30px 0;
}
.faq__sec:nth-child(even){
    background: #f2f1f1;
}
.faq__sec:last-child .faq__theme{
    margin-bottom: 20px;
}
.faq__theme{
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 23px;
}
.faq__accord{
    cursor: pointer;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
    padding-right: 50px;
    border-bottom: 1px solid #332C2B;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.faq__accord:last-child{
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
    /*margin-bottom: 40px;*/
}
.faq__question{
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: bold;
    min-height: 46px;
    align-items: center;
    display: flex;

}
.faq__answer{
    display: none;
    margin-top: 15px;
}
.faq__btn{
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    background: #000;
    border-radius: 50%;
    /*position: relative;*/
}
.faq__btn:before, .faq__btn:after{
    width: 22px;
    height: 2px;
    border-radius: 5px;
    background: #fff;
    position: absolute;
    top: 17px;
    left: 7px;
    transition: .5s;
    content: '';
}
.faq__accord.active .faq__answer{
    display: block;
}
.faq__accord .faq__btn:before{
    transform: rotateZ(90deg);
}
.faq__accord.active .faq__btn:before{
    transform: rotateZ(0deg);
}
/*.faq__*/
.cat{
    padding-bottom: 0;
}

.partners{
    padding: 30px 0;}
.partners__subtitle{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin-bottom: 30px;
}
.partners__box{}
.partners__section{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.partners__img{
    border-radius: 15px;
}
.partners__list{
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 18px;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-transform: uppercase;
}
.partners__list.market{
    padding-left: 0;
    gap: 15px;
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}
.partners__list.market .partners__item:nth-child(1){
    background: url("../img/p1.svg") 0 center no-repeat;
    -webkit-background-size: 60px;
    background-size: 60px;
}
.partners__list.market .partners__item:nth-child(2){
    background: url("../img/p2.svg") 7px center no-repeat;
    background-size: 50px;
}
.partners__list.market .partners__item:nth-child(3){
    background: url("../img/p3.svg") 0 center no-repeat;
    -webkit-background-size: 60px;
    background-size: 60px;
}

.partners__list.market .partners__item{
    display: flex;
    justify-content: space-between;
    padding: 15px 0 15px 80px;
    font-size: 17px;
    min-height: 75px;
    align-items: center;
}
.partners__item{

}
.partners__icon{
    height: 87px;

}
.partners__description{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    text-transform: none;
}
.partners__left{}
.partners__btn{
    margin: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;

}
.partners__form-section{
    margin-top: 50px;
    scroll-margin-top: 100px;
}
.partners__form-section .partner-modal__subtitle{
    margin-bottom: 25px;
}
.partners__form.contact__form .partner-modal__set{
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.partners__form.contact__form .partner-modal__set:before{
    content: '';
}
/*.partners__*/


.partner-modal.show{
    display: flex;
}
.partner-modal{
    display: none;
    background: rgba(0,0,0,.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 50px 30px;
    overflow: auto;
    z-index: 2;
}
.partner-modal__container{
    padding: 15px;
    background: #ffffff;
    border-radius: 15px;
    position: relative;
    margin: auto;
}
.partner-modal__close-btn{
    width: 40px;
    height: 40px;
    position: absolute;
    top: -40px;
    right: -40px;
    background: #fff;
    border-radius: 10px;
    cursor: pointer;
}
.partner-modal__close-btn:before, .partner-modal__close-btn:after{
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    width: 1px;
    height: 100%;
    background: #000;
}
.partner-modal__close-btn:after{
    transform: rotateZ(45deg);
}
.partner-modal__close-btn:before{
    transform: rotateZ(-45deg);
}
.partner-modal__title{
    margin-bottom: 5px!important;
}
.partner-modal__subtitle{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
.partner-modal__form{}
.partner-modal__set{
    /*border-bottom: 1px solid #CFD8E0;*/
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.partner-modal__set:before{
    content: '';
    position: absolute;
    bottom: 0;
    left: -15px;
    width: calc(100% + 30px);
    background: #CFD8E0;
    height: 2px;
}
.partner-modal__label{
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 10px;
}
.partner-modal__label:last-child{
    margin-bottom: 0;
}
.partner-modal__field-name{
    font-size: 14px;

}
.partner-modal__field{
    padding: 12px 12px 12px 35px;
    font-size: 15px;
    border: none;
    box-shadow: inset 0 2px 9px #CFD8E0;
    border-radius: 12px;
    background-color: #fff!important;
}
.partner-modal__area{
    padding: 12px 12px 12px 35px;
    height: 120px;
    resize: none;
    border: none;
    box-shadow: inset 0 2px 9px #CFD8E0;
    border-radius: 12px;
    background-color: #fff!important;
}
.partner-modal__checkbox{
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}
.partner-modal__checkbox-description{
    font-size: 15px;
}
.partner-modal__btn{
    width: 100%;
    font-size: 18px;
}

.partner-modal__label.checkbox{
    display: flex;flex-direction: row;
    align-items: center;
    gap: 15px;
}

.partner-modal__field.user{
    background: url("../img/user.svg") 10px center no-repeat;
    background-size: 15px;
}
.partner-modal__field.phone{
    background: url("../img/ph.svg") 10px center no-repeat;
    background-size: 15px;
}
.partner-modal__field.mail{
    background: url("../img/mai.svg") 10px center no-repeat;
    background-size: 15px;
}
.partner-modal__field.cn{
    background: url("../img/com.svg") 10px center no-repeat;
    background-size: 15px;
}
.partner-modal__field.tob{
    background: url("../img/tob.svg") 10px center no-repeat;
    background-size: 15px;
}
.partner-modal__field.web{
    background: url("../img/web.svg") 10px center no-repeat;
    background-size: 15px;
}
.partner-modal__field.address{
    background: url("../img/address.svg") 10px center no-repeat;
    background-size: 12px;
}
.partner-modal__field.city{
    background: url("../img/city.svg") 10px center no-repeat;
    background-size: 15px;
}
.partner-modal__field.zipcode{
    background: url("../img/zipcode.svg") 10px center no-repeat;
    background-size: 15px;
}
.partner-modal__area{
    background: url("../img/message.svg") 10px 14px no-repeat;
    background-size: 15px;
}

.contact{}
.contact__box{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px
}
.contact__info{
    
}
.contact__title{}
.contact__sec{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.contact__text{
    font-size: 16px;
}
.contact__form .partner-modal__set{
    margin-bottom: 10px;
    padding-bottom: 0;
}
.contact__form .partner-modal__set:before{
    content: none;
}
.contact__form{
    background: #F8F8F8;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 15px;
}
/*.contact__*/

.partner-modal__form +.partner-modal__set{

}
.contact .partner-modal__label{
    /*width: 50%;*/
    width: 100%;
}

.privacy{}
.privacy__title{
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-size: 25px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.privacy__info a{
    color: #000;
}
.privacy__info a:hover{
    text-decoration: none;
}
.privacy__info:last-child{
    margin-bottom: 0;
}
.privacy__info{
    margin-bottom: 25px;
    line-height: 1.6;
}
.privacy__subtitle{
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}
.privacy__subtitle1{
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.privacy__list{
    padding-left: 20px;
    margin-bottom: 35px;
}
.privacy__item:last-child{
    margin-bottom: 0;
}
.privacy__item{
    margin-bottom: 15px;
    line-height: 1.6;
}


@media screen and (min-width: 375px){
    .key__item{
        /*font-size: 20px;*/
    }
    .about .main__title{
        font-size: 33px;
    }
    .about .main__subtitle{
        font-size: 27px;
    }
}
@media screen and (min-width: 768px) and (max-width: 1439px){
    .head__menu{
        gap: 15px;
    }
    .head__sub.show{
        position: static;
        width: auto;
        background: #332C2B;
    }
}
@media screen and (min-width: 768px){
    .head__menu{
        align-items: center;
    }
    .foot__img, .head__logo{
        max-width: 191px;
        width: 100%;
    }
    .main__block{
        display: flex;
        flex-direction: row;
        gap: 40px;
        /*padding-left: 50px;*/
        /*padding-right: 50px;*/

    }
    .main__container{
        max-width: 740px;
        margin: auto;
        text-align: left;
    }
    .main__title{
        font-size: 40px;
    }
    .main__description{
        font-size: 25px;
    }
    .main__cta{
        display: flex;
        flex-direction: row;
    }
    .main__btn{
        min-width: 250px;
    }
    .main__subtitle{
        text-align: left;
        font-size: 30px;
        margin-bottom: 30px;
    }
    .main__img{
        margin-bottom: 0;
    }
    .foot__policy{
        flex-direction: row;
    }
    .foot__nav{
        gap: 30px;
    }
    .foot__link{
        width: auto;
    }

    .about .main__section:nth-child(1),.about .main__section:nth-child(2), .about .main__section:nth-child(7){
        display: flex;
        flex-direction: row;
        gap: 40px;
    }
    .about__left{
        width: 300px;
        flex-shrink: 0;
    }
    .key__sys{
        display: flex;
        flex-direction: row;
        gap: 50px;
    }
    .key__left{
        width: 300px;
        flex-shrink: 0;
    }
    .about .main__subtitle{
        font-size: 35px;
    }
    .about .main__description{
        font-size: 23px;
    }
    .about__img{
        margin-bottom: 0;
    }
    .tech__section{
        flex-direction: row;
    }
    .tech__section:nth-child(1) .tech__right, .tech__section:nth-child(3) .tech__right{
        order: 2;
    }
    .tech__section:nth-child(1) .tech__right, .tech__section:nth-child(2) .tech__left, .tech__section:nth-child(3) .tech__right{
        flex-shrink: 0;
    }
    .tech__section:last-child{
        flex-direction: column;
    }
    .products__list{
        flex-direction: row;
        flex-wrap: wrap;
        gap: 25px;
    }
    .products__col{
        width: 48%;
    }
    .banner .container{
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .standard{
        flex-direction: row;
    }
    .dosage{
        flex-direction: row;
        display: flex;
    }
    .benefit__list{
        flex-direction: row;
    }
    .benefit__item:before {
        bottom: 0;
        left: auto;
        right: -10px;
        height: 100%;
        width: 1px;
    }
    .table{
        flex-direction: row;
        margin-bottom: 40px;
    }
    .table__col{
        flex-basis: 50%;
    }
    .product__box{
        display: flex;
        gap: 30px;
    }
    .slider {
        width: 300px;
        flex-shrink: 0;
    }
    .product__title{
        font-size: 40px;
    }
    .product__desc{
        font-size: 18px;
    }
    .product__help,.knew__title{
        font-size: 23px;
    }
    .product__why{
        font-size: 21px;
    }
    .knew__description{
        font-size: 19px;
    }
    .standard__col{
        flex-basis: 50%;
    }
    .product__help-description{

    }
    .knew__title, .knew__description{
        margin-bottom: 30px;
    }
    .dosage{
        /*display: flex;*/
        gap: 50px;
    }
    .partners__subtitle{
        font-size: 18px;
    }
    .partners__section{
        flex-direction: row;
        align-items: center;
    }
    .partners__img{
        width: 50%;
    }
    .partners__list{
        font-size: 21px;
    }
    .key__item{
        font-size: 20px;
    }
    .partners__list.market{
        flex-direction: row;
    }
    .partners__description{
        font-size: 16px;
    }
    .partners__list.market .partners__item{
        padding-left: 65px;
    }
    .partners__list.market .partners__item:nth-child(2){
        background-size: 40px;
    }
    .partners__list.market .partners__item:nth-child(3), .partners__list.market .partners__item:nth-child(1){
        background-size: 50px;
    }
    .partners__box:last-child{
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
    }
    #partner-form .partner-modal__form .partner-modal__set:nth-child(1) .partner-modal__label{
        width: 48%;
    }
    #partner-form .partner-modal__form .partner-modal__set:nth-child(2) .partner-modal__label{
        width: 31%;
    }
    #partner-form .partner-modal__form .partner-modal__set:nth-child(3) .partner-modal__label{
        width: 100%;
    }
    #partner-form .partner-modal__form .partner-modal__set:nth-child(5) .partner-modal__label{
        width: 100%;
    }
    .partners__form-section{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    .contact__form .partner-modal__set{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .contact .partner-modal__label{
        width: 48%;
    }
    .contact__box{
        flex-direction: row;
    }
    .partner-modal__area{
        /*width: 100%;*/
    }
    .contact .partner-modal__label:last-child{
        width: 100%;
    }
    .partner-modal .partner-modal__set:first-child{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
    .partner-modal .partner-modal__set:first-child .partner-modal__label{
        width: 49%;
    }
    .partner-modal .partner-modal__set:nth-child(2) .partner-modal__label, .partner-modal .partner-modal__set:nth-child(4) .partner-modal__label{
        width: 32%;
    }

    .partner-modal .partner-modal__set:nth-child(2), .partner-modal .partner-modal__set:nth-child(4){
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        width: 100%;
    }
}

@media screen and (min-width: 1024px){
    .about .main__container, .tech .main__container, .products .main__container{
        max-width: 960px;
    }
    .key__item{
        font-size: 23px;
    }
    .tech .key__left{
        width: 540px;
    }
    .products__list{
        gap: 0;
        justify-content: space-between;
    }
    .products__col{
        width: 18%;
        gap: 20px;
    }
    .products__box{
        width: 100%;
    }
    .products__description{
        min-height: 100px;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .products__info{
        font-size: 18px;
        line-height: 27px;
        margin-bottom: 35px;
    }
    .products__subtitle{
        font-size: 30px;
    }
    .products__faq-text{
        font-size: 22px;
    }
    .benefit__list{
        justify-content: space-around;
    }
    .benefit__item:before{
        right: -60px;
    }
    .benefit{
        padding: 50px 0;
    }
    .standard{
        margin-bottom: 50px;
    }
    .partners__subtitle{

        font-size: 25px;
    }
    .partner-modal__set:nth-child(1), .partner-modal__set:nth-child(2), .partner-modal__set:nth-child(4){
        display: flex;
        justify-content: space-between;
    }
    .partner-modal .partner-modal__set:nth-child(1) .partner-modal__label{
        width: 23.5%;
    }
    .partner-modal .partner-modal__set:nth-child(2) .partner-modal__label, .partner-modal__set:nth-child(4) .partner-modal__label{
        width: 32%;
    }
    .partner-modal__set:before{
        content: none;
    }
    .partner-modal__set{
        padding-bottom: 5px;
        margin-bottom: 5px;
    }
    .partner-modal__container{
        max-width: 900px;
        margin: auto;
    }
    .contact__text{
        font-size: 18px;
    }
    .contact__form{
        max-width: 620px;
        width: 100%;
        padding: 35px;
        border-radius: 35px;
    }
    .contact__info{
        max-width: 525px;
        width: 100%;
    }
}
@media screen and (min-width: 1440px){
    .about .main__container{
        max-width: 1280px;
    }
    .about .main__title{
        font-size: 64px;
    }
    .about .key__sys+.main__subtitle{
        font-size: 45px;
    }
    .about .main__container>.main__subtitle{
        margin-bottom: 70px;
    }
    .about .main__subtitle{
        font-size: 55px;
    }
    .about .key__left{
        width: 660px;
    }
    .about__left{
        width: auto;
    }
    .about__img{
        max-width: 440px;
    }
    .about .main__section:nth-child(1), .about .main__section:nth-child(2), .about .main__section:nth-child(7){
        gap: 70px;
    }
    .about .main__section:nth-child(1), .about .main__section:nth-child(7){
        align-items: center;
    }
    .about .main__section:nth-child(2) .main__description{
        font-size: 25px;
        max-width: 500px;
    }
    .about .key__right .main__description{
        margin-bottom: 30px;
    }
    .mobile-menu{
        display: none !important;
    }
    .head__item{
        display: block;
        position: relative;
        width: auto;
    }
    .head__sub{
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        min-width: 220px;
        background: #ffffff;
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0;
        padding: 12px 0;
        box-shadow: 0 8px 24px rgba(51, 44, 43, 0.12);
        z-index: 20;
    }
    .head__item:has(.head--arr:hover) .head__sub,
    .head__item:has(.head__sub:hover) .head__sub{
        display: flex;
    }
    .head__item:has(.head--arr:hover) .head--arr,
    .head__item:has(.head__sub:hover) .head--arr{
        transform: rotateZ(180deg);
    }
    .desktop-menu{
        display: flex;
    }
    .container{
        max-width: 1310px;
        margin: auto;
    }
    .products .main__container, .tech .main__container{
        max-width: 1310px;
    }
    .head__mobile-btn{
        display: none;
    }
    .head{
        overflow: visible;
    }
    .head__menu{
        display: flex;
        flex-direction: row;
        z-index: 1;
        position: static;
        top: 0;
        left: 0;
        right: auto;
        width: auto;
        max-height: none;
        overflow: visible;
        border-top: none;
        gap: 20px;
    }
    .partners__form.contact__form{
        max-width: 960px;
    }
    .partners__form-section{
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    #partner-form .partner-modal__set:nth-child(2) .partner-modal__label{
        width: 31.5%;
    }
    .partner-modal__set:nth-child(3) .partner-modal__label, .partner-modal__set:nth-child(5) .partner-modal__label{
        width: 100%;
    }
    .partner-modal__set:before{
        left: 0;
        width: 100%;
        content: none!important;
    }
    .partners__form.contact__form .partner-modal__set{
        margin-bottom: 10px;
        padding-bottom: 0px;
        border: none;
    }
    .partner-modal__btn{
        margin-top: 25px;
    }
    .head__right{
        gap: 50px;
    }
    .head__sub-link{
        width: 100%;
        color: #332C2B;
        border: none;
        padding: 10px 20px;
        text-align: left;
        text-transform: none;
    }
    .head__sub-link:hover{
        background: #f5f3f2;
        text-decoration: none;
    }
    .head__link{
        text-transform: none;
    }
    .head__link:hover{
        text-decoration: underline;
    }
    .head__link.active .head--arr{
        transform: rotateZ(180deg);
    }
    .head__sub.show{
        background: #ffffff;
    }
    .head__sub::before{
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -10px;
        height: 10px;
    }
    .main{
        padding: 100px 0;
    }
    .main__title{
        font-size: 64px;
        margin-bottom: 50px;
        line-height: 70px;
        /*letter-spacing: 4px;*/
    }
    .main__description{
        font-size: 25px;
        margin-bottom: 70px;
    }
    .main__subtitle{
        font-size: 50px;
        margin-bottom: 60px;
    }
    .main__section{
        padding: 70px 0;
    }
    .main__block{
        max-width: 100%;
        gap: 50px;
        align-items: center;
    }
    .main__img{
        max-width: 350px;
    }
    .main__list{
        padding-top: 30px;
        font-size: 18px;
    }
    .main__item:before{
        top: 11px;
        width: 5px;
        height: 5px;
        left: 3px;
    }
    .main__sections, .main__cta{
        max-width: 1280px;
        margin: auto;
        justify-content: center;
    }
    .main__info{
        font-size: 18px;
        padding-right: 20px;
        text-align: justify;
    }
    .main__btn{
        padding: 16px 10px;
        font-size: 20px;
        max-width: 380px;
        width: 100%;
    }
    .main__btn:hover{
        background: #fff;
        color: #332C2B;
        border-color: #332C2B;
    }
    .main__block .main__cta{
        justify-content: flex-start;
    }

    .main__cta{
        padding-top: 40px;
        gap: 40px;
    }
    .tech__title{
        font-size: 50px;
    }
    .tech__section:first-child{
        padding-top: 40px;
    }
    .tech__section{
        padding: 120px 0;
        gap: 90px;
        align-items: flex-start;
    }
    .tech__section:last-child{
        padding-bottom: 0;
    }
    .tech__img{
        max-width: 475px;
    }
    .tech__subtitle{
        font-size: 25px;
        margin-bottom: 40px;
    }
    .tech__info{
        font-size: 18px;
        margin-bottom: 35px;
        text-align: justify;
    }
    .tech__info2{
        margin-bottom: 0;
    }
    .tech__list{
        padding-top: 20px;
        max-width: 600px;
    }
    .tech__list .main__item{
        padding-left: 25px;
        margin-left: 13px;
        margin-bottom: 3px;
    }
    .tech .key__left .main__subtitle{
        margin-bottom: 50px;
    }
    .tech .key__left{
        width: 600px;
    }
    .tech .key__right{
        background: #332c2b;
        color: #fff;
        padding: 20px 40px;
        border-radius: 15px;
    }
    .key__right{
        width: 540px;
    }
    .key__right .tech__info{
        font-size: 23px;
        margin-bottom: 30px;
    }
    .key__right .tech__list{
        padding-top: 0;
    }
    .tech__list.fz25 .main__item{
        font-size: 18px;
        margin-left: 0;
    }
    .tech .key__right .main__item:before{
        background: #ffffff;
    }

    .tech__sys{
        justify-content: space-between;
    }
    .tech__total{
        font-size: 50px;
        line-height: 57px;
    }
    .tech__section .main__btn{
        margin: auto;
    }
    .foot{
        padding: 60px 0 90px;
    }
    .foot__top{
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    .foot__nav {
        /*gap: 30px;*/
        width: 600px;
        justify-content: flex-start;
        padding-top: 11px;
        gap: 25px;
    }
    .foot__logo{
        align-items: flex-start;
        width: 330px;
    }
    .foot__logo-descr{
        font-size: 18px;
        max-width: 350px;
        text-align: left;
    }
    .foot__link {
        width: 207px;
        font-size: 18px;
        text-align: left;
    }
    .foot__policy-link{
        position: relative;
    }
    .foot__policy-link:nth-child(2){
        left: -13px;
    }
    .foot__policy-link:nth-child(3){
        left: -28px;
    }

    .foot__bottom{
        flex-direction: row;
        justify-content: space-between;
        padding-top: 68px;
    }
    .foot__policy {
        position: relative;
        gap: 80px;
        margin-left: -150px;
    }
    .head__langs{
        width: 70px;
        height: 35px;
        font-size: 18px;
        /*margin-top: 10px;*/
    }

    .key .main__subtitle{
        margin-bottom: 70px;
    }
    .key__list{
        margin-bottom: 125px;
    }
    .key__sys{
        /*padding-bottom: 70px;*/
        padding: 90px 0;
    }

    .products__subtitle{
        font-size: 35px;
        padding-top: 85px;
        line-height: 43px;
        margin-bottom: 50px;
    }
    .products__faq-text{
        font-size: 25px;
    }
    .products__description{
        min-height: 1px;
    }
    .products__col{
        gap:30px;
    }
    .product{
        padding: 67px 0 140px;
    }
    .products__name{
        font-size: 27px;
    }
    .product__desc {
        font-size: 27px;
        text-align: center;
        margin: 0 auto 90px;
        line-height: 33px;
    }
    .products__box{
        padding: 22px 30px;
    }
    .products__name{
        margin-bottom: -1px;
    }
    .products__section{
        padding-top: 17px;
        padding-bottom: 60px;
    }
    .product__title {
        font-size: 70px;
        text-align: center;
        margin-bottom: 20px;
    }
    .products__list{
        margin-bottom: 65px;
    }
    .slider{
        width: 415px;
    }
    .slider__slides{
        min-height: 320px;
    }
    .slider__img{
        max-width: 100%;
    }
    .slider__arrows{
        top: 270px;
    }
    .slider__arrow-right{
        right: 20px;
    }
    .slider__arrow-left{
        left: 20px;
    }
    .slider__pagination-picture{
        max-height: 92px;
    }
    .product__info{
        padding-top: 10px;
    }
    .product__help{
        font-size: 35px;
        line-height: 37px;
        margin-bottom: 20px;

    }
    .product__help-description{
        font-size: 18px;
        margin-bottom: 58px;
        line-height: 28px;
    }
    .product__why {
        font-size: 27px;
        margin-bottom: 33px;
    }
    .product__list{
        font-size: 18px;
        gap: 23px;
        max-width: 715px;

    }
    .product__item{
        padding-left: 43px;
    }
    .product__item:before{
        top: 4px;
        width: 13px;
        height: 13px;
    }
    .product__advantage{
        margin-bottom: 5px;
    }
    .product__detail{
        line-height: 27px;
    }
    .product__box{
        margin-bottom: 50px;
    }
    .table{
        margin-bottom: 85px;
    }
    .table__col{
        padding: 30px 55px;
        border-radius: 40px;
    }
    .table__item{
        font-size: 18px;
        line-height: 29px;
        padding-left: 17px;
    }
    .table__item:before{
        top: 12px;
        width: 6px;
        height: 6px;
    }
    .table__title{
        margin-bottom: 20px;
    }
    .table__list{
        gap: 1px;
    }
    .knew__title{
        line-height: 42px;
        font-size: 35px;
        margin-bottom: 50px;
        text-align: justify;
    }
    .knew__description{
        font-size: 25px;
        margin-bottom: 70px;
        text-align: justify;
    }
    .knew .main__btn{
        margin: 0 auto 103px;
        padding: 16px 10px;
    }
    .benefit{
        border-top: 1px solid #E0E0E0;
        padding: 87px 0;
    }
    .benefit__title{
        font-size: 25px;
    }
    .benefit__sub-title{
        font-size: 18px;
    }
    .benefit__list{
        justify-content: space-between;
        padding: 0 5px;
    }
    .benefit__item:nth-child(1){
        -webkit-background-size: 42px;
        background-size: 42px;
        width: 318px;

    }
    .benefit__item{
        padding-left: 70px;
    }
    .benefit__item:nth-child(1):before{
        right: 0px;
    }
    .benefit__item:nth-child(2){
        width: 280px;
        -webkit-background-size: 42px;
        background-size: 42px;
    }
    .benefit__item:nth-child(2):before{
        right: -14px;
    }
    .benefit__item:nth-child(3){
        -webkit-background-size: 42px;
        background-size: 42px;
        margin-right: 0px;
        max-width: 550px;

    }
    .standard{
        padding: 72px 0 79px;
        gap: 120px;
    }
    .standard__title{
        font-size: 35px;
        margin-bottom: 30px;

    }
    .standard__info{
        font-size: 18px;
        line-height: 29px;
    }
    .dosage{
        justify-content: space-between;

    }
    .dosage__title{
        font-size: 35px;
        line-height: 36px;
        margin-bottom: 0;
    }
    .dosage__info{
        font-size: 18px;
        line-height: 29px;
        margin-bottom: 0;
    }
    .dosage__reg{
        font-size: 25px;
        margin-bottom: 0;
    }
    .dosage__col {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .dosage__col:nth-child(1){
        width: 425px;
    }
    .dosage__col:nth-child(2){
        /*background: rgba(51, 44, 43, 0.25);*/
        border-radius: 40px;
        border: 1px solid #ccc;
        overflow: hidden;
        width: 805px;

    }
    .dosage__img{
        max-width: 91%;
        padding: 35px 0 0;
        margin: auto;
        display: block;
    }
    .banner{
        padding: 30px 0;
    }
    .banner .container{
        gap: 40px;
        padding: 0;
        align-items: flex-start;
    }
    .banner__title{
        font-size: 50px;
        margin-bottom: 20px;
    }
    .banner__info{
        font-size: 18px;
        line-height: 29px;
    }
    .banner__box{
        display: block;
        padding-top: 0px;
    }
    .faq{
        padding: 130px 0;
    }
    .faq__sec{
        padding: 80px 0;
    }
    .faq__section{
        flex-direction: row;
        gap: 60px;
    }
    .faq__title{
        font-size: 70px;
        line-height: 1;
        margin-bottom: 30px;
    }
    .faq__subtitle{
        font-size: 25px;
        margin-bottom: 100px;

    }
    .faq__theme{
        width: 450px;
        font-size: 50px;
        line-height: 1.2;

    }
    .faq__box{
        width: 750px;
    }
    .faq__sec:last-child .faq__theme{
        width: 100%;
        margin-bottom: 30px;
    }
    .dog .faq__sec:last-child{
        padding-bottom: 0;
    }
    .cat{
        padding-bottom: 0;
    }
    .faq__text, .faq__answer{
        font-size: 18px;
    }
    .faq__question{
        font-size: 25px;
    }
    .faq__accord{
        margin-bottom: 17px;
        padding-bottom: 33px;
    }
    .faq__btn{
        width: 42px;
        height: 42px;
    }
    .faq__btn:before, .faq__btn:after{
        width: 28px;
        top: 20px;
    }
    .faq__text{
        line-height: 1.6;
    }
    .partners .main__title{
        margin-bottom: 35px;

    }
    .partners__subtitle{
        margin-bottom: 85px;
        /*max-width: 800px;*/
    }
    .key__list{
        gap: 50px;
    }
    .key__item{
        font-size: 35px;
        text-transform: uppercase;
        padding: 45px 75px;
        border-radius: 40px;
    }
    .partners .key .main__subtitle {
        margin-bottom: 55px;
    }
    .partners .key__list{
        margin-bottom: 100px;
    }
    .partners__section{
        gap: 105px;
        margin-bottom: 0;
    }
    .partners__list{
        font-size: 35px;
        gap: 10px;
    }
    /*.key + .partners__box, .key + .partners__box:nth-child(2){*/
    .partners__box{
        margin-bottom: 100px;
        padding-bottom: 100px;
        border-bottom: 1px solid #CFD8E0;
    }
    .partners__box:last-child{
        margin-bottom: 0;
        padding-bottom: 0;
        border: none;
    }
    .partners__list.market .partners__item:nth-child(3), .partners__list.market .partners__item:nth-child(1){
        -webkit-background-size: 88px;
        background-size: 88px;
        /*padding:25px 90px 25px 120px;*/
        padding:0px 0px 0px 110px;
    }
    .partners__list.market .partners__item:nth-child(2){
        background-size: 66px;
        background-position: 17px center;
    }
    .partners__description{
        font-size: 25px;
        /*padding-top: 8px;*/
    }
    .partners__description{

    }
    .partners__list.market .partners__item{
        width: 366px;
        position: relative;
    }
    .partners__list.market .partners__item:before{
        content: '';
        position: absolute;
        top: 0;
        right: -45px;
        width: 1px;
        height: 100%;
        background: #CFD8E0;
    }
    .partners__list.market .partners__item:last-child:before{
        content: none;
    }
    .partners__list.market .partners__item{
        padding-left: 110px;

    }
    .partners__list.market{
        gap: 100px;
        margin-bottom: 0;
    }
    .partners__left .partners__list{
        margin-left: 20px;
        margin-bottom: 100px;
    }
    .privacy__title{
        font-size: 50px;
        margin-bottom: 50px;
    }
    .privacy__subtitle{
        font-size: 30px;
        margin-bottom: 30px;
    }
    .privacy__cont{
        padding-left: 50px;
    }
    .privacy__subtitle1{
        font-size: 25px;
    }
    .privacy__info{
        font-size: 18px;
        margin-bottom: 35px;
    }
    .privacy__list{
        padding-left: 50px;
    }
    .privacy__item{
        margin-bottom: 25px;
        font-size: 18px;
    }

    html[lang=ru] .products__description{
        min-height: 90px;
    }

    html[lang=ru] .foot__policy{
        gap: 50px;
        margin-left: -40px;
    }
    p.main__description[data-i18n="pages.about-biopetica.future_description"] {
        background: #332c2b;
        color: #fff;
        padding: 20px 40px;
        border-radius: 15px;
    }

}