*, ::after, ::before {
    box-sizing: border-box;
}
:root {
    --color-txt: #111514;
    --bg-blue: #113B67;
    --bg-btn: #1C5BB6;
    --bg-btn-two: #003583;
    --bg-section: #E5ECFC;
    --bg-light-blue: #ECF2F8;
    --font-txt: 'Helvetica Neue', sans-serif;
    --font-title: 'Coolvetica', sans-serif;
    --font-pr: 'Proxima Nova', sans-serif;
    --border-radius: 20px;
}
   
input:focus, textarea:focus, button:focus {
    outline: none;
}
img {
    max-width: 100%;
}
a {
    text-decoration: none;
    color: currentColor;
    transition: all .2s;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #f1f4fa;
    color: var(--color-txt);
    margin: 0;
    padding: 0;
    font-size: 18px;
    line-height: 120%;
    font-family: var(--font-txt);
    font-weight: normal;
}
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 400;
}
.d-flex {
    display: flex;
}
.align-items-center {
    align-items: center;
}
.justify-content-between {
    justify-content: space-between;
}
.ul-nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.title-gr {
    font-family: var(--font-title);
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    background: linear-gradient(82.96deg, #033886 -58.59%, #6796DC 96.41%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.sectionTitle {
    font-size: 36px;
    line-height: 43px;
}
.container {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    border-radius: 7px;
    background-color: var(--bg-btn);
    color: #fff;
    font-family: var(--font-txt);
    border: 1px solid var(--bg-btn);
    height: 56px;
    padding-left: 22px;
    padding-right: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
    letter-spacing: 0.03em;
    font-weight: 500;
}
.btn:hover {
    background: none;
    color: var(--bg-btn);
}

.btn-dark-blue {
    background-color: var(--bg-btn-two);
    border: none;
}
.btn-dark-blue:hover {
    background-color: var(--bg-blue);
    border: none;
    color: #fff;
}
.btn-tr {
    border: 1px solid var(--bg-btn);
    color: var(--bg-btn);
    background: none;
}
.btn-tr:hover {
    background-color: var(--bg-btn);
    color: #fff;
}

/* HEADER */
.header__top {
    background: linear-gradient(270deg, #F8FAFE 0%, #D3E3FC 100%);
    padding: 10px 17px;
    font-size: 17px;
    text-transform: uppercase;
    gap: 18px;
    justify-content: center;
    position: relative;
    
}
.header__top img {
    width: 50px;
}
.header__top a {
    letter-spacing: 0.05em;
    text-decoration-line: underline;
    color: var(--bg-blue);
    text-decoration-style: dotted;
    text-underline-offset: 3px;
}
.header__top-close {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}
.headerBottom {
    padding: 17px 0;
    background-color: #fff;
}
.header .container {
    max-width: 1540px;
}
.header__left {
    gap: 46px;
    flex: 1;
}
.header__wr {
    gap: 58px;
}
.header__menu {
    margin-left: 18px;
}
.header__search {
    width: 100%;
    max-width: 450px;
    height: 48px;
    border-radius: 7px;
    border: 1px solid var(--bg-light-blue);
    padding: 15px;
    display: flex;
    align-items: center;
    background-color: #F0F5FB;
}
.header__search input {
    background: none;
    border: none;
    font-size: 13px;
    font-family: var(--font-txt);
    padding: 10px 0;
    width: 100%;
}
.header__search-form {
    flex-direction: row-reverse;
    gap: 10px;
    width: 100%;
}
.header__search button {
    background: none;
    border: none;
    padding: 0;
}
.header__menu ul {
    gap: 35px;
}
.header__menu a {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 0.05em;
    position: relative;
}
.header__menu a::before {
    content: '';
    background-color: var(--color-txt);
    transition: all .3s;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.header__menu a:hover::before {
    width: 100%;
}
.header__user {
    gap: 10px;
}
.header__user-btn {
    border-radius: 8px;
    border: 1px solid var(--bg-light-blue);
    padding: 15px 16px;
    max-height: 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    line-height: 16px;
}
.header__cart-q {
    position: absolute;
    top: -8px;
    right: 3px;
    color: #fff;
    border-radius: 4px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    background-color: var(--bg-btn-two);
    padding-top: 2px;
}
.header__user-btn:hover {
    background-color: #F0F5FB;
}
.header__login img {
    width: 14px;
}
.header__logo img {
    display: block;
}
.header__menuBtn {
    display: none;
    width: 32px;
    height: 22px;
    position: relative;
    cursor: pointer;
}
.header__menuBtn span {
    width: 100%;
    background-color: var(--color-txt);
    border-radius: 10px;
    height: 2px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.header__menuBtn::before, .header__menuBtn::after {
    content: '';
    width: 100%;
    background-color: var(--color-txt);
    border-radius: 10px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all .3s;
}
.header__menuBtn::after {
    top: auto;
    bottom: 0;
}
.header__menuBtn.open span {
    display: none;
}
.header__menuBtn.open::before {
    transform: rotate(45deg);
    top: 50%;
}
.header__menuBtn.open::after {
    transform: rotate(-45deg);
    top: 50%;
}
.header__menu-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
}

@media(max-width: 1300px) {
    .header__wr, .header__left {
        gap: 25px;
    }
}
@media(max-width: 1200px) {
    .header__menu a {
        font-size: 14px;
        line-height: 14px;
    }
    .header__menu ul {
        gap: 20px;
    }
}
@media(max-width: 991px) {
    .header__menu {
        visibility: hidden;
        opacity: 0;
        background-color: #EAF6FF;
        padding: 70px 50px 60px 50px;
        position: fixed;
        top: 0;
        right: 0;
        width: 350px;
        height: 100%;
        margin-left: 0;
        z-index: 10;
        box-shadow: 0 0 23px #0000000d;
        transition: all .3s;
    }
    .header__menuBtn {
        display: block;
    }
    .header__menu ul {
        flex-direction: column;
    }
    .header__menu a {
        font-size: 16px;
        line-height: 16px;
    }
    .header__menu-close {
        display: block;
    }
    .header__menu.open {
        opacity: 1;
        visibility: visible;
    }
}
@media(max-width: 575px) {
    .header__search, .header__user {
        display: none;
    }
    .header__logo {
        max-width: 150px;
    }
    .header__top {
        font-size: 12px;

    }
    .header__top img {
        width: 36px;
    }
    .header__top-close {
        right: 11px;
    }
    .header__top-close svg {
        width: 10px;
        height: 10px;
    }
    .header__menu {
        width: 100%;
        height: auto;
    }
}
/* END HEADER */

/* HOME */
.heroHome {
    padding: 116px 0;
    color: #fff;
    position: relative;
}
.heroHome .container {
    position: relative;
    z-index: 1;
}
.titleHero {
    font-size: 48px;
    line-height: 45px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 30px;
}
.titleHero span {
    font-family: var(--font-title);
    color: var(--bg-blue);
}
.heroHome p {
    font-size: 22px;
    max-width: 440px;
    letter-spacing: 0.03em;
    line-height: 120%;
}
.heroHome .btn {
    margin-top: 30px;
    height: 65px;
    padding-left: 45px;
    padding-right: 45px;
}
.heroHome__cont {
    max-width: 600px;
}
.heroHome__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.heroHome__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bestProducts {
    padding: 100px 0 65px;
}

.bestProducts__top {
    gap: 20px;
}
.bestProducts__top-arr {
    width: 75px;
    height: 49px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: var(--bg-section);
}
.titleSection {
    font-size: 36px;
    line-height: 43px;
    text-transform: uppercase; 
    font-family: var(--font-title);
    margin: 0;
    font-weight: 400;
}
.titleSection.-grad span {
    background: linear-gradient(82.96deg, #033886 -58.59%, #6796DC 96.41%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.bestProducts__slider {
    margin-top: 78px;
}
.prodCart {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 25px 27px;
    width: 312px;
    max-width: 100%;
    min-width: 0;
    position: relative;
}
.prodCart__img {
    width: 100%;
    min-width: 0;
    height: 310px;
    display: flex;
    align-items: end;
    justify-content: center;
    margin-bottom: 24px;
    text-align: center;
    overflow: hidden;
}
.prodCart__img .swiper-wrapper,
.prodCart__img .swiper-slide {
    min-width: 0;
}
.prodCart__img a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.prodCart__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 200px;
    max-height: 200px;
}
.prodCart__tag {
    position: absolute;
    top: 10px;
    right: 12px;
    z-index: 1;
}
.prodCart__tag.-free {
    width: 85px;
    height: 85px;
    background: url('../img/home/tag.svg') no-repeat center/contain;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #033886;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-family: var(--font-title);
    z-index: 2;
    padding: 11px;
    line-height: 92%;
}

.swiper-pagination-bullet {
    background-color: #E5EEFD;
    margin: 0 2px!important;
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--bg-btn-two);
}
.prodCart__rating {
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 18px;
}
.prodCart__title {
    font-weight: bold;
    margin-bottom: 4px;
}
.prodCart__bottom {
    margin-top: 40px;
}
.prodCart_price {
    color: var(--bg-btn);
    font-weight: bold;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    display: none;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: -2px;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: -2px;
}
.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    display: none;
}
.catHome {
    padding: 65px 0 70px;
}
.catHome__blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 23px;
    margin-top: 65px;
}
.catHome__block {
    position: relative;
    background: linear-gradient(90deg, #6897DE 0%, #C9DFFF 100%);
    border-radius: var(--border-radius);
    padding: 60px;
    display: flex;
    align-items: center;
    min-height: 180px;
    overflow: hidden;
    color: #fff;
    letter-spacing: 0.03em;
    font-size: 24px;
    line-height: 120%;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    font-weight: 300;
}
.catHome__block::before {
    content: '';
    background: url('../img/home/cat-bg.webp') no-repeat right center/contain;
    width: 100%;
    height: 100%;
    position: absolute;
    right: -100px;
    top: 0;
}
.catHome__block img {
    position: absolute;
    bottom: 0;
    right: 0;
}
.catHome__block::after {
    content: '';
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all .3s;
}
.catHome__block span {
    position: relative;
    z-index: 2;
}
.catHome__block:hover::after {
    opacity: 1;
}
.catHome__block:hover {
    color: #012169;
}
.aboutHome {
    padding: 70px 0 140px;
}
.aboutHome__block {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 112px;
    gap: 84px;
}
.aboutHome__block-cont {
    flex: 0 0 360px;
    letter-spacing: 0.03em
}
.aboutHome__block-cont p {
    margin: 21px 0;
}
.aboutHome__block-cont ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    color: #9C9C9C;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.aboutHome__block-cont ul li {
    position: relative;
    padding-left: 28px;
}
.aboutHome__block-cont ul li::before {
    content: '';
    width: 18px;
    height: 18px;
    background-color: var(--bg-btn-two);
    border: 5px solid #E5EEFD;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}
.aboutHome__block-vals {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
    flex: 1;
    gap: 24px;
}
.aboutHome__block-val {
    background-color: #F2F3F8;
    padding: 18px 24px 40px 45px;
    border-radius: 16px;
    color: var(--bg-btn);
}
.aboutHome__block-val:first-child {
    background-color: #E5EEFD;
    grid-column: 1/3
}
.aboutHome__block-val-icon {
    display: flex;
    align-items: center;
    justify-content: end;
}
.aboutHome__block-val-icon svg {
    display: block;
    max-width: 36px;
    max-height: 36px;
}
.aboutHome__block-val-title {
    font-family: var(--font-title);
    font-size: 68px;
    line-height: 90%;
    margin-bottom: 15px;
}
.aboutHome__trust {
    margin-top: 42px;
}
.aboutHome__trust-row {
    gap: 24px;
}
.aboutHome__trust-left {
    background-color: var(--bg-section);
    flex: 1 1 425px;
    border-radius: var(--border-radius);
    text-align: center;
    height: 233px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.aboutHome__trust-left .titleSection {
    margin-bottom: 25px;
}
.aboutHome__trust-slider {
    flex: calc(100% - 425px - 24px);
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 0 30px;
}
.aboutHome__trust-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.aboutHome__trust-slide img {
    display: block;
}
.aboutHome__trust-left .btn {
    width: 181px;
}
.industryHome__blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.industryHome__col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.industryHome__block {
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.industryHome__block-title {
    color: #fff;
    font-weight: 600;
    padding: 25px 10px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(1.75px);
    text-align: center;
    transition: all .3s;
}
.industryHome__col .titleSection {
    margin-bottom: 23px;
}
.industryHome__block:hover .industryHome__block-title {
    padding: 70px 10px;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.industryHome {
    background-color: var(--bg-section);
    padding: 140px 0;
}

.blogHome {
    padding: 140px 0;
}
.blogHome__blocks {
    margin-top: 65px;
}
.blogHome__block {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 21px;
    width: 423px;
}
.blogHome__block-img {
    height: 190px;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    display: block;
}
.blogHome__block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}
.blogHome__block-cont {
    padding: 30px;
}
.blogHome__block-title {
    font-weight: bold;
    margin-bottom: 18px;
}
.blogHome__block-link {
    margin-top: 38px;
    text-align: right;
}
.blogHome__block-link a {
    color: #4167DE;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 4px;
}
.blogHome__block:hover .blogHome__block-img img {
    transform: scale(1.1);
}
.blogHome__block-txt {
    color: #646464;
}
.faqHome__block {
    padding: 21px 23px 21px 40px;
    background-color: #fff;
    border-radius: 12px;
    width: 100%;
}
.faqHome__block-q {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faqHome__block-btn {
    width: 58px;
    height: 43px;
    background: linear-gradient(180deg, #EAF6FF 0%, #B4DFFF 100%);
    border-radius: 15px;
    position: relative;
    flex: 0 0 58px;
}
.faqHome__block-btn::before, .faqHome__block-btn::after {
    content: '';
    width: 20px;
    height: 3px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #525AFE 0%, #00BFFE 100%);
}
.faqHome__block-btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faqHome__block.active .faqHome__block-btn::after {
    display: none;
}
.faqHome__block-a {
    display: none;
}
.faqHome__blocks {
    flex-direction: column;
    gap: 2px;
    max-width: 760px;
    margin: 65px auto 0;
}
.faqHome {
    background-color: var(--bg-section);
    padding: 90px 0;
}
.faqHome h2 {
    text-align: center;
}

.ctaHome__block {
    background: linear-gradient(90deg, rgba(28, 91, 182, 0.7) 0%, rgba(0, 192, 255, 0.7) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: end;
}
.ctaHome__block .container {
    display: flex;
    justify-content: end;
}
.ctaHome__block-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 57%;
    height: 100%;
}
.ctaHome__block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ctaHome__block-cont {
    width: 50%;
    z-index: 1;
    padding: 100px 0;
    position: relative;
}
.ctaHome__block-cont .titleHero {
    margin: 0 0 18px;
}
.ctaHome__block-txt {
    color:#fff;
    font-weight: 300;
    max-width: 300px;
}
.ctaHome__block-btns {
    margin-top: 34px;
    display: flex;
    gap: 17px;
    flex-wrap: wrap;
}
.ctaHome__block-btns .btn:first-child {
    background-color: var(--bg-blue);
    height: 89px;
    width: 340px;
}
.ctaHome__block-btns .btn:first-child:hover {
    background: none;
    color: var(--bg-blue);
}
.ctaHome__block-btns .btn:last-child {
    width: 265px;
    height: 89px;
    background: none;
    border: 1px solid var(--bg-blue);
    color: var(--bg-blue);
}
.ctaHome__block-btns .btn:last-child:hover {
    background-color: var(--bg-blue);
    color: #fff;
}
.ctaHome__block-bot {
    color: #fff;
    gap: 8px;
    position: absolute;
    bottom: 22px;
    right: 28px;
    font-size: 14px;
}

@media(max-width: 1200px) {
    .aboutHome__block-val-title {
        font-size: 45px;
    }
    .aboutHome__block {
        gap: 35px;
        padding: 70px;
    }
    .ctaHome__block-cont {
        width: 65%;
    }
    .bestProducts__slider {
        margin-right: -20px;
        margin-left: -20px;
        padding-left: 20px;
    }
}
@media(max-width: 991px) {
    .aboutHome__block {
        flex-direction: column;
        align-items: flex-start;
    }
    .aboutHome__block-cont {
        flex: auto;
    }
    .aboutHome__block-vals {
        width: 100%;
    }
    .catHome__block {
        padding: 30px;
        align-items: start;
        font-size: 18px;
    }
    .catHome__block img {
        width: 70%;
    }
    .industryHome__blocks {
        grid-template-columns: repeat(2, 1fr);
    }
    .ctaHome__block-cont {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .ctaHome__block-bot {
        position: initial;
        margin-top: 18px;
    }
    .ctaHome__block-txt {
        width: 100%;
    }
    .ctaHome__block {
        padding: 40px 0 0;
        flex-direction: column-reverse;
    }
    .ctaHome__block-img {
        position: initial;
    }
}
@media(max-width: 769px) {
    .aboutHome__block-val-icon svg {
        max-width: 16px;
        max-height: 16px;
    }
    .aboutHome__block-val-title {
        font-size: 28px;
        margin-bottom: 6px;
    }
    body {
        font-size: 14px;
    }
    .aboutHome__block {
        padding: 40px;
        gap: 25px;
    }
    .aboutHome__block-vals {
        gap: 13px;
        grid-template-rows: repeat(2, 110px);
    }
    .aboutHome__block-val {
        padding: 21px 28px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .aboutHome__block-val-icon {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    .ctaHome__block-img {
        width: 100%;
    }
}

@media(max-width: 575px) {
    .titleHero {
        font-size: 30px;
        line-height: 30px;
        margin: 0 0 20px;
    }
    .heroHome p {
        font-size: 16px;
    }
    .heroHome .btn {
        margin-top: 15px;
        font-size: 16px;
        height: 54px;
    }
    .heroHome {
        background-color: #2668C9;
        padding: 0 0 35px;
    }
    .heroHome__bg {
        height: 190px;
        position: relative;
        margin-bottom: 35px;
    }
    .heroHome .container {
        padding: 0 40px;
    }
    .bestProducts {
        padding: 50px 0 30px;
    }
    .titleSection {
        font-size: 24px;
        line-height: 24px;
    }
    .bestProducts__top-arr {
        width: 43px;
        height: 28px;
    }
    .bestProducts__top-arr svg {
        width: 16px;
    }
    .bestProducts__slider {
        margin-top: 30px;
    }
    .prodCart {
        width: 250px;
        padding: 20px;
    }
    .btn {
        height: 42px;
        padding-left: 16px;
        padding-right: 16px;
    }
    :root {
        --border-radius: 15px;
    }
    .prodCart__tag.-free {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    .prodCart__img img {
        max-width: 150px;
        max-height: 150px;
    }
    .prodCart__img {
        height: 220px;
    }
    .prodCart__bottom {
        margin-top: 30px;
    }
    .prodCart__rating {
        margin-bottom: 12px;
    }
    .catHome {
        padding: 30px 0 35px;
    }
    .catHome__blocks {
        margin-top: 25px;
    }
    .catHome__blocks {
        gap: 17px;
    }
    .catHome__block {
        font-size: 12px;
        padding: 17px;
        min-height: 130px;
    }
    .aboutHome {
        padding: 35px 0 70px;
    }
    .aboutHome__block-cont ul li::before {
        width: 10px;
        height: 10px;
        border: 3px solid #E5EEFD;
    }
    body {
        font-size: 12px;
        line-height: 120%;
    }
    .aboutHome__block-cont ul li {
        padding-left: 16px;
    }
    .aboutHome__block-cont ul {
        gap: 10px;
    }
    .aboutHome__trust {
        margin-top: 68px;
    }
    .aboutHome__trust-left {
        flex: 1 1 170px;
        height: 125px;
    }
    .aboutHome__trust-left .titleSection {
        margin-bottom: 0;
        font-size: 18px;
    }
    .aboutHome__trust-left .btn {
        width: 100px;
        height: 30px;
        padding-top: 2px;
    }
    .aboutHome__trust-row {
        gap: 13px;
    }
    .swiper-button-prev img {
        width: 15px;
    }
    .swiper-button-next img {
        width: 15px;
    }
    .swiper-button-next, .swiper-rtl .swiper-button-prev {
        right: -6px;
    }
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: -6px;
    }
    .aboutHome__trust-slider {
        flex: calc(100% - 200px);
    }
    .industryHome {
        padding: 65px 0;
    }
    .industryHome__blocks {
        gap: 13px;
    }
    .industryHome__col .titleSection {
        margin-bottom: 0px;
    }
    .blogHome {
        padding: 60px 0;
    }
    .blogHome__blocks {
        margin-top: 45px;
    }
    .blogHome__block {
        padding: 12px;
        width: 247px;
    }
    .blogHome__block-cont {
        padding: 17px;
    }
    .blogHome__block-link {
        margin-top: 20px;
    }
    .blogHome__block-img {
        aspect-ratio: 16/9;
        height: auto;
    }
    .blogHome__block-txt {
        font-size: 11px;
        line-height: 100%;
    }
    .blogHome__block-title {
        margin-bottom: 10px;
    }
    .faqHome {
        padding: 50px 0;
    }
    .faqHome__blocks {
        margin: 32px auto 0;
    }
    .faqHome__block-btn {
        width: 25px;
        height: 24px;
        border-radius: 8px;
        flex: 0 0 25px;
    }
    .faqHome__block-btn::before, .faqHome__block-btn::after {
        width: 12px;
        height: 2px;
    }
    .faqHome__block {
        padding: 15px;
    }
    .industryHome__col {
        gap: 13px;
    }
    .industryHome__col:nth-child(1) .industryHome__block {
        height: 197px!important;
    }
    .industryHome__col:nth-child(2) .industryHome__block:nth-child(1) {
        height: 147px!important;
    }
    .industryHome__col:nth-child(2) .industryHome__block:nth-child(2) {
        height: 98px!important;
    }
    .industryHome__col:nth-child(3) .industryHome__block:nth-child(1) {
        height: 82px!important;
    }
    .industryHome__col:nth-child(3) .industryHome__block:nth-child(2) {
        height: 163px!important;
    }
    .industryHome__col:nth-child(4) .industryHome__block:nth-child(1) {
        height: 96px!important;
    }
    .industryHome__col:nth-child(4) .industryHome__block:nth-child(2) {
        height: 150px!important;
    }
    .ctaHome__block-btns .btn:last-child {
        width: 96px;
    }
    .ctaHome__block-btns {
        margin-top: 16px;
        gap: 12px;
    }
    .ctaHome__block-cont .titleHero {
        margin: 0 0 10px;
        font-size: 24px;
    }
    .ctaHome__block-cont {
        padding: 0px 20px;
    }
    .ctaHome__block-bot svg {
        width: 14px;
    }
    .ctaHome .container {
        padding: 0;
    }
    .ctaHome__block {
        border-radius: 0
    }
    .ctaHome {
        margin: 0;
    }
    .industryHome__block-title {
        padding: 13px 10px;
    }
    .industryHome__block:hover .industryHome__block-title {
        padding: 25px 10px;
    }
    .ctaHome__block-btns .btn:first-child {
        height: 48px;
        width: 181px;
    }
    .ctaHome__block-btns .btn:last-child {
        width: 142px;
        height: 48px;
    }
    .heroHome__bg img {
        object-position: 74%;
    }
}
@media(max-width: 380px) {
   .heroHome .container {
        padding: 0 20px;
    }
    .titleHero {
        font-size: 26px;
        line-height: 26px;
    }
    
}

/* END HOME */

/* FOOTER */
.footer__topWr {
    background-color: #fff;
}
.footer__top {
    padding: 50px;
    gap: 100px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer__logowr {
    flex: 1 1 calc(30% - 50px);
    display: flex;
    justify-content: center;
}
.footer__logo-block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 13px;
    text-align: center;
    max-width: 260px;
}
.footer__logo img {
    max-width: 225px;
}
.footer__txt {
    font-family: var(--font-title);
    text-transform: uppercase;
}
.footer__b {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer__b img {
    max-width: 47px;
}
.footer__top-menu {
    flex: 1 1 calc(25% - 50px);
    padding-left: 50px;
}
.footer__top-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-family: var(--font-title);
    text-transform: uppercase;
}
.footer__top-menu ul a, .footer__bottom-menu a {
    position: relative;
}
.footer__top-menu a::before, .footer__bottom-menu a::before {
    content: '';
    background-color: var(--color-txt);
    transition: all .3s;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: -2px;
    left: 0;
}
.footer__top-menu a:hover::before, .footer__bottom-menu a:hover::before {
    width: 100%;
}
.footer__bottom-menu a::before {
    bottom: -4px;
    background-color: #fff;
}
.footer__top-infoWr {
    flex: 1 1 calc(36% - 50px);
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.footer__top-info {
    display: flex;
    align-items: center;
    gap: 11px;
}
.footer__top-info img {
    flex: 0 0 25px;
}
.footer__bottomWr {
    background-color: var(--bg-blue);
}
.footer__bottom {
    padding: 32px 50px;
    color: #fff;
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom-menu ul {
    display: flex;
    font-size: 14px;
    gap: 15px;
    letter-spacing: 0.03em;
    flex-wrap: wrap;
}
.footer__bottom-pay {
    gap: 7px;
    flex-wrap: wrap;
}
.footer__copy {
    text-align: center;
    font-size: 12px;
    color: #fff;
    padding: 9px 0;
    background-color: #0B2E52;
}

.mobileNav {
    padding: 13px 17px;
    border-radius: 12px;
    background-color: #fff;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0px 4px 14.9px rgba(0, 0, 0, 0.05);
    position: fixed;
    bottom: 25px;
    left: 0;
    width: calc(100% - 48px);
    margin: 0 24px;
    z-index: 9;
}
.mobileNav__block {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: center;
    font-size: 11px;
    align-items: center;
    line-height: 100%;
}
.mobileNav__block img {
    max-width: 20px;
    height: 18px;
}
.linkedin {
    text-decoration: underline;
    text-underline-offset: 5px;
}
.footer__copy-mob {
    width: 100%;
    text-align: left;
    color: #fff;
    margin-top: 15px;
    font-size: 10px;
    display: none;
}
.footer__menuMob {
    opacity: 1;
    visibility: visible;
    position: relative;
    display: none;
}
.footer__menuMob ul {
    gap: 30px;
}

@media(max-width: 575px) {
    .mobileNav {
        display: flex;
    }
    .footer__logo img {
        max-width: 171px;
    }
    .footer__txt {
        font-size: 13px;
    }
    .footer__b img {
        max-width: 35px;
    }
    .footer__top {
        gap: 25px;
        gap: 25px;
        border-radius: 0;
        padding: 40px;
    }
    .footer .container {
        padding: 0;
    }
    .footer__top-menu {
        padding-left: 0;
    }
    .footer__logowr, .footer__top-menu, .footer__top-infoWr {
        flex: 1 1 100%;
    }
    .footer__top-menu ul {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    .footer__top-info img {
        flex: 0 0 20px;
        width: 20px;
    }
    .footer__top-info {
        font-size: 13px;
    }
    .footer__top-infoWr {
        gap: 10px;
    }
    .footer__bottom {
        border-radius: 0;
    }
    .footer__bottom {
        padding: 25px;
    }
    .footer__bottom-menu ul {
        flex-direction: column;
    }
    .footer__bottom-menu a {
        font-size: 11px;
    }
    .footer__bottom-pay img {
        width: 28px;
    }
    .footer__bottom-pay {
        gap: 5px;
        flex: 1 1 50%;
    }
    .footer__bottom-menu {
        flex: 1 1 40%;
    }
    .footer__copy {
        display: none;
    }
    .footer__copy-mob {
        display: block;
    }
    .footer__menuMob {
        display: block;
        opacity: 1;
        visibility: visible;
         position: relative;
    }
    .footer {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
        overflow-y: auto;
        margin: 0;
        background-color: #eaf6ff;
    }
    .header__menu-close {
        position: fixed;
    }
}
/* END FOOTER */


/* CATALOG */
.heroCatalog p {
    font-size: 18px;
}
.heroCatalog ul {
    font-weight: bold;
    margin: 50px 0 0;
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.heroCatalog ul li {
    position: relative;
    padding-left: 25px;
}
.heroCatalog ul li::before {
    content:'';
    width: 18px;
    height: 18px;
    background-color: #4992EE;
    border-radius: 50%;
    border: 4px solid #E5EEFD;
    position: absolute;
    top: 0;
    left: 0;
}
.heroCatalog .heroHome__cont {
    max-width: 780px;
}
.catalogProd {
    padding: 53px 0;
}
.breadcrumps {
    display: flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    flex-wrap: wrap;
    font-size: 16px;
    font-weight: 300;
}
.breadcrumps a {
    padding-right: 13px;
    position: relative;
    color: #9FA1A5;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.breadcrumps a::after {
    content: '';
    background: url('../img/catalog/arr.svg') no-repeat center/contain;
    width: 5px;
    height: 8px;
    position: absolute;
    top: 6px;
    right: 0;
}
.breadcrumps span {
    color: #9FA1A5;
}
.catalogProd__blocks {
    margin-top: 56px;
}
.breadcrumps a:hover {
    color: var(--bg-btn);
}
.catalogProd__filter .titleSection {
    margin-bottom: 33px;
}
.catalogProd__blocks {
    display: grid;
    grid-template-columns: 272px minmax(0, 1fr);
    gap: 64px;
}
.catFilter {
    background-color: var(--bg-section);
    border-radius: var(--border-radius);
}
.catFilter__block {
    padding: 35px;
    border-bottom: 2px solid #f1f4fa;
}
.catFilter__block:last-child {
    border: none;
}
.catFilter__block-title {
    font-family: var(--font-pr);
    font-weight: bold;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.catFilter__block-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    font-family: var(--font-pr);
    font-weight: 400;
}
.catFilter__block-body label {
    display: flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    cursor: pointer;
    line-height: 1.2;
}
.catFilter__block-body input[type="checkbox"] {
    appearance: none;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    margin: 0;
    border-radius: 4px;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    transition: background-color .2s, box-shadow .2s;
}
.catFilter__block-body input[type="checkbox"]::after {
    content: '';
    width: 10px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;  
    position: absolute;
    top: 4px;
    left: 4px;
    transform: rotate(-45deg) scale(0);
    transition: transform .2s;
}
.catFilter__block-body input[type="checkbox"]:checked {
    background-color: var(--bg-btn-two);
}
.catFilter__block-body input[type="checkbox"]:checked::after {
    transform: rotate(-45deg) scale(1);
}
.catFilter__block-body input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 3px rgba(28, 91, 182, .2);
}
.catFilter__block-body .count {
    color: #6696DC;
}
.catFilter__block.-price .catFilter__block-body {
    gap: 25px;
}
.catFilter__price-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}
.catFilter__price-fields input {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 5px;
    background-color: #fff;
    color: #A8ABB2;
    font-family: var(--font-pr);
    font-size: 18px;
    line-height: 1;
    text-align: center;
}
.catFilter__price-fields input::-webkit-outer-spin-button,
.catFilter__price-fields input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
}
.catFilter__price-fields input[type="number"] {
    appearance: textfield;
}
.catFilter__range {
    --range-progress: 29.229%;
    appearance: none;
    width: 100%;
    height: 24px;
    margin: 0;
    background: transparent;
    cursor: pointer;
}
.catFilter__range::-webkit-slider-runnable-track {
    height: 5px;
    border-radius: 0;
    background: linear-gradient(to right, var(--bg-btn) 0 var(--range-progress), #fff var(--range-progress) 100%);
}
.catFilter__range::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    margin-top: -7px;
    border: none;
    border-radius: 50%;
    background-color: #2766C9;
}
.catFilter__range::-moz-range-track {
    height: 3px;
    border: none;
    border-radius: 0;
    background-color: #fff;
}
.catFilter__range::-moz-range-progress {
    height: 5px;
    background-color: var(--bg-btn);
}
.catFilter__range::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background-color: #2766C9;
}
.catFilter__range:focus-visible::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(28, 91, 182, .2);
}
.catFilter__range:focus-visible::-moz-range-thumb {
    box-shadow: 0 0 0 4px rgba(28, 91, 182, .2);
}
.catFilter__btns {
    flex-direction: column;
    gap: 10px;
    padding: 0 20px;
    margin-top: 35px;
}
.catFilter__btns .btn {
    font-size: 16px;
    font-weight: 600;
}
.catalogProducts__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 37px;
}
.catalogProducts__top-filters {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.catalogProducts__top-filter {
    background-color: #DADFE0;
    font-family: var(--font-pr);
    font-size: 16px;
    padding: 9px 18px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.catalogProducts__top-filter-close {
    width: 12px;
    height: 12px;
    background: url('../img/catalog/close.svg') no-repeat center/contain;
    cursor: pointer;
}
.catalogProducts__top-sort {
    position: relative;
    flex: 0 0 200px;
}
.catalogProducts__top-sort::after {
    content: '';
    width: 9px;
    height: 9px;
    border-right: 2px solid #4167DE;
    border-bottom: 2px solid #4167DE;
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}
.catalogProducts__top-sort select {
    appearance: none;
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 12px;
    background-color: #fff;
    color: #999999;
    font-family: var(--font-pr);
    font-size: 16px;
    line-height: 1;
    padding: 0 50px 0 21px;
    cursor: pointer;
}
select:focus {
    outline: none;
}

.prodCart__tag.-best {
    width: 68px;
    height: 80px;
    background: url('../img/catalog/best.svg') no-repeat center / contain;
    display: flex;
    justify-content: center;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 14px;
    font-family: var(--font-title);
    z-index: 2;
    padding-top: 18px;
    line-height: 110%;
}
.catalogProducts__body {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.catalogProducts__count {
    text-align: center;
    color: #A4ADBE;
    margin-top: 35px;
}
.catalogProducts__showMore {
    margin: 45px auto 0;
    display: block;
    font-size: 18px;
    font-weight: 600;
    width: 162px;
}
.pagination {
    justify-content: center;
    margin-top: 35px;
    gap: 8px;
}
.page-numbers {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    font-family: var(--font-pr);
    font-size: 16px;
    font-weight: bold;
}
.page-numbers.current {
    background-color: var(--bg-btn);
    color: #fff;
}
.catFilter__block.-price .catFilter__block-title {
    text-transform: none;
}
.reviewsCat {
    background-color: var(--bg-section);
    padding: 80px 0;
    margin-top: 65px;
}
.reviewsCat__slide {
    width: 423px;
    height: 465px;
    background: url('../img/catalog/rev-bg.svg') no-repeat top left/contain;
    position: relative;
    padding-top: 30px;
}
.reviewsCat__slider .swiper-slide {
    width: 423px;
}
.reviewsCat__slide-q {
    width: 42px;
    margin-left: 21px;
    margin-bottom: 65px;
}
.reviewsCat__slider .swiperBtns {
    display: none;
}
.reviewsCat__slide-txt {
    margin: 0 50px;
    max-height: 130px;
    overflow: hidden auto;
    padding: 0 5px;
}
.reviewsCat__slide-bottom {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}
.reviewsCat__slide-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.reviewsCat__slide-author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviewsCat__slide-author {
    gap: 13px;
    align-items: center;
    font-size: 16px;
}
.reviewsCat__slide-author-name {
    font-weight: bold;
}
.reviewsCat__slide-author-post {
    color: #9C9C9C;
}
.reviewsCat__slide-rat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 42px;
}
.reviewsCat__slide-rat-nim {
    font-family: var(--font-title);
    font-size: 36px;
    margin-bottom: 10px;
}
.reviewsCat__slide-bottom {
    position: absolute;
    width: 100%;
    bottom: 22px;
    left: 0;
}
.catalogProducts__body .prodCart {
    width: 100%;
}
.catalogProducts__finterBtn {
    display: none;
}
.catalogProducts__finterBtn .btn {
    height: 40px;
    width: 160px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
.catalogProducts__finterBtn .btn svg {
    display: block;
}
.catalogProducts__finterBtn .btn:hover svg path {
    fill: var(--bg-btn);
}
.catalogProd__filter-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: none;
}
.txtCatalog {
    padding: 65px 0;
}
.txtCatalog__block {
    border-radius: var(--border-radius);
    background-color: #fff;
    padding: 113px 100px;
}
.txtCatalog__block h5 {
    margin: 0 0 20px;
}
@media(max-width: 1300px) {
    .catalogProducts__body {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .catalogProd__blocks {
        gap: 40px;
    }
}
@media(max-width: 991px) {
    .catalogProducts__finterBtn {
        display: block;
    }
    .catalogProd__filter, .catalogProducts__top-filters {
        display: none;
    }
    .catalogProd__filter {
        position: fixed;
        left: 0;
        top: 0;
        z-index: 5;
        background-color: var(--bg-section);
        overflow: auto;
        width: 300px;
        height: 100%;
        padding: 40px 0;
    }
    .catalogProd__blocks {
        grid-template-columns: 1fr;
    }
    .catalogProd__filter .titleSection {
        margin-bottom: 15px;
        padding: 0 10px;
    }
    .catFilter__block {
        padding: 20px;
    }
    .catalogProd__filter-close {
        display: block;
    }
    .breadcrumps {
        background: none;
        padding: 0;
    }
    .catalogProd__blocks {
        margin-top: 35px;
    }
}

@media(max-width: 769px) {
    .breadcrumps a::after {
        top: 4px;
    }
    .txtCatalog__block {
        padding: 50px;
    }
}

@media(max-width: 575px) {
    .catalogProducts__body {
        gap: 12px;
    }
    .catalogProducts__body .prodCart {
        padding: 20px 16px;
    }
    .catalogProducts__body .prodCart__bottom .btn {
        font-size: 10px;
        width: 83px;
        height: 29px;
        padding-left: 5px;
        padding-right: 5px;
        border-radius: 4px;
    }
    .prodCart__tag.-best {
        width: 35px;
        height: 41px;
        font-size: 7px;
        padding-top: 12px;
    }
    .catalogProducts__body .prodCart__img {
        height: 160px;
        margin-bottom: 10px;
    }
    .catalogProducts__body .prodCart__img img {
        max-width: 110px;
        max-height: 110px;
    }
    .prodCart__title {
        display: block;
    }
    .catalogProducts__body .prodCart__bottom {
        margin-top: 20px;
    }
    .catalogProducts__top {
        gap: 12px;
    }
    .catalogProducts__top-sort {
        flex: 0 0 160px;
    }
    .prodCart__rating {
        font-size: 12px;
    }
    .catalogProd {
        padding: 33px 0;
    }
    .catalogProducts__showMore {
        font-size: 14px;
        width: 162px;
        height: 56px;
    }
    .heroCatalog p {
        font-size: 16px;
    }
    .heroCatalog ul {
        margin: 25px 0 0;
    }
    .heroCatalog ul li {
        font-size: 16px;
        line-height: 120%;
    }
    .trustCat .aboutHome__trust {
        margin-top: 20px;
    }
    .reviewsCat {
        padding: 50px 0;
        margin-top: 25px;
    }
    .reviewsCat__slide {
        width: 302px;
        height: 330px;
    }
    .reviewsCat__slide-q {
        width: 30px;
        margin: 20px 20px 45px;
    }
    .reviewsCat__slide-txt {
        margin: 0 30px;
        font-size: 13px;
        line-height: 118%;
        max-height: 107px;
    }
    .reviewsCat__slide-author-img {
        width: 42px;
        height: 42px;
    }
    .reviewsCat__slide-author {
        gap: 9px;
    }
    .reviewsCat__slide-author-cont {
        font-size: 11px;
    }
    .reviewsCat__slide-rat-nim {
        font-size: 25px;
        margin-bottom: 6px;
    }
    .reviewsCat__slide-rat {
        padding: 0 17px;
    }
    .reviewsCat__slide-bottom {
        bottom: 16px;
    }
    .reviewsCat .container {
        padding: 0;
    }
    .reviewsCat__slider .swiperBtns {
        display: block;
    }
    .reviewsCat__slider .swiper-slide {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .reviewsCat__slider .swiper-button-next img {
        width: 31px;
    }
    .reviewsCat__slider .swiper-button-next, .reviewsCat__slider .swiper-rtl .swiper-button-prev {
        right: 0px;
    }
    .reviewsCat__slider .swiper-button-next.swiper-button-disabled, .reviewsCat__slider .swiper-button-prev.swiper-button-disabled {
        display: flex;
    }
    .reviewsCat__slider .swiper-button-prev img {
        width: 31px;
    }
    .reviewsCat__slider .swiper-button-prev, .reviewsCat__slider .swiper-rtl .swiper-button-next {
        left:0;
    }
    .txtCatalog {
        padding: 0;
    }
    .txtCatalog .container {
        padding: 0;
    }
    .txtCatalog__block {
        padding: 80px 30px;
        border-radius: 0;
        line-height: 120%;
    }
    .txtCatalog__block h5 {
        font-size: 16px;
    }
    .breadcrumps a, .breadcrumps span {
        font-size: 14px;
    }
    .breadcrumps a::after {
        top: 2px;
    }
}
@media(max-width: 385px) {
    .catalogProducts__finterBtn .btn {
        width: 105px;
    }
     .catalogProducts__body .prodCart__bottom .btn {
        width: 100%;
     }
    .catalogProducts__body .prodCart__bottom {
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* END CATALOG */

/* PRODUCT */
.heroProd {
    padding-top: 60px;
}
.heroProd__blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px;
    margin-top: 57px;
}
.heroProd__mainSliderWr {
    position: relative;
    border-radius: var(--border-radius);
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 631px;
}
.heroProd__mainSlider-zoom {
    position: absolute;
    top: 17px;
    left: 17px;
    z-index: 2;
}
.heroProd__mainSliderWr .prodCart__tag {
    top: 18px;
    right: 18px;
}
.heroProd__mainSlider-slide a {
    display: block;
    text-align: center;
}
.heroProd__mainSlider-slide {
    width: 100%;
    min-width: 0;
}
.heroProd__tabSlider {
    padding: 20px;
}
.heroProd__tabSlider-slide {
    width: 85px;
    height: 81px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.heroProd__tabSlider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.heroProd__right {
    border-radius: var(--border-radius);
    background-color: #fff;
    overflow: hidden;
}
.heroProd__right-top {
    padding: 41px 28px 41px 48px;
}
.heroProd__right-top h1 {
    margin: 0 0 50px;
    text-transform: uppercase;
    font-size: 28px;
    line-height: 110%;
}
.heroProd__priceWr {
    gap: 21px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.heroProd__q {
    width: 86px;
    height: 34px;
    border: 1px solid #D9D9D9;
    border-radius: 3px;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.heroProd__q-input {
    border: none;
    background: none;
    text-align: center;
    font-size: 16px;
    width: 39px;
}
.heroProd__q-btn {
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.heroProd__price {
    color: var(--bg-btn);
    font-size: 36px;
    font-weight: bold;
    line-height: 100%;
}
.heroProd__price-order {
    background-color: #F0F0F4;
    border-radius: 12px;
    font-size: 14px;
    padding: 28px;
}
.hint {
    display: flex;
    gap: 5px;
    align-items: center;
}
.heroProd__atribut-title {
    margin-bottom: 10px;
}
.heroProd__atribut-title > span {
    color: #646464;
    font-size: 16px;
}
.hint__block {
    position: relative;
}
.hint__block-txt {
    position: absolute;
    border-radius: 12px;
    padding: 20px;
    width: 260px;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background-color: var(--bg-section);
    display: none;
    left: 20px;
}
.hint__block img {
    display: block;
}
.heroProd__atributes {
    display: flex;
    flex-direction: column;
    gap: 27px;
    margin-bottom: 35px;
}
.heroProd__atributWr {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.heroProd__atributWr label {
    display: block;
    cursor: pointer;
}
.heroProd__atributWr input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.heroProd__atributWr input[type="radio"] + span {
    min-width: 76px;
    height: 27px;
    border: 1px solid transparent;
    border-radius: 3px;
    background-color: #E9F1FF;
    color: var(--color-txt);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-pr);
    font-size: 14px;
    line-height: 1;
    text-align: center;
    transition: background-color .2s, border-color .2s, box-shadow .2s;
    font-family: var(--font-pr);
}
.heroProd__atributWr input[type="radio"]:checked + span {
    background-color: #003583;
    color: #fff;
}
.heroProd__atributWr input[type="radio"]:focus-visible + span {
    box-shadow: 0 0 0 4px rgba(28, 91, 182, .16);
}
.heroProd__atributWr label:hover input[type="radio"] + span {
    border-color: rgba(28, 91, 182, .45);
}
.heroProd__txt {
    color: #474747;
    font-style: italic;
    font-size: 15px;
    margin-bottom: 40px;
}
.heroProd__btns {
    gap: 14px;
    flex-wrap: wrap;
}
.heroProd__btns .btn {
    gap: 10px;
    height: 49px;
    font-size: 16px;
    font-weight: bold;
}
.heroProd__right-bottom {
    background-color: #DBE9FD;
    padding: 38px 20px 25px;
}
.heroProd__bot-blocks {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.heroProd__bot-block {
    background-color: #EAF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 16px;
    padding: 26px 34px;
    border: 7px;
    max-width: 240px;
    color: var(--bg-blue);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 101%;
}
.heroProd__bot-block img {
    display: block;
    height: 25px;
}
.heroProd__bot-info {
    text-align: center;
}
.heroProd__bot-info a {
    font-size: 16px;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    color: var(--bg-blue);
}

.contProd {
    margin-top: 100px;
}
.contProd__navWr {
    background-color: var(--bg-btn);
    padding: 24px 0;
}
.contProd__nav {
    display: flex;
    justify-content: center;
    gap: 20px 54px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    flex-wrap: wrap;
}
.contProd__nav-block {
    display: flex;
    align-items: center;
    gap: 6px;
}
.contProd__nav-block img {
    display: block;
}
.contProd__block {
    padding: 54px 77px;
    background-color: #fff;
    border-radius: var(--border-radius);
    margin-bottom: 48px;
}
.contProd__blockWr {
    padding: 80px 0;
    max-width: 1100px;
}
.contProd__block p {
    color: #646464;
}
.contProd__block .titleSection {
    margin-bottom: 35px;
}

.reviewsProd__block {
    margin-top: 75px;
}
.reviewsProd__revWr {
    flex-direction: column;
    gap: 40px;
    margin-top: 25px;
}
.reviewsProd__rev {
    gap: 20px;
    font-size: 16px;
}
.reviewsProd__rev-ava {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex: 0 0 50px;
}
.reviewsProd__rev-ava img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reviewsProd__rev-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}
.reviewsProd__rev-title img {
    position: relative;
    top: -1px;
}
.contProd__block .page-numbers:not(.current) {
    background-color: var(--bg-section);
}
.contProd__block table {
    border-collapse: collapse;
    border-spacing: 0;
    border: none;
    width: 100%;
    margin-top: 60px;
}
.contProd__block table tr {
    background-color: #E9F0FC;
}
.contProd__block table tr:nth-child(2n) {
    background-color: #f8f8fa;
}
.contProd__block table td {
    padding: 15px;
}
.contProd__block h5 {
    margin-top: 50px;
    font-size: 18px;
}

.relatedProd {
    background-color: var(--bg-section);
    padding: 70px 0;
}
.relatedProd__slider {
    padding-top: 80px;
}
.faqProd {
    background: none;
    padding: 80px 0 20px;
}
.contProd__acc-body .container {
    max-width: 1100px;
}
.contProd__acc__title {
    background-color: #1c5bb6;
    color: #fff;
    display: none;
    justify-content: space-between;
    padding: 24px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 1px solid #fff;
}
.contProd__acc__title .contProd__acc__arr img {
    transition: all .2s;
}
.contProd__acc__title.active .contProd__acc__arr img {
    transform: rotate(180deg);
}

@media(max-width: 1200px) {
    .contProd__nav {
        gap: 20px 30px;
    }
}
@media(max-width: 991px) {
    .heroProd__blocks {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .heroProd__right {
        margin: 0 -20px;
        border-radius: 0;
    }
    .heroProd__mainSliderWr {
        height: 477px;
        overflow: hidden;
    }
}
@media(max-width: 769px) {
    .contProd {
        margin-top: 0;
    }
    .contProd__blockWr {
        padding: 0;
    }
    .reviewsProd__block {
        margin-top: 0;
    }
    .heroProd {
        padding-top: 40px;
    }
    .heroProd__mainSlider-slide {
        padding: 20px;
    }
    .contProd__navWr {
        display: none;
    }
    .contProd__block {
        padding: 30px;
        margin-bottom: 0;
        border-radius: 0;
    }
    .contProd__acc__title {
        display: flex;
    }
    .contProd__acc-body {
        display: none;
    }
}
@media(max-width: 575px) {
    .heroProd__mainSliderWr, .heroProd__mainSlider {
        height: 320px;
    }
    .heroProd__mainSlider-slide img {
        width: 80%;
        height: 80%;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
    .heroProd__mainSlider-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .heroProd__tabSlider-slide {
        width: 45px;
        height: 45px;
        border-radius: 6px;
    }
    .heroProd__tabSlider {
        padding: 10px;
    }
    .heroProd__right-top {
        padding: 40px 20px;
    }
    .heroProd__right-top h1 {
        margin: 0 0 23px;
        font-size: 25px;
        text-align: center;
    }
    .heroProd__priceWr {
        flex-direction: column;
        align-items: center;
        gap: 22px;
    }
    .heroProd__price-order {
        font-size: 13px;
        text-align: center;
    }
    .heroProd__txt {
        line-height: 135%;
        text-align: center;
    }
    .heroProd__btns {
        justify-content: center;
    }
    .heroProd__btns .btn {
        width: 188px;
    }
    .heroProd__blocks {
        margin-top: 40px;
    }
    .heroProd__bot-blocks {
        gap: 4px;
        margin-bottom: 35px;
    }
    .main {
        padding-bottom: 110px;
    }
    .reviewsProd__rev {
        gap: 15px;
        font-size: 14px;
        flex-direction: column;
        align-items: start;
    }
    .reviewsProd__rev-title {
        margin-bottom: 8px;
    }
    .reviewsProd__revWr {
        gap: 30px;
    }
    .contProd__block table {
        margin-top: 30px;
    }
    .contProd__accWr .relatedProd {
        padding: 30px 0;
    }
    .contProd__accWr .relatedProd__slider {
        padding-top: 30px;
    }
    .contProd__accWr .relatedProd .relatedProd__slider {
        margin: 0 -20px;
        padding-left: 20px;
    }
    .contProd__accWr .faqProd {
        padding: 30px 0 20px;
    }
    .contProd__block h5 {
        margin-top: 30px;
        margin-bottom: 0;
        font-size: 16px;
    }
    .contProd__block .titleSection {
        margin-bottom: 30px;
    }
}

/* END PRODUCT */

/* BLOG */
.heroBlog {
    padding: 50px 0 90px;
}
.heroBlog__blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.heroBlog__right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.heroBlog__right-block {
    padding: 35px 38px;
    color: #fff;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.heroBlog__right-block::before {
    content: '';
    background-color: #000;
    opacity: .5;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.heroBlog__right-block:last-child {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
.heroBlog__right-block-cont {
    position: relative;
    z-index: 1;
}
.heroBlog__right-block-cont h5 {
    margin: 0 0 25px;
    font-size: 18px;
}
.heroBlog__left .blogHome__block {
    width: 100%;
}
.heroBlog__left .blogHome__block-link {
    text-align: left;
}
.heroBlog .breadcrumps {
    margin-bottom: 55px;
}

.searchBlog {
    background-color: var(--bg-section);
    padding: 75px 0;
}
.searchBlog__form {
    max-width: 870px;
    width: 100%;
}
.searchBlogWr {
    display: flex;
    justify-content: center;
}
.searchBlogWr .header__search {
    max-width: 100%;
    height: 83px;
    border-radius: 20px;
    margin-bottom: 40px;
}
.searchBlogWr .header__search button img {
    width: 28px;
}
.searchBlog__tags {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.searchBlog__tag {
    padding: 3px 20px;
    font-family: var(--font-pr);
    font-size: 16px;
    border-radius: 7px;
    background-color: #ADC5EA;
}

.blogPosts {
    padding-top: 90px;
}
.blogPosts__tabs {
    margin-bottom: 43px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 0;
}
.blogPosts__tab {
    padding: 10px 15px;
    font-size: 16px;
    opacity: .3;
    border-bottom: 1px solid #D9D9D9;
}
.blogPosts__tab.active, .blogPosts__tab:hover {
    border-bottom: 2px solid var(--bg-btn);
    opacity: 1;
}
.blogPosts__block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 65px;
}
.blogPosts__block .blogHome__block {
    width: 100%;
}

@media(max-width: 991px) {
    .blogPosts__block {
        grid-template-columns: 1fr 1fr;
    }
    .searchBlogWr .header__search {
        height: 60px;
    }
    .heroBlog__blocks {
        grid-template-columns: 1fr;
    }
    
}
@media(max-width: 575px) {
    .searchBlogWr .blogHome__block {
        padding: 8px;
    }
    .blogPosts__block {
        gap: 10px;
        margin-bottom: 45px;
    }
    .searchBlogWr .blogHome__block-cont {
        padding: 12px;
    }
    .blogPosts .container {
        padding: 0 12px;
    }
    .blogPosts__tab {
        padding: 8px 10px;
        font-size: 10px;
    }
    .heroBlog__right-block {
        padding: 20px;
    }
    .heroBlog__right-block-cont h5 {
        margin: 0 0 14px;
        font-size: 12px;
    }
    .heroBlog__right {
        gap: 13px;
    }
    .heroBlog {
        padding: 40px 0 50px;
    }
    .heroBlog__blocks {
        margin-top: 40px;
    }
    .heroBlog .breadcrumps {
        margin-bottom: 15px;
    }
    .searchBlogWr .header__search {
        display: block;
        height: 56px;
        margin-bottom: 30px;
    }
    .searchBlog {
        padding: 50px 0;
    }
    .blogPosts {
        padding-top: 35px;
        padding-bottom: 45px;
    }
}

/* END BLOG */

/* POST */
.heroPost {
    padding-top: 55px;
}
.heroPost__top {
    position: relative;
    padding: 90px 20px;
    color: #fff;
    text-align: center;
    font-size: 36px;
    font-family: var(--font-title);
    font-weight: bold;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin: 57px 0 47px;
}
.heroPost__top::before {
    content: '';
    background: linear-gradient(88.41deg, rgba(17, 21, 20, 0.8) 33.4%, rgba(255, 255, 255, 0.8) 97.11%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.heroPost__top h1 {
    position: relative;
    font-size: 36px;
    line-height: 120%;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.heroPost .breadcrumps span {
    color: #A4ADBE;
}
.heroPost__cont {
    background-color: #fff;
    border-radius: var(--border-radius);
    padding: 70px 224px 55px;
}
.heroPost__cont-info {
    color: #ADC5EA;
    gap: 21px;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}
.heroPost__cont-date, .heroPost__cont-views {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 16px;
    padding: 12px 0;
}
.heroPost__cont-views {
    padding-left: 21px;
    border-left: 1px solid #E5EEFD;
}
.heroPost__cont-txt {
    line-height: 130%;
}
.heroPost__cont-txt h2, .heroPost__cont-txt h3, .heroPost__cont-txt h4 {
    font-family: var(--font-txt);
    font-weight: bold;
}
.heroPost__cont-txt h2 {
    margin-top: 50px;
}
.heroPost__cont-bottom {
    margin-top: 70px;
    padding-top: 55px;
    border-top: 1px solid #E5EEFD;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.heroPost__cont-left {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}
.heroPost__cont-bottom-title {
    color: #ADC5EA;
    font-size: 16px;
}
.heroPost__cont-tag {
    border-radius: 7px;
    background-color: #ADC5EA;
    padding: 4px 20px;
    font-family: var(--font-pr);
    font-size: 16px;
}
.heroPost__cont-right {
    display: flex;
    gap: 15px;
    align-items: center;
}
.similarPosts {
    margin-top: 140px;
}
.similarPosts__slider {
    margin-top: 80px;
}

@media(max-width: 1200px) {
    .heroPost__cont {
        padding: 70px 100px 55px;
    }
}
@media(max-width: 575px) {
    .similarPosts__slider {
        margin: 0 -20px;
        padding-left: 20px;
    }
    .similarPosts__slider {
        margin-top: 46px;
    }
    .similarPosts {
        margin-top: 46px;
    }
    .heroPost__top h1 {
        font-size: 24px;
    }
    .heroPost__top {
        padding: 40px 20px;
        border-radius: 0;
        margin-bottom: 0;
    }
    .heroPost .container {
        padding: 0;
    }
    .heroPost {
        padding-top: 40px;
    }
    .heroPost__cont {
        border-radius: 0;
    }
    .heroPost__cont {
        padding: 70px 30px 45px;
    }
    .heroPost__cont-txt h2 {
        margin-top: 40px;
    }
    .heroPost__cont-txt {
        line-height: 1.4;
    }
    .heroPost__cont-info {
        margin-bottom: 45px;
    }
    .heroPost__cont-date, .heroPost__cont-views {
        font-size: 14px;
    }
    .heroPost__cont-bottom {
        margin-top: 45px;
        padding-top: 45px;
        gap: 30px;
    }
    .heroPost .breadcrumps {
        padding-left: 20px;
    }
    .heroPost__cont-tag, .heroPost__cont-bottom-title {
        font-size: 14px;
    }
    .heroPost__cont-left {
        gap: 10px;
    }
}
/* END POST */

/* SEARCH */
.searchPage__top {
    align-items: center;
    gap: 16px;
    margin-bottom: 95px;
    margin-top: 20px;
    flex-wrap: wrap;
}
.noSearchHero {
    margin-top: 70px;
}
.noSearchHero__block {
    border-radius: var(--border-radius);
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #1C5BB6 0%, #00C0FF 100%);
    position: relative;
    overflow: hidden;
    min-height: 370px;
    color: #fff;
}
.noSearchHero__block-cont {
    display: flex;
    align-items: center;
    gap: 10px;
}
.noSearchHero__block-txt {
    text-align: center;
}
.noSearchHero__block-txt h1 {
    margin: 0;
    font-size: 40px;
    line-height: 1;
}
.noSearchHero__block-txt p {
    margin: 10px 0;
}

@media(max-width: 575px) {
    .searchPage__top {
        margin-bottom: 50px;
    }
    .noSearchHero__block {
       min-height: 140px;
       padding: 30px;
       margin: 0 -20px;
       border-radius: 0;
    }
    .noSearchHero__block-txt h1 {
        font-size: 26px;
    }
    .noSearchHero__block-icon {
        display: none;
    }
    .noSearchHero {
        margin-top: 40px;
    }
}
/* END SEARCH */

/* 404 */
.errorPage {
    margin-top: 70px;
}
.errorPage__block {
    min-height: 580px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 20px;
    overflow: hidden;
    letter-spacing: 0.03em;
}
.errorPage__block h1 {
    margin: 0;
    font-size: 96px;
    line-height: 1.1;
    text-transform: uppercase;
}
.errorPage__block h2 {
    text-transform: uppercase;
    margin: 0;
    line-height: 1.1;
    font-size: 32px;
}
.errorPage__block .btn {
    margin-top: 37px;
}
@media(max-width: 575px) {
    .errorPage {
        margin-top: 0;
    }
    .errorPage__block h1 {
        font-size: 65px;
    }
    .errorPage__block h2 {
        font-size: 24px;
    }
    .errorPage__block {
        padding: 30px;
        min-height: 400px;
        margin: 0 -20px;
        border-radius: 0
    }
}
/* END 404 */

/* WHOLESALE */
.wsHero {
    height: 720px;
    display: flex;
    align-items: center;
}
.wsHero__cont {
    max-width: 100%;
}
.wsHero__cont-t {
    font-size: 16px;
    background: url(../img/wholesale/hero-t.svg) no-repeat center / contain;
    color: #fff !important;
    width: 145px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    position: relative;
    top: -23px;
    left: -7px;
    padding-left: 16px;
}
.wsHero .titleHero {
    font-size: 64px;
    line-height: 60px;
}
.wsHero__cont p {
    margin-top: 30px;
    color: #fff;
    max-width: 580px;
    font-size: 18px;
}
.wsHero__btns {
    margin-top: 50px;
    gap: 26px;
    flex-wrap: wrap;
}
.wsHero__btns .btn {
    margin: 0;
    text-align: center;
}
.wsHero__btns .btn:not(.btn-tr) {
    background-color: #113B67;
}
.wsHero__btns .btn:not(.btn-tr):hover {
    background-color: #082340;
    color: #fff;
}
.wsHero__btns .btn-tr {
    border: 1px solid #113B67;
    color: #113B67;
    font-weight: bold;
}
.wsHero__btns .btn-tr:hover {
    background-color: #082340;
    color: #fff;
}
.advantWs {
    padding: 110px 0;
}
.advantWs__blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.advantWs__block {
    padding: 20px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
    gap: 20px;
    height: 260px;
}
.advantWs__block-icon {
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #1C5BB6 0%, #012169 100%);
    border-radius: 12px;

}
.advantWs__block-icon img {
    width: 42px;
}
.advantWs__block-cont {
    padding: 0 10px;
}
.advantWs__block-title {
    color: #003583;
    margin-bottom: 5px;
}

.authWs {
    background-color: #fff;
    padding: 100px 0;
}
.authWs__blocks {
    display: flex;
    align-items: center;
    gap: 140px;
}
.authWs__left {
    max-width: 430px;
}
.authWs__right {
    flex: 1;
}
.authWs__firms {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.authWs__firm {
    background: #F5F6F8;
    border-radius: var(--border-radius);
    padding: 32px 30px 32px 42px;
    gap: 20px;
}
.authWs__firm-left {
    gap: 26px;
    font-size: 16px;    
}
.authWs__firm-logo {
    padding-right: 32px;
    border-right: 1px solid #BABBBF;
}
.authWs__firm-logo img {
    display: block;
}

.packWs {
    padding: 170px 0;
}
.packWs__blocks {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: repeat(2, 353px);
    gap: 20px;
}
.packWs__block {
    border-radius: var(--border-radius);
    background-color: #DBE9FD;
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
}
.packWs__block-img {
    position: absolute;
    top: 0;
    right: 0;
}
.packWs__block.-horiz {
    grid-row: span 2;
}
.packWs__block-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.packWs__block-vals {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.packWs__block-val {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: bold;
    padding: 5px 25px;
    border-radius: 7px;
    background-color: #fff;
    min-height: 39px;
}
.packWs__block-val img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
}

.bannerWs {
    background-color: #E5EEFD;
    padding: 120px 0;
}
.bannerWs__blocks {
    border-radius: var(--border-radius);
    display: flex;
    overflow: hidden;
}
.bannerWs__left {
    flex: 1 1 50%;
    background-color: #fff;
    padding: 83px 0 83px 110px;
    position: relative;
}
.bannerWs__left::after {
    content: '';
    background-image: url('../img/wholesale/banner-arr.svg');
    background-repeat: no-repeat;
    background-size: contain;
    height: 100%;
    width: 181px;
    position: absolute;
    right: -155px;
    top: 0;
    z-index: 1;
}
.bannerWs__left-cont {
    position: relative;
    z-index: 2;
}
.bannerWs__left-btn .btn {
    width: 281px;
    height: 82px;
    text-align: center;
    margin-top: 30px;
}
.bannerWs__right {
    flex: 1 1 50%;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    padding-left: 230px;
    padding-right: 20px;
}
.bannerWs__right::before {
    content: '';
    background: rgba(0, 53, 131, 0.77);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.bannerWs__right-txt {
    position: relative;
    z-index: 1;
    font-size: 24px;
    color: #fff;
}
.bannerWs__right-txt ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.bannerWs__right-txt ul li {
    position: relative;
    padding-left: 28px;
}
.bannerWs__right-txt ul li::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url('../img/wholesale/li.svg') no-repeat center/contain;
    position: absolute;
    top: 2px;
    left: 0;
}
.photoWs {
    background-color: #fff;
    padding: 120px 0;
}
.photoWs__imgs {
    display: flex;
    flex-wrap: wrap;
}
.grid-item {
    flex: 1 1 27%;
    padding: 6px;
    height: 277px;
    overflow: hidden;
    border-radius: 20px;
}
.grid-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}
.grid-item.tall {
    flex: 1 1 22%
}
.grid-item.wide {
    flex: 1 1 45%
}

.formWs {
    padding: 120px 0 60px;
}
.formWs__blocks {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}
.formWs__formBlock {
    background-color: var(--bg-section);
    border-radius: var(--border-radius);
    padding: 86px 110px;
}
.formWs__form {
    margin-top: 50px;
}
.formWs__form form {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.input-txt.-w50 {
    flex: 1 1 calc(50% - 12px);
}
.input-txt {
    flex: 1 1 100%;
    height: 56px;
    background: #FFFFFF;
    border-radius: 7px;
    font-size: 18px;
    padding: 17px 20px;
    border: none;
    font-family: var(--font-txt);
}
.input-txt::placeholder {
    color: #BABBBF;
}
textarea.input-txt {
    resize: none;
    height: auto;
    padding: 24px 20px;
}
.formWs__form form .btn {
    margin-top: 18px;
    height: 85px;
    width: 281px;
    font-weight: bold;
}
.formWs__cont {
    position: relative;
    border-radius: var(--border-radius);
    background: linear-gradient(180deg, #1C5BB6 0%, #00C0FF 100%, #01BCFC 100%);
    padding: 44px 50px;
}
.formWs__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
}
.formWs__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.formWs__txt {
    position: relative;
    z-index: 1;
    color: #fff;
    line-height: 1.3;
}
.formWs__txt .titleHero {
    font-size: 42px;
    line-height: 90%;
}
.formWs__txt .btn {
    color: #fff;
    border: 1px solid #fff;
    width: 276px;
    height: 78px;
    font-weight: bold;
    margin-top: 30px;
}
@media(max-width: 1400px) {
    .bannerWs__left::after {
        width: 190px;
        right: -168px;
    }
}
@media(max-width: 1300px) {
    .bannerWs__right-txt {
        font-size: 20px;
    }
    .bannerWs__right {
        padding-left: 180px;
    }
}
@media(max-width: 1200px) {
    .authWs__blocks {
        gap: 50px;
        flex-direction: column;
        align-items: start;
    }
    .authWs__left {
        max-width: 100%;
    }
    .authWs__right {
        width: 100%;
    }
    .packWs {
        padding: 100px 0;
    }
    .formWs__formBlock {
        padding: 50px 40px;
    }
}
@media(max-width: 991px) {
    .wsHero .titleHero {
        font-size: 45px;
        line-height: 47px;
    }
    .wsHero__cont-t {
        font-size: 12px;
        width: 124px;
        height: 40px;
        top: -17px;
    }
    .advantWs__blocks {
        grid-template-columns: repeat(2, 1fr);
    }
    .packWs__blocks {
        margin-top: 50px;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .packWs__block.-horiz {
        grid-row: auto;
    }
    .packWs__block {
        min-height: 300px;
    }
    .packWs__block-img img {
        max-width: 300px;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        object-position: bottom;
    }
    .packWs__block-cont {
        max-width: 50%;
        position: relative;
    }
    .bannerWs__blocks {
        flex-direction: column;
    }
    .bannerWs__left {
        padding: 57px 100px 16px;
    }
    .bannerWs__left-cont {
        text-align: center;
    }
    .bannerWs__right {
        padding: 45vw 100px 70px;
    }
    .bannerWs__right::after {
        content: '';
        width: 102%;
        height: 38vw;
        background-image: url(../img/wholesale/banner-arr2.svg);
        background-repeat: no-repeat;
        background-size: 100% 100%;
        position: absolute;
        left: -6px;
        top: -30px;
        right: auto;
        background-position: bottom;
    }
    .bannerWs__left::after {
        display: none;
    }
    .bannerWs__right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .formWs__blocks {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .formWs__cont {
        min-height: 660px;
    }
}

@media(max-width: 575px) {
    .wsHero .titleHero {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 18px;
    }
    .wsHero__cont p {
        margin-top: 18px;
        font-size: 14px;
    }
    .wsHero__cont-t {
        font-size: 10px;
        width: 102px;
        height: 29px;
        top: -10px;
        left: -11px;
    }
    .wsHero__btns {
        margin-top: 30px;
        gap: 7px;
        flex-wrap: wrap;
        flex-direction: column;
    }
    .wsHero__btns .btn {
        width: 230px;
        font-size: 14px;
    }
    .wsHero .container {
        padding: 0 30px;
    }
    .wsHero {
        height: auto;
        padding: 265px 0 36px;
    }
    .authWs {
        padding: 60px 0;
    }
    .authWs__blocks {
        gap: 20px;
    }
    .authWs__firm, .authWs__firm-left {
        flex-direction: column;
    }
    .authWs__firm-logo {
        padding-right: 0;
        border: none;
        padding-bottom: 14px;
        position: relative;
    }
    .authWs__firm-logo::after {
        content: '';
        width: 28px;
        height: 1px;
        background-color: #BABBBF;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .authWs__firm-left {
        gap: 11px;
    }
    .authWs__firm-txt {
        text-align: center;
    }
    .authWs__firm {
        padding: 25px;
    }
    .advantWs {
        padding: 30px 0;
    }
    .advantWs__blocks {
        gap: 13px;
    }
    .advantWs__block {
        min-height: 145px;
        height: auto;
        gap: 30px;
    }
    .advantWs__block-icon {
        width: 46px;
        height: 46px;
    }
    .advantWs__block-icon img {
        width: 30px;
    }
    .advantWs__block-cont {
        padding: 0;
    }
    .packWs {
        padding: 68px 0;
    }
    .packWs__block {
        min-height: 200px;
        padding: 23px;
    }
    .packWs__block-cont {
        max-width: 70%;
    }
    .packWs__block-img img {
        max-width: 200px;
    }
    .packWs__block-title {
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    .packWs__block-vals {
        gap: 3px;
    }
    .packWs__block-val {
        gap: 3px;
        font-weight: bold;
        padding: 5px 15px;
        min-height: 21px;
    }
    .packWs__block-val img {
        width: 12px;
        height: 14px;
    }
    .packWs__blocks {
        gap: 11px;
        margin-top: 40px;
    }
    .bannerWs__left {
        padding: 57px 20px 16px;
    }
    .bannerWs__left-btn .btn {
        width: 235px;
        height: 56px;
        margin-top: 10px;
        font-size: 16px;
        line-height: 1.2;
    }
    .bannerWs__right-txt {
        font-size: 16px;
    }
    .bannerWs__right {
        padding: 40vw 20px 40px;
    }
    .bannerWs {
        padding: 80px 0;
    }
    .photoWs .blogPosts__tab {
        padding: 0;
        font-size: 14px;
        border: none
        
    }
    .blogPosts__tabs {
        gap: 15px 20px; 
        justify-content: center;
        margin-bottom: 20px;
    }
    .photoWs .authWs__blocks {
        gap: 50px;
    }
    .grid-item {
        height: 160px;
        flex: 1 1 43%;
    }
    .grid-item.tall {
        flex: 1 1 30%;
    }
    .photoWs {
        padding: 60px 0;
    }
    .formWs__txt .titleHero {
        font-size: 36px;
    }
    .formWs__txt {
        font-size: 16px;
    }
    .formWs__txt .btn {
        width: 244px;
        height: 69px;
    }
    .input-txt {
        height: 35px;
        border-radius: 7px;
        font-size: 12px;
        padding: 9px;
    }
    textarea.input-txt {
        padding: 9px;
        margin-top: 30px;
    }
    .formWs__form form {
        gap: 14px;
    }
    .formWs__form {
        margin-top: 21px;
    }
    .formWs__formBlock {
        padding: 44px 30px;
    }
    .formWs {
        padding: 80px 0 0;
    }
    .formWs__form form .btn {
        margin-top: 30px;
        height: 73px;
        width: 240px;
        font-size: 16px;
        padding: 10px;
    }
}

/* END WHOLESALE */

/* ABOUT US */
.heroAbout {
    height: 610px;
    padding-top: 180px;
}
.heroAbout .titleHero {
    font-size: 64px;
    line-height: 1;
}
.txtAbout__block {
    display: flex;
    margin-bottom: 40px;
    margin-top: -240px;
}
.txtAbout__block-left {
    background: linear-gradient(180deg, #1C5BB6 0%, #00C0FF 100%, #01BCFC 100%);
    border-radius: 20px 0px 0px 20px;
    padding: 60px 50px;
    color: #fff;
    line-height: 1.5;
    flex: 1 1 424px;
}
.txtAbout__block-logo {
    margin-bottom: 45px;
}
.txtAbout__block-right {
    padding: 78px 27px 78px 106px;
    background-color: #fff;
    border-radius: 0px 20px 20px 0px;
    flex: 1 1 895px;
}
.txtAbout__block-txt {
    height: 323px;
    overflow-y: auto;
    padding-right: 79px;  
}
.txtAbout__block-txt::-webkit-scrollbar {
    width: 6px;
}
.txtAbout__block-txt::-webkit-scrollbar-track {
    background: rgba(217, 217, 217, 0.25);
    border: none;
    border-radius: 999px;
}
.txtAbout__block-txt::-webkit-scrollbar-thumb {
    background: #D9D9D9;
    border-radius: 999px;
    border: none;
}

.ourValues {
    padding: 103px 0 60px;
}
.ourValues__blocks .swiper-wrapper {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ourValues__block {
    background-color: #DBE9FD;
    border-radius: var(--border-radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    height: 304px;
}
.ourValues__block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
    width: 68px;
    height: 68px;
    padding: 15px;
}
.ourValues__block-title {
    font-weight: bold;
    margin-bottom: 12px;
}
.ourValues__block-txt {
    color: #646464;
}
.ourValues__block-cont {
    padding: 0 10px 20px;
}
.comAbout {
    padding: 60px 0 120px;
}
.comAboutSmart {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #1C5BB6 0%, #00C0FF 100%);
    border-radius: var(--border-radius);
    padding: 65px 60px;
}
.comAboutSmart__left {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-right: 65px;
    border-right: 1px solid #4CF3FF;
    flex: 1 1 65%;
}
.comAboutSmart__left .titleHero {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 0;
    line-height: 34px;
}
.comAboutSmart__right {
    padding-left: 80px;
    flex: 1 1 32%;
    mix-blend-mode: plus-lighter;
}
.comAboutSmart__left-icon {
    flex: 0 0 74px;
}
.comAboutSlider {
    margin-top: 26px;
    display: flex;
    gap: 24px;
}
.comAboutSlider__left {
    background-color: #E5ECFC;
    border-radius: var(--border-radius);
    padding: 66px 58px;
    flex: 1 1 40%
}
.comAboutSlider__right {
    background-color: #fff;
    flex: 1 1 55%;
    padding: 45px 0;
    display: flex;
    align-items: center;
    border-radius: var(--border-radius);
    overflow: hidden;
}
.comAboutSlider__slide {
    text-align: center;
}

@media(max-width: 1200px) {
    .comAboutSmart__left .titleHero {
        font-size: 29px;
        line-height: 24px;
    }
    .comAboutSmart__left {
        padding-right: 30px;
    }
    .comAboutSmart__right {
        padding-left: 40px;
    }
}
@media(max-width: 991px) {
    .txtAbout__block {
        flex-direction: column-reverse;
    }
    .txtAbout__block-right {
        border-radius: 20px 20px 0 0;
        flex: auto;
    }
    .txtAbout__block-left {
        border-radius: 0 0 20px 20px;
    }
    .ourValues__blocks .swiper-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .comAboutSlider {
        flex-direction: column-reverse;
    }
    .txtAbout__block-left {
        flex: auto;
    }
}
@media(max-width: 769px) {
    .heroAbout .titleHero {
        font-size: 44px;
    }
    .heroAbout {
        height: 550px;
    }
    .txtAbout__block-right {
        padding: 35px 40px;
    }
    .txtAbout__block-txt {
        padding-right: 35px;
    }
    .txtAbout__block-left {
        padding: 60px 40px;
    }
    .txtAbout__block-logo {
        margin-bottom: 30px;
    }
}

/* END ABOUT US */