@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap');

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #263238;
    scrollbar-color: #c6c6c6 #E8E8E8;
    scrollbar-width: thin;
}
.scroll-width-thin {
    scrollbar-width: thin;
}
/* полоса прокрутки (скроллбар) */
::-webkit-scrollbar {
    width: 8px; /* ширина для вертикального скролла */
    height: 4px; /* высота для горизонтального скролла */
    background-color: #E8E8E8;
}
/* ползунок скроллбара */
::-webkit-scrollbar-thumb {
    background-color: #c6c6c6;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #c6c6c6;
}
input,
textarea,
button,
select,
a {
    -webkit-tap-highlight-color: transparent;
}
.message{
    width: 1380px;
    text-align: center;
    max-width: calc(100% - 30px);
    padding: 0 15px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border-radius: 7px;
    box-sizing: border-box;
}
.message.error{
    color: #fff;
    background: #860001;
}
.message.success{
    color: #fff;
    background: #0a6500;
}
img{
    max-width: 100%;
    height: auto;
}
ul{
    list-style: none;
    margin: 0;
    padding: 0;
}
:active, :hover, :focus {
    outline: 0;
    outline-offset: 0;
}
::-webkit-input-placeholder {
    color: #90A4AE;
    opacity: 1;
    transition: opacity 0.3s ease;
}
:-moz-placeholder {
    color: #90A4AE;
    opacity: 1;
    transition: opacity 0.3s ease;
}
::-moz-placeholder {
    color: #90A4AE;
    opacity: 1;
    transition: opacity 0.3s ease;
}
:-ms-input-placeholder {
    color: #90A4AE;
    opacity: 1;
    transition: opacity 0.3s ease;
}
input:focus::-webkit-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}
input:focus::-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}
input:focus:-moz-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}
input:focus:-ms-input-placeholder {
    opacity: 0;
    transition: opacity 0.3s ease;
}
input:focus, textarea:focus{
    border: none;
    border-bottom: 1px solid #90A4AE;
}
.container{
    width: 1380px;
    max-width: calc(100% - 40px);
    margin-left: auto;
    margin-right: auto;
}
.container-small{
    width: 1200px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
a{
    color: #00AACD;
}
a:hover{
    text-decoration: none;
}
.top-line{
    background: #279e64;
}
.top-line-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 36px;
}
.top-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.top-nav-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-title{
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    cursor: pointer;
}
.top-nav-list-links li{
    margin: 0 12px;
}
.top-nav-list-links li:first-child{
    margin-left: 0;
}
.top-nav-list-links li a{
    position: relative;
}
.top-nav-list-links li a:after{
    content: '';
    display: flex;
    height: 1px;
    width: 100%;
    background: #fff;
    position: absolute;
    bottom: -1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.top-nav-list-links li a:hover:after{
    opacity: 1;
}
.top-nav-list-contacts li{
    margin: 0 8px;
}
.top-nav-list li.separator{
    background: #fff;
    width: 1px;
    height: 15px;
    display: flex;
}
.top-nav-list li a{
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    white-space: nowrap;
    line-height: 30px;
}
.nav-ico-link{
    display: flex;
}
.basket-wrapper{
    display: flex;
    position: relative;
}
.basket-wrapper img{
    width: 20px;
    min-width: 20px;
}
.basket-count{
    position: absolute;
    display: flex;
    width: 15px;
    height: 15px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #EE7F00;
    color: #fff;
    top: -4px;
    right: -6px;
    font-size: 11px;
    line-height: 1px;
}
.nav-ico-link img{
    min-width: 16px;
}
.center-line-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 98px;
}
.logo-top{
    display: flex;
    align-items: center;
    text-decoration: none;
    position: relative;
    top: 4px;
}
.logo-img{
    margin-right: 15px;
    min-width: 70px;
}
.logo-name{
    color: #13287d;
    font-size: 26px;
    font-weight: 800;
    text-transform: uppercase;
}
.logo-slogan{
    font-size: 14px;
    color: #279e64;
}
.logo-footer{
    top: 0;
}
.logo-footer .logo-name, .logo-footer .logo-slogan{
    color: #fff;
}
.footer-botom{
    background: #111a3a;
    color: #f8f9fe;
    padding: 20px 0;
}
.center-nav-list{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.center-nav-list li{
    margin-left: 24px;
}
.center-nav-list li:first-child{
    margin-left: 0;
}
.center-nav-list li a{
    color: #263238;
    font-size: 16px;
    text-decoration: none;
    position: relative;
}
.center-nav-list li a:after{
    content: '';
    display: flex;
    height: 1px;
    width: 100%;
    background: #263238;
    position: absolute;
    bottom: -1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.center-nav-list li a:hover:after{
    opacity: 1;
}
.one-slide{
    position: relative;
}
.slide-body{
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}
.slide-head{
    color: #fff;
    font-size: clamp(18px, 3vw, 56px);
    font-weight: bold;
    line-height: 1.1;
}
.slide-text{
    color: #CACDD8;
    font-size: clamp(12px, 2vw, 24px);
    margin-top: 20px;
}
.slide-one-wrapper{
    width: 50%;
}
.item-title h4{
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 600;
    margin: 17px 0 0 0;
    text-decoration: none;
    color: #263238;
}
.item-title a{
    text-decoration: none;
    color: #263238;
}
.item-article{
    color: #90A4AE;
    font-size: clamp(12px, 1vw, 16px);
    margin-top: 6px;
}
.item-price-block{
    margin-top: 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.item-one{
    display: inline-flex;
    border: 2px solid #E9EDFC;
    border-radius: 20px;
    width: calc(100%/4 - 20px);
    max-width: 100%;
    padding: 30px 20px;
    position: relative;
    margin-bottom: 25px;
    box-sizing: border-box;
}
.items-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.index-items{
    padding: 42px 0 0 0;
}
.item-wrapper{
    width: 100%;
}
.item-media{
    display: inline-flex;
    justify-content: center;
    width: 100%;
    height: 290px;
}
.item-media a img{
    max-height: 100%;
}
.item-media a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-price{
    font-size: clamp(16px, 1vw, 19px);
    font-weight: 700;
}
.standart-btn{
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    height: 36px;
    cursor: pointer;
    transition: all .4s ease-in-out;
    background-size: 300% 100%;
    box-sizing: border-box;
    text-decoration: none;
}
.standart-btn img{
    margin-right: 6px;
}
.red-btn{
    color: #fff;
    background-image: linear-gradient(119deg, rgba(248,0,0,1) 0%, rgba(248,0,0,1) 30%, rgba(248,149,0,1) 76%, rgba(248,0,0,1) 100%);
}
.blue-btn{
    color: #fff;
    background-image: linear-gradient(119deg, rgba(19,40,125,1) 0%, rgba(19,40,125,1) 50%, rgba(39,158,100,1) 85%, rgba(19,40,125,1) 100%);
}
.green-btn{
    color: #fff;
    background-image: linear-gradient(119deg, rgba(39,158,100,1) 0%, rgba(39,158,100,1) 30%, rgba(19,40,125,1) 76%, rgba(39,158,100,1) 100%);
}
.standart-btn:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.blue-btn:hover{
    color: #fff;
}
.large-btn{
    font-size: 18px;
    padding: 0 30px;
    height: 51px;
    border-radius: 30px;
}
.item-dop-block{
    position: absolute;
    display: flex;
    align-items: center;
}
.item-dop-word{
    font-size: 10px;
    text-transform: uppercase;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    height: 18px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    color: #fff;
    margin-right: 3px;
    border-radius: 5px;
}
.red-color{
    background: #F80000;
}
.blue-color{
    background: #00AACD;
}
.reshenia-title h2{
    margin: 0;
    font-size: clamp(24px, 3vw, 36px);
}
.reshenie-one{
    display: inline-flex;
    border-radius: 20px;
    width: calc(100%/4 - 60px);
    max-width: 100%;
    padding: 30px 20px 60px 20px;
    position: relative;
    margin-bottom: 30px;
    background: #E9EDFC;
    color: #161616;
    margin-right: 26px;
}
.reshenie-one:nth-child(4n){
    margin-right: 0;
}
.re-title{
    padding: 12px 0;
    border-bottom: 2px solid #161616;
    border-top: 2px solid #161616;
    min-height: 80px;
}
.re-title a{
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    line-height: 1.1;
    text-decoration: none;
    color: #161616;
}
.re-text{
    font-size: clamp(12px, 3vw, 14px);
    margin-top: 12px;
    min-height: 110px;
    margin-bottom: 15px;
}
.re-link a{
    color: #161616;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.re-link a img{
    width: 18px;
    margin-left: 10px;
    position: relative;
    top: 1px;
    transition: all 0.3s ease-in-out;
}
.re-link a:hover img{
    transform: translateX(15px);
}
.reshenia-block{
    display: flex;
    margin-top: 42px;
    flex-wrap: wrap;
}
.default-large-text p{
    font-size: clamp(14px, 2vw, 32px);
}
.partner-one{
    border: 1px solid #d9d9d9;
    width: calc(100%/6 - 20px);
    display: flex;
    align-items: center;
    height: 100px;
    justify-content: center;
    padding: 10px;
    margin: 0 10px 20px 10px;
    box-sizing: border-box;
}
.partner-dop{
    margin-left: 11px;
}
.partners-block{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 42px;
}
.index-partners{
    margin-top: 58px;
}
.index-seo{
    margin-top: 68px;
}
.slider-large{
    max-width: 1920px;
    margin: 0 auto;
}
.press-slide-link{
    display: block;
    position: relative;
    border-radius: 20px;
}
.press-data{
    position: absolute;
    width: calc(100% - 50px);
    height: calc(100% - 60px);
    left: 0;
    top: 0;
    padding: 30px 25px;
}
.press-slide-media img{
    height: 100%;
    width: auto;
}
.press-slide-one{
    margin: 0 10px;
    border-radius: 20px;
    overflow: hidden;
}
.slider-right-wrapper{
    overflow-x: hidden;
}
.press-block{
    margin-top: 42px;
}
.index-press{
    margin-top: 88px;
    padding-bottom: 68px;
}
.press-block .arrow{
    position: absolute;
    top: -70px;
}
.reshenia-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.arrows-block{
    display: flex;
    align-items: center;
}
.right-next{
    margin-left: 35px;
}
.right-arrow{
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.right-arrow:hover{
    opacity: 1;
}
.press-note{
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    position: absolute;
    bottom: 30px;
    width: calc(100% - 50px);
}
.press-date{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.press-date-day{
    color: #EE7F00;
    font-size: 24px;
    font-weight: 300;
}
.press-date-year{
    color: #90A4AE;
}
.press-slide-link .have-press-img{
    max-height: 320px;
}
.have-press-img{
    position: relative;
}
.have-press-img:after{
    content: '';
    display: block;
    background: rgba(38,50,56,0.6);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.footer{
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    background-image: url('/img/footer-bg.jpg');
    background-size: cover;
    padding: 82px 0 74px;
    color: #fff;
}
.footer-wrapper{
    display: flex;
    justify-content: space-between;
}
.footer-logo-block{
    max-width: 200px;
}
.footer-address{
    max-width: 295px;
}
.footer-address .footer-nav-list li span{
    display: block;
}
.footer-nav-list li a{
    text-decoration: none;
    color: #fff;
}
.f-contacts-title{
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
    padding-bottom: 12px;
}
.footer-nav .footer-nav-list li{
    margin-bottom: 10px;
}
.nice-link{
    position: relative;
}
.nice-link:after{
    content: '';
    display: flex;
    height: 1px;
    width: 100%;
    position: absolute;
    bottom: -1px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.footer-nav-list li a.nice-link:after{
    background: #fff;
}
.nice-link:hover:after{
    opacity: 1;
}
.category-title h3{
    font-size: clamp(14px, 3vw, 24px);
    font-weight: 600;
    margin: 17px 0 0 0;
}
.category-wrapper{
    text-decoration: none;
    text-align: center;
    color: #263238;
    display: block;
    width: 100%;
    padding: 30px 20px;
}
.category-one{
    display: inline-flex;
    border: 2px solid #E9EDFC;
    width: calc(100%/4 - 15px);
    max-width: 100%;
    position: relative;
    margin-bottom: 25px;
    margin-right: 20px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}
.category-one:hover{
    border: 2px solid #00AACD;
}
.category-one:nth-child(4n){
    margin-right: 0;
}
.category-media{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 230px;
}
.category-media img{
    max-height: 100%;
}
.category-body{
    margin-top: 15px;
}
.index-categories{
    display: none;
}
.more-link a {
    color: #90A4AE;
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.more-link a img{
    margin-left: 10px;
    position: relative;
    top: 1px;
}
.more-blog-link{
    display: none;
}
.footer-copy-mobile{
    display: none;
}
.center-nav-mobile{
    align-items: center;
    margin-right: 10px;
    display: none;
}
.footer-basket{
    display: none;
}
.open-mobile-nav{
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    position: relative;
    top: 2px;
}
.show-650{
    display: none;
}
.mobile-navigation{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(38,50,56,0);
    transform: translateY(-100%);
    transition: all 0.4s ease-in-out;
}
.opened-nav{
    transform: translateY(0%);
    transition: all 0.4s ease-in-out;
    background: rgba(38,50,56,0.7);
}
.mobile-nav-wrapper {
    width: 100%;
    background: #fff;
    position: relative;
}
.mobile-nav-header{
    height: 68px;
    position: relative;
}
.mobile-close{
    position: absolute;
    right: 20px;
    top: 30px;
}
.mobile-contacts{
    padding: 0 15px 24px 15px;
}
.mobile-contacts li{
    border-bottom: 1px solid #E9EDFC;
    margin-bottom: 10px;
    padding-bottom: 10px;
}
.mobile-contacts li a{
    color: #263238;
    text-decoration: none;
}
.mobile-contacts li.active-nav a{
    font-weight: 700;
}
.mobile-nav-basket{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.standart-page{
    padding: 15px 0 60px 0;
}
.default-field{
    padding: 0 15px;
    color: #383C3E;
    box-sizing: border-box;
    border: 1px solid #279e64;
    height: 40px;
    border-radius: 10px;
    width: 100%;
}
.default-field:focus, .default-field:active{
    border: 1px solid #279e64;
}
.default-textarea{
    padding: 10px 15px;
    color: #383C3E;
    box-sizing: border-box;
    border: 1px solid #279e64;
    border-radius: 10px;
    width: 100%;
    min-height: 70px;
    min-width: 100%;
    max-width: 100%;
}
.default-textarea:focus, .default-textarea:active{
    border: 1px solid #279e64;
}
.border-box-field{
    box-sizing: border-box;
}
.form-line{
    margin-bottom: 30px;
    position: relative;
}
.form-first .form-line{
    margin-bottom: 56px;
}
.form-first .form-line:last-child{
    margin-bottom: 0;
}
.bread-crumbs-block a{
    color: #263238;
    text-decoration: none;
    font-size: 12px;
}
.bread-crumbs-block{
    display: flex;
    align-items: center;
}
.bread-crumbs-block span{
    font-size: 12px;
}
.bread-crumbs-block li:first-child{
    display: none;
}
.bread-crumbs-block li:last-child a{
    color: #90A4AE;
}
.bread-crumbs-block span img{
    position: relative;
    bottom: 1px;
}
.bread-crumbs-block li{
    margin-right: 7px;
}
.whight-color{
    color: #fff;
}
.whight-color a{
    color: #fff;
}
.whight-color .first-note-line{
    border-top: 1px solid rgba(255,255,255,0.6);
}
.blue-color{
    color: #D7EEF5;
}
.blue-color a{
    color: #D7EEF5;
}
.blue-color .first-note-line{
    border-top: 1px solid #D7EEF5;
}
.first-top-block{
    padding: 28px 40px;
    border-radius: 20px;
    width: 790px;
    max-width: 100%;
}
.gray-1{
    color: #747474;
}
.gray-1 a{
    color: #747474;
}
.gray-1 .first-note-line{
    border-top: 1px solid #747474;
}
.gray-2{
    color: #b4b4b4;
}
.gray-2 a{
    color: #b4b4b4;
}
.gray-2 .first-note-line{
    border-top: 1px solid #b4b4b4;
}
.gray-3{
    color: #404040;
}
.gray-3 a{
    color: #404040;
}
.gray-3 .first-note-line{
    border-top: 1px solid #404040;
}
.black-color{
    color: #404040;
}
.black-color a{
    color: #000000;
}
.black-color .first-note-line{
    border-top: 1px solid #000000;
}
.site-color{
    color: #263238;
}
.site-color a{
    color: #263238;
}
.site-color .first-note-line{
    border-top: 1px solid #263238;
}
.border-r{
    border-radius: 20px;
}
.default-text h1{
    font-size: clamp(24px, 3vw, 32px);
    margin: 0 0 30px 0;
}
.first-note{
    font-size: 16px;
    margin-top: 24px;
}
.re-link{
    margin-top: 24px;
}
.reshenie-one .re-link{
    position: absolute;
    bottom: 35px;
}
.default-text p{
    font-size: clamp(16px, 2vw, 18px);
    margin: 0 0 20px 0;
}
.default-text h2{
    font-size: clamp(24px, 3vw, 36px);
    margin-top: 0;
}
.default-text .header-page-wrapper h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-top: 0;
    margin-bottom: 0;
}
.preim-wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
}
.preinm-one{
    text-align: center;
    margin-bottom: 20px;
    width: calc(100%/5 - 20px);
}
.preinm-one img{
    margin: 0 auto;
}
.pre-title{
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
}
.pre-body{
    font-size: 14px;
    margin-top: 12px;
}
.first-note-line{
    padding-top: 24px;
}
.bread-page{
    padding-top: 15px;
}
.image-block{
    display: flex;
    justify-content: center;
}
.image-note-line{
    color: #90A4AE!important;
    font-size: 14px;
    margin-top: 5px;
}
.standart-text blockquote{
    color: #90A4AE!important;
    font-weight: bold;
    background: rgba(236,236,236,0.2) url(../img/ico-9.png) 50px 48px no-repeat;
    padding: 40px 40px 40px 120px;
    font-size: clamp(18px, 3vw, 24px);
    margin: 24px 0 24px 0;
}
.standart-text blockquote p{
    font-size: clamp(18px, 3vw, 24px);
}
.standart-text blockquote p:last-child{
    margin-bottom: 0;
}
.video-wrapper{
    width: 1078px;
    max-width: 100%;
}
.full-line-block{
    width: calc(100% - 80px);
}
.standart-page-block{
    padding: 40px 0 60px 0;
}
.press-new-link{
    position: relative;
    border-radius: 20px;
    width: calc(50% - 10px);
    margin-bottom: 20px;
    height: 330px;
    overflow: hidden;
    border: 1px solid #E9EDFC;
}
.news-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 42px;
}
.press-new-media img{
    width: 100%;
    filter: blur(5px);
}
.press-new-data{
    color: #D7EEF5;
}
.press-new-note{
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
}
.press-new-note a{
    text-decoration: none;
    color: #D7EEF5;
}
.press-new-short{
    font-size: 18px;
    margin-top: 24px;
}
.press-more a {
    color: #D7EEF5;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.press-more{
    position: absolute;
    bottom: 20px;
    margin-top: 0;
}
.press-new-media.have-press-img:after{
    background: rgba(38,50,56,0.8);
}
.press-new-no-img .press-new-data {
    color: #263238;
}
.press-new-no-img .press-more a {
    color: #263238;
}
.pagination{
    display: flex;
    align-items: center;
}
.prev.disabled{
    display: none;
}
.next.disabled{
    display: none;
}
.pagination li a{
    text-decoration: none;
    color: #263238;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}
.pagination li{
    display: flex;
    height: 40px;
    width: 40px;
    border: 1px solid #E9EDFC;
    margin-right: 7px;
    border-radius: 10px;
}
.pagination li.active{
    background: #E9EDFC;
}
.pagination li a:hover{
    color: #00AACD;
}
.pagination li.active a:hover{
    color: #263238;
}
.paginator{
    margin-top: 40px;
}
.header-page-wrapper{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.header-nice{
    background: #EE7F00;
    color: #fff;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    font-weight: 600;
    margin-right: 12px;
    border-radius: 8px;
    white-space: nowrap;
}
.two-blocks-flax{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.left-part-block{
    width: calc(50% - 20px);
    max-width: 100%;
}
.right-part-block{
    width: calc(50% - 20px);
    max-width: 100%;
}
.media-full img{
    border-radius: 20px;
}
.left-desktop{
    order: 1;
}
.right-desktop{
    order: 2;
}
.solutions-reshenia{
    padding: 60px 0 30px 0;
}
.solutions-first{
    margin-top: 36px;
}
.solutions-partners{
    padding-top: 50px;
}
.default-text h3{
    font-size: clamp(22px, 3vw, 24px);
    margin-top: 0;
}
.two-sides{
    display: flex;
    justify-content: space-between;
}
.left-side{
    width: calc(50% - 30px);
}
.right-side{
    width: calc(50% - 30px);
}
.two-sides-form{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-wrapper{
    border: 1px solid #279e64;
    padding: 5px 25px;
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    border-radius: 10px;
    background: #EFF2F7;
    flex-wrap: wrap;
}
.error-line{
    color: #F00;
    font-size: 11px;
    position: absolute;
    top: -12px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
}
.error-line-show{
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}
.form-send-note{
    color: #CACDD8;
    font-size: 12px;
}
.form-btn-block{
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.form-note{
    color: #90A4AE;
}
.form-first{
    padding-top: 10px;
}
.form-second{
    padding-top: 11px;
    position: relative;
}
.support-form{
    padding-bottom: 64px;
}
.error-send-form{
    color: #F00;
    font-size: 14px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    bottom: -12px;
    opacity: 0;
}
.modal-block{
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: 9999;
    display: none;
}
.modal-block-show{
    display: flex;
}
.modal-wrapper{
    width: 600px;
    background: #fff;
    border-radius: 10px;
    max-width: calc(100% - 80px);
    padding: 0 24px 35px 24px;
}
.modal-title{
    color: #263238;
    font-weight: bold;
    font-size: clamp(20px, 3vw, 24px);
}
.modal-head{
    height: 72px;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E4E7E9;
}
.result-form-close{
    cursor: pointer;
    position: absolute;
    right: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    top: 25px;
}
.result-form-close:hover{
    opacity: 1;
}
.close-result-form{
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
}
.modal-body{
    padding-top: 25px;
}
.result-form-title{
    font-size: 20px;
    font-weight: 600;
}
.result-form-text{
    margin-top: 10px;
    font-size: clamp(16px, 2vw, 18px);
}
.order-form{
    position: relative;
}
.spinner-send{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.spin-show{
    display: flex;
}
.about-text blockquote{
    color: #90A4AE;
    font-weight: bold;
    background: rgba(236,236,236,0.2) url(../img/ico-9.png) 50px 48px no-repeat;
    padding: 40px 40px 40px 120px;
    font-size: clamp(16px, 2vw, 20px);
    margin: 32px 0 32px 0;
    display: flex;
}
.person-name{
    color: #263238;
    font-size: clamp(15px, 2vw, 20px);
}
.person-position{
    color: #263238;
    font-weight: 400;
    font-size: clamp(15px, 2vw, 20px);
}
.person-mobile{
    display: none;
}
.ci-media{
    min-width: 120px;
    margin-right: 24px;
}
.ci-media img{
    border-radius: 50%;
}
.nice-block{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.nice-one{
    width: calc(25% - 55px);
    border-radius: 20px;
    padding: 24px 20px;
}
.nice-title{
    font-size: clamp(24px, 3vw, 32px);
    font-weight: bold;
    line-height: 1;
}
.nice-text{
    font-size: 14px;
    margin-top: 24px;
}
.nice-back-1{
    background: #D7EEF5;
    color: #263238;
}
.nice-back-2{
    background: #333F48;
    color: #D7EEF5;
}
.nice-back-3{
    background: #1E1E1E;
    color: #D7EEF5;
}
.nice-back-4{
    background: #383C3E;
    color: #D7EEF5;
}
.standart-section{
    padding-top: 36px;
}
.text-center{
    text-align: center;
}
#map{
    height: 450px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}
.contacts-two-sides{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 32px;
}
.contacts-left{
    width: calc(50% - 30px);
}
.contacts-right{
    width: calc(50% - 30px);
}
.contacts-two-sides h3{
    font-size: clamp(20px, 2vw, 24px);
    margin: 0;
}
.contact-block{
    margin-top: 24px;
}
.contact-block a{
    color: #263238;
    font-size: 18px;
    text-decoration: none;
}
.contact-block-body{
    margin-top: 14px;
}
.contacts-form{
    margin-top: 32px;
}
.form-title{
    font-size: clamp(22px, 3vw, 24px);
    margin-top: 0;
    margin-bottom: 24px;
    font-weight: bold;
}
.form-pre-note{
    margin-bottom: 24px;
}
.case-wrapper{
    width: 330px;
    max-width: calc(50% - 30px);
    text-align: center;
    color: #263238;
    display: block;
    text-decoration: none;
}
.case-wrapper .partner-one {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    max-width: 205px;
}
.case-wrapper .partner-title{
    color: #00AACD;
    font-size: 14px;
    font-weight: 600;
    margin: 6px auto 0 auto;
    width: 100%;
    max-width: 230px;
}
.parter-url{
    width: 100%;
    max-width: 177px;
    margin: 6px auto 0 auto;
    color: #263238;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
}
.case-wrapper:hover .parter-url{
    text-decoration: none;
}
.solutions-cases{
    padding: 30px 0 60px 0;
}
.show-more-partners{
    display: none;
}
.more-partners-block{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.partner-show-in-mobile{
    display: none;
}
.more-partners-visible{
    display: flex!important;
}
.categories-wrapper{
    margin-top: 24px;
}
.categories-list-block{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 24px;
}
.categories-page{
    padding-bottom: 24px;
}
.category-price{
    margin-top: 17px;
    color: #90A4AE;
    font-size: 18px;
}
.category-title h3{
    font-size: clamp(14px, 3vw, 24px);
}
.items-list-left{
    width: 965px;
    max-width: 100%;
}
.items-list-right{
    width: 307px;
    max-width: 100%;
}
.items-list-wrapper{
    display: flex;
    justify-content: space-between;
}
.filter-title{
    font-size: 18px;
    font-weight: 600;
}
.item-tag-one{
    display: inline-flex;
    background: #FBFBFB;
    text-decoration: none;
    height: 43px;
    align-items: center;
    padding: 0 20px;
    color: #90A4AE;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}
.item-tag-one:hover{
    color: #263238;
}
.active-tag{
    background: #263238;
    color: #D7EEF5;
}
.active-tag:hover{
    color: #D7EEF5;
}
.item-long-wrapper{
    display: flex;
    width: 100%;
    border: 1px solid #E9EDFC;
    padding: 24px;
    position: relative;
    align-items: center;
    box-sizing: border-box;
}
.item-chars-one{
    display: flex;
    width: 100%;
    margin-bottom: 3px;
}
.item-chars-left {
    width: 180px;
    min-width: 180px;
    max-width: 100%;
    font-weight: 600;
    font-size: 14px;
    padding-right: 10px;
}
.item-chars-right{
    font-size: 14px;
    color: #90A4AE;
}
.item-chars-right div{
    margin-top: 1px;
}
.item-chars{
    margin-top: 6px;
}
.item-long-media{
    display: flex;
    min-width: 215px;
    width: 215px;
    margin-right: 15px;
    justify-content: center;
}
.item-one-long{
    position: relative;
    margin-bottom: 24px;
}
.item-one-long .item-dop-block{
    top: 24px;
    left: 24px;
}
.items-wrapper{
    margin-top: 24px;
}
.item-price-long{
    justify-content: flex-start;
    margin-top: 10px;
}
.item-price-long .item-price{
    width: 200px;
    min-width: 200px;
    padding-right: 10px;
    font-size: clamp(16px, 3vw, 24px);
}
.filter-one-check{
    display: flex;
    width: 16px;
    height: 16px;
    border: 1px solid #263238;
    cursor: pointer;
    margin-right: 10px;
    position: relative;
    min-width: 16px;
    background: #fff;
}
.filter-one-check:before{
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: background-color 0.3s ease;
}
.filter-one-check.check-checked:before{
    background: #EE7F00;
}
.filter-line-one{
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.filter-one-checkbox{
    display: flex;
    align-items: center;
}
.filter-disabled{
    opacity: 0.5;
}
.filter-disabled .filter-one-check{
    cursor: default;
}
.filter-one-title{
    font-size: 14px;
}
.filter-one-body{
    margin-top: 13px;
}
.filter-body{
    margin-top: 21px;
}
.filter-block-one{
    border-bottom: 1px solid #E9EDFC;
    margin-bottom: 21px;
    padding-bottom: 11px;
}
.filter-body .filter-block-one:last-child{
    border: none;
}
.filter-close{
    display: none;
}
.item-filter-line{
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 700;
}
.filter-view-line{
    display: none;
}
.switch-view-line-mobile{
    display: flex;
    align-items: center;
}
.item-price-long-mobile{
    display: none;
}
.item-long-body .item-title h4 {
    font-size: clamp(18px, 4vw, 24px);
}
.item-mobile-media{
    display: none;
}
.active-cat{
    font-weight: 700;
}
.active-cat a{
    color: #13287d;
}
.item-base-block{
    display: flex;
    justify-content: space-between;
}
.item-base-left{
    width: 620px;
    max-width: 100%;
}
.item-base-right{
    width: 724px;
    max-width: 100%;
}
.slider-for{
    border: 1px solid #E9EDFC;
}
.slider-for .slick-slide img{
    max-height: 464px;
    margin: 0 auto;
}
.slider-nav .slick-slide {
    border: 1px solid #E9EDFC;
    margin: 0 4px;
    cursor: pointer;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-nav{
    margin: 24px auto 0 auto;
    width: 400px;
    max-width: 100%;
}
.slider-nav .slick-slide img{
    max-height: 96px;
}
.sale-line .item-dop-block {
    position: static;
}
.item-title-block h1{
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
}
.sale-line{
    margin-bottom: 8px;
}
.item-short-block{
    margin-top: 8px;
}
.item-short-block p{
    margin-bottom: 16px;
}
.item-cat-line{
    font-size: 14px;
    font-weight: 600;
    width: 312px;
    max-width: 100%;
    margin-top: 8px;
}
.item-cat-line span{
    color: #90A4AE;
    font-weight: 400;
}
.item-category-block{
    display: flex;

}
.item-one-price-block{
    margin-top: 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E9EDFC;
    padding-bottom: 24px;
}
.item-counter{
    border: 1px solid #E9EDFC;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}
.counter-set{
    display: flex;
    height: 100%;
    padding: 0 14px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.counter-num{
    box-sizing: border-box;
    height: 100%;
    width: 50px;
    border: none;
    text-align: center;
    color: #475156;
}
.counter-num:focus, .counter-num:active{
    border: none;
    outline: none;
}
.item-one-price .item-price{
    font-size: clamp(24px, 3vw, 32px);
}
.item-one-price{
    margin-left: 20px;
    width: 220px;
}
.item-one-to .standart-btn{
    height: 47px;
    border-radius: 10px;
    padding: 0 20px;
}
.item-short-dop{
    margin-top: 24px;
}
.item-base-block{
    padding-bottom: 40px;
    border-bottom: 1px solid #E9EDFC;
}
.all-chars-left{
    width: 560px;
    max-width: 100%;
    border-right: 1px solid #E9EDFC;
    padding-right: 100px;
}
.item-all-chars{
    margin-top: 40px;
}
.all-chars-wrapper{
    margin-top: 40px;
}
.item-all-chars h3{
    margin-bottom: 0;
}
.item-chars-left {
    width: 40%;
    min-width: 40%;
}
.all-chars-left .item-chars-one {
    margin-bottom: 8px;
}
.all-chars-wrapper{
    display: flex;
}
.all-chars-right{
    padding-left: 100px;
}
.sfera-one{
    color: #5F6C72;
    font-size: 14px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.sfera-ico{
    min-width: 24px;
    margin-right: 24px;
    position: relative;
    bottom: -3px;
}
.sfera-title{
    font-weight: 600;
    font-size: 14px;
}
.sfera-text{
    font-size: 14px;
    color: #90A4AE;
    margin-top: 12px;
    white-space: pre-wrap;
}
.sfera-block{
    margin-top: 12px;
}
.slider-large .slide-img img{
    width: 100%;
}
.item-title{
    min-height: 60px;
}
.no-items{
    display: none;
}
.blinking-block{
    position: fixed;
    top: 60px;
    right: 30px;
    color: #fff;
}
.blink-inside{
    display: flex;
    width: 70px;
    height: 45px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #F80000;
    position: relative;
}
.blink-count{
    background: #EE7F00;
    font-size: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 3px;
    right: 7px;
}
.order-modal{
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: all 0.4s ease-in-out;
}
.order-modal-open{
    transform: translateY(0);
    background: rgba(0,0,0,0.8);
    transition: all 0.4s ease-in-out;
}
.order-modal-wrapper{
    max-width: calc(100% - 30px);
    background: #fff;
    width: 780px;
    border-radius: 10px;
    box-sizing: border-box;
    max-height: calc(100vh - 30px);
    height: 100%;
    padding: 0 24px 36px 24px;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.order-modal-header{
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 700;
    height: 72px;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E9EDFC;
}
.order-modal-close{
    position: absolute;
    right: 0;
    top: 22px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.order-modal-close:hover{
    opacity: 1;
}
.order-modal-body{
    max-height: calc(100% - 85px);
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.order-items-one{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0 24px 0;
    border-bottom: 1px solid #E9EDFC;
}
.order-one-left{
    display: flex;
    align-items: center;
}
.item-delete-btn{
    position: relative;
    cursor: pointer;
}
.item-delete-one{
    opacity: 1;
    transition: opacity 0.3s ease;
}
.item-delete-two{
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.item-delete-btn:hover .item-delete-one{
    opacity: 0;
}
.item-delete-btn:hover .item-delete-two{
    opacity: 1;
}
.item-basket-media{
    width: 80px;
    min-width: 80px;
}
.item-basket-media a{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.item-basket-media img{
    max-height: 100%;
}
.order-one-right{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 100px);
}
.item-basket-price{
    width: 140px;
    text-align: end;
}
.item-basket-title{
    width: 320px;
}
.item-basket-title a{
    color: #263238;
    font-size: clamp(14px, 2vw, 18px);
    text-decoration: none;
}
.item-basket-title a:hover{
    text-decoration: underline;
}
.order-total{
    display: flex;
    justify-content: space-between;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 700;
}
.order-items-total{
    margin-top: 36px;
}

.checkbox-other {
    display: block;
    margin: 0 0 10px 0;
    line-height: 22px;
    cursor: pointer;
    user-select: none;
    position: relative;
}
.checkbox-other input[type=checkbox] {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
}
.checkbox-other span {
    display: inline-block;
    position: relative;
    padding: 0 0 0 30px;
    line-height: 22px;
    color: #475156;
    font-size: clamp(14px, 2vw, 18px);
}
.checkbox-other span:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
    border: 1px solid #00AACD;
    background: #00AACD;
    border-radius: 2px;
}
.checkbox-orange span:before{
    border: 1px solid #EE7F00;
    background: #EE7F00;
}
    /* Checked */
.checkbox-other input[type=checkbox] + span:after {
    content: "";
    opacity: 0;
    transition: opacity 0.3s ease;
}
.checkbox-other input[type=checkbox]:checked + span:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    background: url(../img/ico-15.svg) 4px 4px no-repeat;
    display: block;
    width: 20px;
    height: 20px;
}
/* Focus */
.focused span:before {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}
/* Hover */
.checkbox-other span:hover:after {
    filter: brightness(110%);
}
/* Active */
.checkbox-other span:active:before,
.checkbox-other span:active:after {
    filter: brightness(80%);
}
/* Disabled */
.checkbox-other input[type=checkbox]:disabled + span {
    color: #666;
    cursor: default;
}
.checkbox-other input[type=checkbox]:disabled + span:before,
.checkbox-other input[type=checkbox]:disabled + span:after {
    filter: grayscale(100%);
    opacity: 0.6;
}
.call-me-check-block{
    margin-top: 26px;
    margin-bottom: 40px;
}
.form-order-btn-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}
.error-send-form-order{
    color: darkred;
    font-size: 14px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    width: 100%;
}
.overflow-body{
    overflow: hidden;
}
.no-items-block{
    position: absolute;
    background: #fff;
    color: #263238;
    font-size: 14px;
    width: 178px;
    height: 54px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 22px;
    right: -15px;
    cursor: default;
    box-shadow: 0 1px 7px rgba(0,0,0,0.2);
    z-index: 10;
}
.reshenia-title h1{
    font-size: clamp(24px, 3vw, 36px);
    margin: 0;
}
.error-wrapper{
    height: calc(100vh - 352px);
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-body-block{
    width: 890px;
    max-width: calc(100% - 30px);
    box-sizing: border-box;
    text-align: center;
}
.error-num{
    font-size: clamp(64px, 8vw, 128px);
    font-weight: 700;
    background: linear-gradient(to bottom, rgb(38, 50, 56), rgba(38,50,56,0.1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.error-body-title{
    color: #5F6C72;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 30px;
}
.error-body-note{
    color: #263238;
    font-size: clamp(22px, 3vw, 32px);
    margin-top: 24px;
}
.error-body-note a{
    color: #263238;
}
.published-admin{
    display: inline-flex;
    position: fixed;
    left: 20px;
    top: 30px;
    background: #fff;
    padding: 5px 25px;
    border-radius: 10px;
    width: 130px;
    text-align: center;
}
.admin-published{
    color: darkgreen;
    border: 1px solid darkgreen;
}
.admin-unpublished{
    color: darkred;
    border: 1px solid darkred;
}
iframe{
    max-width: 100%;
}
.one-solution-cases{
    margin-top: 40px;
}
.upload-spinner{
    align-items: center;
    justify-content: center;
    display: none;
}
.upload-spinner img{
    width: 50px;
}
.upload-spinner-show{
    display: flex;
}
.top-countries-block{
    position: relative;
}
.top-countries-wrapper{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    left: 0;
    top: 0;
    z-index: 999;
}
.top-countries-list{
    position: absolute;
    background: #fff;
    z-index: 999;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    margin-top: 5px;
}
.top-select-title{
    font-size: 18px;
    font-weight: 600;
}
.top-countries-list ul{
    margin-top: 20px;
}
.top-countries-list ul li{
    margin-bottom: 10px;
    font-size: 14px;
}
.top-countries-list ul li:last-child{
    margin-bottom: 0;
}
.top-countries-list ul li a{
    font-size: 14px;
    color: #263238;
    text-decoration: none;
    transition: color 0.3s ease;
}
.top-countries-list ul li a:hover{
    color: #00AACD;
}
.top-countries-list ul li span{
    font-weight: 600;
}
.hide-countries{
    display: none;
}
.open-search{
    min-width: 15px;
    display: flex;
    align-items: center;
    position: relative;
    top: 1px;
    cursor: pointer;
}
.search-wrapper{
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0,0,0,0.6);
    z-index: 999;
}
.head-search{
    position: relative;
}
.search-field-block{
    position: absolute;
    z-index: 999;
    right: 0;
    margin-top: 10px;
}
.search-field{
    height: 55px;
    min-width: 365px;
    border-radius: 10px;
    border: none;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 0 20px 0 45px;
    font-size: 14px;
}
.search-btn{
    border: none;
    background: none;
    position: absolute;
    top: 20px;
    left: 15px;
}
.hide-search{
    display: none;
}
.page-search-block .search-field{
    border: 1px solid #00AACD;
    background: #FBFBFB;
}
.page-search-block{
    position: relative;
    margin-top: 24px;
}
.search-res-link{
    display: block;
    color: #263238;
    text-decoration: none;
}
.search-res-link span{
    color: #00AACD;
}
.search-res-title{
    font-weight: 600;
    font-size: clamp(20px, 3vw, 24px);
}
.search-res-body{
    font-size: clamp(16px, 2vw, 18px);
    margin-top: 12px;
}
.search-line{
    width: 100%;
    margin-top: 24px;
}
.open-soc {
    background: #86cc8e;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite; /* Анимация расходящихся кругов */
}
.soc-block{
    position: fixed;
    bottom: 60px;
    left: 50px;
}
.soc-block-one{
    margin-bottom: 5px;
    display: none; /* Изначально скрываем */
    opacity: 0; /* Начальная прозрачность для анимации */
    transition: opacity 0.5s ease-in-out; /* Плавная анимация появления */
}
.soc-block-one a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
}
.soc-phone a{
    background: #279e64;
}
.soc-mail a{
    background: #fe4861;
}
.soc-mail a img{
    position: relative;
    bottom: 2px;
}
.soc-tg a{
    background: #3d99d8;
}
.soc-tg a img{
    position: relative;
    right: 2px;
}
.soc-whatsap a{
    background: #47e380;
}
/* Ключевые кадры для анимации 'pulse' */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(134, 204, 142, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(134, 204, 142, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(134, 204, 142, 0);
    }
}
.note-item-file{
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 7px;
}
.item-ask-price{
    display: flex;
    align-items: center;
}
.note-item-blody{
    position: absolute;
    background: #fff;
    z-index: 999;
    padding: 20px;
    border-radius: 10px;
    width: 280px;
    margin-top: 5px;
    box-shadow: 0 1px 7px rgba(0,0,0,0.2);
    color: #263238;
    font-size: 14px;
    font-weight: 400;
    top: -72px;
    left: -80px;
    display: none;
}
.open-note{
    cursor: pointer;
}
.search-page{
    min-height: calc(100vh - 487px);
}
.gis-map iframe{
    border-radius: 10px;
    overflow: hidden;
}
.message.hidden{
    display: none;
}
.filter-block{
    background: #fff7ea;
    padding: 12px 20px 0 20px;
    border: 1px solid #F6AE1B;
}
.banner-top-block a{
    display: flex;
}
.banner-top-block{
    margin-bottom: 24px;
}
.banner-bottom-block a{
    display: flex;
}
.banner-bottom-block{
    margin-top: 24px;
}
.banner-page-block{
    margin-top: 40px;
}
.banner-tablet{
    display: none;
}
.banner-mobile{
    display: none;
}
.categories-bottom-wrapper{
    margin-top: 40px;
}
.tags-line{
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
    align-items: flex-start;
}
.has-tags{
    justify-content: space-between;
}
.switch-img-on{
    display: none;
}
.switch-btn{
    display: flex;
    cursor: pointer;
}
.switch-btn img{
    width: 32px;
    min-width: 32px;
}
.switch-view-line{
    display: flex;
    margin-top: 7px;
}
.switch-tile{
    margin-left: 12px;
}
.switch-active .switch-img-off{
    display: none;
}
.switch-active .switch-img-on{
    display: flex;
}
.switch-list{
    position: relative;
    bottom: 1px;
}
.item-one-tile{
    width: calc(100% / 3 - 28px);
    margin-right: 40px;
    margin-bottom: 30px;
}
.item-one-tile:nth-child(3n) {
    margin-right: 0;
}
.items-wrapper-flex{
    display: flex;
    flex-wrap: wrap;
}
.item-tile-wrapper{
    border: 1px solid #E9EDFC;
    position: relative;
    box-sizing: border-box;
    height: 100%;
    padding: 24px 24px 105px 24px;
}
.item-tile-media{
    width: 100%;
    height: 290px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.item-tile-wrapper .item-title{
    text-align: center;
}
.item-tile-wrapper .item-chars-one{
    display: block;
    margin-bottom: 12px;
}
.item-tile-wrapper .item-chars-left {
    width: 100%;
    min-width: 100%;
}
.item-tile-wrapper .item-chars-right {
    font-size: 14px;
    margin-top: 8px;
}
.item-price-tail .item-price {
    font-size: clamp(16px, 3vw, 24px);
}
.item-price-tail {
    margin-top: 17px;
    text-align: center;
    position: absolute;
    bottom: 24px;
    left: 0;
    width: 100%;
}
.item-price-tail .to-basket{
    margin: 16px auto 0 auto;
}
.item-price-tail .item-ask-price {
    justify-content: center;
}
.item-tile-media img{
    max-height: 100%;
}
.about-wrapper{
    display: flex;
    justify-content: space-between;
}
.section-padding-100{
    padding: 100px 0;
}
.about-media{
    width: calc(45% - 30px);
}
.about-body{
    width: calc(55% - 30px);
}
.about-img{
    width: 100%;
}
.about-checklist li{
    display: flex;
    margin-bottom: 20px;
    align-items: center;
}
.about-checklist li img{
    min-width: 30px;
    margin-right: 10px;
}
.about-checklist{
    margin-top: 30px;
}
.nice-title{
    color: #13287d;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
    text-transform: capitalize;
}
.nice-title span{
    color: #279e64;
}
h1, h2, h3, h4, h5{
    color: #13287d;
}
.work_progress {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding: 0 20px;
}
.style-two.work_progress {
    padding: 0 25px;
    text-align: center;
    position: relative;
}
.style-two.work_progress {
    text-align: center;
}
.work_progress-number span {
    background: #279e64;
    display: inline-block;
    height: 50px;
    width: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    position: relative;
    z-index: 1;
}
.style-two .work_progress-number span {
    background: #279E64;
    border-radius: 50%;
    color: #13287D;
    width: 115px;
    height: 115px;
    line-height: 100px;
    position: relative;
    font-weight: 500;
    font-size: 50px;
    z-index: 1;
    transition: .4s;
}
.work_progress-number span::after {
    position: absolute;
    left: -15px;
    top: -15px;
    width: 80px;
    height: 80px;
    background: #279e64;
    opacity: 0.4;
    content: "";
    margin: auto;
    border-radius: 100%;
    z-index: -1;
}
.style-two .work_progress-number span::after {
    position: absolute;
    left: 0px;
    top: -10px;
    width: 100%;
    height: 100%;
    background: #f1f3f8;
    content: "";
    opacity: 1;
    transition: .4s;
}
.style-two.work_progress:hover .work_progress-number span:after{
    background: #223685;
}
.style-two.work_progress:hover .work_progress-number span{
    color:#fff;
}
.t_center{
    text-align: center;
}
.work-process-steps{
    display: flex;
    justify-content: space-between;
    margin-top: 70px;
}
.style-two .work_progress-title h2 {
    font-size: 20px;
    margin: 30px 0 20px;
    font-weight: 700;
    position: relative;
}
.style-two .work_progress-title h2::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 30px;
    height: 3px;
    background: #279E64;
    margin: auto;
    bottom: -15px;
}
.work_progress-desc {
    padding-top: 5px;
}
.style-two.work_progress::after {
    position: absolute;
    right: 0;
    top: 49px;
    content: "";
    background-image: url('/img/ico-32.png');
    height: 71px;
    width: 74px;
    background-repeat: no-repeat;
    margin-right: -44px;
}
.work-step:last-of-type .style-two.work_progress::after {
    display: none;
}
.gray-back{
    background-color: #EFF2F7;
}
.blue-back{
    background-color: #13287D;
    background-image: url("/img/bg-counter.png");
    background-size: cover;
}
.blue-back-two{
    background-color: #13287D;
    background-image: url("/img/bg-cta.png");
    background-size: cover;
}
.blue-benefits {
    color: #fff;
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 60px 0;
}
.benefit img {
    width: 80px;
}
.benefit h3 {
    font-size: 18px;
    color: #279E64;
}
.benefit p {
    font-size: 16px;
    color: #fff;
}
.stats-section {
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.section-title h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 10px;
}

.section-title p {
    color: #bbb;
    font-size: 16px;
    margin-bottom: 40px;
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.stat-block {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 20%;
    min-width: 250px;
}
.stat-block.animate {
    opacity: 1;
    transform: translateY(0);
}
.stat-block:nth-child(2) {
    animation-delay: 0.3s;
}
.stat-block:nth-child(3) {
    animation-delay: 0.6s;
}
.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #279E64;
    margin-bottom: 10px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.stat-block-stars{
    position: relative;
    bottom: 3px;
}
.testimonial-carousel {
    padding: 60px 0;
    text-align: center;
}
.carousel-title {
    font-size: 26px;
    margin-bottom: 40px;
}
.carousel-wrapper {
    position: relative;
    width: 650px;
    margin: 0 auto;
    overflow: hidden;
    max-width: 100%;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.testimonial {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0.3;
    transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s;
}
.testimonial.active {
    opacity: 1;
    transform: scale(1);
}
.author {
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    background: #279E64;
    color: #fff;
    font-size: 24px;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.prev-btn {
    left: 0;
}
.next-btn {
    right: 0;
}
.speech-bubble-style .bubble {
    background: #fff;
    border-radius: 8px;
    padding: 30px 25px 20px 25px;
    position: relative;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

/* Треугольник "хвост" */
.speech-bubble-style .bubble::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 40px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-top-color: #fff;
}

/* Кавычки в правом верхнем углу */
.speech-bubble-style .bubble::before {
    content: "❝";
    font-size: 48px;
    color: #279E64;
    position: absolute;
    top: 10px;
    right: 20px;
    font-family: serif;
    line-height: 1;
}
.green-block{
    background-color: #279E64;
    background-image: url("http://wp.dreamitsolution.net/dreamit/dreamit-cleaning/wp-content/uploads/2020/12/testi-bg.png");
    background-position: top left;
    background-repeat: no-repeat;
}
.carousel-full-body{
    position: relative;
    width: 800px;
    margin: 0 auto;
    max-width: 100%;
}
.author-stars{
    color: #279E64;
}
.gallery-section {
    padding: 80px 0;
    text-align: center;
}
.gallery-title {
    font-size: 26px;
    color: #03286f;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}
.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.primary {
    background-color: #279E64;
    color: #ffffff;
}

.btn.primary:hover {
    background-color: #03286f;
}

.btn.secondary {
    background-color: #03286f;
    color: #fff;
}

.btn.secondary:hover {
    background-color: #279E64;
}
.gallery-note{
    font-size: 20px;
    margin: 20px 0 40px 0;
    font-weight: 700;
    position: relative;
}
.footer-botom .container{
    display: flex;
    justify-content: space-between;
}

#cleaning-calculator {
    margin: auto;
    padding: 20px;
    border: 1px solid #ececec;
    border-radius: 12px;
    background: #fafafa;
}
.calc-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.calc-item {
    flex: 1 1 240px;
    padding: 10px;
    border: 1px solid #ececec;
    border-radius: 10px;
    background: #fff;
    text-align: center;
}
.calc-item label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
}
.qty-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}
.qty-controls button {
    width: 32px;
    height: 32px;
    font-size: 18px;
    font-weight: bold;
    background: #279e64;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
}
.qty-value {
    min-width: 24px;
    text-align: center;
    font-size: 18px;
}
.calc-total {
    margin-top: 25px;
    font-size: 1.2em;
    color: #13287d;
}
.selected-services ul{
    margin-top: 10px;
}
#selected-services{
    margin-top: 10px;
    border: 1px solid #279e64;
    background: #fff;
    padding: 15px 20px;
    border-radius: 10px;
}
#selected-services ul{
    margin-top: 10px;
}
#selected-services ul li{
    margin-bottom: 5px;
}
#selected-services ul li:last-child{
    margin-bottom: 0;
}
.form__input-wrapper label{
    display: block;
    margin-bottom: 5px;
    color: #13287d;
}
.form-wrapper h3{
    width: 100%;
}
.form__input-wrapper{
    width: calc(100%/4 - 15px);
    margin-bottom: 20px;
}
.full-form-line{
    width: 100%;
}
.form__input-wrapper {
    margin-bottom: 15px;
}

.form__input-wrapper label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.form__input-wrapper select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #279e64;
    font-size: 16px;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='7' viewBox='0 0 10 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23999' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    transition: border-color 0.3s;
}

.form__input-wrapper select:focus {
    border-color: #279e64;
    outline: none;
}
/* обертка для чекбокса */
.checkbox-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    cursor: pointer;
    padding-left: 30px;
    line-height: 1.4;
    user-select: none;
}

/* скрываем стандартный чекбокс */
.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

/* стилизованный квадрат */
.custom-checkbox {
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    border: 2px solid #279e64;
    border-radius: 4px;
    background-color: #fff;
    transition: all 0.2s ease;
}

/* галочка при активном */
.checkbox-label input[type="checkbox"]:checked + .custom-checkbox {
    background-color: #279e64;
    border-color: #279e64;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 14 11' xmlns='http://www.w3.org/2000/svg'><path d='M1 5.5l4 4 8-8' stroke='%23fff' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 14px 14px;
}
.check-line{
    margin-top: 20px;
}
.error-line-show .default-field{
    border-color: darkred;
    background: #f6e8e8;
}
.error-send-form-show{
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}
.calculator-intro{
    margin-bottom: 40px;
    text-align: center;
}
.section-page{
    padding: 60px 0 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 26px;
    color: #13287d;
}

.employee-grid {
    display: flex;
    gap: 20px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.employee-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.3s ease;
    width: calc(100% / 4 - 20px);
}

.employee-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.employee-photo img {
    border-radius: 5px;
    width: 100%;
}

.employee-name {
    font-size: 18px;
    margin-bottom: 10px;
    color: #279e64;
}

.employee-description p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}
.center-line{
    border-bottom: 2px solid #EFF2F7;
}
.contact-page-form{
    margin-top: 40px;
}
