

/* Start:/local/templates/b2b/css/base.css?17724541283007*/
:root {
    --color-accent: #800020;
    --color-bg: #f9f9f9;
    --color-text: #111111;

    --color-gray-1: #eaeaea;
    --color-gray-2: #5c5c5c;
    --header-height: 110px;
}

@media screen and (max-width: 998px) {
    :root {
        --header-height: 80px;
    }
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

}

html {
    scroll-behavior: smooth;
}


input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--color-bg) inset !important;
    box-shadow: 0 0 0 1000px var(--color-bg) inset !important;
}

:focus-visible {
    outline: none;
}

a {
    text-decoration: none;
}

body {
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.4;
    overflow-x: hidden;
    accent-color: var(--color-accent);
}

body.locked {
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1430px;
    margin: 0 auto;
    padding-inline: 20px;

}

.page>.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
}

.wrapper>.main {
    flex: 1;
}

.section-header {
    display: flex;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: clamp(30px, 4vw, 60px);
}

.section-title {
    font-weight: 600;
    font-size: clamp(28px, 4vw, 44px);
    line-height: clamp(28px, 4vw, 44px);
    color: var(--color-accent);
    /* white-space: nowrap; */
}

.section-header__line {
    height: 1px;
    flex-basis: 100%;
    background-color: var(--color-text);
    opacity: 34%;
}

.social {}

.social__title {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 10px;
}

.social__list {
    display: flex;
    align-items: center;
    gap: 13px;
}

.social__item {
    width: 39px;
    height: 39px;
}

.social__item svg {
    height: 100%;
}

/* primary-btn */
.primary-btn {
    background-color: var(--color-accent);
    padding: 17px 25px;
    color: var(--color-bg);
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    transition: all .2s ease;
    cursor: pointer;
}

.primary-btn:hover {
    opacity: 0.7;
}

/* modal */

.modal {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    pointer-events: none;
}

.modal.open {
    user-select: auto;
    pointer-events: all;
}

.modal__backdrop {
    position: fixed;
    z-index: 101;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity .3s ease;
}

.modal.open .modal__backdrop {
    opacity: 1;
}

.modal__body {
    transition: all .3s ease;
    position: relative;
    z-index: 102;
    border-radius: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 45px 70px;
    backdrop-filter: blur(10px);
    opacity: 0;
}

.modal.open .modal__body {
    opacity: 1;
    backdrop-filter: blur(10px);
}

@media screen and (max-width: 998px) {
    .container {
        padding-inline: 15px;
    }
}
/* End */


