.page-catalog {
    padding: 0;
    color: var(--text);
    overflow-y: hidden;
}

.breadcrumbs {
    margin: 12px 0 0;
    position: relative;
    z-index: 1;
}

.breadcrumbs__list {
    list-style: none;
    border-top: 1px solid #EAEAEA;
    padding: 12px 0 0;
    margin: 0;
    display: flex;
    gap: 6px;
    align-items: center;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
}

.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs__item:not(:last-child)::after {
    width: 17px;
    height: 17px;
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.7424 8.46606C10.7727 8.49611 10.7968 8.53185 10.8132 8.57123C10.8296 8.61061 10.838 8.65286 10.838 8.69552C10.838 8.73818 10.8296 8.78042 10.8132 8.8198C10.7968 8.85919 10.7727 8.89493 10.7424 8.92497L7.70458 11.9628C7.62408 12.0519 7.52632 12.1237 7.41723 12.1738C7.30813 12.2239 7.18999 12.2513 7.06998 12.2543C6.94996 12.2573 6.83059 12.2359 6.7191 12.1914C6.60762 12.1469 6.50636 12.0801 6.42147 11.9952C6.33658 11.9104 6.26984 11.8091 6.2253 11.6976C6.18076 11.5861 6.15936 11.4667 6.16239 11.3467C6.16542 11.2267 6.19283 11.1086 6.24294 10.9995C6.29305 10.8904 6.36482 10.7926 6.45389 10.7121L8.45757 8.69552L6.44096 6.67891C6.27638 6.51291 6.18354 6.28893 6.18242 6.05518C6.18273 5.88047 6.23472 5.70975 6.33184 5.56453C6.42896 5.4193 6.56687 5.30604 6.72821 5.23902C6.88956 5.17199 7.06712 5.15419 7.23855 5.18786C7.40999 5.22153 7.56764 5.30516 7.69165 5.42822L10.7424 8.46606Z' fill='%231D1D1B'/%3E%3C/svg%3E%0A");
}

.breadcrumbs__link {
    color: inherit;
    font-size: 14px;
}

.breadcrumbs__link:hover {
    text-decoration: underline;
}

.breadcrumbs__current {
    color: var(--black-color);
}

.catalog-categories-wrapper {
    padding: 48px 0;
}

.catalog-categories-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.catalog-categories-head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.catalog-categories-title {
    font-size: clamp(1.5rem, 1.1471rem + 1.1765vw, 2.25rem);
    font-weight: 500;
}

.catalog-categories-description {
    font-size: clamp(0.9375rem, 0.9081rem + 0.098vw, 1rem);
    max-width: 372px;
}

.catalog-categories-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(372px, 1fr));
    gap: 24px;
}

.catalog-category-item {
    padding: 24px;
    border-radius: 32px;
    background-color: #F6F7FA;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-decoration: none;
    color: inherit;
    transition: 300ms;
}

.catalog-category-item:hover {
    background-color: #fff;
    box-shadow: 0 0 100px -30px rgba(0, 0, 0, 0.25);
}

.catalog-category-item-icon {
    width: 100px;
    height: 100px;
}

.catalog-category-item-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.catalog-category-item-title {
    font-size: clamp(1.125rem, 1.0662rem + 0.1961vw, 1.25rem);
    font-weight: 600;
}

.catalog-category-item-small-text {
    font-size: 14px;
}

.section-industries {
    padding: 48px 0;
}

.section-industries-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.section-industries-title {
    margin: 0;
    font-size: clamp(1.5rem, 1.1471rem + 1.1765vw, 2.25rem);
    line-height: 1.15;
    font-weight: 600;
    color: #1d1d1b;
}

.section-industries-text {
    font-size: 17px;
    line-height: 1.35;
    color: #1d1d1b;
}

.section-industries-slider {
    margin-top: 48px;
    position: relative;
}

.section-industries-swiper {
    overflow: visible;
}

.section-industries-swiper .swiper-wrapper {
    align-items: stretch;
}

.section-industries-swiper .swiper-slide {
    height: auto;
}

.industry-card {
    position: relative;
    display: block;
    height: 100%;
    min-height: 220px;
    border-radius: 32px;
    background: var(--card-bg, #6b4a4b);
    padding: 24px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.industry-card-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.industry-card-thumb {
    position: absolute;
    right: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(50%);
    background-color: #ffffff21;
    width: 176px;
    height: 176px;
    border-radius: 999px;
    overflow: hidden;
    z-index: 1;
}

.industry-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.3;
    transition: opacity 240ms ease;
}

.industry-card:hover .industry-card-thumb img {
    opacity: 1;
}

.industry-card-btn-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 12px;
    background: #fff;
    border-radius: 50% 0 0;
    box-shadow: 1px 1px 4px #fff;
}

.industry-card-btn-wrapper:before {
    content: '';
    position: absolute;
    top: -32px;
    right: 0;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 32H0C17.6731 32 32 17.6731 32 0V32Z' fill='white'/%3E%3C/svg%3E%0A");
}

.industry-card-btn-wrapper:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -32px;
    width: 32px;
    height: 32px;
    background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 32H0C17.6731 32 32 17.6731 32 0V32Z' fill='white'/%3E%3C/svg%3E%0A");
}

.industry-card-btn {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #1d1d1b;
    display: grid;
    place-items: center;
}

.section-industries-progress {
    position: relative !important;
    margin-top: 24px !important;
}

.brands-slider {
    padding: 48px 0 124px;
}

.brands-slider__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 48px;
}

.brands-slider__copy {
    max-width: 720px;
}

.brands-slider__title {
    margin: 0;
    font-weight: 500;
    font-size: 36px;
    line-height: 130%;
    color: #1d1d1b;
}

.brands-slider__text {
    margin: 16px 0 0;
    font-weight: 400;
    font-size: 12px;
    line-height: 160%;
    color: #1d1d1b;
    max-width: 520px;
}

.brands-slider__swiper {
    overflow: hidden;
}

.brands-slider__slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content !important;
    height: auto !important;
}

.brands-slider__logo {
    max-height: 60px;
    width: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
}

.brands-slider__progress {
    margin-top: 48px;
    position: relative !important;
}

.brands-slider__progress.is-hidden {
    display: none;
}

@media (min-width: 768px) {

    .section-industries-swiper,
    .brands-slider__swiper,
    .brands-slider__progress {
        width: calc(100% + (100vw - 100%) / 2) !important;
        overflow: visible;
    }

    .section-industries-progress {
        display: none;
    }
}

@media (max-width:768px) {
    .breadcrumbs__list {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
    }

    .brands-slider {
        padding: 48px 0;
    }

    .catalog-categories-list {
        grid-template-columns: 1fr;
    }
}