@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;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: #333;
    scrollbar-color: #c6c6c6 #E8E8E8;
    scrollbar-width: thin;
}
.main{
    width: 100%;
    margin: 0 auto;
}
.position-relative{
    position: relative;
}
.container-xxxl{
    width: 100%;
    max-width: calc(100% - 30px);
    margin: 0 auto;
}
.container-xxl{
    width: 1660px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
}
.container-xl{
    width: 1450px;
    max-width: calc(100% - 30px);
    margin: 0 auto;
}
.container-full-width{
    max-width: 100%;
}
.no-index-first{
    height: 90px;
    width: 100%;
}
.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: #263238;
}
.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: calc(100% - 250px);
}
.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;
}
.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{
    width: 210px;
    max-width: 100%;
    height: 60px;
    border-radius: 4px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
}
.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{
    background: #4e74ff;
    color: #ffffff;
}
.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{
    background: #476bf0;
}
.large-btn{
    font-size: 18px;
    padding: 0 20px;
    height: 46px;
    border-radius: 10px;
}
.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, 38px);
    font-weight: 700;
    margin-left: 120px;
}
.reshenia-title h2:after{
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    margin-top: 13px;
    background: #1F4FCC;
}
.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);
}
.index-seo {
    padding: 60px 0 60px 0;
    background: #f6f6f6;
}
.slider-large{
    max-width: 100%;
    margin: 0 auto;
}
.press-slide-link{
    display: block;
    position: relative;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    width: 100%;
}
.press-slide-media{
    position: relative;
    width: 100%;
    overflow: hidden;
}
.press-slide-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.press-slide-one{
    margin: 0 10px;
    border-radius: 20px;
    overflow: hidden;
}
.slider-right-wrapper{
    position: relative;
}
.arrows-mobile{
    display: none;
}
.press-block{
    margin-top: 42px;
}
.index-press{
    padding-top: 80px;
    padding-bottom: 120px;
}
.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 {
    right: 50px;
    position: absolute;
    top: 50%;
    margin-top: -20px;
    cursor: pointer;
    z-index: 2;
}
.right-prev {
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 10;
    margin-top: -20px;
    cursor: pointer;
}
.right-arrow{
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
.right-arrow:hover{
    opacity: 1;
}
.press-data{
    aspect-ratio: 1 / 0.5;
    background: #fff;
    width: 100%;
    padding: 20px 30px 60px 30px;
}
.full-press-data{
    aspect-ratio: 1 / 1;
}
.press-note{
    font-size: clamp(16px, 2vw, 20px);
    overflow: hidden;
    max-height: 75px;
}
.more-press-link{
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 25px;
}
.more-press-link img {
    transition: transform 0.3s ease;
}
.press-slide-link:hover .more-press-link img {
    transform: translateX(5px);
}
.press-slide-link .have-press-img{
    aspect-ratio: 1 / 0.5;
}
.have-press-img{
    position: relative;
}
.footer{
    background: #1C1C1C;
    padding: 80px 0 30px 0;
    color: #fff;
}
.footer-wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-right-block{
    text-align: end;
}
.footer-logo-2 .logo-top{
    width: 165px;
    margin-left: auto;
}
.footer-address .footer-nav-list li span{
    display: block;
}
.footer-copy{
    font-weight: 300;
    font-size: 12px;
    opacity: 0.4;
}
.footer-nav-list li a{
    text-decoration: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 200;
}
.footer-nav .footer-nav-list li{
    margin-bottom: 10px;
}
.footer-nav-list li .footer-nav-title{
    font-size: 18px;
    font-weight: 500;
}
.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: 0.8;
}
.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;
}
.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{
    border: 1px solid #CCC;
    height: 46px;
    padding: 0 15px;
    width: 100%;
    box-sizing: border-box;
    font-weight: 300;
    border-radius: 5px;
}
.default-field:active, .default-field:focus{
    border: 1px solid #CCC;
}
.default-textarea{
    padding: 10px 15px;
    height: auto;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
}
.border-box-field{
    box-sizing: border-box;
}
.form-line{
    margin-bottom: 30px;
    position: relative;
    width: 100%;
}
.half-line{
    width: calc(50% - 10px);
}
.bread-crumbs-block a{
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    opacity: 0.8;
}
.bread-crumbs-block{
    display: flex;
    align-items: center;
}
.bread-crumbs-block span{
    font-size: 14px;
    font-weight: 300;
}
.bread-crumbs-block li:first-child{
    display: none;
}
.bread-crumbs-block li:last-child a{
    color: #fff;
    opacity: 1;
}
.bread-crumbs-block span img{
    position: relative;
    bottom: -1px;
}
.bread-crumbs-block li{
    margin-right: 7px;
}
.top__bread-crumbs{
    position: relative;
    top: 20px;
    z-index: 10;
}
.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, 36px);
    margin: 0;
}
.first-note{
    font-size: 16px;
    margin-top: 24px;
}
.re-link{
    margin-top: 24px;
}
.reshenie-one .re-link{
    position: absolute;
    bottom: 35px;
}
h1{
    font-size: clamp(24px, 3vw, 38px);
    margin-top: 0;
    font-weight: 300;
    text-align: center;
    line-height: 1.4;
}
h2{
    font-size: clamp(24px, 3vw, 38px);
    margin-top: 0;
    font-weight: 300;
    text-align: center;
    line-height: 1.4;
}
.default-text p{
    font-size: clamp(16px, 2vw, 18px);
    margin: 0 0 2rem 0;
    line-height: 1.4;
}
.default-text h2 {
    font-size: clamp(22px, 3vw, 32px);
    margin-top: 0;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
}
.default-text .header-page-wrapper h2 {
    font-size: clamp(24px, 3vw, 32px);
    margin-top: 0;
    margin-bottom: 0;
}
.item-page-note{
    font-weight: 300;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 40px;
}
.note-beg{
    color: #888888;
}
.note-small{
    width: 800px;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
}
.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-block-between{
    display: flex;
    gap: 30px;
}
.futures-wrapper{
    margin-top: 30px;
}
.single-img-block{
    width: calc((100% / 3) - 20px);
}
.single-img-block .imgs {
    overflow: hidden;
}
.single-img-block img{
    width: 100%;
    transition: transform 0.3s ease;
}
.single-img-block img:hover {
    transform: scale(1.05);
}

