/* resets */

@font-face {
    font-display: swap;
    font-family: 'Giga Sans';
    font-style: normal;
    font-weight: 500;
    src: url('/local/fonts/giga-sans-500.woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Giga Sans';
    font-style: normal;
    font-weight: 600;
    src: url('/local/fonts/giga-sans-600.woff2');
}

body {
    font-family: 'Roboto', system-ui, sans-serif;
    font-size: clamp(16px, 1vw, 18px);
    line-height: 1.2;
    text-wrap: pretty;
    hyphens: auto;
    color: #3a3a3a;
    -webkit-font-smoothing: antialiased;

    --section-margin: clamp(100px, 12vw, 180px);
}

h1, h2, h3, h4, h5, h6 {
    color: inherit;
    font-family: 'Giga Sans', 'Roboto', system-ui, sans-serif !important;
    font-weight: 600;
    line-height: inherit;
    margin: 0;
}

img {
    min-width: 0;
    max-width: 100%;
}

input {
    min-width: 0;
}

a {
    color: inherit;

    --underline-opacity: 0% !important;
}

a:hover, a:active {
    color: inherit;
}

/* overrides */

.index-block {
    overflow-x: hidden;
}

body .body:not(.index) > .main {
    padding-bottom: 0;
}

.layout {
    overflow-x: hidden;
}

section.page-top {
    padding-top: 0;
    padding-bottom: 0;
}

.topic__heading {
    margin-top: 0;
    margin-bottom: clamp(24px, 3vw, 40px);
}

.topic__heading #pagetitle {
    overflow: visible;
    line-height: 1.2;
    font-weight: 600;
}

.element-count {
    margin-bottom: 0;
}

.section-content-wrapper {
    margin-bottom: var(--section-margin);
}

.bottom_nav_wrapper {
    margin-top: 60px;
}

.fancybox-container .fancybox-bg {
    background-color: rgba(0, 0, 0, .4);
}

.fancybox-container .fancybox-button {
    background-color: transparent;
}

.fancybox-container .fancybox-button:hover svg:not(.custom-modal__complex-icon) path {
    fill: #fff;
}

.fancybox-container svg:not(.custom-modal__complex-icon) path {
    fill: #fff;
}

.fancybox-slide--html {
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout.layout--left-column-.flex-1 {
    overflow-x: visible;
}

.bottom-links-block {
    margin-bottom: 80px;
}

@media (max-width: 600px) {
    #main .grid-list.grid-list--compact {
        --items-count: 1;
    }
}

@media (max-width: 450px) {
    #main .grid-list.grid-list--compact {
        gap: var(--theme-items-gap);
    }
}

/* heading font */

.heading-font {
    font-family: 'Giga Sans', 'Roboto', system-ui, sans-serif !important;
    font-weight: 600;
}

/* first screen */

.first-screen {
    overflow-x: hidden;
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    position: relative;
}

.first-screen__content {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 24px;
    padding-top: 50px;
    padding-bottom: 80px;
}

.first-screen__img {
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50px;
    bottom: 0;
    width: 50%;
    height: calc(100% - 50px);
    object-fit: contain;
    object-position: right bottom;
}

.first-screen__title {
    font-size: clamp(34px, 8vw, 72px);
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #000;
}

@media (max-width: 768px) {
    .first-screen {
        background-position: center bottom;
    }

    .first-screen__list {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .first-screen__content {
        padding-bottom: 130%;
    }

    .first-screen__img {
        left: 0;
        right: 0;
        top: unset;
        bottom: 0;
        width: 150%;
        max-width: 150%;
        height: auto;
        object-fit: cover;
        object-position: -25vw bottom;
    }

    .first-screen .custom-button {
        width: 100%;
    }
}

/* custom icon */

.custom-icon__svg {
    width: 100%;
    height: clamp(24px, 3vw, 40px);
    aspect-ratio: 1;
    background-color: #2c8ebf;

    mask-image: var(--icon);
    -webkit-mask-image: var(--icon);
    mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.custom-icon.custom-icon--background {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(42px, 6vw, 80px);
    height: clamp(42px, 6vw, 80px);
    background-color: #e0eef6;
    border-radius: 8px;
}

/* custom button */

.custom-button {
    --bg: var(--theme-base-color);
    --color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    background-color: var(--bg);
    color: var(--color);
    font-weight: 500;
    border-radius: 9999px;
    padding: clamp(14px, 1vw, 18px) clamp(18px, 2vw, 28px);
    min-width: 280px;
    width: max-content;
    max-width: 100%;
    text-align: center;
    transition: opacity .3s ease;
    cursor: pointer;
}

.custom-button:hover {
    opacity: .8;
}

a.custom-button:hover {
    color: var(--color);
}

.custom-button.custom-button--white {
    --bg: #fff;
    --color: #f56440;
}

.custom-button.custom-button--transparent {
    --bg: transparent;
    --color: inherit;
}

.custom-button.custom-button--sm {
    min-width: unset;
    padding: 12px 20px;
    font-size: 16px;
}

.custom-button.custom-button--cut {
    padding: 0;
}

.custom-button.custom-button--fill {
    width: 100%;
}

/* block list */

.block-list {
    display: grid;
    align-content: start;
    gap: 32px;
    background-color: #fff;
    padding: clamp(16px, 3vw, 40px) clamp(16px, 3vw, 50px);
    border-radius: 16px;
    color: #3a3a3a;
}

.block-list__item {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 12px 24px;
}

.block-list__info {
    display: grid;
    gap: 4px;
}

.block-list__subtitle {
    font-size: clamp(22px, 2vw, 26px);
    font-weight: 600;
}

@media (max-width: 768px) {
    .block-list__item {
        grid-template-columns: 1fr;
    }
}

/* section */

.section {
    --mt: 0;
    --mb: 0;

    padding: 0;
    margin-top: var(--mt);
    margin-bottom: var(--mb);
}

.section.section--background {
    padding: clamp(60px, 7vw, 100px) 0;
    background-position: right bottom;
    background-repeat: no-repeat;
}

.section.section--background.section--background--cover {
    background-size: cover;
}

.section.section--background--secondary {
    background-color: #f5f5f5;
    background-size: contain;
}

.section.section--background--accent {
    background-color: #f56440;
    background-size: cover;
    color: #fff;
}

.section__heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-bottom: clamp(28px, 3vw, 50px);
}

.section__heading.section__heading--column {
    flex-direction: column;
    align-items: start;
}

.section__heading:not(.section__heading--column).section__heading--center {
    justify-content: center;
}

.section__heading.section__heading--column.section__heading--center {
    align-items: center;
    text-align: center;
}

.section__heading--gap--sm {
    gap: 16px;
}

.section__addon {
    margin-top: clamp(32px, 3vw, 50px);
}

.section__title {
    font-size: clamp(28px, 3vw, 50px);
    text-transform: uppercase;
}

.section__title.section__title--sm {
    font-size: clamp(24px, 2.5vw, 36px);
}

@media (min-width: 769px) {
    .section__addon .section__link {
        display: none;
    }
}

@media (max-width: 768px) {
    .section__heading .section__link {
        display: none;
    }

    .section__addon:not(.section__addon--no-stretch-button) .custom-button {
        width: 100%;
    }
}

/* slider */

.slider {
    width: min(var(--theme-page-width), calc(100vw - var(--theme-page-width-padding) * 2));
    position: relative;
}

.slider .swiper-slide {
    cursor: grab;
    height: auto;
}

.slider[data-slider-navigation-mode="none"] .slider__navigation {
    display: none;
}

.slider[data-slider-pagination-mode="none"] .slider__pagination {
    display: none;
}

.slider__navigation {
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    pointer-events: none;
}

.slider__navigation .slider__button {
    pointer-events: all;
}

.slider__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
}

