

/* Start:/local/templates/redesign/components/dresscode/catalog/services/style.css?17415924962028*/
.banner-elem.fullscreen-banner .image{
	vertical-align: bottom;
}
.banner-elem.fullscreen-banner .text-wrap{
	padding-left: 0;
}

@media screen and (max-width: 800px){
	.banner-elem.fullscreen-banner .btn-simple {
		padding: 13px 8px 11px;
	}

	.banner-elem.fullscreen-banner {
		height: 250px;
	}
	
	.banner-elem.fullscreen-banner .image img{
		max-height: 250px;
	}
}

@media screen and (max-width: 700px){
	.banner-elem.fullscreen-banner{
		height: auto;
		margin-bottom: 18px;
	}

	.banner-elem.fullscreen-banner .descr{
		max-height: 80px;
	}

	.banner-elem.fullscreen-banner .text-wrap{
		display: block;
		margin-bottom: 6px;
		padding: 12px 0 0;
	}

	.banner-elem.fullscreen-banner h1{
		margin-bottom: 8px;
		font-size: 18px;
	}

	.banner-elem.fullscreen-banner .image{
		display: block;
		width: 100%;
		padding: 0;
	}
	.banner-elem.fullscreen-banner .image img{
		max-height: 250px;
		margin: 0 auto;
	}
	.banner-elem.fullscreen-banner.banner-no-bg .image img{
		max-height: none;
	}
}

@media screen and (max-width: 500px){
	.banner-elem.fullscreen-banner .descr{
		display: block;
	}

	.banner-elem.fullscreen-banner h1{
		font-size: 16px;
		margin-bottom: 8px;
		line-height: 20px;
		max-height: 60px;
	}

	.banner-elem.fullscreen-banner .image img{
		max-height: 200px;
	}
}

.category-description__mobile-more {
	font-size: 12px;
	font-weight: 400;
	line-height: 150%;
	color: #007AFF;
	text-decoration: underline;
	display: none;
	cursor: pointer;
}
.category-description--short {
	display: none;
}
.category-description--short {
	margin: 12px 0 10px 0;
}
@media (max-width: 500px) {
	.category-description__mobile-more {
		display: inline-block;
	}
	.category-description--short.active,
	.category-description.active {
		display: block;
	}
	.category-description {
		display: none;
	}
	.category-description.hidden,
	.category-description--short.hidden {
		display: none;
	}
	.category-description,
	.category-description--short {
		font-size: 12px;
		font-weight: 400;
		color: #000;
		line-height: 150%;
	}
}
/* End */