.single-img-block h4 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
}
.single-img-block p {
    line-height: 1.4;
    font-size: clamp(16px, 2vw, 18px);
    color: #888;
    margin-top: 15px;
    font-weight: 300;
}
.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;
    width: calc(25% - 15px);
    margin-bottom: 20px;
    padding: 28px 28px 95px 28px;
    background: #fff;
}
.news-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 42px;
    gap: 20px;
}
.press-new-media img{
    width: 100%;
}
.press-new-data{
    color: #5D5D5E;
}
.press-date-day{
    color: #012BFF;
    font-size: 15px;
    margin-top: 10px;
    font-weight: 300;
}
.press-new-note {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 400;
}
.press-new-media{
    aspect-ratio: 1 / 0.5;
    overflow: hidden;
}
.press-new-note a{
    text-decoration: none;
    color: #5D5D5E;
}
.press-new-short{
    margin-top: 20px;
    font-size: 15px;
    font-weight: 300;
    color: #5D5D5E;
}
.press-more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #8B8B8B;
    height: 56px;
    padding: 0 25px;
    font-weight: 300;
    border-radius: 5px;
    background: #fff;
    transition: all 0.3s ease-in-out;
}
.press-more a:hover{
    border: 1px solid #4E74FF;
    color: #fff;
    background: #4E74FF;
}
.press-more{
    position: absolute;
    bottom: 20px;
    margin-top: 0;
}
.pagination{
    display: flex;
    align-items: center;
    gap: 12px;
}
.prev.disabled{
    display: none;
}
.next.disabled{
    display: none;
}
.pagination li a{
    text-decoration: none;
    color: #0F367A;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}
.pagination li{
    display: flex;
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background: #fff;
}
.pagination li.active{
    background: #4E74FF;
}
.pagination li.active a{
    color: #fff;
}
.pagination li a:hover{
    color: #00AACD;
}
.pagination li.active a:hover{
    color: #fff;
}
.paginator{
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
.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;
}
.partners-form-wrapper{
    background: #FFFFFF;
    position: relative;
    top: -85px;
    padding: 56px 58px 56px 104px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 6px 8px 1px #eaedf5;
}
.partners-form{
    background: #ECF0FF;
}
.form-wrapper{
    display: flex;
    justify-content: space-between;
}
.form-block{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.error-line{
    color: darkred;
    font-size: 11px;
    position: absolute;
    bottom: -17px;
    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{
    margin-top: 30px;
}
.form-btn-block .standart-btn{
    margin-top: 20px;
    width: 100%;
}
.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: darkred;
    font-size: 14px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    position: absolute;
    bottom: -12px;
    opacity: 0;
}
.contacts-two-sides .error-send-form{
    bottom: -20px;
}
.error-send-form-show{
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}
.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: 300;
    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-section{
    margin-bottom: 80px;
}
.contacts-two-sides{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: -50px;
    box-shadow: rgb(228, 234, 255) 0 0 8px 0;
    padding: 60px 60px 60px 100px;
    position: relative;
    background: #fff;
}
.contacts-two-sides .order-form{
    margin-top: 24px;
}
.contacts-left{
    width: calc(50% - 160px);
    max-width: 100%;
}
.contacts-right{
    width: calc(50% - 30px);
}
.contacts-two-sides h3{
    font-size: clamp(24px, 3vw, 30px);
    margin: 0;
    font-weight: 300;
}
.contacts-two-sides .blue-separator{
    margin-top: 24px;
}
.contacts-text{
    font-weight: 300;
    margin-top: 24px;
}
.contact-block{
    margin-top: 24px;
}
.contact-block-title h4{
    margin: 0;
    font-size: clamp(16px, 2vw, 17px);
    font-weight: 300;
    color: #888;
}
.contact-block a{
    font-size: clamp(16px, 2vw, 17px);
    font-weight: 300;
    color: #888;
    text-decoration: none;
}
.contact-block-body{
    margin-top: 5px;
    font-size: clamp(16px, 2vw, 17px);
    font-weight: 300;
    color: #888;
}
.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;
    flex-wrap: wrap;
}
.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;
}
.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, .partner-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;
    padding: 0 24px 36px 24px;
}
.form-order-wrapper{
    max-height: calc(100vh - 290px);
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.order-modal-header{
    font-size: clamp(18px, 3vw, 24px);
    height: 72px;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: none;
    color: #fff;
    justify-content: center;
}
.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;
    padding: 24px 0 24px 0;
    gap: 20px;
}
.order-one-left{
    display: flex;
    align-items: center;
}
.dop-parnter-block{
    width: 100%;
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
}
.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 #4E74FF;
    background: #4E74FF;
}
    /* 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: #F00;
    font-size: 14px;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
}
.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: 130px;
    background: #fff;
    padding: 5px 25px;
    border-radius: 10px;
    width: 160px;
    text-align: center;
    z-index: 10;
}
.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;
    z-index: 99;
}
.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: #04e78e;
}
.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%;
}
.index-header .toplink{
    color: #000;
}
.index-header.is-hover .toplink{
    color: #000;
}
.index-header.is-solid .toplink{
    color: #000;
}
.single-category-block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 630px;
}
.category-block-one{
    background: url(../img/x_bg1.jpg) no-repeat center #fff;
}
.category-block-two{
    background: url(../img/x_bg2.jpg) no-repeat center #fff;
}
.blue-separator{
    background: #4E74FF;
    height: 4px;
    width: 30px;
    border-radius: 4px;
    box-shadow: 0 0 8px 4px #D1E7F2;
}
.category-block-title{
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 300;
    line-height: 1.4;
}
.category-block-left {
    max-width: 100%;
    width: 620px;
}
.category-block-text{
    font-weight: 300;
    line-height: 1.3;
    margin-top: 20px;
    font-size: clamp(16px, 2vw, 17px);
}
.single-category-block .blue-separator{
    margin: 40px 0 40px 0;
}
.category-block-right{
    width: 50%;
}
.category-block-media img{
    margin: 0 auto;
}
.category-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DBDBDB;
    border-radius: 6px;
    height: 56px;
    padding: 0 50px;
    max-width: 100%;
    font-size: 16px;
    font-weight: 300;
    gap: 10px;
    transition: all 0.3s ease;
    background: #ffffff;
}
.category-link:hover {
    border-color: #4e74ff;
    background: #4e74ff;
    color: #FFFFFF;
}
.btn-img-change{
    display: inline-flex;
    position: relative;
}
.btn-img-1{
    transition: opacity 0.3s ease;
}
.btn-img-2{
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.category-link:hover .btn-img-2{
    opacity: 1;
}
.category-link:hover .btn-img-1{
    opacity: 0;
}
.category-block-left  { order: 1; }
.category-block-right { order: 2; }

.category-block-two .category-block-left  { order: 2; }
.category-block-two .category-block-right { order: 1; }
.category-link-img{
    display: flex;
}
.one-item-media{
    height: 312px;
    width: 312px;
    margin: 0 auto;
}
.one-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;      /* картинка заполняет контейнер */
    object-position: center;/* центрируем */
    transition: transform 0.4s ease;
}