/* Start:/local/templates/b2b/css/header.css?17724545033581*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.15);
    background-color: var(--color-bg);
    height: clamp(80px, 6vw, 110px);
    z-index: 100;
}

.header__container {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    z-index: 100;
    position: relative;
    background-color: var(--color-bg);
}

.header__logo {
    padding-block: clamp(10px, 2vw, 20px);
}

.header-logo {}

.header-logo__text {
    font-weight: 700;
    font-size: clamp(20px, 2vw, 32px);
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--color-text);
}

.header-logo__text_accent {
    color: var(--color-accent);
}

.header__nav ul {
    display: flex;
    align-items: center;
    gap: clamp(30px, 5vw, 120px);
    list-style-type: none;
}

.header__nav a {
    padding-block: clamp(10px, 2vw, 20px);
    color: var(--color-gray-2);
    font-weight: 400;
    font-size: clamp(16px, 2vw, 21px);
    position: relative;
}

.header__nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: clamp(5px, 2vw, 10px);
    border-radius: 2px;
    height: 2px;
    width: 100%;
    background-color: transparent;
    transition: background-color .2s ease;
}

.header__nav a:hover::after {
    background-color: var(--color-gray-2);
}

.header-mob__spacer {
    display: none;
}

.mob-menu {
    display: none;
}

@media screen and (max-width: 998px) {
    .header-mob__spacer {
        display: block;
    }

    .header__logo {
        padding-bottom: clamp(5px, 1vw, 10px);
    }
    
    .header__nav {
        display: none;
    }
    
    .header-logo {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        z-index: 100;
    }
    
    .header-logo__text {
        font-weight: 300;
        font-size: 12px;
    }

    .header-logo__text_accent {
        font-weight: 700;
        font-size: clamp(16px, 2vw, 18vw);
    }

    .header-mob__burger {
        width: 27px;
        height: 14px;
        position: relative;
        z-index: 100;
    }

    .header-mob__burger span {
        position: absolute;
        height: 2px;
        width: 100%;
        left: 0;
        background-color: var(--color-accent);
        transition: all .2s ease;
    }

    .header-mob__burger span:nth-child(1){
        top: 0;
    }
    .header-mob__burger span:nth-child(2){
        top: 6px;
    }
    .header-mob__burger span:nth-child(3) {
        bottom: 0;
    }

    .header-mob__menu.open  .header-mob__burger span:nth-child(1) {
        transform: rotate(45deg);
        top: 6px;
    }

    .header-mob__menu.open  .header-mob__burger span:nth-child(2) {
        display: none;
    }

    .header-mob__menu.open  .header-mob__burger span:nth-child(3) {
        transform: rotate(-45deg);
        bottom: 6px;
    }

    .header-mob__menu {
        display: flex;
    }

    .mob-menu {
        display: block;
        position: fixed;
        left: 0;
        top: -100%;
        min-height: 100dvh;
        width: 100dvw;
        z-index: 90;
        transition: transform 0s linear; 
        background-color: var(--color-bg);
    }

    .mob-menu__body {
        padding: 30px;
       padding-top: calc( var(--header-height) + 30px)
    }
    header:has(.header-mob__menu.open) {
        box-shadow: none;
    }

    body:has(.header-mob__menu.open) .mob-menu {
        top: 0;
        transform: translateY(0);
    transition: top .5s ease; /* Плавное выезжание */
    }
    

}

/* End */


/* Start:/local/templates/b2b/css/footer.css?17724509742401*/
.footer {
    background-color: var(--color-text);
    color: var(--color-bg);

}

.footer__wrapper {
    padding-top: 35px;
    padding-bottom: 48px;
}

.footer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 28px;
}

.footer__logo {
    white-space: nowrap;
}


.footer-logo__text {
    font-weight: 700;
    font-size: clamp(14px, 2vw, 16px);
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--color-bg);
}

.footer-logo__text_accent {
    color: var(--color-accent);
}

.footer__header-text {
    font-size: 11px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer__body {
    font-size: 11px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-bg);
}

.footer__qr {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 285px;
}

.footer__qr img {
    width: 100px;
    height: 100px;
}

.footer__qr span:has(svg) {
    flex-basis: 10px;
}


.footer-catalog__body {
    display: flex;
    gap: clamp(20px, 4vw, 60px);
}

.footer-catalog__title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-catalog__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-catalog__cat {
    color: var(--color-bg);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease;
    font-size: 12px;
}

.footer-catalog__cat:hover {
    border-bottom: 1px solid var(--color-bg);
}


.footer__social .social__title {
    text-align: right;
}

.footer__social .social__list {
    justify-content: flex-end;
}

.footer__footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 10px;
}

.footer__author {
    font-size: 13px;
}

.footer__policy {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 13px;
}

.footer__policy a {
    text-decoration: underline;
    color: var(--color-bg);
}

.footer__copyright {
    font-size: 12px;
    display: flex;
    flex-direction: column;

    align-items: flex-end;
}

.footer__copyright a {
    color: var(--color-bg);
    text-decoration: underline;
}

@media screen and (max-width: 998px) {
    .footer {
        display: none;
    }
}
/* End */


