

/* Start:/bitrix/templates/dresscode/components/dresscode/slider/sliderBanner/style.css?17854304238372*/
.slider-banner {
    --slider-banner-radius: 24px;
    --slider-banner-duration: 6000ms;
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-family: inherit;
}

.slider-banner--hero {
	margin-bottom: 40px;
}

.slider-banner,
.slider-banner * {
    box-sizing: border-box;
}

.slider-banner__viewport {
    position: relative;
    width: 100%;
    height: clamp(320px, 33vw, 430px);
    overflow: hidden;
    border-radius: var(--slider-banner-radius);
    /* background: #8b0912; */
    background-image: url('/bitrix/templates/dresscode/components/dresscode/slider/sliderBanner/assets/back_image.jpg');
    isolation: isolate;
}

.slider-banner__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-banner__slide {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition:
        opacity 0.55s ease,
        transform 0.75s ease,
        visibility 0s linear 0.55s;
}

.slider-banner__slide.is-active {
    z-index: 2;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    transition:
        opacity 0.55s ease,
        transform 0.75s ease,
        visibility 0s linear 0s;
}

.slider-banner__picture {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.slider-banner__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 340px;
    right: 45px;
    object-fit: cover;
    object-position: center;
    user-select: none;
    -webkit-user-drag: none;
    position: absolute;
}

.slider-banner__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(52, 0, 3, 0.68) 0%,
            rgba(52, 0, 3, 0.35) 34%,
            rgba(52, 0, 3, 0.05) 61%,
            rgba(52, 0, 3, 0) 78%);
}

.slider-banner__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: min(50%, 630px);
    height: 100%;
    padding: 55px 35px 86px 42px;
    color: #fff;
}

.slider-banner__title {
    max-width: 620px;
    margin: 0 0 24px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #fff;
    text-wrap: balance;
}

.slider-banner__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 11px 20px;
    border: 1px solid #fff;
    border-radius: 999px;
    background: #fff;
    color: #d0142c;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.slider-banner__button:hover {
    border-color: #d0142c;
    background: #d0142c;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

.slider-banner__button:focus-visible,
.slider-banner__arrow:focus-visible,
.slider-banner__pagination-item:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

.slider-banner__button-icon {
    flex: 0 0 auto;
    transition: transform 0.25s ease;
}

.slider-banner__button:hover .slider-banner__button-icon {
    transform: translateX(3px);
}

.slider-banner__disclaimer {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 5;
    padding: 3px 7px;
    border-radius: 8px;
    background: rgba(30, 10, 12, 0.55);
    color: rgba(255, 255, 255, 0.92);
    font-size: 9px;
    font-weight: 400;
    line-height: 1.2;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.slider-banner__controls {
    position: absolute;
    right: 24px;
    bottom: 18px;
    left: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 18px;
}

.slider-banner__pagination {
    display: grid;
    grid-template-columns: repeat(var(--slider-banner-count, 1), minmax(20px, 1fr));
    flex: 1 1 auto;
    gap: 8px;
    min-width: 0;
}

.slider-banner__pagination-item {
    position: relative;
    display: block;
    width: 100%;
    height: 18px;
    margin: 0;
    padding: 7px 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.slider-banner__pagination-line {
    position: relative;
    display: block;
    width: 100%;
    height: 3px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.28);
}

.slider-banner__pagination-progress {
    position: absolute;
    inset: 0;
    display: block;
    border-radius: inherit;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left center;
}

.slider-banner__pagination-item.is-complete .slider-banner__pagination-progress {
    transform: scaleX(1);
}

.slider-banner__pagination-item.is-active .slider-banner__pagination-progress {
    animation: sliderBannerProgress var(--slider-banner-duration) linear forwards;
}

.slider-banner.is-paused .slider-banner__pagination-item.is-active .slider-banner__pagination-progress {
    animation-play-state: paused;
}

.slider-banner__arrows {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 9px;
}

.slider-banner__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 50%;
    background: rgba(94, 0, 8, 0.34);
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
}