/* Start:/local/templates/redesign/components/bitrix/catalog.section.list/services.main_new/style.css?17415924171472*/
.sections {
	margin-top: 40px;
	margin-bottom: 40px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.sections__item {
	display: flex;
	border-radius: 8px;
	text-decoration: none;
	overflow: hidden;
}
.sections__img {
	width: 140px;
	height: 90px;
	object-fit: cover;
}
.sections__text {
	padding: 11px 20px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	background-color: var(--grey);
	border-radius: 0 8px 8px 0;
	flex: 1;
}
.sections__title {
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 112%;
	color: #000;
}
.sections__count {
	margin-top: auto;
	font-family: var(--font-family);
	font-weight: 500;
	font-size: 12px;
	line-height: 140%;
	color: #595D84;
}

@media (max-width: 959px) {
	.sections {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 639px) {
	.sections {
		grid-template-columns: repeat(1, 1fr);
	}
}

@media (max-width: 500px) {
	.sections {
		margin-top: 20px;
		margin-bottom: 20px;

		gap: 8px;
		display: flex;
		flex-wrap: nowrap;
		overflow-x: scroll;
		overflow-y: hidden;
	}
	.sections::-webkit-scrollbar {
		width: 0;
		display: none;
	}
	.sections__img {
		display: none;
	}
	.sections__item {
		overflow: visible;
	}
	.sections__text {
		width: 190px;
		padding: 10px 8px;
		gap: 6px;
		border-radius: 8px;
	}
	.sections__title {
		font-size: 12px;
		font-weight: 500;
		color: #08090B;
		line-height: 120%;
	}
	.sections__count {
		font-size: 10px;
	}
}
/* End */


/* Start:/local/templates/redesign/components/bitrix/catalog.smart.filter/redesign/style.css?17604315914071*/
.smart {
	width: 300px;
}
.smart__item {
	padding: 20px 0;
	display: flex;
	flex-direction: column;
	border-top: 1px solid var(--grey-str);
	position: relative;
	overflow: hidden;
}
.smart__item:first-of-type {
	padding-top: 0;
	border-top: none;
}
.smart__title {
	font-family: var(--font-family);
	font-weight: 600;
	font-size: 16px;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: var(--h1-h5-color);

	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	cursor: pointer;
}
.smart__arrow {
	transition: transform 0.3s ease;
}
.smart__item.is-open .smart__arrow {
    transform: rotate(180deg);
}
.smart__wrapper {
	display: flex;
	flex-direction: column;
	gap: 14px;

	max-height: 0px;
	overflow-y: auto;
	box-sizing: border-box;
}
.smart__item.is-open {
	gap: 20px;
}
.smart__item.is-open .smart__wrapper {
    max-height: 202px; /* Достаточно большое значение для раскрытия */
}
/* .smart__wrapper::-webkit-scrollbar-button {
	appearance: none;
	display: none;
	height: 0;
	width: 0;
}
.smart__wrapper::-webkit-scrollbar-track {
	width: 4px;
	border-radius: 100px;
	background-color: #D9D9D9;
}
.smart__wrapper::-webkit-scrollbar-thumb {
	width: 4px;
	border-radius: 100px;
	background-color: #007AFF;
} */
.smart__wrapper::-webkit-scrollbar {
  width: 4px;
  border-radius: 100px;
  background-color: #D9D9D9;
}

.smart__wrapper::-webkit-scrollbar-thumb {
	width: 4px;
  border-radius: 100px;
  background-color: #007AFF;
}

.smart__wrapper::-webkit-scrollbar-track {
	width: 4px;
  border-radius: 100px;
  background-color: #D9D9D9;
}


.smart__checkbox {
	display: flex;
	align-items: center;
	gap: 16px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 16px;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: var(--text);

	/* padding-left: 37px; */
}
.smart__checkbox input[type="checkbox"] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	margin: 10px 0 0 20px;
}
.smart__checkbox.off {
	display: none;
}
.js-filter-name a {
	font-size: 16px;
	font-weight: 400;
	color: #000;
	line-height: 110%;
	text-decoration: none;

	padding: 1px 0 2px;
}
.js-filter-name {
	display: flex;
	align-items: center;
	gap: 15px;	
	cursor: pointer;
}
.js-filter-name:before {
	content: '';
	width: 20.4px;
	height: 20.4px;
	border-radius: 3px;
	border: 1px solid #D9D9D9;
}
.smart__checkbox input:checked + .js-filter-name:before {
	content: "";
	background-color: #007AFF;
	background-image: url("/local/templates/redesign/images/filter-mark.svg");
	background-size: 12px;
	background-position: center center;
	background-repeat: no-repeat;

	color: #fff;
	display: flex;
	justify-content: center;
}
.smart__more {
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 14px;
	line-height: 140%;
	letter-spacing: 0.02em;
	color: #595D84;
	text-decoration: none;
}
#modef {
    -webkit-transition: top .2s ease;
    -moz-transition: top .2s ease;
    -o-transition: top .2s ease;
    transition: top .2s ease;
   	position: absolute;
   	line-height: 38px;
   	padding-left: 7px;
   	text-align: center;
    font-size: 12px;
   	width: 193px;
   	height: 38px;
   	left: 100%;
    color: #fff;
    z-index: 99;
	background: #3d81fa;
}

#modef .close {
	background: url(/local/templates/redesign/components/bitrix/catalog.smart.filter/redesign/images/closeModef.png) 0 0 no-repeat;
    vertical-align: middle;
    display: inline-block;
    margin-right: 8px;
    margin-top: -2px;
    height: 12px;
    width: 12px;
}

#modef .close:hover {
	opacity: .8;
}


#modef .close:active {
	position: relative;
	top: 1px;
}