/* Start:/local/templates/b2b/css/swiper-bundle.min.css?177244844113918*/
/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root{--swiper-theme-color:#007aff}:host{display:block;margin-left:auto;margin-right:auto;position:relative;z-index:1}.swiper{display:block;list-style:none;margin-left:auto;margin-right:auto;overflow:hidden;padding:0;position:relative;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{box-sizing:initial;display:flex;height:100%;position:relative;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);width:100%;z-index:1}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translateZ(0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{display:block;flex-shrink:0;height:100%;position:relative;transition-property:transform;width:100%}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{backface-visibility:hidden;transform:translateZ(0)}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px;.swiper-cube-shadow,.swiper-slide{transform-style:preserve-3d}}.swiper-css-mode{>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none;&::-webkit-scrollbar{display:none}}>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}&.swiper-horizontal{>.swiper-wrapper{scroll-snap-type:x mandatory}}&.swiper-vertical{>.swiper-wrapper{scroll-snap-type:y mandatory}}&.swiper-free-mode{>.swiper-wrapper{scroll-snap-type:none}>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}}&.swiper-centered{>.swiper-wrapper:before{content:"";flex-shrink:0;order:9999}>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}}&.swiper-centered.swiper-horizontal{>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}>.swiper-wrapper:before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}}&.swiper-centered.swiper-vertical{>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}>.swiper-wrapper:before{height:var(--swiper-centered-offset-after);min-width:1px;width:100%}}}.swiper-3d{.swiper-slide-shadow,.swiper-slide-shadow-bottom,.swiper-slide-shadow-left,.swiper-slide-shadow-right,.swiper-slide-shadow-top{height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%;z-index:10}.swiper-slide-shadow{background:#00000026}.swiper-slide-shadow-left{background-image:linear-gradient(270deg,#00000080,#0000)}.swiper-slide-shadow-right{background-image:linear-gradient(90deg,#00000080,#0000)}.swiper-slide-shadow-top{background-image:linear-gradient(0deg,#00000080,#0000)}.swiper-slide-shadow-bottom{background-image:linear-gradient(180deg,#00000080,#0000)}}.swiper-lazy-preloader{border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top:4px solid #0000;box-sizing:border-box;height:42px;left:50%;margin-left:-21px;margin-top:-21px;position:absolute;top:50%;transform-origin:50%;width:42px;z-index:10}.swiper-watch-progress .swiper-slide-visible,.swiper:not(.swiper-watch-progress){.swiper-lazy-preloader{animation:swiper-preloader-spin 1s linear infinite}}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode{.swiper-wrapper:after{content:"";left:0;pointer-events:none;position:absolute;top:0}}.swiper-virtual.swiper-css-mode.swiper-horizontal{.swiper-wrapper:after{height:1px;width:var(--swiper-virtual-size)}}.swiper-virtual.swiper-css-mode.swiper-vertical{.swiper-wrapper:after{height:var(--swiper-virtual-size);width:1px}}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{align-items:center;color:var(--swiper-navigation-color,var(--swiper-theme-color));cursor:pointer;display:flex;height:var(--swiper-navigation-size);justify-content:center;position:absolute;width:var(--swiper-navigation-size);z-index:10;&.swiper-button-disabled{cursor:auto;opacity:.35;pointer-events:none}&.swiper-button-hidden{cursor:auto;opacity:0;pointer-events:none}.swiper-navigation-disabled &{display:none!important}svg{height:100%;object-fit:contain;transform-origin:center;width:100%;fill:currentColor;pointer-events:none}}.swiper-button-lock{display:none}.swiper-button-next,.swiper-button-prev{margin-top:calc(0px - var(--swiper-navigation-size)/2);top:var(--swiper-navigation-top-offset,50%)}.swiper-button-prev{left:var(--swiper-navigation-sides-offset,4px);right:auto;.swiper-navigation-icon{transform:rotate(180deg)}}.swiper-button-next{left:auto;right:var(--swiper-navigation-sides-offset,4px)}.swiper-horizontal{.swiper-button-next,.swiper-button-prev,~.swiper-button-next,~.swiper-button-prev{margin-left:0;margin-top:calc(0px - var(--swiper-navigation-size)/2);top:var(--swiper-navigation-top-offset,50%)}&.swiper-rtl .swiper-button-next,&.swiper-rtl~.swiper-button-next,&~.swiper-button-prev,.swiper-button-prev{left:var(--swiper-navigation-sides-offset,4px);right:auto}&.swiper-rtl .swiper-button-prev,&.swiper-rtl~.swiper-button-prev,&~.swiper-button-next,.swiper-button-next{left:auto;right:var(--swiper-navigation-sides-offset,4px)}&.swiper-rtl .swiper-button-next,&.swiper-rtl~.swiper-button-next,&~.swiper-button-prev,.swiper-button-prev{.swiper-navigation-icon{transform:rotate(180deg)}}&.swiper-rtl .swiper-button-prev,&.swiper-rtl~.swiper-button-prev{.swiper-navigation-icon{transform:rotate(0deg)}}}.swiper-vertical{.swiper-button-next,.swiper-button-prev,~.swiper-button-next,~.swiper-button-prev{left:var(--swiper-navigation-top-offset,50%);margin-left:calc(0px - var(--swiper-navigation-size)/2);margin-top:0;right:auto}.swiper-button-prev,~.swiper-button-prev{bottom:auto;top:var(--swiper-navigation-sides-offset,4px);.swiper-navigation-icon{transform:rotate(-90deg)}}.swiper-button-next,~.swiper-button-next{bottom:var(--swiper-navigation-sides-offset,4px);top:auto;.swiper-navigation-icon{transform:rotate(90deg)}}}.swiper-pagination{position:absolute;text-align:center;transform:translateZ(0);transition:opacity .3s;z-index:10;&.swiper-pagination-hidden{opacity:0}&.swiper-pagination-disabled,.swiper-pagination-disabled>&{display:none!important}}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:var(--swiper-pagination-bottom,8px);left:0;top:var(--swiper-pagination-top,auto);width:100%}.swiper-pagination-bullets-dynamic{font-size:0;overflow:hidden;.swiper-pagination-bullet{position:relative;transform:scale(.33)}.swiper-pagination-bullet-active,.swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullet-active-next-next{transform:scale(.33)}}.swiper-pagination-bullet{background:var(--swiper-pagination-bullet-inactive-color,#000);border-radius:var(--swiper-pagination-bullet-border-radius,50%);display:inline-block;height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));opacity:var(--swiper-pagination-bullet-inactive-opacity,.2);width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));button&{appearance:none;border:none;box-shadow:none;margin:0;padding:0}.swiper-pagination-clickable &{cursor:pointer}&:only-child{display:none!important}}.swiper-pagination-bullet-active{background:var(--swiper-pagination-color,var(--swiper-theme-color));opacity:var(--swiper-pagination-bullet-opacity,1)}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{left:var(--swiper-pagination-left,auto);right:var(--swiper-pagination-right,8px);top:50%;transform:translate3d(0,-50%,0);.swiper-pagination-bullet{display:block;margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0}&.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px;.swiper-pagination-bullet{display:inline-block;transition:transform .2s,top .2s}}}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-horizontal.swiper-pagination-bullets{.swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}&.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap;.swiper-pagination-bullet{transition:transform .2s,left .2s}}}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:transform .2s,right .2s}.swiper-pagination-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,#00000040);position:absolute;.swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));height:100%;left:0;position:absolute;top:0;transform:scale(0);transform-origin:left top;width:100%}.swiper-rtl & .swiper-pagination-progressbar-fill{transform-origin:right top}&.swiper-pagination-horizontal,&.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-horizontal>&,.swiper-vertical>&.swiper-pagination-progressbar-opposite{height:var(--swiper-pagination-progressbar-size,4px);left:0;top:0;width:100%}&.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,&.swiper-pagination-vertical,.swiper-horizontal>&.swiper-pagination-progressbar-opposite,.swiper-vertical>&{height:100%;left:0;top:0;width:var(--swiper-pagination-progressbar-size,4px)}}.swiper-pagination-lock{display:none}.swiper-scrollbar{background:var(--swiper-scrollbar-bg-color,#0000001a);border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;&.swiper-scrollbar-disabled,.swiper-scrollbar-disabled>&{display:none!important}&.swiper-scrollbar-horizontal,.swiper-horizontal>&{bottom:var(--swiper-scrollbar-bottom,4px);height:var(--swiper-scrollbar-size,4px);left:var(--swiper-scrollbar-sides-offset,1%);position:absolute;top:var(--swiper-scrollbar-top,auto);width:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);z-index:50}&.swiper-scrollbar-vertical,.swiper-vertical>&{height:calc(100% - var(--swiper-scrollbar-sides-offset, 1%)*2);left:var(--swiper-scrollbar-left,auto);position:absolute;right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);width:var(--swiper-scrollbar-size,4px);z-index:50}}.swiper-scrollbar-drag{background:var(--swiper-scrollbar-drag-bg-color,#00000080);border-radius:var(--swiper-scrollbar-border-radius,10px);height:100%;left:0;position:relative;top:0;width:100%}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{align-items:center;display:flex;height:100%;justify-content:center;text-align:center;width:100%;>canvas,>img,>svg{max-height:100%;max-width:100%;object-fit:contain}}.swiper-slide-zoomed{cursor:move;touch-action:none}.swiper .swiper-notification{left:0;opacity:0;pointer-events:none;position:absolute;top:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{margin:0 auto;transition-timing-function:ease-out}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-direction:column;flex-wrap:wrap}.swiper-fade{&.swiper-free-mode{.swiper-slide{transition-timing-function:ease-out}}.swiper-slide{pointer-events:none;transition-property:opacity;.swiper-slide{pointer-events:none}}.swiper-slide-active{pointer-events:auto;& .swiper-slide-active{pointer-events:auto}}}.swiper.swiper-cube{overflow:visible}.swiper-cube{.swiper-slide{backface-visibility:hidden;height:100%;pointer-events:none;transform-origin:0 0;visibility:hidden;width:100%;z-index:1;.swiper-slide{pointer-events:none}}&.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-slide-active{&,& .swiper-slide-active{pointer-events:auto}}.swiper-slide-active,.swiper-slide-next,.swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube-shadow{bottom:0;height:100%;left:0;opacity:.6;position:absolute;width:100%;z-index:0;&:before{background:#000;bottom:0;content:"";filter:blur(50px);left:0;position:absolute;right:0;top:0}}}.swiper-cube{.swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}}.swiper-cube{.swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-slide-shadow-cube.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}}.swiper.swiper-flip{overflow:visible}.swiper-flip{.swiper-slide{backface-visibility:hidden;pointer-events:none;z-index:1;.swiper-slide{pointer-events:none}}.swiper-slide-active{&,& .swiper-slide-active{pointer-events:auto}}}.swiper-flip{.swiper-slide-shadow-flip.swiper-slide-shadow-bottom,.swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-slide-shadow-flip.swiper-slide-shadow-top{backface-visibility:hidden;z-index:0}}.swiper-creative{.swiper-slide{backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}}.swiper.swiper-cards{overflow:visible}.swiper-cards{.swiper-slide{backface-visibility:hidden;overflow:hidden;transform-origin:center bottom}}
/* End */


/* Start:/local/templates/b2b/styles.css?177245673915457*/
.main {
    margin-top: calc(var(--header-height, 110px));
}


/* hero */

.hero {
    min-height: calc(100dvh - var(--header-height, 110px));
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hero__body {
    flex: 1 0 100%;
    position: relative;
    color: var(--color-bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(35px, 6vw, 85px);
}

.hero__header {
    margin-bottom: clamp(35px, 6vw, 85px);
}

.hero__title {
    font-size: clamp(32px, 5vw, 53px);
    font-weight: 400;
    text-transform: uppercase;
}

.hero__subtitle {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 400;
}

.hero__list {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    gap: 10px;
}

.hero__item {
    font-size: clamp(20px, 3vw, 30px);
}

.hero__nav {
    display: none;
    background-color: #151515;
}

.hero__nav ul {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
    list-style-type: none;
    padding-inline: 25px;
    width: min(500px, 100vw);
    margin: 0 auto;
}

.hero__nav ul li {}

.hero__nav li>a {
    display: block;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    padding-block: 25px;
    color: var(--color-gray-1);
}

@media screen and (max-width: 998px) {
    .main {
        margin-top: calc(var(--header-height, 80px));
    }

    .hero {
        height: 300px;
        min-height: auto;
    }

    .hero__title {
        font-weight: 600;
        margin-top: 65px;
    }

    .hero__body {
        justify-content: space-between;
        padding-block: 0;
    }

    .hero__list {
        display: none;
    }

    .hero__nav {
        display: block;
        margin-inline: -15px;
    }
}


/* about */

.about {
    display: flex;
    gap: 30px;
    margin-block: clamp(40px, 5vw, 80px);
}

.about__content {
    flex-basis: 60%;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vw, 40px);

}

.about-content__text {
    font-size: clamp(18px, 3vw, 26px);
}

.about__numbers {
    flex-basis: 40%;
}

.about-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.about-numbers__item {
    text-align: center;
    max-width: 180px;
    justify-self: center;
}

.about-numbers__number {
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: clamp(35px, 4vw, 38px);
}

.about-numbers__text {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    color: var(--color-gray-2);
}

@media screen and (max-width: 998px) {
    .about {
        flex-direction: column-reverse;
    }

    .about-numbers__item:nth-child(1) {
        order: 4;
    }

    .about-numbers__item:nth-child(2) {
        order: 2;
    }

    .about-numbers__item:nth-child(3) {
        order: 3;
    }

    .about-numbers__item:nth-child(4) {
        order: 1;
    }

    .about-numbers__item {
        flex: 1 0 50%;
    }

    .about-numbers__number {
        margin-bottom: 0;
    }

    .about-numbers__text {
        font-size: 18px;
        font-weight: 300;
    }

    .about-content {
        display: none;
    }
}


/* advantages */

.advantages {
    margin-block: clamp(40px, 5vw, 80px);
}

.advantages__body {
    display: flex;
    gap: 120px;
    position: relative;
}

.advantages__body {
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease;
}

.advantages__body.ready {
    visibility: visible;
    opacity: 1;
}

.advantages__tabs {
    flex-basis: 270px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}


.advantages__tabs-content {
    position: relative;
    flex-basis: auto;
    width: 100%;
}

.advantages__tab {
    cursor: pointer;
    transition: all .3s ease;
    padding: 9px 13px;
    border-left: 4px solid var(--color-text);
    color: var(--color-text);
    font-size: clamp(18px, 3vw, 28px);
}

.advantages__tab:hover {
    opacity: 0.7;
}

.advantages__tab.active {
    color: var(--color-accent);
    border-left-color: var(--color-accent);
}

.advantages__content {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease;
    pointer-events: none;
}

.advantages__content.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.advantages__content.fade-out {
    position: absolute !important;
    z-index: 1;
    opacity: 0;
    transform: translateY(12px);
}

.adv-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.adv-content__title {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
}

.adv-content__body {
    font-size: clamp(16px, 3vw, 22px);
}

.adv-content__body p {
    margin-bottom: 20px;
}

.adv-content__img {
    width: min(100%, 520px);
    aspect-ratio: 5/3;
    border-radius: 34px;
    overflow: hidden;
}


.adv-content__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 998px) {


    .advantages__body {
        flex-direction: column;
        gap: 40px;
    }

    .advantages__tabs {
        display: none;
        /* скрываем боковые табы */
    }

    .advantages__tabs-content {
        position: static;
        height: auto !important;
    }

    .advantages__content {
        position: static;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        margin-bottom: 20px;
        border-bottom: 1px solid #ddd;
        padding-bottom: 20px;
    }

    .advantages__content .adv-content__body,
    .advantages__content .adv-content__img {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .advantages__content.open .adv-content__body,
    .advantages__content.open .adv-content__img {
        max-height: 1000px;
    }

    .adv-content__title {
        cursor: pointer;
        position: relative;
        padding: 9px 13px;
        border-left: 4px solid var(--color-accent);
        color: var(--color-accent);
        font-size: 20px;
    }

    .adv-content__title::after {
        content: "+";
        position: absolute;
        right: 0;
    }

    .advantages__content.open .adv-content__title::after {
        content: "–";
    }
}

/* brands */

.brands {
    margin-block: clamp(40px, 5vw, 80px);
}

.brands .section-header {
    margin-bottom: 20px;
}

.brands__swiper {
    padding-inline: 50px;
    position: relative;
}

.brand__slider .swiper-wrapper {
    padding-block: 50px;
}

.brand__slider .swiper-wrapper {
    align-items: center;

}

.brand__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.brand__slider .swiper-button-next {
    right: -30px;
}

.brand__slider .swiper-button-prev {
    left: -30px;
}

/* order */

.order {
    position: relative;
    margin-block: clamp(40px, 5vw, 80px);
    scroll-margin-top: var(--header-height, 110px);
}

.order__bg {
    position: absolute;
    inset: 0;
    z-index: -1;

}

.order__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order__body {
    position: relative;
    padding-block: clamp(40px, 6vw, 95px);

}

.order__title {
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.order__subtitle {
    font-size: clamp(16px, 2vw, 17px);
    color: var(--color-gray-2);
    margin-bottom: 20px;
    max-width: 370px;
}

.order-form {
    width: min(100%, 550px);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.order-form__input {
    width: 100%;
    border-radius: 25px;
    padding: 18px 29px;
    border: none;
}

.order-form__row {
    position: relative;
}

.order-form__textarea {
    width: 100%;
    border-radius: 25px;
    padding: 18px 29px;
    border: none;
    resize: none;
}

.order-form__btn {
    width: 100%;
}


.order-form__accept {
    font-size: 13px;
    display: flex;
    flex-direction: column;
}

.order-form__accept a {
    color: var(--color-text);
    font-weight: 700;
}

.order-form__clip {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 4px;
    cursor: pointer;
    opacity: 1;
    transition: opacity .2s ease;
}

.order-form__clip:hover {
    opacity: 0.7;
}

.form-files.active {
    padding: 5px 0;
    display: flex;
    gap: 11px;
    transition: all .3s ease;
}

.form-file {
    width: 84px;
    height: 105px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 5px;
}

.form-file:has(.image) {
    /* box-shadow: 0 3px 6px rgba(0,0,0,0.6); */
}


.form-file__close {
    position: absolute;
    top: 0;
    right: 0;
    background-image: url('/local/templates/b2b/images/clip/remove.svg');
    width: 26px;
    height: 26px;
    z-index: 2;
    cursor: pointer;
    transition: opacity .2s ease;
    opacity: 1;
}

.form-file__close:hover {
    opacity: 0.7;
}

/* .form-file__img {
    height: auto;
    flex-basis: 100%;
    opacity: 0.3;
    display: flex;
}

.form-file__img img {
    max-width: 100%;
    max-height: 72px;
    object-fit: contain;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.6));
}

.form-file__img.image {
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.6));
}

.form-file__img.image img {

    object-fit: cover;
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    max-height: 72px;
} */

.form-file__img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}


.form-file__img img {
    display: block;
    max-width: 100%;
    max-height: 100%;

}

.form-file__img.image {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

.form-file__img.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.form-file__img:not(.image) img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

.form-file__title {
    font-size: 12px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 

.order-form__clip-clip {
    display: block;
}

.order-form__files.open .order-form__clip-clip {
    display: none;
}

.order-form__clip-close {
    display: none;
}

.order-form__files.open .order-form__clip-close {
    display: block;
}

.clip-popup {
    position: absolute;
    top: 10px;
    left: calc(100% + 10px);
    opacity: 0;
    user-select: none;
    pointer-events: none;
    padding: 8px 10px 8px 30px;
    background-color: #FEFBF5;
    border-radius: 15px;
    transition: opacity .3s ease;
}

.order-form__files.open .clip-popup {
    opacity: 1;
    user-select: auto;
    pointer-events: all;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.clip-popup__item {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    position: relative;
}

.clip-popup__item::before {
    position: absolute;
}

.clip-popup__text {
    color: var(--color-text);
    font-size: 13px;
    font-weight: 600;
}

.clip-popup__img {
    width: 14px;
    height: 14px;
} */

.order-form__field {
    position: relative;
}

.order-form__error {
    opacity: 0;
    user-select: none;
    pointer-events: none;
    transition: opacity .2s ease;
    color: var(--color-accent);
    font-size: 10px;
    padding: 5px 0 0 10px;
}

.order-form__field.error+.order-form__error {
    opacity: 1;
}

.order-form__field.error {
    border: 2px solid var(--color-accent);
}


@media (hover: hover) {
    .order-form__field {
        transition: all .2s ease;
        border: 2px solid transparent;
    }

    .order-form__field:hover {
        border: 2px solid rgba(128, 128, 128, 0.637);
    }

}

.order-form__field:focus-visible {
    border: 2px solid rgba(128, 128, 128, 0.637);
}

/* steps */

.steps {
    margin-block: clamp(60px, 7vw, 120px);
}

.steps__title {
    font-weight: 600;
    font-size: clamp(32px, 5vw, 57px);
    text-align: center;
    margin-bottom: 67px;
    color: var(--color-accent);
}

.steps__list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.steps__item {
    flex-basis: 33.33%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 310px;
}

.steps__number {
    font-weight: 700;
    font-size: clamp(68px, 8vw, 145px);
}

.steps__text {
    font-size: clamp(16px, 2vw, 18px);
}

/* contacts */

.contacts {

    background-color: var(--color-accent);
}

.contacts__wrapper {
    padding-top: clamp(40px, 5vw, 80px);
    padding-bottom: clamp(50px, 6vw, 110px);
}

.contacts__title {
    font-weight: 800;
    font-size: clamp(32px, 5vw, 55px);
    color: var(--color-bg);
    margin-bottom: 48px;
}

.contacts__body {
    display: flex;
    align-items: center;
    gap: 50px;
}

.contacts__body a {
    transition: border-color .2s ease;
    border-bottom: 1px solid transparent;
}

.contacts__body a:hover {
    border-bottom: 1px solid var(--color-bg);
}

.contacts__corporate {
    flex: 1;
    padding-block: 16px;
    border-top: 1px solid var(--color-gray-1);
    border-bottom: 1px solid var(--color-gray-1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.contacts__base {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.contacts__text_strong {
    font-weight: 600;
}

.contacts__text {
    color: var(--color-bg);
    font-size: clamp(16px, 2vw, 20px);
}

/* faq */

.faq {
    margin-top: clamp(60px, 7vw, 120px);
    margin-bottom: clamp(70px, 7vw, 150px);
}

.faq-item {
    border-bottom: 1px solid var(--color-text);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 35px 0;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 42px;
    height: 17px;

    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(-180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer-content {
    font-size: clamp(16px, 2vw, 18px);
    padding: 0 0 20px;
    color: var(--color-gray-2);
}

/* success modal */


.form-success {}

.form-success__body {
    display: flex;
    align-items: center;
    gap: 55px;
}

.form-success__img {
    height: 220px;
}

.form-success__img img {
    object-fit: contain;
}

.form-success__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    max-width: 400px;
}

.form-success__title {
    font-size: clamp(24px, 3vw, 35px);
    color: var(--color-bg);
    margin-bottom: 10px;
}

.form-success__text {
    font-size: clamp(14px, 2vw, 15px);
    color: var(--color-bg);
    margin-bottom: 24px;
}

.form-success__btn {}
/* End */
/* /local/templates/b2b/css/base.css?17724541283007 */
/* /local/templates/b2b/css/header.css?17724545033581 */
/* /local/templates/b2b/css/footer.css?17724509742401 */
/* /local/templates/b2b/css/swiper-bundle.min.css?177244844113918 */
/* /local/templates/b2b/styles.css?177245673915457 */