.slider-banner__arrow:hover {
    border-color: #fff;
    background: #fff;
    color: #d0142c;
    transform: scale(1.04);
}

@keyframes sliderBannerProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@media (max-width: 991px) {
    .slider-banner {
        --slider-banner-radius: 20px;
    }

	.slider-banner--hero {
		margin-bottom: 20px;
	}

    .slider-banner__viewport {
        height: clamp(330px, 43vw, 470px);
    }

    .slider-banner__content {
        width: 58%;
        padding-right: 20px;
        padding-left: 30px;
    }

    .slider-banner__title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .slider-banner {
        --slider-banner-radius: 18px;
    }


    .slider-banner__image {
        object-position: center bottom;
    }

    .slider-banner__shade {
        background:
            linear-gradient(180deg,
                rgba(57, 0, 5, 0.58) 0%,
                rgba(57, 0, 5, 0.18) 38%,
                rgba(57, 0, 5, 0.02) 62%,
                rgba(57, 0, 5, 0.14) 100%);
    }

    .slider-banner__content {
        justify-content: flex-start;
        width: 100%;
        height: 100%;
        padding: 46px 16px 90px;
    }

    .slider-banner__title {
        max-width: 340px;
        margin-bottom: 21px;
        line-height: 1.3;
    }

    .slider-banner__button {
        min-height: 44px;
        padding: 10px 19px;
        font-size: 13px;
    }

    .slider-banner__disclaimer {
        top: 8px;
        right: 8px;
    }

    .slider-banner__controls {
        right: 12px;
        bottom: 11px;
        left: 12px;
        gap: 10px;
    }

    .slider-banner__pagination {
        gap: 5px;
    }

    .slider-banner__pagination-line {
        height: 3px;
    }

    .slider-banner__arrows {
        display: none;
    }
}

@media (max-width: 420px) {

    .slider-banner__content {
        padding-top: 43px;
    }

    .slider-banner__title {
        max-width: 300px;
        font-size: 32px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .slider-banner__slide,
    .slider-banner__button,
    .slider-banner__button-icon,
    .slider-banner__arrow {
        transition: none;
    }

    .slider-banner__pagination-item.is-active .slider-banner__pagination-progress {
        animation: none;
        transform: scaleX(1);
    }
}
/* End */


/* Start:/bitrix/templates/dresscode/components/bitrix/catalog.section.list/agency.list/style.min.css?1784199334771*/
@media screen and (max-width:1300px){.services-banners-list .banner-elem .h2{font-size:18px;max-height:44px;line-height:22px}.services-banners-list .banner-elem .image{width:55%}.services-banners-list .banner-elem{height:190px}.services-banners-list .banner-elem .image img{max-height:190px}}@media screen and (max-width:1024px){.services-banners-list .banner-elem{height:160px}.services-banners-list .banner-elem .image img{max-height:160px}}@media screen and (max-width:800px){.services-banners-list .banner-elem .image{width:50%}}@media screen and (max-width:400px){.services-banners-list .banner-elem{height:150px}.services-banners-list .banner-elem .image img{max-height:150px}.services-banners-list .banner-elem .h2{font-size:16px;line-height:20px;max-height:40px}}
/* End */


/* Start:/bitrix/templates/dresscode/components/dresscode/products.by.filter/popular/style.css?17876473326391*/
.popular-products {
    margin-top: 100px;
}

.popular-products__title {
    color: #242527;
    font-size: 28px;
    font-weight: 600;
    line-height: 140%;
	font-family: Roboto, sans-serif;
}

.popular-products__viewport {
    overflow: hidden;
}

.popular-products__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.popular-products__track::-webkit-scrollbar {
    display: none;
}

.popular-products__slide {
    flex: 0 0 290px;
    padding: 40px 0px 39px;
}

.popular-product-card {
    height: 100%;
	height: calc(100% - 34px);
    padding: 16px;
    border: 1px solid #EEEAEA;
    border-radius: 18px;
    background: #fff;
    position: relative;
}

.popular-product-card:hover {
    box-shadow: 0 10px 20px 0 rgba(10, 19, 45, 0.10);
}

.popular-product-card__favorite {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 20px;
    height: 20px;
    z-index: 2;
}

.popular-product-card__image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    margin-bottom: 16px;
}