.slider__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #e0eef6;
    margin: 0 !important;
}

.slider__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #2c8ebf;
}

.slider__button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 1px solid #aeb0b2;
    cursor: pointer;
    transition: border-color .3s ease, color .3s ease;
}

.slider__button.swiper-button-disabled {
    border-color: #d6d6d6;
    color: #d6d6d6;
}

@media (min-width: 769px) {
    .slider__navigation {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(50% - 16px);
        transform: translateY(-50%);
        z-index: 99999;
    }

    .slider[data-slider-desktop-slides="auto"] .swiper {
        overflow: hidden;
    }

    .slider[data-slider-desktop-slides="auto"] .swiper-slide {
        width: 400px !important;
    }

    .slider[data-slider-desktop-slides="auto"][data-slider-slides-auto-size="sm"] .swiper-slide {
        width: 220px !important;
    }

    .slider[data-slider-navigation-mode="all"],
    .slider[data-slider-navigation-mode="desktop"] {
        padding: 0 80px;
    }

    .slider[data-slider-navigation-mode="mobile"] .slider__navigation {
        display: none;
    }

    .slider[data-slider-pagination-mode="mobile"] .slider__pagination {
        display: none;
    }
}

@media (max-width: 768px) {
    .slider__navigation {
        margin-top: 24px;
    }

    .slider[data-slider-mobile-slides="auto"] .swiper {
        overflow: hidden;
    }

    .slider[data-slider-mobile-slides="auto"] .swiper-slide {
        width: 300px !important;
    }

    .slider[data-slider-desktop-slides="auto"][data-slider-slides-auto-size="sm"] .swiper-slide {
        width: 220px !important;
    }

    .slider[data-slider-navigation-mode="desktop"] .slider__navigation {
        display: none;
    }

    .slider[data-slider-pagination-mode="desktop"] .slider__pagination {
        display: none;
    }
}

/* preview product */

.preview-product {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.preview-product__img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 9 / 10;
    border-radius: 16px;
}

.preview-product__title {
    font-size: clamp(24px, 2vw, 32px);
}

.preview-product__link {
    margin-top: auto;
    border-radius: 9999px;
    padding: 12px 24px;
    font-size: clamp(20px, 1.5vw, 24px);
    font-weight: 500;
    background-color: #f56440;
    color: #fff;
    text-align: center;
    transition: opacity .3s ease;
}

.preview-product__link:hover {
    opacity: .8;
    color: #fff;
}

@media (max-width: 576px) {
    .preview-product__link {
        width: 100%;
    }
}

/* hotspot */

.hotspot {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 32px;
}

.hotspot__content {
    position: relative;
    max-width: 700px;
}