.one-item-media:hover img {
    transform: scale(1.05);
}
.one-item-list{
    text-align: center;
    width: calc(100% / 3);
    margin-bottom: 60px;
    position: relative;
}
.one-item-body{
    margin-top: 30px;
}
.one-item-title{
    font-size: 20px;
    font-weight: 300;
}
.one-item-short{
    font-weight: 300;
    color: #888888;
    margin-top: 20px;
}
.one-item-btns{
    margin-top: 40px;
}
.page-padding{
    padding: 80px 0 80px 0;
}
.products-first-back{
    background: url(../img/bg3.jpg) no-repeat center top;
    background-size: cover;
}
.smart-first-back{
    background: url(../img/bg4.jpg) no-repeat center top;
    background-size: cover;
}
.item-products-back {
    background: url(../img/q_bg14.jpg) no-repeat center top;
    background-size: cover;
}
.item-smart-back{
    background: url(../img/q_bg14-1.jpg) no-repeat center top;
    background-size: cover;
}
.solutions-back{
    background: url(../img/solutions-1.jpg) no-repeat center top;
    background-size: cover;
}
.partners-back{
    background: url(../img/a_bg21.jpg) no-repeat center top;
    background-size: cover;
}
.news-back{
    background: url(../img/q_bg1.jpg) no-repeat center top;
    background-size: cover;
}
.contacts-back{
    background: url(../img/bg-1.jpg) no-repeat center top;
    background-size: cover;
}
.products-back{
    background: url(../img/product_back.jpg) no-repeat center top;
    background-size: cover;
}
.support-back{
    background: url(../img/support.jpg) no-repeat center top;
    background-size: cover;
}
.smart-back{
    background: url(../img/f9710fa923f3a6fe7f5e7950c5ba915b28461576.jpg) no-repeat center top;
    background-size: cover;
}
.q_ban{
    height: 324px;
}
.imgs {
    position: relative;
    z-index: 1;
}
.q_ban .imgs {
    height: 335px !important;
}
.imgs .cent {
    top: 50%;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    display: block;
    transform: translateY(-50%);
    text-align: center;
}
.imgs .cent img {
    display: block;
    margin: 0 auto;
}
.q_ban h1 {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 200;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 10px;
}
.q_ban h3 {
    font-size: clamp(24px, 3vw, 40px);
    font-weight: 200;
    color: #fff;
}
.cp_ban{
    height: 665px;
}
.l_banner {
    height: 519px;
    position: relative;
    background-size: cover !important;
}
.first-solution-block{
    position: relative;
}
.gray-back::after{
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
}
.cent-note-sol ul li{
    display: inline-flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: center;
}
.cent-note-sol ul li::before{
    content: '';
    display: flex;
    width: 8px;
    min-width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
}
.sol-container{
    z-index: 1;
}
.height-100{
    height: 100%;
}
.himgs{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lts{
    width: 745px;
    max-width: 100%;
}
.imgs-solution{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.imgs-solution img{
    margin: 0 auto;
}
.cent-note{
    font-size: clamp(12px, 3vw, 30px);
    font-weight: 300;
    color: #fff;
    margin-top: 20px;
}
.imgs-solution h1{
    font-size: clamp(20px, 4vw, 50px);
    font-weight: 300;
    color: #fff;
    margin: 10px 0 20px 0;
    text-align: start;
}
.imgs-solution h3{
    font-size: clamp(20px, 4vw, 50px);
    font-weight: 300;
    color: #fff;
    margin: 10px 0 80px 0;
}
.cent-one-sol h3{
    margin: 0;
}
.cent-note-sol{
    color: #fff;
    font-weight: 300;
    font-size: clamp(16px, 3vw, 24px);
    margin-top: 30px;
    width: 1000px;
    max-width: 100%;
    line-height: 1.4;
}
.swiper-container-horizontal{
    width: 420px;
    margin-right: 100px;
}
.top-h3{
    font-size: clamp(22px, 4vw, 45px);
    line-height: 1.3;
    font-weight: 400;
    color: #fff;
    margin: 30px 0 0 0;
    text-align: start;
}
.top-h2{
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
    color: #fff;
    margin-top: 15px;
}
.top-text{
    margin-top: 30px;
    font-size: 18px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
}
.ico{
    display: flex;
    margin-top: 30px;
}
.ico img{
    margin-right: 10px;
}
.green-btn{
    color: #fff;
    background: #3AE181;
    font-size: 20px;
    font-weight: 300;
    height: 46px;
    display: inline-flex;
    align-items: center;
    padding: 0 30px;
    border-radius: 5px;
    gap: 10px;
    transition: all 0.3s ease;
}
.green-btn:hover{
    background: #4E74FF;
}
.send-message-top{
    margin-top: 30px;
}
.grey-back{
    background: #ECECEC;
}
.light-grey-back{
    background: #F7F7F7;
}
.blue-back{
    background: #ECF0FF;
}
.item-chars-block{
    margin-top: 40px;
    background: #fff;
}
.iten-chars-one{
    border-bottom: 1px solid #DDD;
    padding: 40px 80px 40px 80px;
    display: flex;
    justify-content: space-between;
}
.iten-chars-title{
    width: 40%;
    min-width: 40%;
}
.iten-chars-title{
    font-size: 26px;
    font-weight: 300;
}
.iten-chars-body{
    color: #666;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    width: 60%;
}
.iten-chars-body:before{
    content: '';
    display: flex;
    width: 4px;
    min-width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #666;
    margin-right: 8px;
    position: relative;
    top: 9px;
}
.to-download-center{
    color: #F00;
    font-size: 15px;
    font-weight: 300;
    margin-top: 50px;
}
.to-download-center a{
    text-decoration: underline;
}
.related-items-slider .sleem-in-slide{
    width: auto;
}
.related-items-slider{
    margin-top: 50px;
}
.get-partner-block{
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.get-partner-ico img{
    margin: 0 auto;
}
.get-partner-txt h4{
    color: #5D5D5E;
    font-size: 24px;
    font-weight: 300;
}
.get-partner-txt p{
    font-weight: 300;
    color: #666;
    width: 400px;
    max-width: 100%;
    display: block;
    min-height: 50px;
}
.ring-link-btn{
    display: inline-flex;
    border: 1px solid #8B8B8B;
    align-items: center;
    font-weight: 400;
    font-size: 24px;
    padding: 0 50px;
    height: 58px;
    border-radius: 42px;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.ring-link-btn:hover{
    border-color: #4e74ff;
    background: #4e74ff;
    color: #FFFFFF;
}
.footer-left-block{
    display: flex;
}
.footer-nav{
    margin-top: 25px;
}
.footer-left-2{
    margin-left: 80px;
    margin-top: 53px;
}
.footer-left-3{
    margin-left: 80px;
}
.dop-margin-link-top{
    margin-top: 20px;
}
.logo-note{
    color: #888;
    font-size: 14px;
    margin-top: 25px;
}
.footer-nav-address{
    font-size: 14px;
    line-height: 1.4;
}
.f-contacts-title{
    font-size: 14px;
    line-height: 1.4;
}
.footer-nav-list-phone a{
    font-size: 14px;
    line-height: 1.4;
}
.footer-email{
    margin-top: 20px;
}
.footer-bottom{
    width: 100%;
    border-top: 1px solid #30303099;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 30px;
}
.footer-bottom-left ul{
    display: flex;
    margin: 0;
    padding: 0;
}
.footer-bottom-left ul li{
    margin-right: 10px;
}
.footer-bottom-left ul li a{
    font-weight: 300;
    font-size: 12px;
    opacity: 0.4;
}
.uit_txt {
    text-align: center;
    margin-top: 62px;
}
.box-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.box-one{
    width: calc((100% / 3) - 10px);
    margin-bottom: 10px;
}
.box-one .box-back{
    width: 100%;
}
.box-one a {
    display: block;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
}
.product-t{
    position: absolute;
    top: 40px;
    width: 100%;
    text-align: center;
}
.product-txt {
    font-size: clamp(20px, 3vw, 36px);
    font-weight: 700;
}
.p-more{
    width: 240px;
    height: 45px;
    background: #E5E5E5;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: clamp(14px, 3vw, 24px);
    transition: background-color 0.3s ease-in-out;
}
.box-one .p-more{
    margin: 15px auto 0 auto;
}
.box-one a:hover .p-more{
    background-color: #cdcdcd;
}
.home-phone{
    display: none;
}
.home-block-1-body {
    position: absolute;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 50%;
    right: 0;
    display: flex;
    align-items: center;
}
.home-block-1-inside{
    width: 560px;
    max-width: 100%;
}
.home-block-1-inside h3{
    margin: 0;
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 700;
    line-height: 1.1;
}
.home-block-1-text p{
    line-height: 30px;
    font-size: 18px;
}
.home-block-1-btn{
    display: flex;
    background: #fff;
    width: 190px;
    height: 45px;
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    transition: background-color 0.3s ease-in-out;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
}
.home-block-1-btn:hover{
    background-color: #E5E5E5;
}
.h_pg4{
    background: #f6f6f6;
    background-image: url("../img/BG.webp");
}
.h_pg5-1 {
    padding: 0 0;
    background: url(../img/Why.webp) no-repeat;
    margin-top: -130px;
    height: 562px;
    background-size: 100% 100%;
}
.box-why {
    width: 650px;
    max-width: 100%;
    display: flex;
    margin-top: 60px;
    padding-top: 100px;
}
.box-why h2{
    font-size: clamp(24px, 3vw, 48px);
    font-weight: 700;
    margin: 0;
    text-align: start;
}
.index-smart-home h1{
    font-weight: 700;
}
.index-smart-home h2{
    font-weight: 700;
}
.why-dop-block{
    background: #f6f6f6 url("../img/bg-1.jpg");
    background-size: cover;
}
.why-dop-wrapper{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
}
.why-dop-one{
    width: calc(100% / 3);
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}
.why-dop-media img{
    margin: 0 auto;
}
.why-dop-body-title{
    font-size: 24px;
    font-weight: 300;
    margin-top: 20px;
}
.why-dop-body-text{
    font-size: 15px;
    font-weight: 300;
    margin-top: 20px;
}
.l_banner .first-solution-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(50%);
    height: 170px;
    box-shadow: 0 0 8px 0 #e4eaff;
    overflow: hidden;
    background: #fff url(../img/lico1.webp) no-repeat right bottom;
    padding: 0 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.first-solution-text{
    font-size: clamp(16px, 2vw, 18px);
    color: #888888;
    text-align: center;
    font-weight: 300;
    line-height: 1.4;
}
.solution-block-media{
    position: relative;
}
.solution-block-media::after {
    content: "";
    display: block;
    background: url(../img/lico3.webp) no-repeat center;
    width: 76px;
    height: 47px;
    position: absolute;
    right: 40px;
    bottom: -30px;
    z-index: 11;
}
.category-block-left  { order: 1; }
.category-block-right { order: 2; }

.solution-block-two .category-block-left  { order: 2; }
.solution-block-two .category-block-right { order: 1; }
.solution-block-one{
    background: #F3F3F3;
}
.solutions-body{
    padding-top: 80px;
}
.ban_cent {
    height: 385px;
    position: relative;
}
.contact-back-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
}
.contact-back-bottom-wrapper .standart-btn{
    margin: 40px auto 0 auto;
}
.contact-back-bottom-wrapper .sub-btn{
    margin: 0;
    height: 48px;
    border-radius: 5px;
}
.form-line-sub{
    width: calc(100% - 220px);
}
.contact-back-bottom-wrapper h4{
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 300;
    text-align: center;
    color: #fff;
    width: 880px;
    max-width: 100%;
}
.partners-block{
    display: flex;
    justify-content: space-between;
}
.partners-block .txt {
    width: 53.5%;
    padding: 50px 35px 50px 50px;
    box-sizing: border-box;
    background: url(../img/a_ico4.webp) no-repeat left top;
    background-size: 700px auto;
    margin: 0;
}
.partners-block h3{
    font-size: clamp(24px, 3vw, 30px);
    font-weight: 300;
}
.partners-block p{
    color: #888888;
    font-size: clamp(16px, 2vw, 17px);
    font-weight: 300;
    line-height: 1.4;
}
.partners-block .blue-separator{
    margin-top: 40px;
}
.grey-back-img{
    background: url(../img/BG.webp) center center no-repeat;
    background-size: cover;
}
.partner-one{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #C3C3C3;
    margin-bottom: 15px;
    background: #fff;
}
.partner-one-left{
    min-width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-one-right{
    padding: 30px 120px 30px 50px;
    border-left: 1px solid #ECF0FF;
}
.item-psrtners-block {
    margin-top: 40px;
}
.partner-one-text{
    font-weight: 300;
    font-size: 15px;
    line-height: 1.4;
}
.partner-one-lionk{
    margin-top: 25px;
}
.partner-one-lionk a{
    color: #4E74FF;
    font-size: 15px;
}
.partner-one-name{
    margin-bottom: 10px;
}
.partners-form-left{
    width: calc(50% - 30px);
}
.partners-form-right{
    width: calc(50% - 30px);
}
.form-block label{
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 5px;
    display: inline-block;
}
.form-wrapper-sub{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.form-wrapper-sub .spinner-send img{
    width: 30px;
}
.form-wrapper-sub .error-line {
    bottom: -22px;
    background: rgba(255,255,255,0.6);
    padding: 3px 10px;
    border-radius: 3px;
}
.sub-result{
    display: none;
    padding: 15px 25px;
    text-align: center;
    background: rgba(255,255,255,0.6);
    border-radius: 5px;
    font-weight: 300;
}
.contact-back-bottom-wrapper .sub-title {
    font-size: clamp(20px, 3vw, 32px);
}
.news-section{
    background: #fff;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 60px;
    box-sizing: border-box;
    max-width: 100%;
}
.new-title-h1{
    text-align: center;
}
.new-title-h1 h1{
    margin: 0;
    font-weight: 300;
}
.products-header{
    justify-content: flex-start;
    text-align: start;
}
.products-header h3 {
    font-size: clamp(18px, 4vw, 40px);
    font-weight: 300;
    color: #fff;
}
.cent-note-sol {
    font-size: clamp(16px, 3vw, 24px);
    margin-top: 10px;
    margin-bottom: 80px;
}
.pb-0{
    padding-bottom: 0;
}
.first-product-media h2{
    text-align: start;
}
.swipr-solutions-block{
    background: #333;
}

.swiper-slide-body{
    display: none;
}
.swiper-slide-text{
    display: none;
}
.slick-current .swiper-slide-text, .slick-current .swiper-slide-body{
    display: block;
}
.center-slider {
    overflow: visible;
    position: relative;
}
.center-slider .slick-slide {
    transition: transform 0.5s ease;
    transform: scale(0.9);
    z-index: 1;
}

.center-slider .slick-current {
    transform: scale(1.3);
    z-index: 2;
    position: relative;
}
.swipr-solutions-wrapper .slick-list{
    overflow: visible;
}
.swipr-solutions-wrapper{
    padding: 120px 0 160px 0;
}
.swiper-slide-body{
    background: #fff;
    padding: 25px 50px;
    min-height: 145px;
}
.swiper-slide-title{
    font-size: 20px;
}
.swiper-slide-note{
    font-size: 16px;
    margin-top: 10px;
}
.swiper-slide-text{
    color: #B5B5B5;
    font-size: 15px;
    position: relative;
    bottom: 30px;
}
.swipr-solutions-title h2{
    color: #fff;
    position: relative;
    top: 60px;
}
.swipr-solutions-title h2::after {
    background: #ffffff;
}
.center-slider .slick-slide {
    filter: brightness(70%) blur(2px);
    transition: filter 0.4s ease;
}
.center-slider .slick-current.slick-active {
    filter: none;
}
.center-slider .slick-dots {
    bottom: -125px;
}
.center-slider .right-prev {
    top: 35%;
    left: 15%;
}
.center-slider .right-next {
    top: 35%;
    right: 15%;
}
.order-modal-wrapper{
    background: #fff url(../img/q_img25.jpg) no-repeat center top;
}
.order-modal-body .form-line {
    margin-bottom: 25px;
}
.partner-modal .order-modal-header {
    margin-bottom: 30px;
}
.card-nav img{
    height: 100px;
}
.default-text h1{
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
}
.three-slider .swiper-slide-body{
    display: block;
}
.three-slider .swiper-slide-text{
    display: block;
}
.three-slider .slick-slide {
    padding: 15px;
}
.swiper-container-horizontal .slider-item-slide img{
    margin: 0 auto;
}
.item-smart-back .container-xl{
    height: 100%;
}
.item-smart-back .himgs{
    height: 100%;
}
.home-block-1-back img{
    width: 100%;
}
.swipr-solutions-wrapper img{
    width: 100%;
}
.single-img-block h3 {
    margin-top: 30px;
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 300;
}
.default-text ul{
    margin-bottom: 2rem;
}
.default-text ul li{
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.default-text ul li::before{
    content: '';
    display: flex;
    width: 8px;
    min-width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4E74FF;
}
.smart-header .cent-one-sol{
    margin: 0 210px 130px auto;
    width: 560px;
}
.smart-header .cent-one-sol h1{
    text-align: start;
    font-weight: 700;
    line-height: 1.2;
}
.gold-text {
    font-weight: 800;
    display: inline-block;
    background: linear-gradient(135deg,#c7ba86 0%,#614422 45%,#c7ba86 60%,#614422 100%);
    /*background: linear-gradient(135deg,#c7ba86 0%,#624525 100%);*/
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(1.5px 1.5px 0 #614422)
    drop-shadow(4px 4px 6px rgba(0,0,0,.35));

    animation: gold-shine 6s linear infinite;
}
@keyframes gold-shine { to { background-position: -200% 0; } }
.order-btn-smart{
    background: #007AFF;
}
.order-btn-smart:hover{
    background: #3AE181;
}
.slide-mob{
    display: none;
}
.slider-large .one-slide picture,
.slider-large .one-slide img {
    display: block;
    width: 100%;
    height: auto;
}
.mob-block-home-1{
    display: none;
}
.cent-one-sol{
    max-width: 100%;
}
.contact-back-bottom-wrapper{
    width: 100%;
}
.standart-text{
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.4;
}
.left-text{
    text-align: start;
}
.cetered-text{
    text-align: center;
}
.right-text{
    text-align: end;
}
.cetered-text .default-text h2 {
    text-align: center;
}
.right-text .default-text h2 {
    text-align: end;
}
.left-text .default-text h2 {
    text-align: start;
}
.item-label{
    display: flex;
    position: absolute;
    height: 26px;
    padding: 0 15px 2px 15px;
    color: #fff;
    align-items: center;
    border-radius: 6px;
    font-size: 14px;
    top: 15px;
    right: 15px;
}
.item-small-label{
    height: 20px;
    padding: 0 10px 1px 10px;
    border-radius: 4px;
    font-size: 12px;
}
.zigbee-color{
    background: #9900ff;
}
.knx-color{
    background: #ff9900;
}
.swiper-container-horizontal{
    position: relative;
}