#modef_send {
	margin-left: 8px;
	color: #ffffff;
}

#modef_send:hover {
	opacity: 0.9;
}

#modef_num{
	display: inline-block;
}

#modef_send{
	display: inline-block;
}
#smartFilterControls {
	margin-top: 4px;

	display: flex;
	align-items: center;
}
#smartFilterControls > * {
	width: 50%;
}
#smartFilterControls * + * {
	margin-left: 8px;
}
#smartFilterControls #del_filter {
	background: #F4F4F6;
	color: #3D81FA;
}

@media (max-width: 1199px) {
	.smart {
		width: 100%;
	}
}
/* End */


/* Start:/local/templates/redesign/components/bitrix/system.pagenavigation/visual/style.css?1741155091607*/
.pagination {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pagination__item,
.pagination__arrow {
  display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 12px;
	font-family: var(--second-family);
	font-weight: 500;
	font-size: 16px;
	line-height: 125%;
	text-align: center;
	color: #595D84;
	text-decoration: none;
}
.pagination__item--active {
	background: #007aff;
	color: #fff;
}
.pagination__arrow {
	background: var(--grey);
	backdrop-filter: blur(4px);
}
.pagination__arrow--prev > svg {
  transform: rotate(180deg);
}
/* End */


/* Start:/local/templates/redesign/components/dresscode/catalog.section/redesign/style.css?1760206347414*/
.listing {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.listing__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 31px;
    row-gap: 31px;
}

@media (max-width: 959px) {
    .listing__wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .listing__wrapper {
        column-gap: 8px;
        row-gap: 8px;
    }
}
/* End */


/* Start:/local/templates/redesign/components/bitrix/news.list/sert/style.css?17449914601617*/
.reviews {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.reviews__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.section .reviews .h2 {
  margin: 0;
}
.reviews__arrows {
  position: relative;
  display: flex;
  gap: 8px;
}
.reviews__arrow {
  position: relative;
  top: 0;
  width: 44px;
  height: 44px;
  background: #cce4ff;
  transform: none;
  opacity: 1;
  transition-duration: 300ms;
}
.reviews__arrow:disabled {
  background: rgba(189, 189, 189, 0.2);
  opacity: 1;
  cursor: default;
}
.reviews__arrow--prev {
  left: 0;
}
.reviews__arrow--next {
  right: 0;
}
.reviews__arrow > svg {
  width: 24px;
  height: 24px;
  stroke: #007AFF;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-duration: 300ms;
}
.reviews__arrow:disabled > svg {
  stroke: #BDBDBD;
}
.reviews__slide {
  position: relative;
  padding: 14px;
  display: flex;
  align-items: flex-end;
  width: 300px;
  height: 534px;
  border-radius: 12px;
  overflow: hidden;
}
.reviews__name {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #fff;
}
@media (max-width: 767px) {
  .reviews__slide {
    padding: 12px;
    width: 258px;
    height: 460px;
  }
}
@media (max-width: 479px) {
  .reviews {
    padding-bottom: 60px;
    gap: 20px;
  }
  .reviews__arrows {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .reviews__arrow {
    width: 40px;
    height: 40px;
  }
}
/* End */


/* Start:/local/templates/redesign/components/bitrix/news.list/partners/style.css?17736465222449*/
.our_works {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.section.partners {
  margin: 70px 0 140px 0;
}

.partners__track.splide__track {
  min-height: unset !important;
}
.our_works__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.section .our_works .h2 {
  margin: 0;
}
.our_works__arrows {
  position: relative;
  display: flex;
  gap: 8px;
}
.our_works__arrow {
  position: relative;
  top: 0;
  width: 44px;
  height: 44px;
  background: #cce4ff;
  transform: none;
  opacity: 1;
  transition-duration: 300ms;
}
.our_works__arrow:disabled {
  background: rgba(189, 189, 189, 0.2);
  opacity: 1;
  cursor: default;
}
.our_works__arrow--prev {
  left: 0;
}
.our_works__arrow--next {
  right: 0;
}
.our_works__arrow > svg {
  width: 24px;
  height: 24px;
  stroke: #007AFF;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-duration: 300ms;
}
.our_works__arrow:disabled > svg {
  stroke: #BDBDBD;
}
.our_works__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 300px;
  transition: 0.3s ease; 
}
.our_works__slide img {
  display: flex;
  height: 380px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: height 0.3s ease;
}
.our_works__name {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
}

.our_works__slide.is-active {
  width: 410px;
}
.our_works__slide.is-active img {
  height: 519px;
}
/* .our_works__slide--big {
  width: 410px;
}
.our_works__slide--big img {
  height: 519px;
} */

.splide__track {
  min-height: 583px;
}
@media (max-width: 767px) {
  .our_works__slide {
    width: 258px;
  }
  .our_works__slide img {
    height: 460px;
  }
  .our_works__slide.is-active {
    width: 258px;
  }
  .our_works__slide.is-active img {
    height: 460px;
  }

  .splide__track {
    min-height: unset;
  }
}
@media (max-width: 479px) {
  .our_works {
    padding-bottom: 60px;
    gap: 20px;
  }
  .our_works__arrows {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .our_works__arrow {
    width: 40px;
    height: 40px;
  }
  .our_works__slide img {
    height: 326px;
  }
  .our_works__slide.is-active img {
    height: 326px;
  }
}
/* End */


/* Start:/local/templates/redesign/components/bitrix/news.list/our_work/style.css?17471342172324*/
.our_works {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.our_works__header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.section .our_works .h2 {
  margin: 0;
}
.our_works__arrows {
  position: relative;
  display: flex;
  gap: 8px;
}
.our_works__arrow {
  position: relative;
  top: 0;
  width: 44px;
  height: 44px;
  background: #cce4ff;
  transform: none;
  opacity: 1;
  transition-duration: 300ms;
}
.our_works__arrow:disabled {
  background: rgba(189, 189, 189, 0.2);
  opacity: 1;
  cursor: default;
}
.our_works__arrow--prev {
  left: 0;
}
.our_works__arrow--next {
  right: 0;
}
.our_works__arrow > svg {
  width: 24px;
  height: 24px;
  stroke: #007AFF;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition-duration: 300ms;
}
.our_works__arrow:disabled > svg {
  stroke: #BDBDBD;
}
.our_works__slide {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 300px;
  transition: 0.3s ease; 
}
.our_works__slide img {
  display: flex;
  height: 380px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: height 0.3s ease;
}
.our_works__name {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #000000;
}

.our_works__slide.is-active {
  width: 410px;
}
.our_works__slide.is-active img {
  height: 519px;
}
/* .our_works__slide--big {
  width: 410px;
}
.our_works__slide--big img {
  height: 519px;
} */

.splide__track {
  min-height: 583px;
}
@media (max-width: 767px) {
  .our_works__slide {
    width: 258px;
  }
  .our_works__slide img {
    height: 460px;
  }
  .our_works__slide.is-active {
    width: 258px;
  }
  .our_works__slide.is-active img {
    height: 460px;
  }

  .splide__track {
    min-height: unset;
  }
}
@media (max-width: 479px) {
  .our_works {
    padding-bottom: 60px;
    gap: 20px;
  }
  .our_works__arrows {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .our_works__arrow {
    width: 40px;
    height: 40px;
  }
  .our_works__slide img {
    height: 326px;
  }
  .our_works__slide.is-active img {
    height: 326px;
  }
}
/* End */
/* /local/templates/redesign/components/dresscode/catalog/services/style.css?17415924962028 */
/* /local/templates/redesign/components/bitrix/catalog.section.list/services.main_new/style.css?17415924171472 */
/* /local/templates/redesign/components/bitrix/catalog.smart.filter/redesign/style.css?17604315914071 */
/* /local/templates/redesign/components/bitrix/system.pagenavigation/visual/style.css?1741155091607 */
/* /local/templates/redesign/components/dresscode/catalog.section/redesign/style.css?1760206347414 */
/* /local/templates/redesign/components/bitrix/news.list/sert/style.css?17449914601617 */
/* /local/templates/redesign/components/bitrix/news.list/partners/style.css?17736465222449 */
/* /local/templates/redesign/components/bitrix/news.list/our_work/style.css?17471342172324 */