.hotspot__advantages {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hotspot__advantage {
    display: grid;
    align-content: start;
    justify-items: center;
    text-align: center;
    gap: 20px;
    background-color: #fff;
    border-radius: 16px;
    padding: 32px;
}

.hotspot__subtitle {
    font-size: 22px;
}

.hotspot__dot {
    --x: 0;
    --x-tooltip: 0;
    --y: 0;

    position: absolute;
    left: var(--x);
    top: var(--y);
    transform: translate(-50%, -50%);
    width: clamp(14px, 1.5vw, 20px);
    height: clamp(14px, 1.5vw, 20px);
    background-color: #f56440;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
}

.hotspot__dot:not(:hover) {
    z-index: 1;
    animation: hotspot-dot-animation 2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.hotspot__dot:not(:hover)::before {
    opacity: 0;
    pointer-events: none;
}

.hotspot__dot::before {
    content: attr(data-tooltip);
    position: absolute;
    top: 0;
    display: block;
    max-width: clamp(200px, 20vw, 300px);
    font-size: clamp(10px, 1vw, 16px);
    background-color: #f56440;
    color: #fff;
    padding: clamp(8px, 1vw, 14px);
    border-radius: 10px;
    font-weight: 500;
    transition: opacity .3s ease;
}

.hotspot__dot.hotspot__dot--position--left::before {
    left: 0;
    width: calc(100vw * (1 - var(--x-tooltip)) - var(--theme-page-width-padding) * .5);
}

.hotspot__dot.hotspot__dot--position--right::before {
    right: 0;
    width: calc(100vw * var(--x-tooltip) - var(--theme-page-width-padding));
}

@keyframes hotspot-dot-animation {
    from {
        box-shadow: 0 0 0 0 rgba(245, 149, 125, 1);
    }

    to {
        box-shadow: 0 0 0 clamp(6px, 1vw, 12px) rgba(245, 149, 125, 0);
    }
}

@media (min-width: 1399px) {
    .hotspot__advantage {
        position: absolute;
        max-width: 300px;
    }

    .hotspot__advantage:nth-child(1) {
        left: 0;
        bottom: 0;
    }

    .hotspot__advantage:nth-child(2) {
        left: 140px;
        top: 0;
    }

    .hotspot__advantage:nth-child(3) {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 768px) {
    .hotspot__advantages {
        grid-template-columns: 1fr;
    }
}

/* form block */

.form-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(42px, 6vw, 80px);
}

.form-block__content {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: clamp(24px, 2vw, 32px);
}

.form-block__img {
    margin-top: -3vw;
}

@media (max-width: 992px) {
    .form-block {
        grid-template-columns: 1fr;
    }

    .form-block__img {
        display: none;
    }
}

/* our advantages */

.our-advantages {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: clamp(20px, 2vw, 30px);
}

.our-advantages__heading {
    grid-column: span 2;
    padding: 32px 32px 0 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #f56440;
    color: #fff;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.our-advantages__heading::after {
    content: '';
    position: absolute;
    top: -25%;
    right: -60%;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #e0eef6;
    opacity: .1;
    z-index: -1;
}

.our-advantages__advantage {
    --bg: #fff;

    background-color: var(--bg);
    padding: clamp(16px, 2vw, 32px);
    border-radius: 16px;
}

.our-advantages__advantage.our-advantages__advantage--even {
    --bg: #f5f5f5;
}

.our-advantages__advantage.our-advantages__advantage--odd {
    --bg: #fff;
}

.our-advantages__title {
    white-space: nowrap;
}

.our-advantages__img {
    max-width: 220px;
    align-self: end;
}

.our-advantages__icon {
    margin-bottom: clamp(16px, 1.5vw, 24px);
}

.our-advantages__subtitle {
    font-size: clamp(22px, 2vw, 26px);
    margin-bottom: clamp(16px, 1.5vw, 8px);
}

.our-advantages__text {
    font-size: 16px;
}

@media (max-width: 992px) {
    .our-advantages {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: unset;
    }
}

@media (max-width: 576px) {
    .our-advantages {
        grid-template-columns: 1fr;
    }

    .our-advantages__heading {
        grid-column: unset;
        flex-direction: column-reverse;
        align-items: start;
    }

    .our-advantages__img {
        align-self: start;
        height: 220px;
        margin-bottom: -20%;
    }
}

/* marquee slider */

.marquee-slider {
    overflow: hidden;
    position: relative;
    height: 80px;
    mask-image: linear-gradient(to right, transparent 0%, white 10%, white 90%, transparent 100%);
}

.marquee-slider__track {
    display: flex;
    align-items: center;
    will-change: transform;
}

.marquee-slider__img {
    flex-shrink: 0;
    display: block;
    width: auto;
    max-height: 80px;
    object-fit: contain;
    margin: 0 20px;
    pointer-events: none;
    user-select: none;
}

/* about us */

.about-us {
    display: grid;
    grid-template-columns: 5fr 4fr;
    justify-items: center;
    align-items: center;
    gap: clamp(42px, 6vw, 80px);
}

.about-us__content {
    display: grid;
    align-content: start;
    gap: clamp(24px, 2vw, 32px);
}

@media (max-width: 992px) {
    .about-us {
        grid-template-columns: 1fr;
    }

    .about-us__img {
        width: 100%;
        max-width: 400px;
    }
}

/* certificate img */

.certificate-img {
    border-radius: 16px;
    border: 1px solid #dadada;
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    object-position: top;
}

/* production img */

.production-img {
    border-radius: 16px;
    object-fit: cover;
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
}

/* preview project */

.preview-project {
    height: 100%;
    display: grid;
    align-content: start;
    gap: clamp(16px, 1vw, 18px);
    transition: opacity .3s ease;
}

.preview-project:hover {
    opacity: .8;
}

.preview-project:hover .preview-project__title {
    text-decoration: underline;
}

.preview-project__img {
    width: 100%;
    aspect-ratio: 6 / 5;
    object-fit: cover;
    border-radius: 16px;
}

.preview-project__title {
    font-size: clamp(24px, 2vw, 32px);
}

.preview-project__text {
    font-size: 16px;
}

/* tab */

.tab {
    --gap: clamp(24px, 2vw, 32px);

    display: grid;
}

.tab__options {
    mask-image: linear-gradient(to right, white 80%, transparent 100%);
    overflow-x: auto;
    display: flex;
    gap: 12px;
    padding-bottom: calc(var(--gap) / 2);
    margin-bottom: calc(var(--gap) / 2);
}

.tab__option {
    --bg: transparent;
    --border: #f56440;
    --color: #f56440;

    flex-shrink: 0;
    background-color: var(--bg);
    border: 1px solid var(--border);
    padding: clamp(14px, 1vw, 16px) clamp(24px, 2vw, 32px);
    border-radius: 9999px;
    font-weight: 500;
    color: var(--color);
    text-align: center;
    cursor: pointer;
    user-select: none;
}

.tab__option.tab__option--active {
    --bg: #f56440;
    --border: #f56440;
    --color: #fff;

    pointer-events: none;
}

.tab__content:not(.tab__content--active) {
    display: none;
}

/* video review */

.video-review {
    height: 100%;
    display: grid;
    gap: 14px;
}

.video-review__src {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 16px !important;
}

.video-review__title {
    font-size: clamp(22px, 2vw, 26px);
}

/* callback */

.callback {
    display: grid;
    grid-template-columns: 5fr 4fr;
    gap: clamp(32px, 6vw, 80px);
}

.callback__heading {
    display: grid;
    align-content: start;
    gap: 8px;
}

@media (max-width: 992px) {
    .callback {
        grid-template-columns: 1fr;
    }
}

/* custom form */

.custom-form {
    display: grid;
    gap: clamp(16px, 1vw, 18px);
    font-size: clamp(14px, 1vw, 16px);
    transition: .3s ease opacity;
}

.custom-form.custom-form--loading {
    opacity: .4;
    pointer-events: none;
}

.custom-form__field {
    display: flex;
    flex-direction: column;
    gap: 5px 8px;
}

.custom-form__field.custom-form__field--inline {
    flex-direction: row-reverse;
    align-items: start;
}

.custom-form__label {
    flex-grow: 1;
}

.custom-form__label.custom-form__label--required::after {
    content: '*';
    padding-left: 4px;
    color: #ff0005;
}

.custom-form__input {
    padding: clamp(14px, 1vw, 16px);
    border: 1px solid #eaeaea;
    border-radius: 6px;
}

.custom-form__input.custom-form__input--readonly {
    pointer-events: none;
    color: #aeb0b2;
}

.custom-form__input::placeholder {
    color: #aeb0b2;
}

textarea.custom-form__input {
    min-height: 100px;
    max-height: 500px;
    resize: vertical;
}

.custom-form__checkbox {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid #afafaf;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-form__checkbox:checked::after {
    content: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.24154 7.12206C0.957513 6.83804 0.497033 6.83804 0.213011 7.12206C-0.0710038 7.40606 -0.0710038 7.86657 0.213011 8.15057L5.30392 13.2415C5.58794 13.5255 6.04842 13.5255 6.33244 13.2415L15.787 3.78694C16.071 3.50292 16.071 3.04244 15.787 2.75842C15.503 2.47441 15.0425 2.47441 14.7585 2.75842L5.81818 11.6987L1.24154 7.12206Z' fill='currentColor'/%3E%3C/svg%3E%0A");
    line-height: 0;
}

.custom-form__rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.custom-form__rating-input {
    display: none;
}

.custom-form__rating-star {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.custom-form__rating-input:checked ~ .custom-form__rating-star {
    color: #ccc;
}

.custom-form__rating-input:checked + .custom-form__rating-star,
.custom-form__rating-input:checked + .custom-form__rating-star ~ .custom-form__rating-star {
    color: #f5b301;
}

.custom-form__receptions {
    margin: 6px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-form__reception {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .custom-form .custom-button {
        width: 100%;
    }

    .custom-form__receptions {
        flex-direction: column;
    }
}

/* alert modal */

.alert-modal.fancybox-content {
    padding: 24px;
    min-width: 200px;
    border-radius: 16px;
    font-size: 18px;
    text-align: center;
}

/* custom modal */

.custom-modal.fancybox-content {
    display: grid !important;
    gap: clamp(24px, 2vw, 32px);
    padding: 70px clamp(16px, 6vw, 80px) clamp(32px, 3vw, 40px) clamp(16px, 6vw, 80px);
    border-radius: 16px;
    width: 620px;
    max-height: calc(100vh - 12px);
}

.custom-modal.fancybox-content .custom-modal__heading {
    display: grid;
    gap: 8px;
    text-align: center;
}

.custom-modal.fancybox-content .custom-modal__title {
    font-size: clamp(22px, 2vw, 32px);
}

.custom-modal.fancybox-content .custom-modal__text {
    font-size: clamp(14px, 1vw, 16px);
}

.custom-modal.fancybox-content .fancybox-close-small {
    top: 12px;
    right: clamp(16px, 3vw, 40px);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #f4f4f4;
}

.custom-modal.fancybox-content .fancybox-close-small svg path {
    fill: #3a3a3a;
}

/* custom header */

.custom-header {
    background-color: #f5f5f5;
    font-size: 15px;
    transition: .3s ease opacity;
}

.custom-header.custom-header--fixed {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    max-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    transition: .3s ease transform;
}

.custom-header.custom-header--fixed:not(.custom-header--visible) {
    transform: translateY(-100%);
}

.custom-header__search-form {
    flex-basis: 500px;
}

.custom-header__info {
    display: flex;
    align-items: end;
    gap: 12px;
    padding-top: 16px;
}

.custom-header__actions {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1vw, 20px);
    padding: 16px 0;
    transition: .3s ease opacity;
}

.custom-header__categories {
    display: flex;
    gap: clamp(16px, 1.5vw, 24px);
    padding: 16px 0;
}

.custom-header__mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 24px 0 60px 0;
    position: relative;
}

.custom-header__mobile::before {
    content: '';
    position: absolute;
    left: calc(var(--theme-page-width-padding) * -1);
    right: 0;
    bottom: 0;
    width: calc(100% + var(--theme-page-width-padding) * 2);
    height: 1px;
    background-color: #d6d6d6;
}

.custom-header__columns {
    display: grid;
    align-content: start;
    gap: 20px;
}

.custom-header__columns.custom-header__columns--left {
    justify-items: start;
}

.custom-header__columns.custom-header__columns--right {
    justify-items: end;
}

.custom-header__columns.custom-header__columns--sm {
    gap: 10px;
}

.custom-header__columns.custom-header__columns--fill {
    grid-column: span 2;
}

.custom-header__nav {
    margin-right: auto;
    display: flex;
    gap: 12px;
}

.custom-header__logo {
    flex-basis: 160px;
}

.custom-header__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.custom-header__link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: .3s ease opacity;
}

.custom-header__link:hover {
    opacity: .6;
}

.custom-header__link.custom-header__link--bold {
    font-weight: 500;
}

.custom-header__small-text {
    font-size: 13px;
}

.custom-header__slogan {
    margin-right: auto;
}

.custom-header__icon {
    height: 12px;
    aspect-ratio: 1;
    background-color: #3a3a3a;

    mask-image: var(--icon);
    -webkit-mask-image: var(--icon);
    mask-size: cover;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
}

.custom-header__no-shrink {
    flex-shrink: 0;
}

.custom-header__floating-search {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 6px;
    overflow: hidden;
    z-index: 1;
    transition: .3s ease opacity;
}

.custom-header__floating-search:not(.custom-header__floating-search--active) {
    opacity: 0;
    pointer-events: none;
}

@media (min-width: 1501px) {
    .custom-header__hamburger {
        display: none !important;
    }

    .custom-header__search-button {
        display: none;
    }

    .custom-header__mobile {
        display: none;
    }

    .custom-header__floating-search {
        display: none;
    }
}

@media (max-width: 1500px) {
    .custom-header.custom-header--active {
        background-color: #f5f5f5;
    }

    .custom-header {
        background-color: #fff;
    }

    .custom-header.custom-header--fixed {
        background-color: rgba(255, 255, 255, .8);
        backdrop-filter: saturate(160%) blur(12px);
    }

    .custom-header__info {
        justify-content: space-between;
    }

    .custom-header__categories {
        display: none;
    }

    .custom-header__actions {
        position: relative;
    }

    .custom-header__actions::before {
        content: '';
        position: absolute;
        left: calc(var(--theme-page-width-padding) * -1);
        right: 0;
        bottom: 0;
        width: calc(100% + var(--theme-page-width-padding) * 2);
        height: 1px;
        background-color: #d6d6d6;
    }

    .custom-header__nav {
        display: none;
    }

    .custom-header .custom-header__search-form {
        display: none;
    }

    .custom-header__actions .custom-header__price-list {
        display: none;
    }

    .custom-header__actions .custom-header__order-call {
        display: none;
    }

    .custom-header__info .custom-header__email {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .custom-header__info {
        display: none;
    }

    .custom-header__slogan {
        display: none;
    }

    .custom-header__catalog {
        margin-left: auto;
    }
}

@media (max-width: 576px) {
    .custom-header__mobile {
        grid-template-columns: 1fr;
    }

    .custom-header__columns {
        justify-items: start !important;
    }
}

/* search form */

.search-form {
    display: flex;
    background-color: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.search-form__input {
    padding: 12px 14px;
    margin: 0;
    border: none;
    background-color: transparent;
    width: 100%;
}

.search-form__input::placeholder {
    color: #626262;
}

.search-form__button {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
    border: none;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    aspect-ratio: 1;
    transition: .3s ease background-color;
}

.search-form__button:hover {
    background-color: #fafafa;
}

/* hamburger */

.hamburger {
    width: 30px;
    display: grid;
    gap: 6px;
}

.hamburger.hamburger--active .hamburger__line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.hamburger--active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.hamburger--active .hamburger__line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hamburger__line {
    background-color: #000;
    height: 3px;
    border-radius: 9999px;
    transition: .3s ease transform, .3s ease opacity;
}

/* sentinel */

.sentitel {
    height: 1px;
}

/* custom footer */

.custom-footer {
    padding: clamp(30px, 3vw, 40px) 0 30px 0;
    background-color: #181818;
    color: #aeb0b2;
    font-size: 16px;
}

.custom-footer__wrapper {
    display: grid;
    gap: clamp(30px, 3.5vw, 50px);
}

.custom-footer__content {
    display: grid;
    gap: 30px clamp(30px, 6vw, 80px);
}

.custom-footer__copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
    color: #7d7e80;
}

.custom-footer__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-footer__list.custom-footer__list--feedback {
    position: relative;
}

.custom-footer__subtitle {
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
}

.custom-footer__link {
    font-weight: 500;
    color: #fff !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    --underline-opacity: 0% !important;
    --text-opacity: 100% !important;
    transition: .3s ease opacity;
}

.custom-footer a:not(.custom-button) {
    color: #fff !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    --underline-opacity: 0% !important;
}

.custom-footer__link:hover {
    opacity: .8;
    color: #fff !important;
}

a.custom-footer__item:hover {
    text-decoration: underline;
}

@media (min-width: 1201px) {
    .custom-footer__content {
        grid-template-columns: 1fr repeat(4, auto);
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .custom-footer__content {
        grid-template-columns: repeat(3, auto);
    }

    .custom-footer__copyright {
        justify-content: space-around;
    }

    .custom-footer__list--feedback {
        grid-column: span 3;
    }

    .custom-footer__list--feedback .custom-footer__order-call {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (min-width: 0px) and (max-width: 768px) {
    .custom-footer__content {
        grid-template-columns: 1fr;
    }

    .custom-footer__copyright {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .custom-footer__list--feedback .custom-footer__subtitle {
        order: -1;
        margin-bottom: 0;
    }

    .custom-footer__list--feedback .custom-footer__order-call {
        order: -1;
        width: 100%;
    }

    .custom-footer__subtitle {
        margin-bottom: 0;
    }
}

/* socials */

.socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.socials__item {
    display: flex;
    border-radius: 50%;
    overflow: hidden;
    transition: .3s ease opacity;
}

.socials__item:hover {
    opacity: .8;
}

.socials__item img {
    height: 32px;
    width: 32px;
    display: block;
    background-color: transparent;
    object-fit: contain;
}

.socials__item img.whats {
    background-color: #aeb0b2;
    border-radius: 50%;
}

/* not found icon */

.not-found-icon {
    max-width: 100%;
}

/* inline row */

.inline-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: clamp(12px, 2vw, 24px);
}

.inline-row--center {
    justify-content: center;
}

/* featured product */

.featured-product {
    height: 100%;
    display: grid;
    align-content: start;
    gap: 12px;
    transition: .3s ease opacity;
}

.featured-product:hover {
    opacity: .8;
}

.featured-product:hover .featured-product__title {
    text-decoration: underline;
}

.featured-product__img {
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.featured-product__title {
    font-size: clamp(16px, 1vw, 18px);
}

.featured-product__price {
    font-weight: 500;
    font-size: clamp(16px, 1vw, 18px);
}

/* custom editor */

.custom-editor {
    display: grid;
    gap: 20px;
}

.custom-editor * {
    margin: 0;
}

.custom-editor img {
    border-radius: 8px;
}

.custom-editor ol li {
    list-style-position: outside;
    padding-left: 5px;
    margin-left: 20px;
}

.custom-editor table,
.custom-editor table th,
.custom-editor table td {
    border: 1px solid #dedede;
    padding: 12px;
}

.custom-editor table {
    border-collapse: collapse;
}

/* product detail */

.product-detail {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "slider heading order"
        "slider info order"
    ;
    gap: 24px clamp(30px, 3vw, 40px);
    font-size: 14px;
}

.product-detail__slider {
    grid-area: slider;
    display: flex;
    gap: 20px;
}

.product-detail__slider .swiper {
    width: 100%;
    height: 100%;
}

.product-detail__slider .swiper-slide {
    height: auto;
}

.product-detail__previews {
    width: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.product-detail__previews .swiper-slide.swiper-slide-thumb-active .product-detail__img {
    border: 2px solid #222228;
}

.product-detail__main {
    border-radius: 6px;
    overflow: hidden;
    width: calc(100% - 100px);
}

.product-detail__img {
    border-radius: 6px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
}

.product-detail__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #f0f0f0;
    margin: 0 !important;
}

.product-detail__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #f56440;
}

.product-detail__heading {
    grid-area: heading;
    display: grid;
    gap: 12px;
    border-bottom: 1px solid #ebebef;
    padding-bottom: 24px;
}

.product-detail__info {
    grid-area: info;
    display: grid;
    gap: clamp(20px, 2vw, 24px);
}

.product-detail__data {
    display: grid;
    align-content: start;
    gap: 8px;
}

.product-detail__item {
    display: flex;
    gap: 8px;
}

.product-detail__item .product-detail__dash {
    flex-grow: 1;
}

.product-detail__dash {
    background-image: linear-gradient(to right, rgba(34, 34, 40, .48) 10%, transparent 0%);
    background-position: center 80%;
    background-size: 8px 1px;
    background-repeat: repeat-x;
}

.product-detail__order {
    grid-area: order;
    display: grid;
    gap: clamp(20px, 1.5vw, 24px);
}

.product-detail__card {
    display: grid;
    gap: 10px;
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid #ebecef;
}

.product-detail__order-button {
    font-size: clamp(16px, 1vw, 18px);
}

.product-detail__title {
    font-size: clamp(22px, 2vw, 26px);
}

.product-detail__subtitle {
    font-weight: 600;
    font-size: clamp(18px, 1vw, 20px);
}

.product-detail__price {
    font-weight: 500;
    font-size: clamp(18px, 1vw, 20px);
}

.product-detail__text.product-detail__text--md {
    font-size: 15px;
}

.product-detail__text.product-detail__text--sm {
    font-size: 13px;
}

.product-detail__text.product-detail__text--muted {
    color: rgba(34, 34, 40, .48);
}

.product-detail__text.product-detail__text--bold {
    font-weight: 500;
}

.product-detail__text.product-detail__text--underline {
    text-decoration: underline;
}

.product-detail__text.product-detail__text--underline.product-detail__text--underline--dotted {
    text-decoration-style: dotted;
    text-decoration-color: #afafaf;
}

.product-detail__link {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s ease opacity;
}

.product-detail__link:hover {
    opacity: .8;
}

.product-detail__line {
    width: 100%;
    background-color: #ebecef;
    height: 1px;
}

.product-detail__spaced {
    margin: clamp(8px, 1vw, 14px) 0;
}

@media (min-width: 1401px) {
    .product-detail__slider {
        width: 30vw;
        height: 25vw;
    }

    .product-detail__pagination {
        display: none;
    }
}

@media (max-width: 1400px) {
    .product-detail {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        grid-template-areas:
            'heading'
            'slider'
            'order'
            'info'
        ;
    }

    .product-detail__slider {
        width: min(var(--theme-page-width), calc(100vw - var(--theme-page-width-padding) * 2));
        flex-direction: column;
    }

    .product-detail__previews {
        display: none;
    }

    .product-detail__main {
        width: 100%;
    }

    .product-detail__heading {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .product-detail__order-button {
        width: 100%;
    }
}

@media (min-width: 730px) and (max-width: 1400px){
	.product-detail__slider {
		width: 40vh;
		flex-direction: column;
	}
	.product-detail {
		display: grid;
		grid-template-columns: auto auto;
		grid-template-rows: auto auto auto;
		grid-template-areas:
    "slider heading"
    "slider info"
    "slider order";
		gap: 24px clamp(30px, 3vw, 40px);

		font-size: 14px;
	}
}
/* custom spoiler */

.custom-spoiler__button {
    cursor: pointer;
}

.custom-spoiler__content {
    display: none;
}

/* custom badge */

.custom-badge {
    padding: 5px 10px;
    border-radius: 6px;
    border: 1px solid #ebecef;
    color: #b8b8b9;
}

/* custom catalog */

.custom-catalog {
    display: grid;
    grid-template-columns: 260px 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        'categories sort'
        'categories list'
    ;
    gap: clamp(24px, 3vw, 30px) clamp(24px, 3vw, 40px);
}

.custom-catalog__categories {
    grid-area: categories;
    font-size: 15px;
    display: grid;
    align-content: start;
    gap: 16px;
}

.custom-catalog__category {
    padding: 8px 12px;
    border-radius: 6px;
}

.custom-catalog__category.custom-catalog__category--active {
    background-color: #f3f4f7;
    font-weight: 500;
}

.custom-catalog__subtitle {
    font-weight: 500;
}

.custom-catalog__sort {
    grid-area: sort;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.custom-catalog__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding: 10px 28px 10px 20px;
    font-size: 14px;
    color: inherit;
    border: 1px solid #ebecef;
    border-radius: 6px;
    line-height: 1;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 5px auto;
    transition: .3s ease opacity;
}

.custom-catalog__select:hover {
    opacity: .8;
}

.custom-catalog__input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding: 10px 20px;
    font-size: 14px;
    color: inherit;
    border: 1px solid #ebecef;
    border-radius: 6px;
    line-height: 1;
}

.custom-catalog__input.custom-catalog__input--readonly {
    pointer-events: none;
}

.custom-catalog__view {
    margin-left: auto;
}

.custom-catalog__list {
    grid-area: list;
}

.custom-catalog__img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 16px;
}

.custom-catalog__product-title {
    font-weight: 600;
    font-size: clamp(20px, 1.5vw, 22px);
}

.custom-catalog__price {
    font-weight: 500;
    font-size: clamp(18px, 1.5vw, 24px);
}

.custom-catalog__list.custom-catalog__list--view--tile {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: clamp(32px, 3vw, 40px) 18px;
}

.custom-catalog__item.custom-catalog__item--type--tile {
    display: grid;
    align-content: start;
    gap: 12px;
    transition: opacity .3s ease;
}

.custom-catalog__item.custom-catalog__item--type--tile:hover {
    opacity: .8;
}

.custom-catalog__list.custom-catalog__list--view--list {
    display: grid;
    gap: 32px;
}

.custom-catalog__item.custom-catalog__item--type--list {
    display: grid;
    grid-template-columns: minmax(150px, 1fr) 4fr;
    grid-template-rows: repeat(3, auto);
    align-items: center;
    grid-template-areas:
        'img title'
        'img price'
        'img button'
    ;
    gap: 18px;
    transition: opacity .3s ease;
}

.custom-catalog__item.custom-catalog__item--type--list:hover {
    opacity: .8;
}

.custom-catalog__item.custom-catalog__item--type--list .custom-catalog__img {
    grid-area: img;
}

.custom-catalog__item.custom-catalog__item--type--list .custom-catalog__product-title {
    grid-area: title;
    align-self: end;
}

.custom-catalog__item.custom-catalog__item--type--list .custom-catalog__price {
    grid-area: price;
    align-self: start;
}

.custom-catalog__item.custom-catalog__item--type--list .custom-catalog__button {
    grid-area: button;
    align-self: start;
}

.custom-catalog__pagination {
    margin-top: clamp(32px, 3.5vw, 50px);
}

@media (min-width: 993px) {
    .custom-catalog__pagination {
        grid-column: 2 / 3;
    }
}

@media (max-width: 992px) {
    .custom-catalog {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        grid-template-areas:
            'categories'
            'sort'
	        'list'
        ;
    }

    .custom-catalog__categories {
        display: flex;
        align-items: center;
        overflow-x: auto;
        mask-image: linear-gradient(to right, white 80%, transparent 100%);
    }

    .custom-catalog__category {
        flex-shrink: 0;
        padding: 12px 18px;
    }

    .custom-catalog__categories .custom-catalog__subtitle {
        display: none;
    }

    .custom-catalog__categories .custom-catalog__consult-banner {
        display: none;
    }
}

@media (max-width: 768px) {
    .custom-catalog__sort {
        flex-direction: column;
        align-items: stretch;
    }

    .custom-catalog__view {
        margin-left: unset;
        order: -1;
    }

    .custom-catalog__item.custom-catalog__item--type--tile .custom-catalog__button {
        width: 100%;
    }
}

/* consult banner */

.consult-banner {
    background-size: cover;
    background-position: right top;
    border-radius: 12px;
    display: grid;
    gap: 12px;
    padding: clamp(20px, 3vw, 30px) clamp(20px, 2vw, 24px);
    color: #fff;
    text-align: center;
}

.consult-banner__title {
    font-size: clamp(20px, 1.5vw, 24px);
    text-transform: uppercase;
}

/* segmented */

.segmented {
    display: flex;
    align-items: center;
    gap: 4px;
}

.segmented__item {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    transition: opacity .3s ease;
}

.segmented__item:not(.segmented__item--active):hover {
    opacity: .6;
    cursor: pointer;
}

.segmented__item.segmented__item--active {
    background-color: #f3f4f7;
    pointer-events: none;
}

/* custom pagination */

.custom-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(12px, 2vw, 32px);
    font-size: clamp(14px, 1vw, 16px);
}

.custom-pagination__list {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
}

.custom-pagination__button {
    width: clamp(42px, 4vw, 58px);
    height: clamp(42px, 4vw, 58px);
    border-radius: 50%;
    border: 1px solid #aeb0b2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity .3s ease;
}

.custom-pagination__icon {
    width: 10px;
    height: 14px;
    display: block;
}

.custom-pagination__button:not(.custom-pagination__button--disabled):hover {
    opacity: .6;
}

.custom-pagination__button.custom-pagination__button--disabled {
    opacity: .4;
    pointer-events: none;
}

.custom-pagination__item {
    width: clamp(42px, 4vw, 58px);
    height: clamp(42px, 4vw, 58px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: opacity .3s ease;
}

.custom-pagination__item:not(.custom-pagination__item--active):hover {
    opacity: .6;
}

.custom-pagination__item.custom-pagination__item--active {
    background-color: #ff0005;
    color: #fff;
    pointer-events: none;
}

/* breadcrumbs */

.breadcrumbs {
    margin-top: 40px;
    margin-bottom: 30px;
}

/* NOTE @alexei снеси этот ужас и раскидывай стили нормально. разделял же комментариями каждую сущность */
.custom-editor ol li {
    list-style-position: outside;
    padding-left: 5px;
    margin-left: 20px;
}
.layout.layout--left-column-.flex-1 {
    overflow-x: visible;
}
.video-review__src {
    aspect-ratio: auto;
}
.hotspot__dot:nth-child(1):before {
   opacity: 1;
}
label.custom-form__label a {
    text-decoration: underline;
}
div#nca-cookiesaccept-line {
    z-index: 100000000000000;
    background: #f56740;
    line-height: 24px;
    font-size: 15px;
}

button#nca-cookiesaccept-line-accept-btn {
    padding: 5px 25px;
    width: 150px;
}
.page_pr .section__heading.section__heading--center {
    display: none;
}
.page_pr .slider {
    margin-bottom: 40px;
}
.product-detail__item {
    width: 68%;
}
a:hover {
    text-decoration: underline;
}
.group_description_block a {
    color: #f47055;
}
.part_1_kpi {
    margin-right: 14px;
    transition: all 0.5s ease-out;
}

.part_2_kpi {
    margin-right: 10px;
    transition: all 0.5s ease-out;
}

.part_3_kpi {
    transition: all 0.5s ease-out;
    opacity: 0;
}

.logo_kpi_bottom {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    margin-top: 3px;
}

.logo_kpi {
    transform: scale(0.8);
    transition: all 0.5s ease-out;
    opacity: 0.6;
    overflow: hidden;
    margin-top: 20px;
    margin-left: -20px;
}

.logo_kpi:hover {
    opacity: 1;
}

.logo_kpi_img {
    transform: translate(-39px, 0px);
    transition: all 0.5s ease-out;
}

.logo_kpi:hover .logo_kpi_img {
    transform: translate(0px, 0px);
}

.logo_kpi:hover .part_3_kpi {
    opacity: 1;
}

@media (max-width: 768px) {

.nca-cookiesaccept-line > div {
    flex-direction: column;
}
.nca-cookiesaccept-line-text {
    margin-bottom: 10px;
    font-size: 10px;
    line-height: 15px;
}

button#nca-cookiesaccept-line-accept-btn {
    font-size: 12px;
    padding: 5px 15px;
}
}

        .accordion-item {
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 10px;
        }
        
        .accordion-question {
            padding: 15px 40px 15px 15px;
            cursor: pointer;
            position: relative;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
        }
        
        .accordion-question:hover {
            background-color: #f9f9f9;
        }
        
        .accordion-question::after {
            content: '+';
            font-size: 22px;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s ease;
        }
        
        .accordion-item.active .accordion-question::after {
            content: '-';
            transform: translateY(-50%) rotate(0deg);
        }
        
        .accordion-answer {
            padding: 0 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            background-color: #f9f9f9;
            border-radius: 0 0 5px 5px;
        }
        
        .accordion-item.active .accordion-answer {
            max-height: 1000px;
            padding: 15px;
        }
        
        @media (max-width: 600px) {

            .accordion-question {
                font-size: 16px;
                padding: 12px 35px 12px 12px;
            }
        }


.drag-block.container.CUSTOM_REVIEWS .slider__navigation {
    display: flex;
}

.drag-block.container.CUSTOM_REVIEWS .slider__navigation {
    left: -70px;
    right: -70px;
}

video.video-review__src {
    width: 85%;
    height: 520px;
}

.drag-block.container.CUSTOM_PRODUCTS_LIST .slider__navigation {
    top: 40%;
    left: -70px;
    right: -70px;
}

a.custom-catalog__item.custom-catalog__item--type--tile .product-detail__item {
    width: 95%;
    font-size: 15px;
}

.main-wrapper.flexbox.flexbox--direction-row .section-content-wrapper.flex-1 .text_before_items {
    order: 2;
    padding-top: 30px;
}

.main-wrapper.flexbox.flexbox--direction-row .section-content-wrapper.flex-1 {
    display: grid;
}
.services-detail__bottom-info.flexbox.gap.gap--48 .slider {
    width: 100%;
}
.services-detail__bottom-info.flexbox.gap.gap--48 .maxwidth-theme {
    padding-left: 0;
}
/* Custom Component Styles */
.custom-container {
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	padding: 40px;
	width: 100%;
}

.custom-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.custom-title {
	font-size: 30px;
	font-weight: bold;
	text-transform: uppercase;
	color: #333333;
	margin-bottom: 24px;
	line-height: 1.3;
}

.custom-subtitle {
	font-size: 18px;
	font-weight: 400;
	color: #555555;
	margin-bottom: 16px;
}

.custom-list {
	list-style: none;
	counter-reset: custom-counter;
	margin-bottom: 32px;
}

.custom-list-item {
	position: relative;
	padding-left: 20px;
	margin-bottom: 7px;
	font-size: 15px;
	line-height: 1.5;
	color: #444444;
}

.custom-list-item::before {
	counter-increment: custom-counter;
	content: counter(custom-counter) ".";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 600;
	color: #333333;
}

.custom-button {
	display: inline-block;
	background-color: #e30613;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	padding: 16px 32px;
	border-radius: 50px;
	text-align: center;
	transition: background-color 0.3s ease, transform 0.2s ease;
	width: fit-content;
	border: none;
	cursor: pointer;
	font-size: 16px;
}

.custom-button:hover {
	background-color: #c20510;
	transform: translateY(-2px);
}

.custom-gallery {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
}

.custom-image-wrapper {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

.custom-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.custom-image-wrapper:hover .custom-image {
	transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 900px) {
	.custom-container {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.custom-gallery {
		height: auto;
		order: 1; /* Images on top on mobile if desired, or remove to keep bottom */
	}
	
	.custom-image-wrapper {
		height: 250px;
	}
}
.custom-banner {
background: linear-gradient(90deg, #FF6B4A 0%, #FF8C6E 100%);
border-radius: 20px;
padding: 30px 40px 30px 30px;
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
min-height: 180px;
position: relative;
overflow: hidden;
color: #ffffff;
}

.custom-content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 18px 30px;
z-index: 2;
padding-right: 280px;
}

.custom-item {
display: flex;
align-items: flex-start;
gap: 12px;
}

.custom-icon-wrapper {
flex-shrink: 0;
width: 22px;
height: 22px;
background-color: rgba(255, 255, 255, 0.3);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-top: 2px;
}

.custom-icon {
width: 12px;
height: 12px;
fill: #ffffff;
}

.custom-text {
font-size: 14px;
line-height: 1.4;
font-weight: 400;
}

.custom-blueprint-image {
position: absolute;
right: 0px;
top: 53%;
transform: translateY(-50%);
width: 317px;
height: auto;
z-index: 1;
pointer-events: none;
}

@media (max-width: 768px) {
.custom-banner {
	padding: 25px 20px;
	min-height: auto;
	flex-direction: column;
	align-items: flex-start;
}

.custom-content-grid {
	grid-template-columns: 1fr;
	gap: 14px;
	padding-right: 0;
	width: 100%;
}

.custom-blueprint-image {
	position: relative;
	right: auto;
	top: auto;
	transform: none;
	width: 180px;
	margin-top: 20px;
	align-self: flex-end;
}
}