.popular-product-card__image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.popular-product-card__badges {
    display: flex;
    gap: 4px;
    min-height: 26px;
    margin-bottom: 16px;
}

.popular-product-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    height: 22px;
    padding: 2px 10px;
}

.popular-product-card__badge_stock {
    border-radius: 6px;
    background: #59C167;
}

.popular-product-card__badge_sale {
    border-radius: 6px;
    background: #D62300;
}

.popular-product-card__name {
    display: block;
    color: #332D2E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    text-decoration: none;
    margin-bottom: 16px;
}

.popular-product-card__price {
    margin-bottom: 12px;
}

.popular-product-card__old-price {
    color: #A4A8AE;
    font-size: 12px;
    line-height: 140%;
    text-decoration: line-through;
}

.popular-product-card__current-price,
.popular-product-card__current-price span {
    color: #332D2E;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.popular-product-card__request {
    display: flex;
    padding: 14px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    justify-self: stretch;
    border-radius: 32px;
    background: #C81938;
    color: #FFF;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.popular-product-card__request:hover {
    background: #96132A;
}

.popular-product-card__actions {
    display: grid;
    grid-template-columns: 1fr 44px 44px;
    gap: 12px;
    margin-top: 16px;
}

.popular-product-card__cart,
.popular-product-card__icon {
    min-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    justify-self: stretch;
    border-radius: 32px;
    border: 1px solid #EEEAEA;
    color: #332527;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.popular-product-card__actions .addCart.added {
    background: #fff !important;
    color: #C81938;
}

.popular-product-card__actions .addCart.added:hover {
    background: #fff !important;
}

.popular-product-card__icon::before {
    color: #2B2E33;
    font-size: 15px;
}

.popular-products__bottom {
    display: flex;
    align-items: center;
    gap: 16px;
}

.popular-products__line {
    flex: 1;
    height: 1px;
    background: #e6e6e6;
}

.popular-products__nav {
    display: flex;
    gap: 10px;
}

.popular-products__arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #eeeeee;
    padding: 4px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.popular-products__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-left: 1px solid #d93545;
    border-bottom: 1px solid #d93545;
    transform: translate(-35%, -50%) rotate(45deg);
}

.popular-products__arrow_next::before {
    transform: translate(-65%, -50%) rotate(225deg);
}

.popular-products__arrow.is-disabled {
    opacity: .4;
    pointer-events: none;
}

.popular-products__arrow.is-active {
    opacity: 1;
    background: #EEEAEA;
}

.popular-product-card__badge_new {
    background: #96132A;
    border-radius: 6px;
}

.popular-product-card__badge_discount {
    gap: 4px;
    background: #D62300;
    border-radius: 6px;
}

.popular-product-card__badge_discount svg {
    display: block;
    flex-shrink: 0;
}

.popular-product-card__favorite.added svg path {
    stroke: #C81938;
    fill: #C81938;
}

.popular-product-card__icon_compare.added svg path {
    stroke: #C81938;
}

.popular-product-card__icon {
    position: relative;
}

.popular-product-card__icon::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 75px;
    bottom: -50px;
    transform: translateX(-50%) translateY(8px);
    padding: 12px 16px;
    border-radius: 6px;
    background: #fff;
    color: #2B2E33;
    font-size: 14px;
    font-weight: 600;
    line-height: 140%;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 20;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.popular-product-card__icon:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.popular-product-card__icon_compare.added::after {
    color: #C81938;
}

@media (max-width: 768px) {
    .popular-products {
        margin-top: 48px;
        margin-bottom: 48px;
    }

    .popular-products__title {
        font-size: 22px;
    }

    .popular-products__slide {
        flex-basis: 260px;
    }

	.popular-product-card__price {
		margin-bottom: 8px;
	}

	.popular-product-card__current-price, .popular-product-card__current-price span {
		font-size: 16px;
	}

    /*.popular-product-card__actions {
        grid-template-columns: 100%;
    }*/

	.popular-products__bottom {
		display: none;
	}
}
/* End */


