.clearfix:before, .clearfix:after {
    content: '';
    display: table;
}
.clearfix:after {
    clear: both;
}

*::-webkit-input-placeholder {
	color: #858585;
	opacity: 1;
}

*:-moz-placeholder {
	color: #858585;
	opacity: 1;
}
*::-moz-placeholder {
	color: #858585;
	opacity: 1;
}
*:-ms-input-placeholder {
	color: #858585;
	opacity: 1;
}

*{
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

body {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 1.3;
    background: #f3f3f3;
    position: relative;
    overflow-x: hidden;
}

.container{
    width: 100%;
    max-width: 1710px;
    min-width: 320px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

.hidden {
  display: none !important;
}

.form-group{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group .title{
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #3b3b39;
}

.form-group input.blur,
.form-group input[type='text']:not(.input-white),
.form-group input[type='tel']:not(.input-white),
.form-group input[type='email']:not(.input-white){
    width: 100%;
    height: 48px;
    padding: 0 14px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    border-radius: 10px;
    border: 1px solid #e2e5ea;
    background: #fafbfc;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.form-group input.blur:focus,
.form-group input[type='text']:not(.input-white):focus,
.form-group input[type='tel']:not(.input-white):focus,
.form-group input[type='email']:not(.input-white):focus{
    border-color: #00728a;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 114, 138, 0.12);
    outline: none;
}

.form-group select.blur,
.form-group select.bti-service-variant-select{
    width: 100%;
    height: 48px;
    padding: 0 40px 0 14px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.3;
    color: #3b3b39;
    border-radius: 10px;
    border: 1px solid #e2e5ea;
    background-color: #fafbfc;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235c6670' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group select.blur:focus,
.form-group select.bti-service-variant-select:focus{
    border-color: #00728a;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(0, 114, 138, 0.12);
    outline: none;
}

.form-group select.blur:disabled,
.form-group select.bti-service-variant-select:disabled{
    opacity: 0.65;
    cursor: not-allowed;
}

.action__form .form-group .title{
    color: #fff;
}

/* Кастомные чекбоксы согласия (checkbox_n.svg / checkbox.svg) */
.bti-consent {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.bti-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.45;
    color: #4a5568;
}

.bti-checkbox input[type="checkbox"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.bti-checkbox__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    background: url(../img/action/checkbox_n.svg) center / contain no-repeat;
}

.bti-checkbox input:checked + .bti-checkbox__icon {
    background-image: url(../img/action/checkbox.svg);
}

.bti-checkbox__label {
    flex: 1;
    min-width: 0;
}

.bti-checkbox__label a {
    color: inherit;
    text-decoration: underline;
}

.action__form .bti-consent {
    margin-top: 16px;
}

.action__form .bti-checkbox {
    color: #fff;
}

.action__form .bti-checkbox__label a {
    color: #fff;
}

/* legacy-обёртки */
.agree {
    margin-top: 12px;
}

.agree a {
    color: inherit;
    text-decoration: underline;
}

input[type='text'],
input[type='password'],
input[type='search'],
input[type='email'],
input[type='tel']{
    width: 100%;
    height: 42px;
    padding: 0 15px;
    color: #3b3b39;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    background-color: #fff;
    border: none;
    border-radius: 0;
    transition: .3s;
}

input[type='text'].input-white,
input[type='password'].input-white,
input[type='search'].input-white,
input[type='email'].input-white,
input[type='tel'].input-white{
    height: 56px;
    border-radius: 8px;
    font-size: 15px;
}

/* Единый вид .input-white для любого type (tel, number, date и т.д.) */
input.input-white{
    width: 100%;
    height: 56px;
    padding: 0 15px;
    box-sizing: border-box;
    color: #3b3b39;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: normal;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    transition: .3s;
    -webkit-appearance: none;
    appearance: none;
}
input.input-white::placeholder{
    color: #707070;
    opacity: 1;
}

textarea{    
    width: 100%;
    height: 120px;
    padding: 12px;
    color: #707070;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #00728A;
    border-radius: 0;
    resize: none;
}

input:focus{
    outline: none;
}

textarea:focus{
    outline: none;
}

select:focus{
    outline: none;
}

.cols{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col{
    padding: 0 15px;
}

.btn{
    display: inline-block;
    border: medium none;
    background: transparent;
    cursor: pointer;
    transition: .3s;
    font-family: 'Inter', sans-serif;
}

.btn-green{
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 25px;
    background: #38aa34;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

.btn-green:hover,
.btn-green:active{
    opacity: .8;
}

.btn-blue{
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 25px;
    background: #2b87c8;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
}

.btn-blue:hover,
.btn-blue:active{
    opacity: .8;
}

.btn .arrow-pixel{
    margin-left: 34px;
}

.arrow-pixel{
    width: 40px;
    height: 40px;
    display: block;
    flex-shrink: 0;
    background: url(../img/arrow-pixel.svg) center no-repeat;
}

button:focus{
    outline: none;
}

.slick-dots{
    position: absolute;
    text-align: center;
    bottom: 25px;    
    width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
}

.slick-dots li{
    width: auto;
    height: auto;
    margin: 0 6px!important;
    padding: 0!important;
}

.slick-dots li:before{
    display: none;
}

.slick-dots li button{
    width: 15px;
    height: 15px;
    padding: 0;
    overflow: hidden;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #00728A;
    opacity: 1;
    text-indent: -9999px;
    transition: .3s;
}

.slick-dots li.slick-active button{
    background-color: #00728A;
}

.slick-prev, 
.slick-next{
    width: 65px;
    height: 65px;
    z-index: 9;
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    border-radius: 0;
    background-position: center !important;
    background-color: transparent !important;
    background-repeat: no-repeat !important;
}

.slick-prev:before,
.slick-next:before{
    content: none;
    
}

.slick-prev{
    left: 0;
    background-image: url(../img/prev.svg)!important;
}

.slick-prev:hover{
    opacity: .8;
}

.slick-next{
    right: 0;
    background-image: url(../img/next.svg)!important;

}

.slick-next:hover{
    opacity: .8;
}

.slick-dotted.slick-slider{
    margin-bottom: 0;
}

.swiper{
    width: 100%;
    
}

.swiper-button-prev:after, 
.swiper-rtl .swiper-button-next:after{
    display: none;
}

.swiper-button-next:after, 
.swiper-rtl .swiper-button-prev:after{
    display: none;
}

.swiper-button-next,
.swiper-button-prev{
    width: 28px;
    height: 20px;
    outline: none;
    box-shadow: none;
    transition: .3s;
}

.swiper-slide *:focus{
    outline: none;
}

.swiper-button-next{
    background: url(../img/next.svg) center no-repeat;
    right: 0;
    left: auto;
}

.swiper-button-next:hover{
    opacity: .8;
}

.swiper-button-prev{
    background: url(../img/prev.svg) center no-repeat;
    left: 0;
    right: auto;
}

.swiper-button-prev:hover{
    opacity: .8;
}

.controls{
    width: 458px;
    max-width: 100%;
    height: 93px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: auto;
    padding-left: 120px;
    padding-right: 120px;
    background: url(../img/header/bottom.svg) left top no-repeat;
    position: relative;
    box-sizing: border-box;
}

.controls.dark{
    width: 280px;
    height: 45px;
    padding: 0;
    background: transparent;
}

.controls .swiper-button-next,
.controls .swiper-button-prev{
    position: static;
    flex-shrink: 0;
    margin: 0;
}

.controls .swiper-pagination-progressbar{
    width: 140px;
    position: static;
    flex-shrink: 0;
    margin: 0 40px;
}

.swiper-pagination-progressbar{
    height: 3px;
    background: rgba(43, 135, 200, 0.22);
    backdrop-filter: blur(12px);
    border-radius: 100px;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background: #2b87c8;
    border-radius: 100px;
}

.title-block{
    font-weight: 500;
    font-size: 54px;
    line-height: 1.1;
    color: #3b3b39;
}

.title-block.white{
    color: #fff;
}

.title-block span{
    color: #989898;
}

.section{
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.section-bg{
    background: url(../img/section-bg.svg) left 90% no-repeat;
}

.section__cols{
    display: flex;
    flex-wrap: wrap;
}

.section__left{
    width: 350px;
    flex-shrink: 0;
    padding-left: 54px;
    padding-right: 30px;
}

.section__right{
    width: calc(100% - 350px);
}

.burger{
    width: 32px;
    display: none;
    margin-left: auto;
}

.header__actions{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-left: auto;
}

.header-services-mob{
    display: none;
}

.burger span{
    display: block;
    height: 3px;
    background: #2b87c8;
    margin: 7px 0;
}

.menu-close{
    width: 28px;
    height: 28px;
    display: block;
    position: absolute;
    background: transparent url(../img/close.svg) center no-repeat;
    background-size: contain;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.menu-mob{
    width: 100%;
    position: fixed;
    top: 0;
    height: 100%;
    padding: 48px 12px 20px;
    overflow: auto;
    background: #fff;
    z-index: 99;
    display: none;
}

.menu-mob__item{
    margin-top: 20px;
}

/**HEADER**/
.header{
    width: 100%;
    display: block;
    padding-top: 24px;
    padding-bottom: 0;
    position: relative;
    z-index: 12;
}

.header__top{
    padding-bottom: 0;
    margin-bottom: -3px;
}

.header__top .cols{
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.header__top .left{
    width: 458px;
    background: url(../img/header/top.svg) left top no-repeat;
    
}

.header .logo{
    display: flex;
    align-items: center;
}

.header .logo a{
    display:block;
    padding:10px 10px 10px 20px;
}
.header .logo img{
    width: 75px;
    display: block;
}

.header .logo p{
    padding:5px;    
    padding-left: 10px;
    font-weight: 400;
    font-size: 15px;
    color: #868786;
}

.header .logo p span{
    display: block;
    padding-bottom: 5px;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    color: #3b3b39;
}

.header__place{
    margin-bottom: 7px;
    padding-left: 22px;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    color: #3b3b39;
}

.header__place:before{
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/header/place.svg) center no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header__time{
    margin-bottom: 7px;
    padding-left: 22px;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    color: #3b3b39;
}

.header__time:before{
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/header/time.svg) center no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.header__link{
    font-weight: 400;
    font-size: 14px;
    color: #38aa34;
}

.header__link.p-l{
    padding-left: 22px;
}

.header__link a{
    color: inherit;
    border-bottom: 1px dashed #38aa34;
    transition: .3s;
}

.header__link a:hover,
.header__link a:active{
    color: #2B87C8;
    border-color: #2B87C8;
}

.header__phone{
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 18px;
    color: #3b3b39;
}

.header__phone a{
    color: inherit;
}

.header__phone span{
    display: block;
    padding-top: 7px;
    font-weight: 400;
    font-size: 13px;
    color: #a0a0a0;
}

.social{
    display: flex;
    gap: 8px;
}

.social__item{

}

.social__item a{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    border: 1px solid #2B87C8;
    border-radius: 2px;
}

.social__item img{
    max-width: 100%;
    display: block;
}

.switch{
    display: inline-flex;
    padding: 6px;
    background: #fff;
    border-radius: 8px;
}

.switch.dark{
    background: #1e1e1e;
}

.switch__item{
    min-width: 135px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    font-weight: 500;
    font-size: 14px;
    text-align: center;
    color: #3b3b39;
    cursor: pointer;
    border-radius: 8px;
    transition: .3s;
    text-decoration: none;
}

.switch.dark .switch__item{
    color: #fff;
}

.switch__item.active{
    background: #ededed;
}

.switch.dark .switch__item.active{
    color: #434342;
}

.eye{
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    background: url(../img/header/eye.svg) center no-repeat;
    background-color: transparent;
    border: 1px solid #2b87c8;
    border-radius: 2px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.header__bottom{
    width: 100%;
    padding-top: 14px;
    position: absolute;
    top: 100%;
    z-index: 3;
}

.header_inner .header__bottom{
    padding-top: 0;
    position: relative;
    top: auto;
}

.header_inner .header__bottom .in{
    padding: 10px 20px;
    background: #fff;
    border-radius: 0 18px 18px 18px;
}

.header__bottom .cols{
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.header__bottom .left{
    width: 458px;
    padding-top: 14px;
}

.nav{

}

.nav > ul{
    display: flex;
    gap: 50px;
    list-style: none;
    position: relative;
    z-index: 100;
}

.nav > ul > li{
    position: relative;
}

.nav > ul > li > a{
    display: flex;
    align-items: center;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    color: #3b3b39;
    text-transform: uppercase;
    transition: .3s;
}

.nav.white > ul > li > a{
    color: #fff;
}

.nav > ul > li > a i{
    width: 8px;
    height: 4px;
    display: block;
    flex-shrink: 0;
    margin-left: 6px;
    background: url(../img/header/angle_down.svg) center no-repeat;
}

.nav.white > ul > li > a i{
    filter: invert(100%);
}

.nav > ul > li.active > a{
    color: #38aa34;
}

.nav > ul ul{
    width: 300px;
    display: none;
    background: #F3F3F3;
    padding: 12px;
    list-style: none;
    border-radius: 8px;
    position: absolute;
    top: 100%;
    left: -24px;
    z-index: 101;
}

.nav > ul ul li{

}

.nav > ul ul li a{
    display: block;
    padding: 8px 12px;
    font-weight: 600;
    font-size: 14px;
    color: #3b3b39;
    transition: .3s;
}

.nav > ul ul li.active a{
    color: #38aa34;
}

.nomer{
    padding: 4px;
    border: 1px solid #ededed;
    border-radius: 6px;
}

.header__bottom .nomer{
    margin-right: 20px;
}

.header_inner .header__bottom .nomer{
    margin-right: 0;
}

.nomer form{
    display: flex;
    align-items: center;
}

.nomer--entity{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    border: 0;
    padding: 0;
    background: transparent;
}

.nomer--entity .btn{
    margin: 0;
    white-space: nowrap;
}

.nomer input{
    width: 218px;
    flex-shrink: 0;
}

.nomer .btn{
    min-height: 42px;
    font-size: 13px;
    white-space: nowrap;
}

/**INTRO**/
.intro{
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.intro .in{
    padding: 100px 20px 50px 77px;
    background: #fff;
    border-radius: 0 18px 0 18px;
}

.intro__cols{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.intro__left{
    width: calc(100% - 794px);
    padding-right: 30px;
}

.intro__right{
    width: 794px;
    flex-shrink: 0;
}

.intro .title{
    margin-bottom: 40px;
    font-weight: 600;
    font-size: 54px;
    color: #3b3b39;
}

.intro .title span{
    display: block;
    padding-top: 25px;
    font-weight: 400;
    font-size: 28px;
    color: #686865;
}

.intro .pic{
    height: 498px;
}

.intro .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 18px;
}

.intro .btn{
    margin-bottom: 80px;
}

.intro p{
    font-weight: 400;
    font-size: 18px;
    color: #3b3b39;
}

.intro p span,
.intro p a{
    font-weight: 600;
    color: #2b87c8;
}

/**CONTENT**/
.content{
    width: 100%;
    display: block;
    position: relative;
    z-index: 1;
}

.content h1{
    margin-bottom: 35px;
    font-weight: 600;
    font-size: 54px;
    line-height: 1.03704;
    color: #3b3b39;
}

.content h1.is-long-title{
    font-size: 34px;
}

.content h1 span{
    color: #989898;
}

.content h2{
    margin-bottom: 35px;
    font-weight: 500;
    font-size: 54px;
    line-height: 1.03704;
    color: #3b3b39;
}

.content h2 span{
    color: #989898;
}

.content h3{
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    color: #3b3b39;
}

.content p{
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.46667;
    color: #6a6a6a;
}

.content__head{
    padding: 12px 20px;
}

.content__body{
    padding: 25px 45px 25px 20px;
    background: #fff;
    border-radius: 18px;
}

.content__cols{
    display: flex;
    flex-wrap: wrap;
}

.content__left{
    width: 440px;
    flex-shrink: 0;
}

.content__right{
    width: calc(100% - 440px);
    padding-left: 65px;
}

.breadcrumbs{
    
}

.breadcrumbs ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumbs ul li{
    padding-right: 20px;
    position: relative;
    font-size: 15px;
    font-weight: 400;
    color: #2b87c8;
}

.breadcrumbs ul li:before{
    content: ">";
    color: #a7a7a7;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    font-size: 12px;
}

.breadcrumbs ul li:last-child:before{
    content: none;
}

.breadcrumbs ul li a{
    display: block;
    color: #000;
}

.sub-title{
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #313130;
}

.services-sidebar__toggle{
    display: none;
    width: 100%;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
    padding: 12px 16px;
    border: 0;
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    text-align: left;
}

.services-sidebar__burger{
    width: 32px;
    flex-shrink: 0;
}

.services-sidebar__burger span{
    display: block;
    height: 3px;
    background: #2b87c8;
    margin: 7px 0;
}

.services-sidebar__toggle-text{
    flex: 1;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #313130;
}

.services-sidebar.is-open .services-sidebar__burger span:nth-child(1){
    transform: translateY(10px) rotate(45deg);
}

.services-sidebar.is-open .services-sidebar__burger span:nth-child(2){
    opacity: 0;
}

.services-sidebar.is-open .services-sidebar__burger span:nth-child(3){
    transform: translateY(-10px) rotate(-45deg);
}

.services-sidebar__burger span{
    transition: .25s;
}

.menu{

}

.menu > ul{
    list-style: none;
}

.menu > ul > li{
    border-bottom: 1px solid #e9e9e9;
}

.menu > ul > li > a{
    display: flex;
    align-items: center;
    padding-right: 30px;
    font-weight: 400;
    font-size: 15px;
    color: #313130;
    transition: .3s;
}

.menu > ul > li.active > a,
.menu > ul > li:hover > a{
    color: #38aa34;
}

.menu > ul > li .pic{
    width: 66px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 18px;
}

.menu > ul > li .pic img{
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.menu > ul > li span{
    padding-right: 12px;
}

.menu > ul > li i{
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    margin-left: auto;
    background: url(../img/menu/arrow.svg) center no-repeat;
}

.paper{

}

.paper .pic{
    max-width: 510px;
    margin-bottom: 35px;
}

.paper .pic img{
    width: 100%;
    display: block;
    border-radius: 18px;
}

/* Текст CMS в .paper__text — типографика, ссылки как в .header__link */
.paper__text {
    font-weight: 400;
    font-size: 15px;
    line-height: 1.46667;
    color: #6a6a6a;
}

.paper__text p {
    margin: 0 0 1em;
}

.paper__text p:last-child {

}

.paper__text a:not(.btn):not([class*='btn-']) {
    color: #38aa34;
    border-bottom: 1px dashed #38aa34;
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
}

.paper__text a:not(.btn):not([class*='btn-']):visited {
    color: #38aa34;
    border-bottom-color: #38aa34;
}

.paper__text a:not(.btn):not([class*='btn-']):hover,
.paper__text a:not(.btn):not([class*='btn-']):active {
    color: #2B87C8;
    border-bottom-color: #2B87C8;
}

.paper__text strong,
.paper__text b {
    font-weight: 600;
    color: #3b3b39;
}

/* Списки в текстовом блоке страницы (CMS HTML) */
.paper__text ul,
.paper__text ol {
    margin: 0.75em 0 1em;
    padding-left: 1.5em;
    list-style-position: outside;
}
.paper__text ul {
    list-style-type: disc;
}
.paper__text ol {
    list-style-type: decimal;
}
.paper__text li {
    margin: 0.35em 0;
    line-height: 1.45;
    color: #6a6a6a;
}
.paper__text li::marker {
    color: #38aa34;
}
.paper__text li > ul,
.paper__text li > ol {
    margin: 0.4em 0 0.6em;
}
.paper__text ul ul {
    list-style-type: circle;
}
.paper__text ul ul ul {
    list-style-type: square;
}

/* Подзаголовки в CMS-тексте меньше основного .content h1 */
.paper__text h2,
.paper__text h3,
.paper__text h4 {
    color: #3b3b39;
}
.paper__text h2 {
    margin: 1.1em 0 0.6em;
    font-weight: 600;
    font-size: 30px;
    line-height: 1.12;
}
.paper__text > h2:first-child,
.paper__text > h3:first-child,
.paper__text > h4:first-child {
    margin-top: 0;
}
.paper__text h3 {
    margin: 1em 0 0.55em;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
}
.paper__text h4 {
    margin: 0.9em 0 0.5em;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.25;
}

/** ORDER STATUS (1С /info/status/) **/
.bti-order-status {
    margin-top: 8px;
}
.bti-order-status__summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 16px;
    margin-bottom: 24px;
    padding: 18px 22px;
    background: #f7f8f9;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
}
.bti-order-status__label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6b6b6a;
}
.bti-order-status__badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}
.bti-order-status__badge--pay {
    background: #f0a020;
}
.bti-order-status__badge--ok {
    background: #38aa34;
}
.bti-order-status__badge--progress {
    background: #2b87c8;
}
.bti-order-status__badge--cancel {
    background: #d9534f;
}
.bti-order-status__badge--default {
    background: #434342;
}
.bti-order-status__body {
    font-size: 16px;
    line-height: 1.5;
    color: #313130;
}
.bti-order-status__table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #e9e9e9;
}
.bti-order-status__table,
.bti-order-status table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.bti-order-status__table th,
.bti-order-status__table td,
.bti-order-status table th,
.bti-order-status table td {
    padding: 14px 18px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid #e9e9e9;
    font-size: 15px;
    line-height: 1.45;
}
.bti-order-status__table tr:last-child td,
.bti-order-status table tr:last-child td {
    border-bottom: none;
}
.bti-order-status__head th,
.bti-order-status__head td,
.bti-order-status__table thead th,
.bti-order-status table thead th {
    background: #434342;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border-bottom: none;
}
.bti-order-status__table tr:nth-child(even):not(.bti-order-status__head) td,
.bti-order-status table tbody tr:nth-child(even) td {
    background: #fafafa;
}
.bti-order-status__plain {
    padding: 20px 22px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
}
.bti-order-status__plain p {
    margin: 0 0 0.75em;
}
.bti-order-status__plain p:last-child {
    margin-bottom: 0;
}
.bti-order-status__list {
    display: grid;
    gap: 10px;
}
.bti-order-status__list-item {
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.45;
}
.bti-order-status__list-item:first-child {
    background: #434342;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.03em;
}
.bti-order-status__actions {
    margin-top: 28px;
    padding: 22px 24px;
    background: linear-gradient(135deg, #f7fbf7 0%, #f0f7fb 100%);
    border: 1px solid #dbe8d8;
    border-radius: 12px;
}
.bti-order-status__pay-sum {
    margin: 0 0 16px;
    font-size: 18px;
    color: #313130;
}
.bti-order-status__pay-sum strong {
    color: #38aa34;
    font-weight: 700;
}
.bti-order-status__pay {
    margin: 0;
}
.bti-order-status--empty {
    margin-top: 0;
}
.bti-order-status__empty {
    padding: 36px 28px;
    text-align: center;
    background: #fff;
    border: 1px dashed #d8d8d8;
    border-radius: 12px;
}
.bti-order-status__empty-title {
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 600;
    color: #434342;
}
.bti-order-status__empty-text {
    max-width: 560px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.55;
    color: #6b6b6a;
}

/* 404 в стиле сайта */
.bti-404-wrap {
	padding-bottom: 56px;
}
.bti-404 {
	max-width: 680px;
	margin: 8px auto 0;
	padding: 48px 36px 40px;
	text-align: center;
	background: #fff;
	border: 1px solid #e8ecef;
	border-radius: 12px;
	box-shadow: 0 10px 32px rgba(0, 114, 138, 0.07);
}
.bti-404__code {
	margin: 0 0 8px;
	font-family: 'Inter', sans-serif;
	font-size: 88px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
	color: #38aa34;
}
.bti-404__lead {
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.35;
	color: #434342;
}
.bti-404__text {
	margin: 0 auto 28px;
	max-width: 480px;
	font-size: 16px;
	line-height: 1.55;
	color: #6b6b6a;
}
.bti-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	align-items: center;
}
.bti-404__btn-secondary {
	background: #fff !important;
	color: #00728a !important;
	border: 2px solid #00728a;
	box-shadow: none;
}
.bti-404__btn-secondary:hover,
.bti-404__btn-secondary:active {
	background: rgba(0, 114, 138, 0.08) !important;
	color: #00728a !important;
}
@media (max-width: 575px) {
	.bti-404 {
		padding: 28px 18px 24px;
		border-radius: 10px;
	}
	.bti-404__code {
		font-size: 64px;
	}
	.bti-404__lead {
		font-size: 18px;
	}
	.bti-404__actions {
		flex-direction: column;
		align-items: stretch;
	}
	.bti-404__actions .btn {
		width: 100%;
		text-align: center;
	}
}

/* Один вид блока-заголовка секции — независимо от h1/h2/h3/div */
.content .content__title,
.content h1.content__title,
.content h2.content__title,
.content h3.content__title,
.content h4.content__title,
.content div.content__title,
.content a.content__title {
    display: block;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 25px;
    padding: 20px 25px;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.25;
    color: #fff;
    background: #434342 url(../img/content__title.svg) right center no-repeat;
    border-radius: 12px;
    text-decoration: none;
}
.content a.content__title{
    cursor: default;
}
.content h1.content__title span,
.content h2.content__title span,
.content h3.content__title span,
.content h4.content__title span,
.content .content__title span {
    color: inherit;
}

/**ADVANTAGES**/
.advantages{

}

.advantages .items{
    display: flex;
    gap: 24px;
}

.advantages .item{

}

.advantages .item.w-1{
    width: 34%;
}

.advantages .item.w-2{
    width: 22%;
}

.advantages .item .in{
    min-height: 340px;
    position: relative;
}

.advantages .item .in.dark{
    padding: 60px 40px;
    background: url(../img/advantages/dark_bg.svg) right bottom no-repeat;
    background-size: cover;
    border-radius: 18px;
}

.advantages .item .in.dark:before{
    content: "";
    width: 100%;
    height: 100%;
    background: url(../img/advantages/dark_bg_2.svg) left center no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.advantages .item .in.dark .title{
    font-weight: 500;
    font-size: 36px;
    color: #fff;
    position: relative;
    z-index: 3;
}

.advantages .item .in.dark .bottom{
    width: 114px;
    height: 114px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    border-radius: 40px 0 0 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}

.btn-big-arrow-gray{
    width: 90px;
    height: 90px;
    display: block;
    flex-shrink: 0;
    background: #434342 url(../img/arrow-white.svg) center no-repeat;
    border-radius: 100%;
}

.btn-big-arrow-gray:hover,
.btn-big-arrow-gray:active{
    opacity: .8;
}

.advantages .item .in.green{
    padding: 30px 36px;
    background: #38aa34;
    border-radius: 18px;
}

.advantages .item .in.green .title{
    margin-bottom: 10px;
    font-size: 24px;
    color: #fff;
    font-weight: 600;
    letter-spacing: -0.07em;

}

.advantages .item .in.green .title span{
    font-size: 80px;
    line-height: .8;
}

.advantages .item p{
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
    color: #2e2e2e;
}

.advantages .item .in.green .bottom{
    display: flex;
    justify-content: center;
    padding-top: 12px;
}

.btn-dark-cir{
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 5px 5px 21px;
    background: #3b3b39;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
}

.btn-dark-cir:hover,
.btn-dark-cir:active{
    opacity: .8;
}

.btn-dark-cir i{
    width: 40px;
    height: 40px;
    display: block;
    flex-shrink: 0;
    margin-left: 10px;
    background: #fff url(../img/arrow-dark.svg) center no-repeat;
    border-radius: 100%;
}

.advantages .item .in.blue{
    padding: 30px 36px;
    background: #2b87c8;
    border-radius: 18px;
}

.advantages .item .shild{
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 3px 18px;
    font-weight: 600;
    font-size: 24px;
    color: #3b3b39;
    border: 1px solid #3b3b39;
    border-radius: 20px;
}

.advantages .item .in.blue .title{
    font-weight: 600;
    font-size: 22px;
    color: #3b3b39;    
}

.advantages .item .in.blue .title span{
    display: block;
    font-weight: 600;
    font-size: 128px;
    letter-spacing: -0.07em;
    color: #fff;
    line-height: 1;
}

.advantages .item .in.white{
    padding: 30px 36px;
    background: #fff;
    border-radius: 18px;
}

.advantages .item .in.white .title{
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 24px;
    color: #313130;
}

.advantages .item .in.white .num{
    font-weight: 600;
    font-size: 70px;
    letter-spacing: -0.07em;
    color: #2b87c8;
    line-height: 1;
}

.advantages .item .in.white .title-2{
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 24px;
    color: #434342;
}

.advantages .item .in.white p{
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
    color: #2e2e2e;
}

/**CERT**/
.cert{

}

.cert-dark{
    padding: 54px 54px 24px;
    background: #313130 url(../img/cert/bg.svg) left bottom no-repeat;
    background-size: cover;
    border-radius: 18px;
}

.cert__cols{
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 60px;
}

.cert__left{
    width: 530px;
    flex-shrink: 0;
}

.cert__right{
    width: calc(100% - 530px);
    padding-left: 70px;
}

.cert .pic{

}

.cert .pic img{
    width: 100%;
    display: block;
    border-radius: 12px;
}

.cert-dark .controls{
    height: auto;
    padding-top: 34px;
    margin-left: auto;
    margin-right: 405px;
    max-width: 100%;
    box-sizing: border-box;
}

/**SERVICES**/
.services{

}

.services .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -13px;
}

.services .item{
    width: 33.33%;
    padding: 0 13px;
    margin-bottom: 26px;
}

.services .item .in{
    min-height: 278px;
    height: 100%;
    padding: 44px 40px;
    background: url(../img/services/bg.svg) right bottom no-repeat;
    background-size: cover;
    border-radius: 18px;
    position: relative;
    transition: .3s;
}

.services .item .in:hover{
    background-image: url(../img/services/bg_h.svg);
}

.services .item .title{
    margin-bottom: 18px;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.08333;
    color: #3b3b39;
    transition: .3s;
}

.services .item p{
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
    color: #6a6a6a;
    transition: .3s;
}

.services .item .in:hover .title,
.services .item .in:hover p{
    color: #fff;
}

.services .item p a{
    color: inherit;
}

.services .item .arrow{
    width: 27px;
    height: 24px;
    display: block;
    background: url(../img/services/arrow.svg) center no-repeat;
    position: absolute;
    bottom: 5px;
    right: 5px;
    transition: .3s;
}

.services .item .in:hover .arrow{
    background: url(../img/services/arrow_h.svg);
}

.services .item .tel{
    font-weight: 600;
    font-size: 15px;
    color: #6a6a6a;
}

.services .item .tel span,
.services .item .tel a{
    color: #2b87c8;
}

.services .item .in:hover .tel,
.services .item .in:hover .tel span,
.services .item .in:hover .tel a{
    color: #fff;
}

/**STILL**/
.still{
    padding: 55px;
    background: #434342;
    border-radius: 18px;
}

.still__cols{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.still__left{
    width: 520px;
    flex-shrink: 0;
    padding-right: 30px;
}

.still__right{
    width: calc(100% - 520px);
}

.still__form{
    max-width: 822px;
    padding: 4px;
    background: #fff;
    border-radius: 6px;
}

.still__form form{
    display: flex;
    align-items: center;
}

.still__form input{
    font-size: 15px;
    flex-grow: 1;
}

.still__form .btn{
    min-height: 42px;
    font-size: 13px;
    white-space: nowrap;
}

.custom-select {
  position: relative;
  display: inline-block;
  width: 200px;
}

.still__form .custom-select{
    width: 248px;
    flex-shrink: 0;
    margin-right: 7px;
}

.custom-select select{
    height: 44px;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 8px 14px;
    border: none;
    border-radius: 8px;
    background: #f3f3f3;
    cursor: pointer;
    color: #3b3b39;
    font-weight: 400;
    font-size: 14px;
}

.custom-select::after {
    content: "";
    width: 9px;
    height: 5px;
    background: url(../img/down.svg) center no-repeat;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    pointer-events: none; /* Чтобы клик не перехватывался */
}

@-moz-document url-prefix() {
  .custom-select select {
    text-indent: 0.01px;
    text-overflow: '';
  }
}

/**ACTION**/
.action{
    padding: 72px 54px;
    position: relative;
    background: #2b87c8;
    border-radius: 18px;
}

.action:before{
    content: "";
    width: 436px;
    height: 436px;
    background: url(../img/action/bg.svg) center no-repeat;
    position: absolute;
    top: 50%;
    right: -63px;
    transform: translateY(-50%);
    z-index: 1;
}

.action__cols{
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.action__left{
    width: 520px;
    flex-shrink: 0;
    padding-right: 30px;
}

.action__right{
    width: calc(100% - 520px);
}

.action__form{
    max-width: 677px;
}

.action__form .title{
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.16667;
    color: #fff;
}

.action__form .cols{
    margin: 0 -10px;
    
}

.action__form .col{
    width: 50%;
    padding: 0 10px;
}

.action__form .btn{
    width: 100%;
    max-width: 328px;
    margin-top: 28px;
}

/**FAQ**/
.faq{
    padding: 70px 54px;
    background: #fff;
    border-radius: 18px;
}

.faq__cols{
    display: flex;
    flex-wrap: wrap;
    padding-top: 70px;
}

.faq__left{
    width: 355px;
    flex-shrink: 0;
    padding-right: 30px;
}

.faq__right{
    width: calc(100% - 355px);
}

.tabs__caption{
    max-width: 236px;
    list-style: none;
}

.tabs__caption li{
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 3px 15px;
    border: 1px solid #2b87c8;
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    color: #2b87c8;
    text-align: center;
    cursor: pointer;
    transition: .3s;
}

.tabs__caption li.active{
    color: #2b87c8;
    background: rgba(43, 135, 200, 0.13);
}

.tabs__content{
    display: none;
}

.tabs__content.active{
    display: block;
}

.acc__item{

    border-radius: 18px;
    margin-bottom: 12px;
    transition: .3s;
}

.acc__item.active{
    background: #f3f3f3;
}

.acc__top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    cursor: pointer;
}

.acc__top i{
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
    margin-left: 12px;
    background: url(../img/plus.svg) center no-repeat;
}

.acc__item.active .acc__top i{
    background-image: url(../img/minus.svg);
}

.acc__full{
    display: none;
    padding: 0 20px 20px;
}

.acc__item .title{
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    color: #3b3b39;
}

.acc__item p{
    font-weight: 400;
    font-size: 15px;
    line-height: 1.53333;
    color: #6a6a6a;
}

/**PARTNERS**/
.partners{
    padding: 50px 54px 65px;
    background: #fff;
    border-radius: 18px 18px 0 18px;
}

.partners__cols{
    display: flex;
    flex-wrap: wrap;
}

.partners__left{
    width: 330px;
    flex-shrink: 0;
    padding-right: 30px;
}

.partners__right{
    width: calc(100% - 330px);
}

.partners .in{
    border: 1px solid #d0e5f3;
    border-radius: 12px;
}   

.partners .pic{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partners .pic img{
    max-width: 100%;
    max-height: 100%;
    display: block;
}

/**SERV**/
.serv{
    padding-bottom: 60px;
}

.serv__top{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 35px;
}

.serv__top .title{
    margin-bottom: 0;
    padding-right: 10px;
}

.serv__cols{
    display: flex;
    flex-wrap: wrap;
}

.serv__left{
    width: calc(100% - 360px);
    padding-right: 35px;
}

.serv__right{
    width: 360px;
    flex-shrink: 0;
}

.serv .pic,
.serv__pic-link{
    display: block;
}

.serv__pic-link{
    cursor: zoom-in;
}

.serv .pic img{
    width: 100%;
    display: block;
    border-radius: 18px;
    border: 1px solid rgba(43, 135, 200, 0.21);
    transition: border-color 0.2s ease;
}

.serv__pic-link:hover img{
    border-color: rgba(43, 135, 200, 0.5);
}

.card{
    margin-bottom: 15px;
    padding: 35px 25px;
    background: #f3f3f3;
    border-radius: 12px;
}

.card.last{
    margin-bottom: 60px;
}

.card .title{
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 20px;
    color: #2b87c8;
}

.card .title a{
    color: inherit;
}

.card .sub{
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 15px;
    color: #313130;
}

.cards-block__icon{
    display: none;
}

.serv__more{
    display: none;
    margin-top: 12px;
    padding: 0;
    border: 0;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    color: #2b87c8;
    text-decoration: underline;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.serv__more:hover{
    opacity: .8;
}

/**GIFT**/
.gift{
    padding-bottom: 60px;
}

.gift .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}

.gift .item{
    width: 25%;
    padding: 0 4px;
    margin-bottom: 16px;
}

.gift .item .in{
    min-height: 206px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    padding: 24px 16px;
    background: url(../img/gift/bg.svg) right bottom no-repeat;
    background-size: cover;
    border-radius: 18px;
    position: relative;
}

.gift .item .arrow{
    width: 18px;
    height: 16px;
    display: block;
    background: url(../img/gift/arrow.svg) center no-repeat;
    position: absolute;
    bottom: 10px;
    right: 10px;
    transition: .3s;
}

.gift .item .top{
    width: 100%;
}

.gift .item .bottom{
    width: 100%;
}

.gift .item .h{
    min-height: 55px;
    padding-bottom: 12px;
}

.gift .item .shild{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 20px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    border-radius: 30px;
}

.gift .item .shild.blue{
    background: #2b87c8;
}

.gift .item .shild.green{
    background: #38aa34;
}

.gift .item .title{
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #313130;
}

.gift .item .title a{
    color: inherit;
}

.gift .item p{
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #6a6a6a;
}

/**SCHEME**/
.scheme{
    padding-bottom: 60px;
}

.scheme .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -28px;
}

.scheme .item{
    padding: 0 28px;
    margin-bottom: 28px;
    position: relative;
}

.scheme .item.last{
    margin-left: auto;
    margin-right: 20px;
    margin-top: 28px;
}

.scheme .item .in{
    min-height: 80px;
    display: flex;
    align-items: center;
    padding: 2px 25px 2px 2px;
    border: 1px solid #2b87c8;
    border-radius: 8px;
    position: relative;
}

.scheme .item.arrow_1 .in:before{
    content: "";
    width: 66px;
    height: 9px;
    background: url(../img/scheme/arrow_1.svg) center no-repeat;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-4px, -50%);
}

.scheme .item.arrow_2 .in:before{
    content: "";
    width: 806px;
    height: 38px;
    background: url(../img/scheme/arrow_2.svg) center no-repeat;
    position: absolute;
    top: 100%;
    right: 100px;
    transform: translateY(-4px);
}

.scheme .item.arrow_3 .in:before{
    content: "";
    width: 9px;
    height: 66px;
    background: url(../img/scheme/arrow_3.svg) center no-repeat;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -4px);
}

.scheme .item .pic{
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scheme .item .pic img{
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.scheme .item .title{
    padding-left: 5px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.33333;
    color: #313130;
}

.scheme .item .title span{
    font-size: 13px;
    color: #2b87c8;
}

/**COST**/
.cost{
    padding-bottom: 60px;
}

.cost__cols{
    display: flex;
    flex-wrap: wrap;
}

.cost__left{
    width: 520px;
    flex-shrink: 0;
    padding-right: 30px;
}

.cost__right{
    width: calc(100% - 520px);
}

.cost .text{
    font-weight: 500;
    font-size: 24px;
    line-height: 1.25;
    color: #313130;
}

.cost .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
}

.cost .item{
    padding: 0 25px;
    position: relative;
}

.cost .item.plus:before{
    content: "";
    width: 24px;
    height: 24px;
    background: url(../img/cost/plus.svg) center no-repeat;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-12px, -50%);
}

.cost .item .in{
    width: 180px;
    min-height: 180px;
    padding: 20px 20px 16px;
    background: #f3f3f3;
    border: 1px solid #eee;
    border-radius: 12px;
}

.cost .item .pic{
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.cost .item .pic img{
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.cost .item .title{
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    color: #313130;
}

.cost .item .sub{
    font-weight: 400;
    font-size: 13px;
    text-align: center;
    color: #6a6a6a;
}

/**TECH**/
.tech{
    padding-bottom: 60px;
}

.tech__cols{
    display: flex;
    flex-wrap: wrap;
}

.tech__left{
    width: calc(100% - 440px);
    padding-right: 50px;
}

.tech__right{
    width: 440px;
    flex-shrink: 0;
}

.tech .pic,
.tech__pic-link{
    display: block;
}

.tech__pic-link{
    cursor: zoom-in;
}

.tech .pic img{
    width: 100%;
    display: block;
    border: 1px solid rgba(43, 135, 200, 0.21);
    transition: border-color 0.2s ease;
}

.tech__pic-link:hover img{
    border-color: rgba(43, 135, 200, 0.5);
}

.tech__sample-label{
    margin-top: 12px;
    color: #31393d;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
}

.tech-docs-swiper{
    position: relative;
    width: 100%;
}

.tech-docs-swiper .swiper-slide{
    height: auto;
}

.tech-docs-swiper .tech__pic-link{
    display: block;
}

.tech-docs-swiper__pagination{
    position: static;
    margin-top: 10px;
}

.tech-docs-swiper__prev,
.tech-docs-swiper__next{
    color: #2b87c8;
    width: 28px;
    height: 28px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}

.tech-docs-swiper__prev:after,
.tech-docs-swiper__next:after{
    font-size: 18px;
    font-weight: 700;
}

.tech-docs-swiper__prev{
    left: 4px;
}

.tech-docs-swiper__next{
    right: 4px;
}

.order{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    background: rgba(43, 135, 200, 0.13);
    border-radius: 12px;
}

.order__left{
    padding-right: 20px;
}

.order .item{
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 15px;
    color: #313130;
}

.order .item:last-child{
    margin-bottom: 0;
}

.order .item span{
    font-weight: 600;
    font-size: 18px;
    color: #313130;
}

.order .btn{

}

/**DOC**/
.doc{
    padding-bottom: 40px;
}

.doc .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -11px;
}

.doc .item{
    width: 25%;
    padding: 0 11px;
    margin-bottom: 22px;
}

.doc .item .in{
    min-height: 198px;
    height: 100%;
    padding: 20px;
    background: #f3f3f3;
    border-radius: 12px;
}

.doc .item .pic{
    height: 52px;
    margin-bottom: 10px;
}

.doc .item .pic img{
    max-width: 100%;
    display: block;
}

.doc .item .pic a{
    display: block;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.doc .item .pic--file img{
    width: 52px;
    height: auto;
}

.doc .item .pic--file .file-ext-badge{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    background: rgba(49, 49, 48, 0.85);
    border-radius: 4px;
}

.doc .item .title{
    min-height: 54px;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #313130;
}

.doc .item .sub{
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #6a6a6a;
}

/**WHO**/
.who{

}

.who .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.who .item{
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.who .item .title{
    margin-bottom: 25px;
    font-weight: 500;
    font-size: 24px;
    color: #000;
}

.variant{
    padding-bottom: 40px;
}

.variant .items{
    display: flex;
    flex-wrap: wrap;
}

.variant .item{
    width: 25%;
    padding: 0 10px;
    margin-bottom: 20px;
}

.variant .item .in{
    min-height: 160px;
    padding: 40px 16px 15px;
    background: #f3f3f3;
    border-radius: 12px;
    position: relative;
}

.variant .item .title{
    min-height: 60px;
    margin-bottom: 24px;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #313130;
}

.variant .item .title span{
    font-weight: 600;
    color: #2b87c8;
}

.variant .item .text{
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #6a6a6a;
}

.variant .item .price{
    display: inline-block;
    padding: 10px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: #38aa34;
    background: #fff;
    border-radius: 12px 0 0 0;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
}

/**TAGS**/
.tags{
    padding-bottom: 40px;
}

.tags .items{
    display: flex;
    flex-wrap: wrap;
}

.tags .item{
    margin-right: 12px;
    margin-bottom: 12px;
}

.tags .item .in{
    padding: 15px 30px;
    background: #f3f3f3;
    border: 1px solid #e4e4e4;
    border-radius: 30px;
    font-weight: 400;
    font-size: 15px;
    color: #000;
}

/**PASS**/
.pass{
    padding: 60px 54px;
    background: #313130 url(../img/pass/bg.png) center no-repeat;
    border-radius: 18px;
}

.pass .cols{
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

/**REF**/
.ref{
    padding: 54px;
    background: #fff;
    border-radius: 18px;
}

.ref__cols{
    display: flex;
    flex-wrap: wrap;
}

.ref__left{
    width: 640px;
    flex-shrink: 0;
    padding-right: 30px;
}

.ref__right{
    width: calc(100% - 640px);
}

.ref .items{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.ref .item{
    width: 33.33%;
    padding: 0 15px;
    margin-bottom: 30px;
}

.ref .item .pic{

}

.ref .item .pic img{
    width: 100%;
    display: block;
}

.ref .item .pic a{
    display: block;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.ref .item .pic--file img{
    width: 52px;
    height: auto;
}

.ref .item .pic--file .file-ext-badge{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 2px 6px;
    font-size: 11px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    background: rgba(49, 49, 48, 0.85);
    border-radius: 4px;
}

/**FOOTER**/
.footer{
    width: 100%;
    display: block;
    padding-top: 24px;
    padding-bottom: 0;
    position: relative;
    z-index: 12;
}

.footer .in{
    padding: 30px 54px;
    background: #434342;
    border-radius: 18px;
}

.footer__top{
    padding-bottom: 20px;
}

.footer__top .cols{
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.footer .logo{
    display: flex;
    align-items: center;
}

.footer .logo img{
    width: 99px;
    display: block;
}

.footer .logo p{
    padding-left: 10px;
    font-weight: 400;
    font-size: 15px;
    color: #ebebeb;
}

.footer .logo p span{
    display: block;
    padding-bottom: 5px;
    font-weight: 900;
    font-size: 20px;
    text-transform: uppercase;
    color: #fff;
}

.footer__middle{
    padding-top: 20px;
    padding-bottom: 35px;
}

.footer__middle .cols{
    flex-wrap: nowrap;
    justify-content: space-between;
}

.footer .text{
    font-weight: 400;
    font-size: 14px;
    color: #a0a0a0;
}

.footer .text.m-w{
    width: 398px;
}

.footer .text a{
    color: inherit;
}

.footer__phone{
    margin-bottom: 7px;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.footer__phone a{
    color: inherit;
}

.footer__phone span{
    display: block;
    padding-top: 7px;
    font-weight: 400;
    font-size: 13px;
    color: #a0a0a0;
}

.footer__place{
    margin-bottom: 7px;
    padding-left: 22px;
    position: relative;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.footer__place:before{
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/header/place.svg) center no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.footer__time{
    margin-bottom: 7px;
    padding-left: 22px;
    position: relative;
    font-weight: 400;
    font-size: 14px;
    color: #fff;
}

.footer__time:before{
    content: "";
    width: 16px;
    height: 16px;
    background: url(../img/header/time.svg) center no-repeat;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.pay{
    margin-bottom: 18px;
}

.pay img{
    max-width: 100%;
    display: block;
}

.footer-link{
    display: flex;
    gap: 26px;
    font-weight: 400;
    font-size: 15px;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: #fff;
}

.footer-link a{
    color: inherit;
    text-decoration: underline;
}

.footer-bottom{
    padding: 12px 20px;
    background: #d9d9d9;
    border-radius: 40px;
}

.footer-bottom .cols{
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p{
    font-weight: 400;
    font-size: 15px;
    color: #434342;
}

.footer-bottom p a{
    color: inherit;
}

.faq .title_block + p {
    font-size: 20px;
    text-align: center;
    color: #434342;
}

/* Юр. лица: отдел (bti_entity_personal) */
.entity-personal {
    padding-top: 60px;
    padding-bottom: 60px;
}

.entity-personal__head {
    max-width: 920px;
    margin: 0 auto 48px;
    text-align: center;
}

.entity-personal__title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin: 0 0 20px;
}

.entity-personal__title-icon {
    font-size: 42px;
    line-height: 1;
    color: #2b87c8;
}

.entity-personal__intro {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 14px;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    color: #434342;
    text-align: left;
}

.entity-personal__intro > i {
    flex-shrink: 0;
    margin-top: 4px;
    font-size: 20px;
    color: #2b87c8;
}

.entity-personal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.entity-personal__btn {
    gap: 10px;
    text-transform: none;
    font-size: 15px;
}

.entity-personal__btn i {
    font-size: 16px;
}

.entity-personal__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.entity-personal__card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(59, 59, 57, 0.08);
}

.entity-personal__photo {
    position: relative;
    margin: 0;
    height: auto;
    background: #e8eef2;
    overflow: hidden;
}

.entity-personal__photo img {
    display: block;
    width: 100%;
    height: auto;
}

.entity-personal__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #2b87c8;
    font-size: 72px;
    opacity: 0.35;
}

.entity-personal__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px 28px 28px;
}

.entity-personal__role {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.45;
    color: #989898;
}

.entity-personal__role i {
    flex-shrink: 0;
    margin-top: 2px;
    color: #2b87c8;
}

.entity-personal__name {
    margin: 0 0 18px;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.25;
    color: #3b3b39;
}

.entity-personal__contacts {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.entity-personal__contacts > li {
    margin: 0 0 10px;
}

.entity-personal__contacts > li:last-child {
    margin-bottom: 0;
}

.entity-personal__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    line-height: 1.4;
    color: #3b3b39;
    text-decoration: none;
    transition: color 0.2s ease;
}

.entity-personal__link:hover {
    color: #2b87c8;
}

.entity-personal__link--static {
    margin: 0;
}

.entity-personal__link i {
    width: 18px;
    flex-shrink: 0;
    text-align: center;
    font-size: 16px;
    color: #2b87c8;
}

.entity-personal__phones-custom .entity-personal__phones a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 8px;
    font-size: 15px;
    color: #3b3b39;
    text-decoration: none;
}

.entity-personal__phones-custom .entity-personal__phones a:hover {
    color: #2b87c8;
}

.entity-personal__phones-custom .entity-personal__phones a:before,
.entity-personal__phones-custom .entity-personal__phones a .fa,
.entity-personal__phones-custom .entity-personal__phones a .fas {
    color: #2b87c8;
}

.entity-personal__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #e8e8e8;
}

.entity-personal__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f3f3;
    color: #2b87c8;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.entity-personal__social-link img {
    display: block;
    width: 22px;
    height: 22px;
}

.entity-personal__social-link:hover {
    background: #2b87c8;
    color: #fff;
    transform: translateY(-2px);
}

.entity-personal__social-link:hover img {
    filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
    .entity-personal__title {
        font-size: 40px;
    }
}

@media (max-width: 575px) {
    .entity-personal {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .entity-personal__head {
        margin-bottom: 32px;
    }

    .entity-personal__title {
        flex-direction: column;
        gap: 10px;
        font-size: 32px;
    }

    .entity-personal__title-icon {
        font-size: 32px;
    }

    .entity-personal__intro {
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 16px;
    }

    .entity-personal__actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 20px;
    }

    .entity-personal__btn {
        width: 100%;
    }

    .entity-personal__grid {
        gap: 24px;
    }

    .entity-personal__body {
        padding: 20px 20px 24px;
    }
}
/* Результат оплаты /billing/ */
.bti-billing-status {
	display: flex;
	gap: 20px;
	align-items: flex-start;
	max-width: 720px;
	margin: 24px auto 40px;
	padding: 28px 28px 26px;
	border-radius: 16px;
	border: 1px solid #e2e5ea;
	background: #fff;
	box-shadow: 0 8px 28px rgba(26, 43, 60, 0.06);
}

.bti-billing-status__icon {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #eef3f6 center / 22px 22px no-repeat;
}

.bti-billing-status--success {
	border-color: #b7e0c5;
	background: linear-gradient(180deg, #f3fbf6 0%, #fff 48%);
}

.bti-billing-status--success .bti-billing-status__icon {
	background-color: #1f9d55;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5 12.5l4.2 4.2L19 7' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.bti-billing-status--pending {
	border-color: #f0d9a8;
	background: linear-gradient(180deg, #fff9ef 0%, #fff 48%);
}

.bti-billing-status--pending .bti-billing-status__icon {
	background-color: #d97706;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='8.2' stroke='%23fff' stroke-width='2'/%3E%3Cpath d='M12 7.5V12l3 2' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.bti-billing-status--error {
	border-color: #f0c2c2;
	background: linear-gradient(180deg, #fff5f5 0%, #fff 48%);
}

.bti-billing-status--error .bti-billing-status__icon {
	background-color: #c0392b;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M8 8l8 8M16 8l-8 8' stroke='%23fff' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.bti-billing-status--info .bti-billing-status__icon {
	background-color: #00728a;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='8.2' stroke='%23fff' stroke-width='2'/%3E%3Cpath d='M12 10.5v6' stroke='%23fff' stroke-width='2.2' stroke-linecap='round'/%3E%3Ccircle cx='12' cy='7.5' r='1.2' fill='%23fff'/%3E%3C/svg%3E");
}

.bti-billing-status__body {
	min-width: 0;
	flex: 1 1 auto;
}

.bti-billing-status__title {
	margin: 2px 0 10px;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 700;
	color: #1a2b3c;
}

.bti-billing-status__text {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
	color: #4a5568;
}

.bti-billing-status__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

@media (max-width: 768px) {
	.bti-billing-status {
		flex-direction: column;
		align-items: stretch;
		margin: 16px 0 28px;
		padding: 22px 18px;
		gap: 14px;
	}

	.bti-billing-status__title {
		font-size: 22px;
	}

	.bti-billing-status__actions .btn {
		width: 100%;
		text-align: center;
	}
}
