:root {
    --color-violet: #630778;
}
*{
    box-sizing: border-box;
}
body{
    margin: 0;
    padding: 0;
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #1b1d20;
    background: #F6F6F6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body.main{
    background: #fff;
}
input:focus,
textarea:focus{
    outline: none;
}
input::placeholder, 
textarea::placeholder{
    transition: 0.3s;
    color: #9e9e9e;
    font-family: 'Geist', sans-serif;
}
input:focus::placeholder, 
textarea:focus::placeholder{
    opacity: 0;
}
button{
    font-family: 'Geist', sans-serif;
}
.container{
    width: 100%;
    max-width: 1840px;
    margin-left: auto;
    margin-right: auto;
}
.br12{
    border-radius: 12px;
}
.btn__violet,
.btn__white{
    position: relative;
    border-radius: 12px;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    transition: 0.3s;
    text-align: center;
    width: fit-content;
    min-width: fit-content;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}
.btn__violet{
    background: var(--color-violet);
    color: #fff;
}
.btn__violet span,
.btn__white span{
    position: relative;
}
.btn__violet span::before,
.btn__white span::before,
.link__min::before{
    position: absolute;
    content: '';
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    transition: 0.3s;
}
.btn__violet span::before{
    background: #fff;
}
.btn__violet:hover{
    cursor: pointer;
    background: rgba(99, 7, 120, 0.9);
}
.btn__violet:hover span::before,
.btn__white:hover span::before{
    width: 100%;
}
.btn__violet svg,
.btn__white svg{
    margin-left: 10px;
}
.btn__white{
    background: #fff;
    color: var(--color-violet);
}
.btn__white span::before{
    background: var(--color-violet);
}
.btn__violet:hover,
.btn__white:hover{
    cursor: pointer;
}
.btn__violet:disabled,
.btn__white:disabled{
    opacity: 0.7;
}
.btn__violet:disabled:hover,
.btn__white:disabled:hover{
    cursor: default;
}
.btn__violet:disabled:hover span::before,
.btn__white:disabled:hover span::before{
    width: 0;
}
.btn__border-violet{
    border: 1px solid #630778;
}
.title__block{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.title__preview{
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #89939f;
    max-width: 500px;
    margin: 0;
}
.h1{
    margin: 0;
    font-weight: 400;
    font-size: 56px;
    line-height: 85%;
    letter-spacing: -0.05em;
    color: #1b1d20;
}
.h1 span{
    color: var(--color-violet);
}
.h1 sup{
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    position: relative;
    top: -10px;
}
.h2{
    margin: 0;
    font-weight: 400;
    font-size: 56px;
    line-height: 85%;
    letter-spacing: -0.05em;
}
.h2 span{
    color: var(--color-violet);
}
.mt10{
    margin-top: 10px;
}
.mt40{
    margin-top: 40px;
}
.mt50{
    margin-top: 50px;
}
.mt70{
    margin-top: 70px;
}
.mt90{
    margin-top: 90px;
}
.mt100{
    margin-top: 100px;
}
.mt140{
    margin-top: 140px;
}
.title__min{
    margin: 0;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #1b1d20;
}
.link__min{
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #1b1d20;
    transition: 0.3s;
    position: relative;
}
.link__min::before{
    background: #1b1d20;
    transition: 0.3s;
}
.link__min:hover{
    color: var(--color-violet);
}
.link__min:hover::before{
    background: var(--color-violet);
}
.link__border{
    position: relative;
    width: fit-content;
    text-decoration: none;
    transition: 0.3s;
}
.link__border::before{
    position: absolute;
    content: '';
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: #1b1d20;
    transition: 0.3s;
}
.link__border:hover{
    opacity: 0.7;
}
.link__anim{
    position: relative;
    width: fit-content;
    text-decoration: none;
}
.link__anim::before{
    position: absolute;
    content: '';
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 0;
    transition: 0.3s;
    background: var(--color-violet);
}
.link__anim:hover{
    color: var(--color-violet);
}
.link__anim:hover::before{
    width: 100%;
}
.content{
    font-size: 18px;
}
.content h3{
    font-weight: 600;
    font-size: 24px;
    margin: 30px 0;
}
.content p{
    font-size: 18px;
    margin: 20px 0;
}
.content ul{
    margin: 20px 0;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.content ul li{
    font-size: 18px;
}
.content a{
    text-decoration: none;
    color: var(--color-violet);
    transition: 0.3s;
    font-weight: 500;
}
.content a:hover{
    opacity: 0.8;
}
.header__banner{
    position: relative;
    display: none;
}
.header__banner.show{
    display: block;
}
.header__banner-close{
    position: absolute;
    right: calc((100% - 1840px) / 2);
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 30px;
    height: 30px;
    background: #f6f6f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__banner-close svg{
    width: 12px;
    height: 12px;
}
.header__banner-close svg path {
    transition: 0.3s;
}
.header__banner-close:hover{
    cursor: pointer;
}
.header__banner-close:hover svg path {
    stroke: var(--color-violet);
}
.header__banner picture{
    display: flex;
    cursor: pointer;
}
.header__banner img{
    width: 100%;
    height: auto;
}
header{
    background: #f6f6f6;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid #DEDEDE;
    position: fixed;
    z-index: 200;
    left: 0;
    width: 100%;
    top: 0;
}
/*header.fixed{
    position: fixed;
}*/
.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}
.header__logo{
    display: flex;
    position: relative;
}
/*.header__logo::before{
    position: absolute;
    content: '';
    left: -30px;
    top: -20px;
    background: url('/bitrix/templates/cpk-abc/images/ny/logo-ng.svg')no-repeat 50%;
    width: 55px;
    height: 60px;
    z-index: 1;
}*/
.header__menu{
    display: flex;
    align-items: center;
}
.header__menu-version,
.header__info-search{
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    min-width: 40px;
    transition: 0.3s
}
.header__info-search-block{
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.header__menu-version:hover,
.header__info-search:hover{
    cursor: pointer;
    border-color: var(--color-violet);
}
.header__info-search-form {
    display: none;
    gap: 5px;
    /*max-width: 0;*/
    padding-left: 0;
    padding-right: 0;
    /*overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;*/
}
.header__info-search-form.active {
    /*max-width: 800px;
    opacity: 1;*/
    display: flex;
}
.header__info-search-inp {
    min-width: 500px;
    width: 100%;
    background: #fff;
    padding: 15px 20px;
    border: none;
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
}
.header__info-search-icon-loop{
    display: flex;
}
.header__info-search-icon-close{
    display: none;
}
.header__info-search.active .header__info-search-icon-close {
    display: flex;
}
.header__info-search.active .header__info-search-icon-loop {
    display: none;
}


.header__nav{
    display: flex;
    margin-left: 30px;
    /*max-width: 1000px;
    transition: all 0.4s ease-in-out;*/
}
.header__nav.hidden{
    /*max-width: 0;
    padding-left: 0;
    padding-right: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    transition: all 0.2s ease-in-out;*/
    display: none;
}
.header__nav ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    gap: 15px 30px;
}
.header__nav ul li{
    position: relative;
}
.header__nav ul li ul.header__nav-sub{
    position: absolute;
    flex-direction: column;
    width: max-content;
    padding-top: 15px;
    display: none;
}
header:not(.main) .header__nav ul li ul.header__nav-sub,
header.main.fixed .header__nav ul li ul.header__nav-sub{
    background: #f6f6f6;
    padding: 15px 10px 10px 10px;
    left: -10px;
}
.header__nav ul li:hover ul.header__nav-sub{
    display: flex;
}
.header__nav-link{
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #1b1d20;
    text-decoration: none;
}
.header__info{
    display: flex;
    align-items: center;
    gap: 15px 30px;
}
.header__info-social{
    display: flex;
    align-items: center;
    gap: 15px 20px;
}
.header__info-social .header__info-wa img,
.header__info-social .header__info-tg img{
    display: flex;
}
.header__info-phone,
.header__info-wa{
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #1b1d20;
}
.header__info-wa svg{
    display: none;
}
.header__info-phone::before{
    left: inherit;
    right: 0;
}
.header__info-call span::before{
    left: inherit;
    right: 0;
}
.header__info-btns{
    display: flex;
    align-items: stretch;
    gap: 5px;
}
.header__basket{
    padding: 15px 20px;
    border: 1px solid var(--color-violet);
    background: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: var(--color-violet);
    transition: 0.3s;
}
.header__basket:hover{
    opacity: 0.8;
}
header.main:not(.fixed){
    background: transparent;
    border-bottom: transparent;
}
header.main:not(.fixed) .header__logo svg path,
header.main:not(.fixed) .header__menu-version svg path{
    fill: #fff;
}
header.main:not(.fixed) .header__info-search svg path{
    stroke: #fff;
}
header.main:not(.fixed) .header__menu-version,
header.main:not(.fixed) .header__info-search{
    border-color: #191919;
    background: #191919;
}
header.main:not(.fixed) .header__menu-version:hover,
header.main:not(.fixed) .header__info-search:hover{
    border-color: #fff;
}
header.main:not(.fixed) .header__nav-link{
    color: #fff;
}
header.main:not(.fixed) .header__nav-link.link__anim::before{
    background: #fff;
}
header.main:not(.fixed) .header__info-phone, 
header.main:not(.fixed) .header__info-wa{
    color: #fff;
}
header.main:not(.fixed) .header__info-phone:hover::before{
    background: #fff;
}
header.main:not(.fixed) .header__info-wa.link__border::before{
    background: #fff;
}
header.main:not(.fixed) .header__basket{
    background: transparent;
    border-color: #fff;
    color: #fff;
}
header.main:not(.fixed) .header__info-call.btn__violet,
header.main:not(.fixed) .header__info-search-btn{
    color: var(--color-violet);
    background: #fff;
}
header.main:not(.fixed) .header__info-call.btn__violet span::before,
header.main:not(.fixed) .header__info-search-btn span::before{
    background: var(--color-violet);
}
main{
    margin-top: 80px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}
main.main{
    margin-top: 0;
}
.video__container{
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    max-height: 900px;
}
.video__preview{
    display: flex;
    position: relative;
    height: 100%;
}
.video__preview-block{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: 0.3s;
}
.video__preview-pic{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.video__preview-text{
    position: absolute;
    left: 20px;
    top: 20px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #fff;
    margin: 0;
}
.video__frame{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video__frame.show{
    display: block;
}
.video__frame iframe{
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}
.video__preview-play{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    transition: 0.3s;
}
.video__preview:hover{
    cursor: pointer;
}
.video__preview:hover .video__preview-play{
    opacity: 0.7;
}
.video__preview:hover .video__preview-block{
    background: rgba(0, 0, 0, 0.3);
}
.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    background-color: #E6E6E6;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
}
.popup.open{
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.popup-message{
    z-index: 1010;
}
.popup__container{
    max-height: 95%;
    overflow-y: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}
.popup__main{
    background: #fff;
    width: 600px;
    position: relative;
    padding: 40px 20px 20px 20px;
    height: 100%;
}
.popup__block{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.popup__block-title{
    font-weight: 400;
    font-size: 36px;
    line-height: 90%;
    letter-spacing: -0.05em;
    text-align: center;
}
.popup__block-preview{
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #9e9e9e;
    margin: 15px 0 0 0;
}
.popup__block-btn{
    width: 100%;
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    padding: 25px 40px;
}
.popup-basket{
    background: rgba(0,0,0,0.5);
}
.popup__block-btns{
    display: flex;
    gap: 10px;
}
footer{
    background: #fff;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}
footer.main{
    background: #f6f6f6;
}
.departments{
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    gap: 10px;
}
.departments__item{
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-decoration: none;
    padding: 15px 0 33px 0;
}
.departments__item-logo{
    width: 90px;
    height: 90px;
    object-fit: contain;
}
.departments__item-title{
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #9e9e9e;
    margin: 10px 0 0 0;
    transition: 0.3s;
}
.departments__item:hover .departments__item-title{
    color: var(--color-violet);
}
.footer{
    display: flex;
    justify-content: space-between;
    padding: 40px 0;
    border-top: 1px solid #DEDEDE;
    gap: 40px;
}
.footer__menu ul,
.footer__menu-page ul{
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer__menu-link{
    text-decoration: none;
    font-weight: 400;
    font-size: 45px;
    line-height: 90%;
    letter-spacing: -0.07em;
    text-align: center;
    color: #1b1d20;
    width: fit-content;
    position: relative;
    transition: 0.3s;
}
.footer__menu-page-link{
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #1b1d20;
    text-decoration: none;
    width: fit-content;
    position: relative;
}
.footer__menu-link::before{
    height: 2px;
}
.footer__contacts{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.footer__contacts-phone{
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.05em;
    text-align: right;
    color: #1b1d20;
    text-decoration: none;
}
.footer__contacts-phone::before{
    left: inherit;
    right: 0;
}
.footer__contacts-email{
    margin-top: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #9e9e9e;
}
.footer__contacts-email::before{
    background: #9e9e9e;
}
.footer__social{
    display: flex;
    gap: 15px 20px;
    margin-top: 60px;
}
.footer__social a{
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #1b1d20;
}
.footer__social-link{
    display: flex;
}
.footer__bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 21px 0 60px 0;
    border-top: 1px solid #DEDEDE;
    gap: 20px;
}
.footer__bottom-copyright,
.footer__bottom-policy{
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #9e9e9e;
}
.footer__bottom-copyright{
    font-weight: 500;
}
.footer__bottom-policy{
    font-weight: 600;
}
.footer__bottom-policy::before{
    background: #9e9e9e;
}
.footer__paysys{
    margin: 0 30px;
    display: flex;
    gap: 15px 20px;
}
.popup-form__form{

}
.popup-form__input{
    background: #f6f6f6;
    color: #1b1d20;
}
.popup-form__input::placeholder{
    color: #9e9e9e;
}
.popup-form__agreement label > p,
.popup-form__agreement label > p a{
    color: #1b1d20;
}
.popup-form__agreement label > p a::before{
    background: #1b1d20;
}
.popup-form__agreement label > p::before{
    background: var(--color-violet);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 11px;
}
.popup-form__agreement label > input:checked + p::before{
    background-color: var(--color-violet);
    background-image: url('/bitrix/templates/cpk-abc/images/check-popup.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 11px;
}
.popup-form__error{
    display: none;
    color: #ff0000;
    font-size: 16px;
    margin-top: 5px;
}
.popup__close{
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: #f6f6f6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.popup__close svg path{
    transition: 0.3s;
}
.popup__close:hover{
    cursor: pointer;
}
.popup__close:hover svg path{
    stroke: var(--color-violet);
}
main .swiper .el-swiper-pagination{
    display: flex;
    justify-content: center;
    gap: 10px;
}
main .swiper .el-swiper-pagination:not(.swiper-pagination-lock){
    margin-top: 10px;
}
main .swiper .el-swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    margin: 0;
    background: #b4bac1;
    opacity: 1;
}
main .swiper .el-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: var(--color-violet);
}
.el-rat-platforms .rat-platforms__item{
    background: #fff;
}
.questions{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.questions__panel{
    background: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-self: start;
    position: sticky;
    top: 90px;
}
.questions__panel-preview{
    margin: 20px 0 0 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #89939f;
}
.questions__panel-btn{
    margin-top: 65px;
}
.docs-main{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}
.docs-main__info,
.docs-main__list{
    width: calc(50% - 5px);
}
.docs-main__info{
    display: flex;
    flex-direction: column;
    padding: 40px;
    min-height: 470px;
    background: var(--color-violet);
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.docs-main__info::before{
    position: absolute;
    content: '';
    left: 100%;
    top: 100%;
    transform: translate(-100%, -100%);
    background: url('/bitrix/templates/cpk-abc/images/docs-main-pic.png')no-repeat 100% 50%;
    background-size: contain;
    width: 520px;
    height: 470px;
    z-index: -1;
}
.docs-main__info-title{
    color: #fff;
}
.docs-main__info-title span{
    color: #d09edc;
}
.docs-main__info-text{
    margin: 25px 0 0 0;
    max-width: 300px;
    font-weight: 500;
    font-size: 14px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #fff;
}
.docs-main__info-link{
    margin-top: auto;
}
.docs-main__list{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.docs-main__item{
    padding: 23px 38px 23px 105px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #000;
    background: #f6f6f6;
    border: 2px solid transparent;
    transition: 0.3s;
}
.docs-main__item span{
    font-weight: 500;
    font-size: 22px;
    line-height: 100%;
    letter-spacing: -0.04em;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 80px;
}
.docs-main__item-icon{
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #fff;
}
.docs-main__item-icon svg{
    transition: 0.3s;
}
.docs-main__item:hover{
    background: #fff;
    border-color: var(--color-violet);
}
.docs-main__item:hover .docs-main__item-icon svg{
    transform: translateY(8px);
}
.policy__text{
    padding: 10px 25px;
    background: #fff;
}
.header__burger,
.mob-menu,
.title__block-btn-mob,
.fix-footer{
    display: none;
}
.land__stext-mess{
    position: relative;
    overflow: hidden;
}
.land__stext-link{
    padding: 10px 30px;
    margin: 20px auto 0 auto;
}
.cookie__wrapper{
    position: fixed;
    z-index: 10000000000000;
    background: #fff;
    padding: 15px;
    display: none;
    flex-direction: column;
    border-radius: 5px;
    bottom: 0;
    right: 0;
    width: 300px;
    border: 3px solid rgb(244, 244, 244);
    box-sizing: border-box;
}
.cookie__wrapper.show{
    display: flex;
}
.cookie__wrapper-close{
    width: max-content;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    transition: 0.3s;
    border: none;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
.cookie__wrapper-close svg path{
    transition: 0.3s;
}
.cookie__wrapper-close:hover{
    cursor: pointer;
}
.cookie__wrapper-close:hover svg path{
    stroke: var(--color-violet);
}
.cookie__wrapper-title{
    background: #fff;
    font-size: 18px;
    line-height: 110%;
    font-weight: 600;
    padding-right: 35px;
    width: 100%;
    box-sizing: border-box;
    z-index: 1;
    letter-spacing: -0.05em;
}
.cookie__wrapper-text{
    margin: 10px 0 15px 0;
    font-size: 15px;
    line-height: 120%;
    letter-spacing: -0.05em;
}
.cookie__wrapper-send{
    background: var(--color-violet);
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 16px;
    line-height: 1.42857143;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: white;
    transition: all .2s;
    letter-spacing: -0.05em;
    font-weight: 600;
}
.cookie__wrapper-send:hover{
    cursor: pointer;
    background: rgba(99, 7, 120, 0.9);
}
.advant{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.advant__item{
    display: flex;
    flex-direction: column;
    position: relative;
    background: #f6f7f8;
    padding: 20px;
    min-height: 210px;
}
.advant__item-hover{
    transition: 0.3s;
}
.advant__item-icon{
    min-width: 64px;
    margin-bottom: 20px;
}
.advant__item-title{
    font-weight: 500;
    font-size: 26px;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #1b1d20;
    margin: auto 0 0 0;
    transition: 0.3s;
}
.advant__item-text{
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    color: #89939f;
    margin: 20px 0 0 0;
}
.advant__item-count{
    position: absolute;
    top: 20px;
    right: 20px;
    font-weight: 500;
    font-size: 16px;
    line-height: 110%;
    letter-spacing: -0.05em;
    text-align: right;
    color: #a2abb7;
    margin: 0;
}
.advant__item-hover:hover{
    cursor: pointer;
    outline: 1px solid var(--color-violet);
}
.advant__item-hover:hover .advant__item-title{
    color: var(--color-violet);
}
.advant-detail-program .advant__item{
    background: #fff;
}
.pagination__lazyload-btn{
    margin-left: auto;
    margin-right: auto;
    width: 250px;
}
.sections__tags{
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sections__tags-item.active,
.sections__tags-item:hover{
    background: var(--color-violet);
    color: #fff;
}
.popup-information .popup__block-title{
    line-height: 120%;
}

.popup__block-kviz{
    align-items: flex-start;
}
.popup__kviz-info{
    display: none;
    flex-direction: column;
    width: 100%;
}
.popup__kviz-info.show{
    display: flex;
}
.popup__kviz-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}
.popup__kviz-item label{
    position: relative;
}
.popup__kviz-item label > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.popup__kviz-item label > p {
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 125%;
    letter-spacing: -0.02em;
    user-select: none;
    color: #1b1d20;
    padding-left: 35px;
    min-height: 22px;
    width: fit-content;
}
.popup__kviz-item label > p::before {
    content: '';
    width: 22px;
    height: 22px;
    border: 2px solid var(--color-violet);
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: 0.3s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 11px;
}
.popup__kviz-item label > input:checked + p::before {
    background-color: var(--color-violet);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 11px;
}
.popup__kviz-item label > p:hover{
    cursor: pointer;
}
.popup__kviz-item .popup__kviz-item-inp{
    width: 100%;
    padding: 15px 20px;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    background: #f6f6f6;
    color: #1b1d20;
    border: 1px solid #fff;
}
.popup__kviz-btns{
    display: flex;
    gap: 12px;
    margin-top: 35px;
}
.popup__kviz-progress{
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 100%;
}
.popup__kviz-progress-text{
    font-weight: 500;
}
.popup__kviz-progress-nav{
    background: #F6F6F6;
    width: 100%;
    height: 8px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
}
.popup__kviz-progress-nav-bar{
    background: var(--color-violet);
}
.popup__kviz-btn-prev.disabled,
.popup__kviz-btn-next.disabled{
    opacity: 0.7;
}
.popup__kviz-btn-prev.hide,
.popup__kviz-btn-next.hide{
    display: none;
}
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 65px;
    z-index: 1000;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    user-select: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition:
        opacity .25s ease,
        transform .25s ease,
        visibility .25s ease;
}
.back-to-top-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-violet);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 2px solid #fff;
    transition: background-color .2s ease, transform .2s ease;
}
.back-to-top-chevrons {
    display: block;
}
.back-to-top-caption {
    font-weight: 700;
    font-size: 10px;
    line-height: 1;
    letter-spacing: -0.05em;
    color: #ffffff;
    pointer-events: none;
}
.back-to-top:hover .back-to-top-circle {
    background: rgba(99, 7, 120, 0.9);
}
.back-to-top:active .back-to-top-circle {
    transform: scale(.98);
}
.back-to-top.show {
    opacity: .95;
    visibility: visible;
    transform: translateY(0);
}
.popup__main-banner{
    padding: 0;
    width: 1035px;
}
.popup__main-banner .popup__block{
    flex-direction: row;
}
.popup__main-banner .popup__pic{
    display: flex;
}
.popup__main-banner .popup__pic img{
    border-radius: 12px 0 0 12px;
}
.popup__main-banner .popup__info{
    display: flex;
    flex-direction: column;
    padding: 40px 20px 20px 20px;
}
.popup-ng{
   background: rgba(0, 0, 0, 0.7); 
}
.popup-ng .popup__main{
    padding: 0;
    width: auto;
}
.popup-ng__pic{
    max-width: 100%;
    height: auto;
}
.popup__main-text{
    width: 1000px!important;
}
.popup__block-text,
.popup__block-text p{
    font-size: 24px;
    line-height: 130%;
    letter-spacing: -0.05em;
    text-align: center;
}
.popup__block-text p + p{
    margin-top: 16px;
}
.popup__block-text-panel{
    color: #fff;
    padding: 10px 15px;
    background: var(--color-violet);
}
/* Промо ПП/СИЗ: блок (раздел/карточка) и модалка (js-popup-oht) */
.oht-note{
    margin-top: 20px;
    padding: 25px 20px;
    border: 1px solid var(--color-violet);
    background: rgba(99, 7, 120, 0.06);
}
.oht-note__body{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.oht-note__text{
    flex: 1 1 auto;
    min-width: 0;
}
.oht-note__title{
    font-weight: 600;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.05em;
    color: #1b1d20;
}
.oht-note__preview{
    margin-top: 12px;
    font-size: 15px;
    line-height: 135%;
    letter-spacing: -0.05em;
    color: #33373e;
}
.oht-note__accent{
    margin-top: 6px;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    letter-spacing: -0.05em;
    color: var(--color-violet);
}
.oht-note__action{
    flex: 0 0 auto;
}
.oht-note .oht-note__btn{
    width: auto;
    justify-content: center;
    white-space: nowrap;
    padding: 12px 24px;
    font-size: 15px;
}
.oht-note__note{
    margin-top: 10px;
    font-size: 13px;
    line-height: 140%;
    letter-spacing: -0.05em;
    color: #6f7681;
}
/* компактный вариант под хлебными крошками на странице раздела */
.oht-note--section{
    margin-top: 16px;
    margin-bottom: 4px;
    padding-top: 14px;
    padding-bottom: 14px;
}
.oht-note--section .oht-note__preview{
    margin-top: 8px;
    margin-bottom: 8px;
}
.oht-note--section .oht-note__note{
    margin: 0;
}
/* внутри модалки — без собственной рамки/фона; ширина модалки ~750px */
.js-popup-oht .popup__main{
    width: 750px;
    max-width: 100%;
}
.js-popup-oht .oht-note{
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
}
@media(max-width: 1199px){
    .oht-note__body{
        gap: 20px;
    }
    .oht-note__title{
        font-size: 17px;
    }
}
@media(max-width: 991px){
    .oht-note{
        padding: 20px 16px;
    }
    .oht-note__body{
        gap: 16px;
    }
    .oht-note__title{
        font-size: 16px;
    }
    .oht-note__preview{
        font-size: 14px;
    }
    .oht-note__accent{
        font-size: 15px;
    }
}
@media(max-width: 767px){
    .oht-note__body{
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .oht-note .oht-note__btn{
        width: 100%;
    }
    .oht-note--section .oht-note__body{
        gap: 8px;
    }
    .oht-note--section .oht-note__note{
        margin-top: 14px;
    }
    .js-popup-oht .popup__main{
        width: auto;
    }
}
@media(max-width: 575px){
    .oht-note{
        padding: 16px 14px;
    }
    .oht-note__title{
        font-size: 15px;
    }
    .oht-note__preview{
        font-size: 14px;
    }
    .oht-note__accent{
        font-size: 14px;
    }
    .oht-note__note{
        font-size: 12px;
    }
}
@media(max-width: 374px){
    .oht-note{
        padding: 14px 12px;
    }
}
.header__logo-mart{
    position: relative;
}
.header__logo-mart::before{
    position: absolute;
    content: '';
    right: -5px;
    top: -17px;
    background: url('/bitrix/templates/cpk-abc/images/8mart.png')no-repeat 50%;
    background-size: contain;
    width: 43px;
    height: 43px;
}
.line-mart{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 140px;
    background: url('/bitrix/templates/cpk-abc/images/line-footer-8marta-min.png')no-repeat 50%;
}
.popup__container-mart{
    overflow: hidden;
}
.popup__container-mart .popup__main{
    position: relative;
}
.popup__container-mart .popup__main::before,
.popup__container-mart .popup__main::after{
    position: absolute;
    content: '';
    background: url('/bitrix/templates/cpk-abc/images/popup-mart.png')no-repeat 50%;
    width: 280px;
    height: 100%;
    bottom: 0;
    background-size: contain;
    z-index: -2;
}
.popup__container-mart .popup__main::before{
    left: -231px;
    transform: rotate(-26deg);
}
.popup__container-mart .popup__main::after{
    right: -231px;
    transform: rotate(26deg) scaleX(-1);
}
.cat-banner-top{
    display: flex;
}
.cat-banner-top__pic{
    width: 100%;
    height: auto;
}
.cat-banner-top__pic:hover{
    cursor: pointer;
}
.block-ii__content{
    background: #fff;
    padding: 40px 20px;
}
.block-ii__content h2{
    font-size: 28px;
    line-height: 110%;
    margin-bottom: 40px;
}
.block-ii__content h3{
    font-size: 24px;
    line-height: 110%;
    margin-bottom: 30px;
}
.block-ii__content > p,
.block-ii__content li{
    font-size: 18px;
    line-height: 135%;
    margin-bottom: 15px;
}
.block-ii__content ul,
.block-ii__content ol{
    padding-left: 30px;
    margin-bottom: 20px;
}
.block-ii__content a{
    color: var(--color-violet);
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}
.block-ii__content-table{
    max-width: 100%;
    overflow-x: auto;
    display: flex;
    justify-content: center;
}
.block-ii__content table{
    /*border-collapse: collapse;*/
    border-collapse: separate;
    border-spacing: 0;
}
.block-ii__content table th,
.block-ii__content table td{
    font-size: 18px;
    line-height: 135%;
    border: 1px solid #c3c3c3;
}
.block-ii__content table th{
    padding: 15px 20px;
    background: var(--color-violet);
    color: #fff;
}
.block-ii__content table td{
    padding: 10px 20px;
    background: #f6f6f6;
}
.block-ii__content-table + h2,
.block-ii__content-table + h3,
.block-ii__content ol + h2,
.block-ii__content ol + h3,
.block-ii__content ul + h2,
.block-ii__content ul + h3,
.block-ii__content > p + h2,
.block-ii__content > p + h3{
    margin-top: 40px;
}
.block-ii__content-table + p,
.block-ii__content-table + ol,
.block-ii__content-table + ul{
    margin-top: 20px;
}
.block-ii__content-table + h3{
    margin-top: 30px;
}
.block-ii__content table th:first-child,
.block-ii__content table > tbody tr:first-child td:first-child{
    border-top-left-radius: 12px;
}
.block-ii__content table th:last-child,
.block-ii__content table > tbody tr:first-child td:last-child{
    border-top-right-radius: 12px;
}
.block-ii__content table tr:last-child td:first-child{
    border-bottom-left-radius: 12px;
}
.block-ii__content table tr:last-child td:last-child{
    border-bottom-right-radius: 12px;
}
.block-ii__content table thead + tbody tr:first-child td:first-child{
    border-top-left-radius: 0;
}
.block-ii__content table thead + tbody tr:first-child td:last-child{
    border-top-right-radius: 0;
}
.block-ii__content .questions__item{
    border: 1px solid #c3c3c3;
}
.block-ii__content a:hover{
    cursor: pointer;
    opacity: 0.8;
}
.block-ii__btns{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px 30px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 40px;
}
.block-ii__btn{
    font-size: 30px;
}
.block-ii__btns-mess{
    line-height: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    border: 1px solid var(--color-violet);
    letter-spacing: -0.05em;
    color: var(--color-violet);
    padding: 10.5px 20px;
    transition: 0.3s;
}
.block-ii__btns-mess a{
    display: flex;
}
.block-ii__btns-mess span{
    position: relative;
}
.block-ii__btns-mess span::before{
    position: absolute;
    content: '';
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    transition: 0.3s;
    background: var(--color-violet);
}
.block-ii__btns-mess:hover{
    opacity: 0.8;
    cursor: pointer;
}
.block-ii__btns-mess:hover span::before{
    width: 100%;
}



@media(max-width: 1900px){
    .container{
        margin-left: 30px;
        margin-right: 30px;
        width: calc(100% - 60px);
    }
    .header__banner-close{
        right: 30px;
    }
}
@media(max-width: 1740px){
    .header__nav ul{
        gap: 10px 12px;
    }
    .header__nav-link{
        font-size: 15px;
    }
    header:not(.main) .header__nav ul li ul.header__nav-sub,
    header.main.fixed .header__nav ul li ul.header__nav-sub{
        padding-top: 10px
    }
}
@media(max-width: 1600px){
    .mt40 {
        margin-top: 35px;
    }
    .mt50 {
        margin-top: 45px;
    }
    .mt70 {
        margin-top: 60px;
    }
    .mt90 {
        margin-top: 80px;
    }
    .mt100 {
        margin-top: 90px;
    }
    .mt140 {
        margin-top: 120px;
    }
    .header__logo{
        width: 160px;
        height: auto;
    }
    /*.header__logo::before{
        left: -26px;
        top: -21px;
        background-size: contain;
        width: 50px;
        height: 62px;
    }*/
    .header__nav-link,
    .header__info-phone, 
    .header__info-wa,
    .header__basket,
    .btn__violet, 
    .btn__white,
    .departments__item-title,
    .footer__contacts-email,
    .footer__social a,
    .footer__bottom-copyright, 
    .footer__bottom-policy{
        font-size: 15px;
    }
    .header__menu-version,
    .header__info-search{
        width: 35px;
        min-width: 35px;
        height: 35px;
    }
    .header__menu-version svg,
    .header__info-search svg{
        width: 17px;
        height: auto;
    }
    .header__info-search-block{
        margin-left: 15px;
    }
    .header__basket,
    .btn__violet, 
    .btn__white{
        padding: 11px 18px;
    }
    .header{
        padding: 10px 0;
    }
    .h1,
    .h2{
        font-size: 46px;
    }
    main{
        margin-top: 63px;
    }
    main.main {
        margin-top: 0;
    }
    .btn__violet svg, .btn__white svg {
        margin-left: 8px;
        width: 16px;
        height: 16px;
    }
    .video__container{
        max-height: 730px;
    }
    .video__preview-text{
        font-size: 24px;
    }
    .video__preview-play svg{
        width: 90px;
        height: 90px;
    }
    .docs-main__item{
        padding: 20px 30px 20px 60px;
    }
    .docs-main__item span{
        font-size: 20px;
        padding-right: 40px;
    }
    .docs-main__item-icon{
        width: 50px;
        height: 50px;
    }
    .docs-main__item-icon svg{
        width: 33px;
        height: 34px;
    }
    .docs-main__info{
        padding: 30px;
        min-height: 406px;
    }
    .popup__main{
        width: 530px;
        padding: 40px 16px 20px 16px;
    }
    .popup__block-title{
        font-size: 32px;
    }
    .popup__close{
        width: 35px;
        height: 35px;
    }
    .popup__close svg{
        width: 13px;
        height: 13px;
    }
    .popup__block-btn{
        padding: 20px 30px;
    }
    .popup-form__error {
        font-size: 15px;
        margin-top: 3px;
    }
    .departments {
        padding-top: 16px;
        padding-bottom: 15px;
    }
    .departments__item{
        padding: 12px 0 25px 0;
    }
    .departments__item-logo {
        width: 80px;
        height: 80px;
    }
    .departments__item-title {
        margin: 7px 0 0 0;
    }
    .footer {
        padding: 30px 0;
        gap: 30px;
    }
    .footer__menu ul, .footer__menu-page ul{
        gap: 10px;
    }
    .footer__menu-link{
        font-size: 36px;
    }
    .footer__menu-page-link{
        font-size: 22px;
    }
    .footer__contacts-phone{
        font-size: 24px;
    }
    .footer__contacts-email {
        margin-top: 10px;
    }
    .footer__social {
        gap: 15px 20px;
        margin-top: 45px;
    }
    .footer__bottom{
        padding: 17px 0 55px 0
    }
    .questions__panel{
        padding: 20px;
    }
    .questions__panel-btn {
        margin-top: 50px;
    }
    .policy__text {
        padding: 10px 15px;
    }
    .content h3 {
        font-size: 22px;
        margin: 25px 0;
    }
    .content p {
        font-size: 17px;
        margin: 16px 0;
    }
    .content ul{
        margin: 16px 0;
        gap: 5px;
    }
    .content ul li {
        font-size: 17px;
    }
    .footer__social{
        gap: 15px;
    }
    .footer__social img{
        width: 40px;
        height: 40px;
    }
    .header__info-social{
        gap: 15px;
    }
    .header__info-social .header__info-wa img,
    .header__info-social .header__info-tg img{
        width: 35px;
        height: 35px;
    }
    .advant__item-title{
        font-size: 24px;
    }
    .advant__item-text{
        margin: 16px 0 0 0;
    }
    .advant__item-text br{
        display: none;
    }
    .advant__item-icon{
        margin-bottom: 16px;
        width: 55px;
        min-width: 55px;
        height: auto;
    }
    .advant__item{
        padding: 16px;
        min-height: 190px;
    }
    .advant__item-count{
        right: 16px;
        top: 16px;
    }
    .header__info-search-inp{
        padding: 11px 18px;
        font-size: 15px;
    }
    .popup__main-banner{
        padding: 0;
        width: 932px;
    }
    .popup__main-banner .popup__pic img{
        width: 470px;
        height: 470px;
    }
    .popup__main-banner .popup__info{
        padding: 40px 16px 20px 16px;
    }
    .popup__block-text p{
        font-size: 22px;
    }
    .popup__block-text p + p {
        margin-top: 12px;
    }
    .header__logo-mart::before{
        right: -48px;
        top: -3px;
    }
    .block-ii__btns-mess{
        padding: 5px 20px;
    }
    .block-ii__btn{
        font-size: 26px;
    }
    .block-ii__btns-mess {
        padding: 7px 20px;
    }
    .block-ii__btns-mess img{
        width: 35px;
        height: 35px;
    }

}
@media(max-width: 1500px){
    .mt40 {
        margin-top: 30px;
    }
    .mt50 {
        margin-top: 40px;
    }
    .mt70 {
        margin-top: 50px;
    }
    .mt90 {
        margin-top: 70px;
    }
    .mt100 {
        margin-top: 80px;
    }
    .mt140 {
        margin-top: 100px;
    }
    .header__nav-link, 
    .header__info-phone, 
    .header__info-wa, 
    .header__basket, 
    .btn__violet, 
    .btn__white, 
    .departments__item-title, 
    .footer__contacts-email, 
    .footer__social a, 
    .footer__bottom-copyright, 
    .footer__bottom-policy {
        font-size: 14px;
    }
    .h1, .h2 {
        font-size: 40px;
    }
    .video__container {
        max-height: 600px;
    }
    .video__preview-text{
        font-size: 22px;
    }
    .video__preview-play svg{
        width: 80px;
        height: 80px;
    }
    .docs-main__item {
        padding: 16px 20px 16px 30px;
    }
    .docs-main__item span {
        font-size: 18px;
        padding-right: 30px;
    }
    .docs-main__item-icon {
        width: 40px;
        height: 40px;
    }
    .docs-main__item-icon svg {
        width: 30px;
        height: 31px;
    }
    .docs-main__info {
        padding: 25px;
        min-height: 334px;
    }
    .link__min,
    .popup__block-preview{
        font-size: 15px;
    }
    .popup__block-title {
        font-size: 28px;
    }
    .departments__item {
        padding: 5px 0 15px 0;
    }
    .departments__item-logo {
        width: 70px;
        height: 70px;
    }
    .departments__item-title {
        margin: 5px 0 0 0;
    }
    .footer {
        padding: 25px 0;
        gap: 25px;
    }
    .footer__menu-link {
        font-size: 30px;
    }
    .footer__menu ul, .footer__menu-page ul {
        gap: 7px;
    }
    .footer__menu-page-link {
        font-size: 20px;
    }
    .footer__contacts-phone {
        font-size: 22px;
    }
    .footer__social {
        gap: 15px;
        margin-top: 30px;
    }
    .footer__paysys{
        gap: 15px;
    }
    .footer__paysys img{
        width: auto;
        height: 25px;
    }
    main .swiper .el-swiper-pagination .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
    }
    main .swiper .el-swiper-pagination{
        gap: 7px;
    }
    .content h3 {
        font-size: 20px;
        margin: 20px 0;
    }
    .content p {
        font-size: 16px;
        margin: 12px 0;
    }
    .content ul li {
        font-size: 16px;
    }
    .cookie__wrapper-title{
        font-size: 16px;
    }
    .cookie__wrapper-text,
    .cookie__wrapper-send{
        font-size: 14px;
    }
    .advant__item-text {
        margin: 12px 0 0 0;
        font-size: 15px;
    }
    .advant__item-title {
        font-size: 22px;
    }
    .advant__item-icon {
        margin-bottom: 12px;
        width: 50px;
        min-width: 50px;
    }
    .advant__item-count{
        font-size: 15px;
        right: 12px;
        top: 12px;
    }
    .advant__item {
        padding: 12px;
        min-height: 170px;
    }
    .header__info-search-inp{
        min-width: 350px;
    }
    .header__info-search-inp{
        font-size: 14px;
    }
    header:not(.main) .header__nav ul li ul.header__nav-sub,
    header.main.fixed .header__nav ul li ul.header__nav-sub {
        padding-top: 8px;
    }
    .popup__main-banner {
        width: 864px;
    }
    .popup__main-banner .popup__pic img {
        width: 429px;
        height: 429px;
    }
    .popup__block-text p{
        font-size: 20px;
    }
    .popup__container-mart .popup__main::before,
    .popup__container-mart .popup__main::after{
        width: 210px;
    }
    .popup__container-mart .popup__main::before{
        left: -173px;
    }
    .popup__container-mart .popup__main::after{
        right: -173px;
    }
    .block-ii__btn{
        font-size: 26px;
    }
}
@media(max-width: 1349px){
    .mt50 {
        margin-top: 40px;
    }
    .mt90 {
        margin-top: 60px;
    }
    .mt100 {
        margin-top: 70px;
    }
    .mt140 {
        margin-top: 90px;
    }
    .header__logo {
        width: 140px;
        height: auto;
    }
    .header__menu-version,
    .header__info-search {
        width: 30px;
        min-width: 30px;
        height: 30px;
    }
    .header__menu-version svg,
    .header__info-search svg {
        width: 14px;
        height: auto;
    }
    .header__info-search-block{
        margin-left: 10px;
    }
    .header__nav{
        margin-left: 20px;
    }
    .header__nav ul,
    .header__info{
        gap: 15px 20px;
    }

    .header__basket {
        padding: 9px 15px;
        font-size: 13px;
        line-height: 130%;
    }
    .h1, .h2 {
        font-size: 36px;
    }
    .h1 sup{
        font-size: 15px;
    }
    .video__container {
        max-height: 500px;
    }
    .video__preview-play svg {
        width: 70px;
        height: 70px;
    }
    .video__preview-text {
        font-size: 18px;
        left: 15px;
        top: 15px;
    }
    .docs-main__item span {
        font-size: 17px;
        padding-right: 20px;
    }
    .docs-main__list{
        gap: 5px;
    }
    .docs-main__item {
        padding: 12px 17px 12px 20px;
    }
    .docs-main__item-icon {
        width: 35px;
        height: 35px;
    }
    .docs-main__item-icon svg {
        width: 26px;
        height: 27px;
    }
    .docs-main__info {
        padding: 20px;
        min-height: 263px;
    }
    .docs-main__info-text{
        margin-top: 20px;
    }
    .popup__main{
        width: 470px;
    }
    .popup__block-btn {
        padding: 16px 25px;
    }
    .departments__item-title{
        font-size: 13px;
    }
    .footer__menu-link {
        font-size: 26px;
    }
    .footer__contacts-phone {
        font-size: 20px;
    }
    .footer__menu-page-link {
        font-size: 18px;
    }
    .footer__menu ul, .footer__menu-page ul {
        gap: 5px;
    }
    .header__info-social{
        gap: 5px;
    }
    .header__info-social .header__info-wa img,
    .header__info-social .header__info-tg img{
        width: 33px;
        height: 33px;
    }
    .advant{
        gap: 5px;
    }
    .advant__item-icon {
        width: 45px;
        min-width: 45px;
    }
    .advant__item-title {
        font-size: 20px;
    }
    .advant__item {
        min-height: 160px;
    }
    .header__info-search-inp{
        min-width: 300px;
    }
    .header__nav-link{
        font-size: 12px;
    }
    .header__nav ul{
        gap: 8px 12px;
    }
    .popup__main-banner{
        width: 800px;
    }
    .popup__main-banner .popup__pic img{
        width: 392px;
        height: 392px;
    }
    .popup__main-text {
        width: 820px !important;
    }

}
@media(max-width: 1199px){
    .mt50 {
        margin-top: 30px;
    }
    .mt90 {
        margin-top: 50px;
    }
    .mt100 {
        margin-top: 60px;
    }
    .mt140 {
        margin-top: 80px;
    }
    .header__menu{
        display: none;
    }
    .header__burger,
    .mob-menu__close{
        display: flex;
        width: 40px;
        height: 40px;
        justify-content: center;
        align-items: center;
    }
    .header__burger svg,
    .mob-menu__close svg{
        width: 26px;
        height: 26px;
    }
    header .header__burger svg path{
        stroke: #1b1d20;
    }
    header.main:not(.fixed) .header__burger svg path{
        stroke: #fff;
    }
    .h1 sup{
        display: none;
    }
    .mob-menu{
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 100%;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        z-index: 200;
        background: #fff;
        transition: 0.3s;
    }
    .mob-menu.active{
        left: 0;
    }
    .mob-menu__header,
    .mob-menu__main,
    .mob-menu__footer{
        padding-left: 30px;
        padding-right: 30px;
    }
    .mob-menu__header{
        display: flex;
        align-items: center;
        border-bottom: 1px solid #ECEEF1;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .mob-menu__header-logo{
        display: flex;
        margin-right: 20px;
    }
    .mob-menu__header-logo svg{
        width: auto;
        height: 42px;
    }
    .mob-menu .header__basket{
        margin-left: auto;
        margin-right: 20px;
    }
    .header__basket{
        font-size: 15px;
    }
    .mob-menu__main{
        padding-top: 20px;
        padding-bottom: 25px;
        display: flex;
        flex-direction: column;
    }
    .mob-menu__main .header__nav{
        margin: 30px 0 20px 0;
        flex-grow: 2;
    }
    .mob-menu__main .header__nav ul{
        flex-direction: column;
    }
    .mob-menu__main .header__nav-link{
        font-size: 20px;
    }
    .mob-menu__main .header__menu-version{
        font-weight: 600;
        height: auto;
        border: none;
        border-radius: 0;
        justify-content: flex-start;
        width: fit-content;
        border-bottom: 1px solid #1b1d20;
        font-size: 16px;
        line-height: 100%;
    }
    .mob-menu__footer-social{
        display: flex;
        gap: 15px;
        margin-top: 25px;
    }
    .mob-menu__footer-social .header__info-wa,
    .mob-menu__footer-social .header__info-tg{
        display: flex;
    }
    .mob-menu__footer{
        display: flex;
        flex-direction: column;
        padding-top: 25px;
        padding-bottom: 20px;
        border-top: 1px solid #ECEEF1;
    }
    .mob-menu__footer .header__info-phone{
        font-size: 24px;
        color: var(--color-violet);
    }
    .mob-menu__footer .header__info-call{
        margin-top: 25px;
        font-size: 16px;
        padding: 13px 25px;
    }
    .footer__bottom {
        padding: 17px 65px 25px 0;
    }
    .mob-menu__search{
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .mob-menu__search-panel{
        display: flex;
        align-items: center;
        background: #f6f7f8;
        padding: 0 15px;
        flex-grow: 2;
    }
    .mob-menu__search-icon{
        display: flex;
        margin-right: 10px;
    }
    .mob-menu__search-icon svg,
    .mob-menu__search-btn svg{
        width: 22px;
        height: 22px;
    }
    .mob-menu__search-inp{
        font-weight: 500;
        font-size: 16px;
        line-height: 110%;
        letter-spacing: -0.05em;
        border: none;
        background: #f6f7f8;
        width: 100%;
        padding: 15px 0;
        font-family: 'Geist', sans-serif;
    }
    .mob-menu__search-inp::placeholder{
        color: #a2abb7;
        font-family: 'Geist', sans-serif;
    }
    .mob-menu__search-btn{
        width: 48px;
        height: 48px;
        background: var(--color-violet);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .docs-main__info, .docs-main__list {
        width: 100%;
    }
    .docs-main{
        flex-direction: column;
    }
    .advant__item {
        min-height: 180px;
    }
    .back-to-top{
        display: none;
    }
    .header__banner-close {
        right: 35px;
    }
    .popup__main-text {
        width: calc(100% - 60px) !important;
    }
    .popup__container-mart .popup__main-text::before,
    .popup__container-mart .popup__main-text::after{
        content: none;
    }
    .block-ii__content-table{
        justify-content: flex-start;
    }

}
@media(max-width: 991px){
    .container {
        margin-left: 15px;
        margin-right: 15px;
        width: calc(100% - 30px);
    }
    /*.header__logo::before {
        left: -18px;
        top: -14px;
        background-size: contain;
        width: 38px;
        height: 49px;
    }*/
    .mob-menu__header, .mob-menu__main, .mob-menu__footer {
        padding-left: 15px;
        padding-right: 15px;
    }
    .footer__bottom{
        flex-direction: column;
        padding: 17px 0 25px 0;
    }
    .questions{
        grid-template-columns: 1fr;
    }
    .questions__panel{
        position: relative;
        top: 0;
    }
    .questions__panel-btn {
        margin-top: 30px;
    }
    .advant {
        grid-template-columns: repeat(3, 1fr);
    }
    .advant__item {
        min-height: 190px;
    }
    .header__banner-close {
        right: 20px;
    }
    .popup__main-banner{
        width: auto;
    }
    .popup__main-banner .popup__block{
        flex-direction: column;
    }
    .popup__main-banner .popup__pic img{
        height: auto;
        width: 408px;
        border-radius: 12px 12px 0 0;
    }
    .popup__main-text {
        width: calc(100% - 30px) !important;
    }
    .header__logo-mart::before{
        right: -8px;
        top: -6px;
        width: 30px;
        height: 30px;
    }
    .block-ii__btns {
        gap: 12px 17px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    .block-ii__btn {
        font-size: 24px;
    }
    .block-ii__btns-mess{
        gap: 12px;
    }

}
@media(max-width: 767px){
    .mt40 {
        margin-top: 25px;
    }
    .mt90,
    .mt100,
    .mt140 {
        margin-top: 60px;
    }
    .header .header__info-btns{
        display: none;
    }
    .h1, .h2 {
        font-size: 30px;
    }
    .video__preview-text {
        font-size: 15px;
        left: 10px;
        top: 10px;
        padding: 7px;
    }
    .docs-main__info::before{
        width: 100%;
        height: 100%;
    }
    .docs-main__item {
        padding: 10px 15px;
    }
    .docs-main__item span {
        font-size: 16px;
        padding-right: 15px;
    }
    .departments__item-title{
        display: none;
    }
    .departments__item{
        padding: 0;
    }
    .footer{
        flex-direction: column;
        gap: 30px;
    }
    .footer__contacts,
    .footer__bottom{
        align-items: flex-start;
    }
    .footer__paysys{
        margin: 0;
    }
    .title__block {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }
    .questions__panel {
        padding: 15px 10px;
    }
    .cookie__wrapper-text{
        display: none;
    }
    .cookie__wrapper{
        width: 100%;
        padding: 15px 10px;
    }
    .cookie__wrapper-close{
        right: 10px;
        top: 6px;
    }
    .cookie__wrapper-title {
        text-align: center;
        margin-bottom: 10px;
    }
    .advant {
        grid-template-columns: repeat(2, 1fr);
    }
    .advant__item {
        min-height: 175px;
    }
    .header__banner-close{
        display: none;
    }
    .popup__main-banner .popup__pic{
        display: none;
    }
    .popup__container-mart .popup__main::before, .popup__container-mart .popup__main::after{
        content: none;
    }
    .block-ii__btns{
        flex-direction: column;
    }
    .block-ii__btns > .btn__violet,
    .block-ii__btns > .block-ii__btns-mess{
        width: 100%;
    }
    .block-ii__btns > .block-ii__btns-mess{
        justify-content: center;
    }
    .block-ii__btn {
        font-size: 20px;
    }
    .block-ii__btns-mess img{
        width: 32px;
        height: 32px;
    }
    .block-ii__btns-mess {
        padding: 5px 20px;
    }

}
@media(max-width: 575px){
    .container {
        margin-left: 10px;
        margin-right: 10px;
        width: calc(100% - 20px);
    }
    .header__info{
        margin-left: auto;
    }
    .header{
        justify-content: flex-start;
    }
    .header__logo{
        width: auto;
        height: auto;
    }
    /*.header__logo::before {
        left: -19px;
        top: -19px;
        background-size: contain;
        width: 38px;
        height: 49px;
    }*/
    .header__logo svg{
        width: 150px;
        height: auto;
    }
    .header .header__info-phone{
        display: none;
    }
    .header .header__info-wa{
        font-size: 0;
    }
    .header__info-wa svg{
        display: block;
    }
    .header .header__info-wa::before{
        content: none;
    }
    .header__info-tg{
        display: flex;
    }
    .header__info{
        gap: 15px;
    }
    header .header__info-wa svg,
    header .header__info-tg svg{
        width: 32px;
        height: 32px;
    }
    .header__burger{
        margin-left: 15px;
    }
    .header__burger svg, .mob-menu__close svg {
        width: 22px;
        height: 22px;
    }
    .video__container{
        height: 370px;
    }
    .video__preview-text{
        font-size: 13px;
    }
    .video__preview-play svg {
        width: 60px;
        height: 60px;
    }
    .docs-main__info{
        padding: 20px 15px;
        min-height: 300px;
    }
    .departments__item-logo {
        width: 60px;
        height: 60px;
    }
    .title__block-btn{
        display: none;
    }
    .title__block-btn-mob{
        display: flex;
        margin-top: 20px;
        width: 100%;
        padding: 15px 25px;
    }
    .title__min{
        font-size: 30px;
    }
    .mob-menu__header-logo svg {
        width: auto;
        height: 36px;
    }
    .mob-menu__header, .mob-menu__main, .mob-menu__footer {
        padding-left: 10px;
        padding-right: 10px;
    }
    .popup__main {
        max-width: 95%;
        padding: 40px 10px 20px 10px;
    }
    .container-seo-text img{
        max-width: 100%!important;
    }
    .content p,
    .content ul li{
        font-size: 15px;
    }
    .content h3 {
        font-size: 18px;
        margin: 16px 0;
    }
    .fix-footer{
        display: flex;
        position: fixed;
        z-index: 10;
        left: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #f6f6f6;
    }
    .fix-footer__block{
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 8px 10px 16px 10px;
        gap: 10px;
    }
    .fix-footer__block-link{
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        text-decoration: none;
    }
    .fix-footer__block-link svg{
        width: 20px;
        height: 20px;
    }
    .fix-footer__block-link p{
        display: flex;
        margin: 0;
        margin-top: 4px;
        font-weight: 500;
        font-size: 14px;
        line-height: 110%;
        color: #1b1d20;
    }
    .fix-footer__block-link span{
        position: absolute;
        top: -5px;
        right: -5px;
        border-radius: 50%;
        background: var(--color-violet);
        color: #fff;
        font-weight: 700;
        font-size: 13px;
        line-height: 100%;
        width: 23px;
        height: 23px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .header__info-social{
        gap: 15px;
    }
    .mob-menu__footer-social{
        margin-top: 20px;
    }
    .mob-menu__footer-social .header__info-wa img,
    .mob-menu__footer-social .header__info-tg img{
        width: 40px;
        height: 40px;
    }
    body > jdiv > jdiv:nth-child(1) > jdiv:nth-child(1) > jdiv:nth-child(1){
        margin-bottom: 70px!important;
    }
    .advant {
        grid-template-columns: 1fr;
    }
    .advant__item-icon {
        width: 50px;
        min-width: 50px;
        margin-bottom: 30px;
    }
    .advant__item-count{
        font-size: 18px;
        top: 15px;
        right: 15px;
    }
    .advant__item{
        padding: 15px;
        min-height: inherit;
    }
    .advant__item-title br{
        display: none;
    }
    main{
        margin-top: 61px;
    }
    /*main.main {
        margin-top: -60px;
    }*/
    .popup__main-banner .popup__info{
        padding: 0;
    }
    .popup__main-text {
        width: calc(100% - 20px) !important;
    }
    .popup__block-text p{
        font-size: 18px;
    }
    .header__logo-mart::before{
        top: -10px;
        right: -3px;
    }
    .line-mart{
        background-size: cover;
        background-position: 100% 50%;
        bottom: 64px;
        height: 67px;
    }
    .block-ii__content{
        padding: 20px 15px;
    }
    .block-ii__content h2{
        font-size: 22px;
        line-height: 110%;
        margin-bottom: 20px;
    }
    .block-ii__content h3{
        font-size: 18px;
        line-height: 110%;
        margin-bottom: 15px;
    }
    .block-ii__content > p,
    .block-ii__content li{
        font-size: 16px;
        line-height: 135%;
        margin-bottom: 12px;
    }
    .block-ii__content ul,
    .block-ii__content ol{
        padding-left: 25px;
        margin-bottom: 12px;
    }
    .block-ii__content table{
        border-collapse: collapse;
    }
    .block-ii__content table th,
    .block-ii__content table td{
        font-size: 15px;
        line-height: 135%;
    }
    .block-ii__content table th{
        padding: 12px 10px;
    }
    .block-ii__content table td{
        padding: 10px 10px;
    }
    .block-ii__content table + h2,
    .block-ii__content table + h3,
    .block-ii__content ol + h2,
    .block-ii__content ol + h3,
    .block-ii__content ul + h2,
    .block-ii__content ul + h3,
    .block-ii__content > p + h2,
    .block-ii__content > p + h3{
        margin-top: 20px;
    }

}
@media(max-width: 374px){
    .departments__item-logo {
        width: 50px;
        height: 50px;
    }
    .fix-footer__block{
        padding: 8px 0 16px 0;
    }
    .fix-footer__block-link p{
        font-size: 13px;
    }
    .fix-footer__block-link svg{
        width: 16px;
        height: 16px;
    }
    .fix-footer__block-link span{
        width: 20px;
        height: 20px;
        font-size: 12px;
        right: -3px;
    }
    .cookie__wrapper-title {
        font-size: 14px;
    }
    .header__info-social {
        gap: 5px;
    }
    .header__burger {
        margin-left: 5px;
    }
    .header__logo {
        width: 130px;
    }
}