/* Start:/bitrix/templates/dresscode/components/bitrix/news.list/news/style.css?17876471733921*/
.catalog-news-slider {
    margin-top: 100px;
}

.catalog-news-slider__title {
    color: #242527;
    font-size: 28px;
    font-weight: 600;
    line-height: 140%;
	font-family: Roboto, sans-serif;
    margin-top: 0px;
    margin-bottom: 40px;
}

.catalog-news-slider__viewport {
    overflow: hidden;
}

.catalog-news-slider__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.catalog-news-slider__track::-webkit-scrollbar {
    display: none;
}

.catalog-news-slider__item {
    flex: 0 0 300px;
}

.catalog-news-card {
    display: block;
    color: #2B2E33;
    text-decoration: none;
    min-height: 300px;
}

.catalog-news-card__image {
    display: block;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #F6F4F4;
}

.catalog-news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.catalog-news-card__date {
    display: block;
    color: #8D94A3;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 20px;
}

.catalog-news-card__name {
    display: block;
    color: #332D2E;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    transition: color .2s ease;
}

.catalog-news-card__more {
    display: none;
    align-items: center;
    gap: 4px;
    color: #C81938;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}

.catalog-news-card__more i {
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.catalog-news-card:hover .catalog-news-card__image img {
    transform: scale(1.04);
}

.catalog-news-card:hover .catalog-news-card__name {
    color: #C81938;
}

.catalog-news-card:hover .catalog-news-card__more {
    display: inline-flex;
}

.catalog-news-slider__bottom {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.catalog-news-slider__all {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
    font-size: 16px;
    color: #2B2E33;
    font-weight: 700;
    text-decoration: none;
	font-family: robotomedium, sans-serif;
}

.catalog-news-slider__all span {
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.catalog-news-slider__line {
    flex: 1;
    height: 1px;
    background: #e6e6e6;
}

.catalog-news-slider__nav {
    display: flex;
    gap: 10px;
}

.catalog-news-slider__arrow {
    width: 40px;
    height: 40px;
    padding: 4px;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    position: relative;
}

.catalog-news-slider__arrow.is-active {
    background: #EEEAEA;
}

.catalog-news-slider__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-left: 1px solid #d93545;
    border-bottom: 1px solid #d93545;
    transform: translate(-35%, -50%) rotate(45deg);
}

.catalog-news-slider__arrow_next::before {
    transform: translate(-65%, -50%) rotate(225deg);
}

.catalog-news-slider__arrow.is-disabled {
    opacity: .45;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .catalog-news-slider__title {
        font-size: 24px;
    }

	.catalog-news-slider__nav {
		display: none;
	}

	.catalog-news-card__name {
		font-size: 14px;
		line-height: 20px;
	}

	.catalog-news-slider__bottom {
		margin-top: 27px;
	}
}

@media (max-width: 480px) {
    .catalog-news-slider__title {
        margin-bottom: 32px;
    }

    .catalog-news-slider__item {
        flex-basis: 230px;
    }
}
/* End */


/* Start:/bitrix/templates/dresscode/components/bitrix/news.list/ourClients/style.css?17876468183930*/
.our-clients {
	--our-clients-gap: 12px;
	--our-clients-item-width: 220px;
	width: 100%;
	margin-top: 80px;
}

.our-clients,
.our-clients * {
	box-sizing: border-box;
}

.our-clients__title {
	margin: 0 0 26px;
	padding: 0;
	color: #242527;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.4;
	font-family: Roboto, sans-serif;
}

.our-clients__viewport {
	position: relative;
	width: 100%;
	overflow: hidden;
}

/*
 * Небольшое плавное скрытие логотипов по краям.
 */
.our-clients__viewport::before,
.our-clients__viewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 3;
	width: 30px;
	pointer-events: none;
}

.our-clients__viewport::before {
	left: 0;
	background: linear-gradient(
		90deg,
		#fff 0%,
		rgba(255, 255, 255, 0) 100%
	);
}

.our-clients__viewport::after {
	right: 0;
	background: linear-gradient(
		270deg,
		#fff 0%,
		rgba(255, 255, 255, 0) 100%
	);
}

.our-clients__track {
	display: flex;
	align-items: stretch;
	gap: var(--our-clients-gap);
	width: max-content;
	overflow: visible;
	scroll-behavior: auto;
	scroll-snap-type: none;
	scrollbar-width: none;
	will-change: transform;
	transform: translate3d(0, 0, 0);
}

.our-clients__track::-webkit-scrollbar {
	display: none;
}

.our-clients__item {
	flex: 0 0 var(--our-clients-item-width);
	width: var(--our-clients-item-width);
	min-width: var(--our-clients-item-width);
}

.our-clients__card {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100px;
	padding: 14px;
	overflow: hidden;
	border-radius: 14px;
	background: #f7f4f4;
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		background-color 0.25s ease;
}

.our-clients__card:hover {
	background: #fff;
	transform: translateY(-2px);
	box-shadow: 0 8px 22px rgba(40, 20, 25, 0.08);
}

.our-clients__image {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 48px;
	object-fit: contain;
	object-position: center;
	user-select: none;
	-webkit-user-drag: none;
}

.our-clients__bottom {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 28px;
}

.our-clients__line {
	flex: 1 1 auto;
	height: 1px;
	background: #e8e5e5;
}

.our-clients__nav {
	display: flex;
	flex: 0 0 auto;
	gap: 9px;
}

.our-clients__arrow {
	position: relative;
	width: 40px;
	height: 40px;
	margin: 0;
	padding: 0;
	border: 1px solid #eeeaea;
	border-radius: 50%;
	background: #fff;
	cursor: pointer;
	transition:
		border-color 0.2s ease,
		background-color 0.2s ease,
		opacity 0.2s ease;
	appearance: none;
	-webkit-appearance: none;
}

.our-clients__arrow::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 6px;
	height: 6px;
	border-bottom: 1px solid #cf1f3d;
	border-left: 1px solid #cf1f3d;
	transform: translate(-35%, -50%) rotate(45deg);
}

.our-clients__arrow--next {
	background: #f0eded;
}

.our-clients__arrow--next::before {
	transform: translate(-65%, -50%) rotate(225deg);
}

.our-clients__arrow:hover {
	border-color: #cf1f3d;
	background: #fff;
}

.our-clients__arrow:active {
	transform: scale(0.96);
}

@media (max-width: 900px) {
	.our-clients {
		--our-clients-item-width: 130px;
	}

	.our-clients__card {
		padding: 12px;
	}
}

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

@media (max-width: 720px) {
	.our-clients {
		--our-clients-item-width: 120px;

		margin-top: 50px;
	}

	.our-clients__title {
		margin-bottom: 22px;
		font-size: 24px;
	}

	.our-clients__viewport::before,
	.our-clients__viewport::after {
		width: 16px;
	}
}

@media (max-width: 480px) {
	.our-clients {
		--our-clients-item-width: 110px;
		--our-clients-gap: 8px;
	}

	.our-clients__card {
		padding: 10px;
		border-radius: 12px;
	}

	.our-clients__image {
		max-height: 42px;
	}

	.our-clients__bottom {
		margin-top: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.our-clients__track {
		will-change: auto;
	}
}
/* End */
/* /bitrix/templates/dresscode/components/dresscode/slider/sliderBanner/style.css?17854304238372 */
/* /bitrix/templates/dresscode/components/bitrix/catalog.section.list/agency.list/style.min.css?1784199334771 */
/* /bitrix/templates/dresscode/components/dresscode/products.by.filter/popular/style.css?17876473326391 */
/* /bitrix/templates/dresscode/components/bitrix/news.list/news/style.css?17876471733921 */
/* /bitrix/templates/dresscode/components/bitrix/news.list/ourClients/style.css?17876468183930 */
