

/* Start:/local/templates/imperialgarden/components/bitrix/news/imperial-news/bitrix/news.detail/.default/style.css?174549020340*/
body.no-scroll {
    overflow: hidden;
}
/* End */


/* Start:/local/templates/imperialgarden/css/news.css?174350442017820*/
.news {
	overflow: hidden;
}

.news__items {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px 16px;
}

.news .news__contacts-line {
  position: relative;
  gap: 12px;
  justify-content: space-between;
}
.news .news__contacts-line .contacts__line-link:nth-child(3) {
  margin-left: 0;
}

.news__item {
  width: calc( ( 100% - 16px ) / 2 );
}

.news__item-img {
  position: relative;
  width: 100%;
  padding-top: 70%;
}

.news__item-img img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__item-content {
  padding-top: 20px;
}

.news__item-title {
  display: -webkit-box;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  color: #2E2E2E;
  text-transform: uppercase;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news__item-date {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-dark-1);
}

.news__hero {
  position: relative;
  padding-top: 47%;
  width: 100%;
  margin-bottom: 40px;
}

.news__hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__title {
  margin-bottom: 40px;
  max-width: 985px;
}

.news__block:first-child {
  padding-top: 64px;
  border-top: 1px solid var(--gray-light-1);
}


.news__block .news__block-content {
  margin: 0 auto 48px;
}

.news__block .news__block-content--mb64 {
  margin: 0 auto 64px;
}

.news__block-text {
  font-size: 16px;
  line-height: 20px;
  color: var(--base-dark-gray);
}

.news__block-text:not(:last-child) {
  margin-bottom: 12px;
}

.news__block-text.news__block-text--heading {
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 32px;
  color: #2E2E2E;
}

.news__block-text--bold {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 24px;
  color: #2E2E2E;
  font-weight: 500;
}

.news__block .news__block-content--with-img {
  margin: 0 0 48px 0;
  max-width: unset;
  display: grid;
  grid-template-columns: auto 606px auto;
  grid-template-areas: 'left img img';
}

.news__block-wrap {
  grid-area: img;
}

.news__block-img {
  position: relative;
  padding-top: 56%;
  margin-bottom: 16px;
}

.news__block-img img {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news__block-footnote {
  font-size: 14px;
  line-height: 18px;
  color: var(--gray-dark-1);
}

.news__top {
  margin: 28px 0 48px;
}

@media (max-width: 1024px) {
  .news__item {
    width: 100%;
  }

  .news__item-content {
    padding-top: 16px;
  }

  .news__item-title {
    margin-bottom: 4px;
    font-size: 14px;
    line-height: 18px;
    line-clamp: 3;
    -webkit-line-clamp: 3;
  }

  .news__hero {
    padding-top: 64%;
    margin-bottom: 32px;
  }
}

@media(max-width: 768px) {
  .news .news__contacts-line {
    padding: 24px 32px 0 0;
  }

  .news__block:first-child {
    padding-top: 40px;
  }

  .news__block-text.news__block-text--heading {
    font-size: 24px;
    line-height: 32px;
  }

  .news__block .news__block-content {
    margin-bottom: 40px;
  }

  .news__block .news__block-content--with-img {
    display: block;
    margin-bottom: 40px;
  }

  .news__block-img {
    padding-top: 70%;
    margin-bottom: 12px;
  }

  .news__top {
    margin: 16px 0 32px;
  }
}

.news-filter__top-container {
	display: grid;
	grid-template-columns: fit-content(130px) 1fr min(22vw, 318px);
	align-items: end;
	padding-bottom: 32px;
}

@media (max-width: 1024px) {
	.news-filter__top-container {
		display: flex;
		padding-bottom: 20px;
		padding-left: 16px;
	}
}

/*  */
/* Filter button */
.news-filter__button {
	font-family: inherit;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	text-wrap: nowrap;
	white-space: nowrap;
	padding: 10px 16px;
	margin: 0;
	border: none;
	cursor: pointer;
}

@media (max-width: 1024px) {
	.news-filter__button {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: -0.02em;
		padding: 7px 12px;
	}
}

/* Color */
.news-filter__button {
	transition: all .2s ease-in-out;
}

.news-filter__button--dark {
	color: var(--base-white);
	background-color: var(--green-dark);
}

.news-filter__button--light {
	color: var(--base-dark-gray);
	background-color: var(--gray-light-1);
}

.news-filter__button--light[aria-expanded="true"] {
	color: var(--base-white);
	background-color: var(--green-dark);
}

/* Shape */
.news-filter__button--squared {
	border-radius: 12px;
}

@media (max-width: 1024px) {
	.news-filter__button--squared {
		border-radius: 10px;
	}
}

.news-filter__button--rounded {
	border-radius: 400px;
}

/* Decoration */
.news-filter__button--plus-iconed {
	padding-right: 40px;
	position: relative;
}

.news-filter__button--plus-iconed::before,
.news-filter__button--plus-iconed::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 18.5px;
	width: 11px;
	height: 1px;
	background-color: currentColor;
	transition: opacity .3s;
}

.news-filter__button--plus-iconed::before {
	transform: translateY(-50%);
}

.news-filter__button--plus-iconed::after {
	transform: translateY(-50%) rotateZ(-90deg);
}

.news-filter__button--plus-iconed[aria-expanded="true"]::before {
	transform: translateY(-50%) rotateZ(180deg);
}

.news-filter__button--plus-iconed[aria-expanded="true"]::after {
	transform: translateY(-50%) rotateZ(0deg);
}

@media (max-width: 1024px) {
	.news-filter__button--plus-iconed {
		padding-right: 28px;
	}

	.news-filter__button--plus-iconed::before,
	.news-filter__button--plus-iconed::after {
		right: 10.5px;
	}
}

.news-filter__button--selected {

}
/* End Filter button */
/*  */

.news-filter__open-button {
	position: relative;
    z-index: 2;
}

.news-filter__short-parameters-item {
	position: relative;
	margin-top: 6px;
}

.news-filter__sorting-dropdown {
	position: relative;
}

.news-filter__short-parameter-button {
	position: relative;
}

.news-filter__short-selected-badge {
	box-sizing: content-box;
	position: absolute;
	top: 0;
	right: 0;
	width: fit-content;
	min-width: 4px;
	min-height: 12px;
	transform: translateX(6px) translateY(-7px);
	font-weight: 500;
	font-size: 10px;
	line-height: 12px;
	color: var(--base-white);
	background-color: var(--base-red);
	padding: 2px 6px;
	border: 2px solid var(--base-white);
	border-radius: 33px;
}

@media (max-width: 1024px) {
	.news-filter__short-selected-badge {
		transform: translateX(6px) translateY(-6px);
	}
}

.news-filter__short-setted-badge {
	box-sizing: content-box;
	position: absolute;
	top: 0;
	right: 0;
	width: fit-content;
	width: 8px;
	height: 8px;
	color: var(--base-white);
	background-color: var(--bright-red);
	border: 2px solid var(--base-white);
	border-radius: 33px;
}

.news-filter__short-parameters-wrapper {
	position: relative;
}

.news-filter__short-parameters-wrapper::before,
.news-filter__short-parameters-wrapper::after {
	content: '';
	position: absolute;
	top: 0;
	width: 12px;
	height: 100%;
	pointer-events: none;
  z-index: 1;
}

.news-filter__short-parameters-wrapper::before {
	left: 0;
	background: linear-gradient(to right, var(--gray-light), transparent);
}

.news-filter__short-parameters-wrapper::after {
	right: 0;
	background: linear-gradient(to left, var(--gray-light), transparent);
}

@media (max-width: 1024px) {
	.news-filter__short-parameters-wrapper::after {
		content: none;
	}
}

.news-filter__short-parameters-list {
	display: flex;
	gap: 12px;
	list-style: none;
	padding-left: 12px;
	padding-right: 12px;
	scroll-behavior: smooth;
}

.news-filter__short-parameters-list::-webkit-scrollbar {
	display: none;
}

.news-filter__short-values-list,
.news-filter__sorting-list {
	display: none;
	position: absolute;
	left: 0;
	top: calc(100% + 8px);
	min-width: 260px;
	max-width: 360px;
	max-height: 152px;
	padding: 12px 8px;
	border-radius: 16px;
	background: var(--gray-light-5);
	z-index: 10;
	list-style: none;
	transition: all ease-in-out .2s;
}

.news-filter__short-values-item,
.news-filter__sorting-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 7px 12px;
	font-size: 16px;
	line-height: 20px;
	color: var(--base-dark-gray);
	text-decoration: none;
	cursor: pointer;
}

.news-filter__short-values-item::before,
.news-filter__sorting-item::before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	border: 1px solid #B7B7B7;
	border-radius: 4px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 14px 14px;
	transition: background-image .3s;
}

.news-filter__short-values-item.active::before,
.news-filter__sorting-item.active::before {
	background-color: var(--base-white);
	background-image: url('/local/templates/imperialgarden/css/../images/icons/check.svg');
}

.news-filter__short-parameter-button[aria-expanded="true"],
.news-filter__sorting-toggle[aria-expanded="true"] {
	color: var(--base-white);
	background: var(--green-dark);
}

.news-filter__short-parameter-button[aria-expanded="true"]::after,
.news-filter__sorting-toggle[aria-expanded="true"]::after {
	opacity: 0;
}

.news-filter__sorting-toggle {
	width: 100%;
	text-align: left;
}

.news-filter__sorting-list {
	transition: all ease-in-out .2s;
}

.news-filter__short-values-item input {
	position: relative;
	appearance: none;
	background: transparent;
	width: 22px;
	height: 22px;
	border: 1px solid var(--gray-light-7);
	border-radius: 6px;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.news-filter__short-values-item input:checked::before,
.news-filter__short-values-item input:checked::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--base-dark-gray);
}

.news-filter__short-values-item input:checked::before {
	width: 11px;
	height: 1.5px;
	transform-origin: 60% 50%;
	transform: translateX(-35%) translateY(-75%) rotateZ(-45deg);
}

.news-filter__short-values-item input:checked::after {
	width: 5px;
	height: 1.5px;
	transform-origin: 0% 50%;
	transform: translateX(-110%) translateY(-70%) rotateZ(45deg);
}

.news-filter__short-values-item label {
	flex-grow: 1;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
}

.news-filter__short-colors-list {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 260px;
	height: min-content;
	max-height: 160px;
	overflow-x: auto;
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	list-style: none;
	background-color: var(--gray-light-5);
	padding: 12px 8px;
	border-radius: 16px;
	z-index: 1;
}

.news-filter__short-parameter-button[aria-expanded="false"] + .news-filter__short-colors-list {
	opacity: 0;
	pointer-events: none;
}

.news-filter__short-parameter-button[aria-expanded="true"] + .news-filter__short-colors-list {
	opacity: 1;
	pointer-events: all;
}

.news-filter__short-colors-item {
	position: relative;
	display: block;
	width: 40px;
	height: 40px;
}

.news-filter__short-colors-item input {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: none;
	appearance: none;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.news-filter__short-colors-item label {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 50%;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.news-filter__short-colors-item input:checked {
	opacity: 0.65;
}

.news-filter__short-colors-item label {
	opacity: 0;
}

.news-filter__short-colors-item label::before,
.news-filter__short-colors-item label::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: var(--base-dark-gray);
}

.news-filter__short-colors-item label::before {
	width: 11px;
	height: 1.5px;
	transform-origin: 60% 50%;
	transform: translateX(-35%) translateY(-75%) rotateZ(-45deg);
}

.news-filter__short-colors-item label::after {
	width: 5px;
	height: 1.5px;
	transform-origin: 0% 50%;
	transform: translateX(-110%) translateY(-70%) rotateZ(45deg);
}

.news-filter__short-colors-item input:checked + label {
	opacity: 1;
}

.news-filter__short-fields-list {
	position: fixed;
	top: 50%;
	left: 50%;
	width: 260px;
	height: min-content;
	max-height: 160px;
	overflow-x: auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex-wrap: wrap;
	background-color: var(--gray-light-5);
	padding: 12px 8px;
	border-radius: 16px;
	z-index: 1;
}

.news-filter__short-parameter-button[aria-expanded="false"] + .news-filter__short-fields-list {
	opacity: 0;
	pointer-events: none;
}

.news-filter__short-parameter-button[aria-expanded="true"] + .news-filter__short-fields-list {
	opacity: 1;
	pointer-events: all;
}

.news-filter__short-fields-item {
	display: flex;
	gap: 8px;
	padding: 6px 6px;
	margin-right: 4px;
	margin-left: 4px;
	background-color: var(--base-white);
	border-bottom: 1px solid var(--gray-light-6);
	border-radius: 6px;
}

.news-filter__short-fields-item label {
	font-family: var(--tt-norms-pro);
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--base-dark-gray);
}

.news-filter__short-fields-item input {
	appearance: none;
	flex-grow: 1;
	width: 123px;
	font-family: var(--tt-norms-pro);
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	color: var(--base-dark-gray);
	background: transparent;
	border: none;
	outline: none;
}

.news-filter__short-fields-item input[type="number"]::-webkit-outer-spin-button,
.news-filter__short-fields-item input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.news-filter__short-fields-item input[type="number"] {
    -moz-appearance: textfield;
}

.news-filter__short-fields-item input::placeholder {
	color: var(--gray-dark-1);
}

.news-filter__short-fields-item button {
	position: relative;
	width: 20px;
	height: 20px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.news-filter__short-fields-item button::before,
.news-filter__short-fields-item button::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 15px;
	height: 1.5px;
	background-color: var(--gray-light-7);
}

.news-filter__short-fields-item button::before {
	transform: translateX(-50%) translateY(-50%) rotateZ(-45deg);
}

.news-filter__short-fields-item button::after {
	transform: translateX(-50%) translateY(-50%) rotateZ(45deg);
}

.news-filter__sorting-toggle {
	position: relative;
	width: 100%;
    text-align: left;
}


.news-filter__sorting-toggle[aria-expanded="false"] + .news-filter__sorting-list {
	opacity: 0;
	pointer-events: none;
}

.news-filter__sorting-toggle[aria-expanded="true"] + .news-filter__sorting-list {
	opacity: 1;
	pointer-events: all;
}

.news-filter__sorting-item {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 6px 12px;
}

.news-filter__sorting-item input {
	position: relative;
	appearance: none;
	background: transparent;
	width: 18px;
	height: 18px;
	border: 1px solid var(--gray-light-7);
	border-radius: 50%;
	cursor: pointer;
	transition: all .2s ease-in-out;
}

.news-filter__sorting-item input:checked{
	border-width: 5px;
	border-color: var(--green-light-1);
}

.news-filter__sorting-item label {
	flex-grow: 1;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
}

.news-filter__bottom-container {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	border-top: 1px solid var(--gray-light-1);
	padding-top: 32px;
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.news-filter__bottom-container {
		display: none;
	}
}

.news-filter__current-list {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	list-style: none;
}

.news-filter__current-item {
	display: flex;
	flex-wrap: nowrap;
}

.news-filter__current-value {
	display: block;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	color: var(--base-white);
	text-transform: uppercase;
	background-color: var(--gray-dark-8);
	border-radius: 400px 0 0 400px;
	padding: 7px 0 7px 14px;
}

.news-filter__current-button {
	position: relative;
	width: 30px;
	height: 100%;
	background-color: var(--gray-dark-8);
	border: none;
	border-radius: 0 400px 400px 0;
	margin-left: -0.5px;
	cursor: pointer;
}

.news-filter__current-button::before,
.news-filter__current-button::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 13.5px;
	width: 11px;
	height: 1px;
	background-color: var(--base-white);
}

.news-filter__current-button::before {
	transform: translateY(-50%) rotateZ(45deg);
}

.news-filter__current-button::after {
	transform: translateY(-50%) rotateZ(-45deg);
}

.news-filter__current-clear-button {
	position: relative;
	font-family: inherit;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
	color: var(--base-dark-gray);
	text-transform: uppercase;
	background-color: var(--gray-light-5);
	border-radius: 400px 0 0 400px;
	padding: 7px 30px 7px 14px;
	border: none;
	border-radius: 400px;
	cursor: pointer;
}

.news-filter__current-clear-button::before,
.news-filter__current-clear-button::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 13.5px;
	width: 11px;
	height: 1px;
	background-color: currentColor;
}

.news-filter__current-clear-button::before {
	transform: translateY(-50%) rotateZ(45deg);
}

.news-filter__current-clear-button::after {
	transform: translateY(-50%) rotateZ(-45deg);
}

.news-filter__sorting-toggle-icon {
	display: none;
	width: 20px;
	height: 20px;
	background-color: currentColor;
	mask-image: url('/local/templates/imperialgarden/css/../images/icons/down-up-arrows.svg');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 20px 20px;
}

@media (max-width: 1024px) {
	.news-filter__sorting-toggle {
		width: 44px;
		height: 32px;
		padding: 7px 12px;
		margin-right: 8px;
	}

	.news-filter__sorting-toggle::before,
	.news-filter__sorting-toggle::after {
		content: none;
	}

	.news-filter__sorting-dropdown {
		order: -1;
	}

	.news-filter__sorting-toggle-title {
		display: none;
	}

	.news-filter__sorting-toggle-icon {
		display: block;
	}
}
/* End */


/* Start:/local/templates/imperialgarden/css/components/video.css?1733833645924*/
.video {
  position: relative;
  margin: 64px 0;
  padding-top: 55%;
  width: 100%;
  background: url('/local/templates/imperialgarden/css/components/../../images/content/video-bg.jpg') 50% 50% no-repeat;
  background-size: cover;
}

.video video,
.video iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 90px;
  background-color: rgba( 255, 255, 255, 32%);
  background-image: url('/local/templates/imperialgarden/css/components/../../images/icons/play-btn.svg');
  background-position: 55% 50%;
  background-repeat: no-repeat;
  border-radius: 400px;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
}

@media(max-width: 768px) {
  .video {
    margin: 48px 0;
    padding-top: calc( ( 100% / 3 ) * 2 );
  }

  .video__play {
    width: 56px;
    height: 40px;
    background-size: 45% 43%;
    background-position: 57% 50%;
  }
  
}
/* End */


/* Start:/local/templates/imperialgarden/css/components/news-card.css?17326140061136*/
/* News card */
.news-card__image-container {
	position: relative;
	width: 100%;
	padding-top: 69.17%;
	margin-bottom: 20px;
}

@media (max-width: 1024px) {
	.news-card__image-container {
		margin-bottom: 16px;
	}
}

.news-card__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news-card__grid {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	width: 100%;
}

@media (max-width: 1024px) {
	.news-card__grid {
		gap: 4px;
	}
}

.news-card__link {
	display: block;
	color: var(--base-dark-gray);
	text-decoration: none;
}

.news-card__name {
	grid-area: name;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.02em;
	margin: 0;
}

@media (max-width: 1024px) {
	.news-card__name {
		font-weight: 500;
		line-height: 18px;
	}
}

.news-card__meta {
	grid-area: parameters;
	font-weight: 400;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.02em;
	color: var(--gray-dark-1);
}

@media (max-width: 1024px) {
	.news-card__meta {
		line-height: 18px;
	}
}

.news-card__meta time {
	font-weight: inherit;
}
/* End News card */
/* End */


/* Start:/local/templates/imperialgarden/css/main_page.css?174317152026796*/
.main-page__heading {
	display: block;
	width: 100%;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}


.main-page__heading--small {
	font-weight: 400;
	font-size: 18px;
	line-height: 16px;
}

@media (max-width: 1024px) {
	.main-page__heading--small {
		font-weight: 500;
		font-size: 14px;
		line-height: 16px;
	}
}

.main-page__heading--large {
	font-family: var(--font-tt-ramillas);
	font-weight: 500;
	font-size: 48px;
	line-height: 58px;
	letter-spacing: -1.44px;
}

@media (max-width: 1024px) {
	.main-page__heading--large {
		font-size: 28px;
		line-height: 32px;
		letter-spacing: -0.84;
	}
}

.main-page__heading--left {
	text-align: left;
}

.main-page__heading--center {
	text-align: center;
}

.main-page__heading--dark {
	color: var(--base-dark-gray);
}

.main-page__heading--light {
	color: var(--base-white);
}

/*  */
/* Hero section */
/*  */
.hero-section__container {
	position: relative;
	height: max(600px, 41.6vw);
	margin-bottom: 64px;
}

@media (max-width: 768px) {
	.hero-section__container {
		height: 437px;
		margin-bottom: 32px;
	}
}

.hero-section__slider {
	position: relative;
}

.hero-section__slide {
	padding: 0 8px;
}

@media (max-width: 768px) {
	.hero-section__slide {
		padding: 0 4px;
	}
}

.hero-section__slide-container {
	box-sizing: border-box;
	position: relative;
	display: flex;
    flex-direction: column;
    justify-content: end;
	align-items: flex-start;
	width: 100%;
	height: 100%;
	padding: 40px 48px;
}

@media (max-width: 768px) {
	.hero-section__slide-container {
		padding: 24px 16px;
	}
}

.hero-section__slide-image img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.hero-section__slide-content {
	max-height: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 64px;
}

@media (max-width: 768px) {
	.hero-section__slide-content {
		gap: 16px;
	}
}

.hero-section__slide-text-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	max-width: 46.1vw;
}

.hero-section__slide-text-wrapper--light{
	color: var(--base-white);
}

.hero-section__slide-text-wrapper--dark{
	color: var(--base-dark-gray);
}

@media (max-width: 768px) {
	.hero-section__slide-text-wrapper {
		gap: 8px;
		max-width: unset;
	}
}

.hero-section__slide-text {
	font-family: var(--font-tt-ramillas);
	font-weight: 500;
	font-size: 3.3vw;
	line-height: 4vw;
	letter-spacing: -1.44px;
	text-align: left;
	color: inherit;
	text-transform: uppercase;
	word-break: break-word;
	margin: 0;
}

@media (max-width: 768px) {
	.hero-section__slide-text {
		font-size: 28px;
		line-height: 32px;
		letter-spacing: -0.03em;
	}
}

.hero-section__slide-subtext {
	font-weight: 400;
	font-size: max(18px, 1.25vw);
	line-height: max(20px, 1.39vw);
	text-align: left;
	color: inherit;
	word-break: break-word;
	margin: 0;
}

@media (max-width: 768px) {
	.hero-section__slide-subtext {
		max-width: 63.9vw;
		font-size: 14px;
		line-height: 18px;
		letter-spacing: -0.03em;
	}
}

.hero-section__slide-link {
	font-weight: 500;
	font-size: 14px;
	line-height: 16px;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
	word-break: break-word;
	color: var(--base-dark-gray);
	background-color: var(--base-white);
	padding: 12px 20px;
	border-radius: 400px;
}

.hero-section__slide-link:hover {
	color: var(--gray-dark-3);
}

.hero-section__slide-link:active {
	color: var(--base-dark-gray);
	opacity: 0.4;
}

.hero-section__slide-link-desktop {
	display: inline;
}

.hero-section__slide-link-mobile {
	display: none;
}

@media (max-width: 768px) {
	.hero-section__slide-link {
		font-size: 12px;
		padding: 8px 16px;
	}

	.hero-section__slide-link-desktop {
		display: none;
	}

	.hero-section__slide-link-mobile {
		display: inline;
	}
}

.hero-section__slider-controls {
	position: absolute;
	right: 108px;
	bottom: 104px;
	display: flex;
	align-items: center;
	gap: 80px;
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
}

.hero-section__slider-controls--light {
	color: var(--base-white);
}

.hero-section__slider-controls--dark {
	color: var(--base-dark-gray);
}

@media (max-width: 768px) {
	.hero-section__slider-controls {
		display: none;
	}
}

.hero-section__slider-counter {
	color: inherit;
}

.hero-section__slider-controls-buttons {
	display: flex;
	align-items: center;
	gap: 12px;
}

.hero-section__divider {
	width: 100%;
	height: 1px;
	background-color: var(--gray-light-1);
}
/*  */
/* End Hero section */
/*  */


/*  */
/* Presentation section */
/*  */
.presentation-section {
	padding: 64px 0;
}

@media (max-width: 1024px) {
	.presentation-section {
		padding: 32px 0;
	}
}

.presentation-section__main {
	display: grid;
	grid-template-columns: 180px 51vw;
	gap: 13.9vw;
	margin-bottom: 96px;
}

@media (max-width: 1024px) {
	.presentation-section__main {
		display: flex;
		flex-direction: column;
		gap: 32px;
		margin-bottom: 48px;
	}
}

.presentation-section__video-button {
	position: relative;
	display: block;
	width: 180px;
	height: 180px;
	color: var(--base-dark-gray);
	border-radius: 50% 50% 0 50%;
	overflow: hidden;
}

.presentation-section__video-button::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	width: 56px;
	height: 56px;
	color: currentColor;
	background-color: var(--base-white);
	background-image: url('/local/templates/imperialgarden/css/../images/icons/play-icon.svg');
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 50%;
}

.presentation-section__video-button:hover {
	color: var(--gray-dark-3);
}

.presentation-section__video-button:active {
	color: var(--base-dark-gray);
	opacity: 0.4;
}


@media (max-width: 1024px) {
	.presentation-section__video-button {
		width: 112px;
		height: 112px;
	}

	.presentation-section__video-button::after {
		width: 40px;
		height: 40px;
	}
}

.presentation-section__video-preview {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.presentation-section__text-wrapper h2 {
	font-family: var(--font-tt-ramillas);
	font-weight: 500;
	font-size: 48px;
	line-height: 58px;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	word-break: break-word;
	margin: 0;
	margin-bottom: 16px;
}

@media (max-width: 1024px) {
	.presentation-section__text-wrapper h2 {
		font-size: 28px;
		line-height: 32px;
		letter-spacing: -0.03em;
		margin-bottom: 8px;
	}
}

.presentation-section__text-wrapper p {
	width: 84%;
	font-weight: 400;
	font-size: 18px;
	line-height: 24px;
	word-break: break-word;
	margin: 0;
	margin-bottom: 16px;
}

.presentation-section__text-wrapper p:last-of-type {
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.presentation-section__text-wrapper p {
		font-size: 14px;
		line-height: 20px;
		letter-spacing: -0.02em;
		margin-bottom: 8px;
	}

	.presentation-section__text-wrapper p:last-of-type {
		margin-bottom: 20px;
	}
}

.presentation-section__text-wrapper p a {
	color: var(--base-dark-gray);
}

.presentation-section__text-wrapper p a:hover {
	color: var(--gray-dark-1);
}

.presentation-section__text-wrapper p a:active {
	color: initial;
	opacity: 0.12;
}

.presentation-section__partners {
	height: 56px;
}

@media (max-width: 1024px) {
	.presentation-section__partners {
		height: 40px;
	}
}

.presentation-section__partners-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.presentation-section__partners-item {
	width: 110px;
	height: 56px;
	padding: 0 22px;
}

@media (max-width: 1024px) {
	.presentation-section__partners-item {
		width: 74px;
		height: 40px;
		padding: 0 8px;
	}
}

.presentation-section__partners-image {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/*  */
/* EndPresentation section */
/*  */


/*  */
/* Catalog section */
/*  */
.catalog-section {
	margin-bottom: 48px;
}

@media (max-width: 1024px) {
	.catalog-section {
		margin-bottom: 24px;
	}
}

.catalog-section__container {
	color: var(--beige-1);
	background-color: var(--green-dark-3);
	padding: 96px 0 93px;
	border-radius: 25px;
}

@media (max-width: 1024px) {
	.catalog-section__container {
		padding: 40px 0;
	}
}

.catalog-section__heading {
	font-family: var(--font-tt-ramillas);
	font-weight: 400;
	font-size: 64px;
	line-height: 70px;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	text-align: center;
	word-break: break-word;
	color: var(--beige-1);
	margin: 0;
	margin-bottom: 8px;
}

@media (max-width: 1024px) {
	.catalog-section__heading {
		font-weight: 500;
		font-size: 36px;
		line-height: 40px;
		letter-spacing: -0.03em;
		margin-bottom: 12px;
	}
}

.catalog-section__description {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: -0.03em;
	text-align: center;
	word-break: break-word;
	margin: 0;
	margin-bottom: 24px;
}

@media (max-width: 1024px) {
	.catalog-section__description {
		font-weight: 400;
		font-size: 14px;
		line-height: 18px;
		letter-spacing: -0.02em;
		margin-bottom: 24px;
	}

	.catalog-section__description br {
		display: none;
	}
}

.catalog-section__slider-controls-buttons {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-bottom: 44px;
}

@media (max-width: 1024px) {
	.catalog-section__slider-controls-buttons {
		display: none;
	}
}

.catalog-section__slider-wrapper {
	/* width: 100vw; */
	height: 17.8vw;

}

@media (max-width: 640px) {
	.catalog-section__slider-wrapper {
		height: 54vw;
	}
}

.catalog-section__slider {
	list-style: none;
	margin: 0;
	padding: 0;
}

.catalog-section__slide-link {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	height: 100%;
	text-decoration: none;
}

@media (max-width: 1024px) {
	.catalog-section__slide-link {
		gap: 8px;
	}
}

.catalog-section__image-container {
	position: relative;
	width: 100%;
	padding-top: 71.9%;
}

@media (max-width: 1024px) {
	.catalog-section__image-container {
		padding-top: 72.2%;
	}
}

.catalog-section__image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.catalog-section__category {
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.02em;
	margin: 0;
}

@media (max-width: 1024px) {
	.catalog-section__category {
		font-weight: 500;
		font-size: 12px;
		line-height: 18px;
		letter-spacing: normal;
	}
}
/*  */
/* End Catalog section */
/*  */


/*  */
/* Services section */
/*  */
.services-section {
	margin-top: 48px;
}

@media (max-width: 1024px) {
	.services-section {
		margin-top: 24px;
	}
}

.services-section__container {
	padding: 96px 0;
	border-top: 1px solid var(--gray-light-1);
}

@media (max-width: 1024px) {
	.services-section__container {
		padding: 48px 0;
	}
}

.services-section__grid {
	display: grid;
	grid-template-columns: min(17vw, 240px) 1fr min(17vw, 240px);
	gap: min(6.9vw, 100px);
}

@media (max-width: 1024px) {
	.services-section__grid {
		display: block;
	}
}

.services-section__image {
	width: 100%;
	height: auto;
	align-self: center;
}

@media (max-width: 1024px) {
	.services-section__image {
		display: none;
	}
}

.services-section__list-wrapper {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-self: center;
	justify-self: center;
	align-self: flex-start;
}

@media (max-width: 1024px) {
	.services-section__list-wrapper {
		gap: 20px;
	}
}

.services-section__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (max-width: 1024px) {
	.services-section__list {
		gap: 12px;
	}
}

.services-section__item .services-section__link {
	display: block;
	box-sizing: border-box;
	font-family: var(--font-tt-ramillas);
	font-weight: 400;
	font-size: min(4vw, 64px);
	line-height: min(4.8vw, 64px);
	letter-spacing: -1.92px;
	text-align: center;
	color: var(--gray-dark-1);
	text-transform: uppercase;
	text-decoration: none;
	word-break: break-word;
}

.services-section__item:hover .services-section__link {
	color: var(--base-dark-gray);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

@media (max-width: 1024px) {
	.services-section__item .services-section__link {
		font-weight: 500;
		font-size: 28px;
		line-height: 36px;
		letter-spacing: -0.84px;
	}

	.services-section__item:hover .services-section__link {
		text-decoration: none;
	}
}

.services-section__counter {
	font-weight: 400;
	font-size: 22px;
	line-height: 16px;
	font-style: italic;
	vertical-align: top;
	letter-spacing: unset;
	line-break: auto;
}

@media (max-width: 1024px) {
	.services-section__counter {
		font-size: 16px;
		line-height: 18px;
	}
}
/*  */
/* End Services section */
/*  */

/*  */
/* Portfolio section */
/*  */
.portfolio-section {
	width: 100vw;
	background-color: var(--base-white);
	border-radius: 26px;
	padding: 64px 0 90px;
	margin-bottom: -26px;
}

@media (max-width: 1024px) {
	.portfolio-section {
		padding: 40px 0 66px;
	}
}

.portfolio-section__heading {
	margin-bottom: 40px;
}

@media (max-width: 1024px) {
	.portfolio-section__heading {
		margin-bottom: 16px;
	}
}

.portfolio-section__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	margin-bottom: 40px;
}

@media (max-width: 1024px) {
	.portfolio-section__top {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 32px;
	}
}

.portfolio-section__description {
	display: block;
	max-width: 765px;
	font-family: var(--font-tt-ramillas);
	font-weight: 500;
	font-size: 48px;
	line-height: 58px;
	letter-spacing: -1.44px;
	text-transform: uppercase;
	word-break: break-word;
	margin: 0;
}

@media (max-width: 1024px) {
	.portfolio-section__description {
		font-weight: 500;
		font-size: 28px;
		line-height: 32px;
		letter-spacing: -0.56px;
	}
}

.portfolio-section__top .portfolio-section__button {
	margin: 0;
}

.portfolio-section__list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 16px;
	row-gap: 40px;
	width: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
	margin-bottom: 48px;
}

@media (max-width: 768px) {
	.portfolio-section__list {
		display: flex;
		flex-direction: column;
		width: 100%;
		gap: 32px;
		margin-bottom: 32px;
	}
}

.portfolio-section__link {
	display: block;
	color: var(--base-dark-gray);
	text-decoration: none;
	margin-bottom: 12px;
}

@media (max-width: 1024px) {
	.portfolio-section__link {
		margin-bottom: 8px;
	}
}

.portfolio-section__image-container {
	position: relative;
	width: 100%;
	padding-top: 110%;
	overflow: hidden;
	margin-bottom: 20px;
}

@media (max-width: 1024px) {
	.portfolio-section__image-container {
		margin-bottom: 12px;
	}
}

.portfolio-section__image {
	position: absolute;
	top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.portfolio-section__item-heading {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: -0.32px;
	margin: 0;
}

@media (max-width: 1024px) {
	.portfolio-section__item-heading {
		font-size: 14px;
		line-height: 18px;
		letter-spacing: -0.28px;
		margin-bottom: 4px;
	}
}

.portfolio-section__item-description {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	margin: 0;
}

@media (max-width: 1024px) {
	.portfolio-section__item-description {
		font-size: 14px;
		line-height: 18px;
		letter-spacing: -0.28px;
	}
}

.portfolio-section__item-services-list {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.portfolio-section__item-service {
	font-weight: 400;
	font-size: 14px;
	line-height: 16px;
}

.portfolio-section__button {
	margin: 0 auto;
}
/*  */
/* End Portfolio section */
/*  */


/*  */
/* Delivery section */
/*  */
.delivery-section {
	background-color: var(--green-dark-3);
	border-radius: 26px;
}

@media (max-width: 1024px) {
	.delivery-section {
		border-radius: 24px;
	}
}

.delivery-section__container {
	padding: 64px 0;
}

@media (max-width: 1024px) {
	.delivery-section__container {
		padding: 40px 0;
	}
}

.delivery-section__container {
	display: grid;
	grid-template-columns: 1fr min(740px, 55.56vw);
}

@media (max-width: 1280px) {
	.delivery-section__container {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 32px;
		width: 100%;
	}
}

.delivery-section__main-block {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.delivery-section__heading {
	margin-bottom: 40px;
	color: var(--gray-light-4);
}

@media (max-width: 1024px) {
	.delivery-section__heading {
		margin-bottom: 16px;
	}
}

.delivery-section__description {
	font-family: var(--font-tt-ramillas);
	font-weight: 500;
	font-size: min(48px, 3.33vw);
    line-height: min(58px, 4vw);
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: var(--gray-light-4);
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.delivery-section__description {
		font-size: 36px;
    	line-height: 40px;
		letter-spacing: -0.03em;
		margin-bottom: 20px;
	}
}

.delivery-section__counter {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: -0.02em;
	color: var(--gray-light-4);
	margin-top: auto;
}

@media (max-width: 1280px) {
	.delivery-section__counter {
		display: none;
	}
}

.delivery-section__slider-block {
	display: grid;
	grid-template-columns: 56px 1280px;
	gap: 32px;
	align-items: center;
}

@media (max-width: 1280px) {
	.delivery-section__slider-block {
		display: block;
	}
}

.delivery-section__slider-controls-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

@media (max-width: 1280px) {
	.delivery-section__slider-controls-buttons {
		display: none;
	}
}

.delivery-section__slider-container {
	position: relative;
	height: min-content;
	overflow: visible;
}

@media (max-width: 1280px) {
	.delivery-section__slider-container {
		overflow: hidden;
		margin: 0 -60px;
	}
}

@media (max-width: 1024px) {
	.delivery-section__slider-container {
		margin: 0 -16px;
	}
}

.delivery-section__slider {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 100%;
}

@media (max-width: 1280px) {
	.delivery-section__slider {
		width: 100%;
		max-width: unset;
	}
}

.delivery-section__slide {
	margin-right: 16px;
}

@media (max-width: 1280px) {
	.delivery-section__slide {
		margin: 0;
		margin-right: 16px;
		width: calc(100vw - 120px);
	}

	.delivery-section__slide:last-child {
		margin-right: 0;
	}
}

@media (max-width: 1024px) {
	.delivery-section__slide {
		margin-right: 8px;
		width: calc(100vw - 32px);
	}
}

.delivery-section__slide-container {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	height: 544px;
	width: 652px;
	background-color: var(--gray-light-4);
	border-radius: 24px;
	padding: 24px 24px 32px;
	background-repeat: no-repeat;
	background-size: cover;
}

@media (max-width: 1280px) {
	.delivery-section__slide-container {
		height: 500px;
		width: inherit;
		background-position: center center;
		background-size: contain;
	}
}

@media (max-width: 1024px) {
	.delivery-section__slide-container {
		height: 353px;
		padding: 24px 16px 20px;
		border-radius: 16px;
	}
}

.delivery-section__slide-heading {
	position: relative;
	font-weight: 500;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	color: var(--beige-dark-2);
	padding: 4px 0 0 32px;
}

@media (max-width: 1024px) {
	.delivery-section__slide-heading {
		font-size: 12px;
		line-height: 14px;
		letter-spacing: normal;
		background-size: contain;
		padding: 2px 0 0 24px;
	}
}

.delivery-section__slide-heading-icon {
	position: absolute;
	left: 0;
	top: 0;
	width: 24px;
	height: 24px;
	background-color: currentColor;
	mask-repeat: no-repeat;
}

@media (max-width: 1024px) {
	.delivery-section__slide-heading-icon {
		width: 16px;
		height: 16px;
	}
}

.delivery-section__slide-subheading {
	font-weight: 500;
	font-size: 16px;
	line-height: 20px;
	letter-spacing: -0.02em;
	text-transform: uppercase;
	margin: auto 0 12px 0;
}

@media (max-width: 1024px) {
	.delivery-section__slide-subheading {
		font-size: 14px;
		line-height: 18px;
		letter-spacing: -0.02em;
		margin: auto 0 8px 0;
	}
}

.delivery-section__slide-description-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.delivery-section__slide-description {
	font-weight: 400;
	font-size: 16px;
	line-height: 20px;
	word-wrap: break-word;
}

@media (max-width: 1024px) {
	.delivery-section__slide-description {
		font-size: 14px;
		line-height: 18px;
		letter-spacing: -0.02em;
	}
}

.delivery-section__slide-description a {
	color: inherit;
	text-decoration: none;
}

.delivery-section__slider .slick-dots {
	display: flex;
	justify-content: center;
	gap: 6px;
	list-style: none;
	margin: 20px auto 0;
	padding: 0;

}

.delivery-section__slider .slick-dots li {
	display: block;
}

.delivery-section__slider .slick-dots button {
	box-sizing: content-box;
	width: 6px;
	height: 6px;
	font-size: 0;
	line-height: 0;
	background-color: var(--base-white);
	padding: 3px;
	opacity: 0.4;
	padding: 0;
	border: none;
	border-radius: 50%;
}

.delivery-section__slider .slick-dots .slick-active button {
	opacity: 1;
}
/*  */
/* End Delivery section */
/*  */


/*  */
/* Accordeon section */
/*  */
.accordeon-section {
	padding: 96px 0 122px;
	margin-bottom: -26px;
}

@media (max-width: 1024px) {
	.accordeon-section {
		padding: 48px 0 64px;
		margin-bottom: -16px;
	}
}

.accordeon-section__heading {
	font-family: var(--font-tt-ramillas);
	font-weight: 400;
	font-size: 64px;
	line-height: 70px;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin-bottom: 40px;
	margin-left: 28%;
}

@media (max-width: 1024px) {
	.accordeon-section__heading {
		font-weight: 500;
		font-size: 36px;
		line-height: 40px;
		margin-bottom: 24px;
		margin-left: 0;
	}
}
/*  */
/* End Accordeon section */
/*  */


/*  */
/* Reviews section */
/*  */
.reviews-section {
	background-color: var(--base-white);
	padding: 64px 0 48px;
	border-radius: 26px 26px 0 0;
}

@media (max-width: 1024px) {
	.reviews-section {
		padding: 40px 0 24px;
		border-radius: 16px 16px 0 0;
	}
}

.reviews-section__top {
	display: flex;
	gap: 24px;
	align-items: flex-start;
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.reviews-section__top {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 20px;
	}
}

.reviews-section__heading {
	display: inline-block;
	max-width: 404px;
}

@media (max-width: 1024px) {
	.reviews-section__heading {
		max-width: 65.56vw;
	}
}

.reviews-section__counter {
	font-family: var(--font-tt-ramillas);
	font-weight: 400;
	font-size: 22px;
	line-height: 16px;
	font-style: italic;
	vertical-align: top;
	color: var(--gray-dark-3);
}

@media (max-width: 1024px) {
	.reviews-section__counter {
		font-size: 16px;
		line-height: 14px;
		opacity: 0.7;
	}
}

.reviews-section__rating-container {
	font-weight: 400;
	font-size: 12px;
	line-height: 16px;
	color: var(--gray-dark-5);
	text-transform: uppercase;
	text-decoration: none;
	background-image: url('/local/templates/imperialgarden/css/../images/icons/yandex-maps-icon.png');
	background-repeat: no-repeat;
	background-size: 40px 40px;
	margin-left: auto;
	padding-left: 52px;
}

@media (max-width: 1024px) {
	.reviews-section__rating-container {
		font-size: 10px;
		line-height: 12px;
		background-size: 36px 36px;
		margin-left: 0;
		padding-left: 48px;
	}
}

.reviews-section__rating-container span {
	display: block;
}

.reviews-section__rating {
	font-family: var(--font-tt-ramillas);
	font-weight: 500;
	font-size: 28px;
	line-height: 32px;
	letter-spacing: -0.03em;
	color: var(--base-dark-gray);
	margin-bottom: 8px;
}

@media (max-width: 1024px) {
	.reviews-section__rating {
		font-size: 18px;
		line-height: 24px;
		letter-spacing: normal;
		margin-bottom: 0;
	}
}

.reviews-section__slider-controls-buttons {
	display: flex;
	gap: 12px;
	margin-left: auto;
	margin-right: 0;
}

@media (max-width: 1024px) {
	.reviews-section__slider-controls-buttons {
		display: none;
	}
}

.reviews-section__slider-container.swiper {
	height: min-content;
	margin-bottom: 40px;
	margin-right: -1vw;
	overflow: visible;
}

@media (max-width: 1024px) {
	.reviews-section__slider-container {
		height: 102.78vw;
		overflow: hidden;
		margin: 0 -16 32px;
	}
}

.reviews-section__slider {
	height: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (max-width: 1024px) {
	.reviews-section__slider {
		width: 100%;
		margin-right: 16px;
	}
}

.reviews-section__slide {
	margin: 0;
	margin-right: 16px;
}

.reviews-section__slide:last-child {
	margin-right: 0;
}

@media (max-width: 1024px) {
	.reviews-section__slide {
		margin: 0;
		margin-right: 8px;
		width: calc(100vw - 32px);
	}

	.reviews-section__slide:last-child {
		margin-right: 0;
	}
}

.reviews-section__slider{
	overflow: visible;
}

.reviews-section__slide .review-card {
	width: auto;
}

@media (max-width: 1024px) {
	.reviews-section__slide .video-card,
	.reviews-section__slide .review-card {
		width: inherit;
	}
}

.reviews-section__button {
	margin: 0 auto;
}
/*  */
/* End Reviews section */
/*  */


/*  */
/* News section */
/*  */
.news-section {
	background-color: var(--base-white);
	padding: 48px 0 122px;
	margin-bottom: -26px;
}

@media (max-width: 1024px) {
	.news-section {
		padding: 24px 0 72px;
		margin-bottom: -24px;
	}
}

.news-section__top {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	align-items: center;
	margin-bottom: 32px;
}

@media (max-width: 1024px) {
	.news-section__top {
		margin-bottom: 20px;
	}
}

.news-section__heading {
	display: inline;
}

.news-section__counter {
	font-family: var(--font-tt-ramillas);
	font-weight: 400;
	font-size: 22px;
	line-height: 16px;
	font-style: italic;
	vertical-align: top;
	color: var(--gray-dark-3);
}

@media (max-width: 1024px) {
	.news-section__counter {
		font-size: 16px;
		line-height: 14px;
	}
}

.news-section__slider-controls-buttons {
	display: flex;
	gap: 12px;
}

@media (max-width: 1024px) {
	.news-section__slider-controls-buttons {
		display: none;
	}
}

.news-section__slider-container.swiper {
	height: min-content;
	margin-bottom: 40px;
	margin-right: -1vw;
	overflow: visible;
}

@media (max-width: 1024px) {
	.news-section__slider-container {
		width: 100%;
		overflow: hidden;
		margin-right: 0;
		margin-bottom: 40px;
	}
}

.news-section__slider {
	height: 100%;
	list-style: none;
	padding: 0;
	margin: 0;
}

@media (max-width: 1024px) {
	.news-section__slider {
		width: 100%;
	}
}

@media (max-width: 1024px) {
	.news-section__slide {
		margin: 0;
		margin-right: 8px;
		width: calc(100vw - 32px);
	}

	.news-section__slide:last-child {
		margin-right: 0;
	}
}

.news-section__slider {
	overflow: visible;
}

.news-section__slide .news-card {
	/* width: 98%; */
}

@media (max-width: 1024px) {
	.news-section__slide .news-card {
		width: inherit;
	}
}

.news-section__button {
	margin: 0 auto;
}
/*  */
/* End News section */
/*  */
/* End */


/* Start:/local/templates/imperialgarden/css/share-popup.css?17326140063495*/
.share-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
}

.share-popup__bg {
  width: 100%;
  height: 100%;
  background: none;
  background: rgba(25, 25, 22, 0.45);
  backdrop-filter: blur(8px);
}

.share-popup__body {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  padding: 48px 40px;
  background: var(--base-white);
  border-radius: 24px;
  transform: translate(-50%, -50%);
}

.share-popup__close {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 16px;
  top: 16px;
  background: url('/local/templates/imperialgarden/css/../images/icons/cross-b.svg') 50% 50% no-repeat;
  cursor: pointer;
}

.share-popup__title {
  margin-bottom: 32px;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
}

.share-popup__link {
  position: relative;
  width: 100%;
  margin-bottom: 24px;
  padding: 18px 56px 18px 24px;
  border: 1px solid #B7B7B7;
  border-radius: 400px;
}

.share-popup__link-text {
  width: 338px;
  font-size: 16px;
  line-height: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.share-popup__link-copy {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  top: 16px;
  right: 24px;
  background-image: url('/local/templates/imperialgarden/css/../images/icons/copy-icon.svg');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: background-image .3s;
}

.share-popup__link-copy:hover {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/copy-icon-b.svg');
}

.share-popup__social {
  margin: 0 auto;
}

.share-popup__social-text {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 20px;
  color: #787878;
  text-align: center;
}

.share-popup__social-items {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.share-popup__social-item {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px dashed var(--gray-dark-1);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  transition: border-color .3s, background-image .3s;
  cursor: pointer;
}

.share-popup__social-item--vk {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/vk-icon.svg');
}

.share-popup__social-item--vk:hover {
  border-color: var(--base-dark-gray);
  background-image: url('/local/templates/imperialgarden/css/../images/icons/vk-icon-b.svg');
}

.share-popup__social-item--dzen {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/dzen-icon.svg');
}

.share-popup__social-item--dzen:hover {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/dzen-icon-b.svg');
}

.share-popup__social-item--yt {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/yt-icon.svg');
}

.share-popup__social-item--yt:hover {
  border-color: var(--base-dark-gray);
  background-image: url('/local/templates/imperialgarden/css/../images/icons/yt-icon-b.svg');
}

.share-popup__social-item--tg {
  background-image: url('/local/templates/imperialgarden/css/../images/icons/tg-icon.svg');
}

.share-popup__social-item--tg:hover {
  border-color: var(--base-dark-gray);
  background-image: url('/local/templates/imperialgarden/css/../images/icons/tg-icon-b.svg');
}

@media(max-width: 768px) {
  .share-popup__body {
    width: 90%;
    padding: 32px 16px;
  }

  .share-popup__title {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1;
  }

  .share-popup__link {
    padding: 12px 52px 12px 24px;
  }

  .share-popup__link-text {
    width: 218px;
    font-size: 14px;
    line-height: 16px;
  }

  .share-popup__link-copy {
    top: 10px;
    right: 24px;
    width: 20px;
    height: 20px;
  }

  .share-popup__social-text {
    font-size: 14px;
    line-height: 20px;
  }

  .share-popup__social-item {
    width: 40px;
    height: 40px;
  }
}
/* End */


/* Start:/local/templates/imperialgarden/css/components/breadcrumbs.css?17515221951417*/
.breadcrumbs__container {
  width: 100%;
}

@media(max-width: 1024px) {
  .breadcrumbs__container {
    position: relative;
    width: 100vw;
    margin-left: -16px;
    z-index: 2;
  }
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  list-style: none;
  color: var(--base-dark-gray);
  scrollbar-width: none;
}

.breadcrumbs::-webkit-scrollbar {
  display: none;
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 16px;
  white-space: nowrap;
  transition: color .3s;
}

.breadcrumbs li:hover {
  color: var(--gray-dark-1);
}

.breadcrumbs li:active {
  color: initial;
  opacity: 0.12;
}

.breadcrumbs li.active {
  color: var(--gray-dark-1);
  pointer-events: none;
}

.breadcrumbs li.active:hover {
  color: var(--base-dark-gray);
}

.breadcrumbs li.active:active {
  color: initial;
  opacity: 0.12;
}

.breadcrumbs li a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  display: block;
  font-size: inherit;
  line-height: inherit;
  color: var(--gray-dark-1);
}

@media(max-width: 1024px) {
  .breadcrumbs {
    flex-wrap: nowrap;
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: scroll;
  }

  .breadcrumbs li {
    flex-shrink: 0;
  }

  .breadcrumbs li a {
    white-space: nowrap;
  }
}
/* End */
/* /local/templates/imperialgarden/components/bitrix/news/imperial-news/bitrix/news.detail/.default/style.css?174549020340 */
/* /local/templates/imperialgarden/css/news.css?174350442017820 */
/* /local/templates/imperialgarden/css/components/video.css?1733833645924 */
/* /local/templates/imperialgarden/css/components/news-card.css?17326140061136 */
/* /local/templates/imperialgarden/css/main_page.css?174317152026796 */
/* /local/templates/imperialgarden/css/share-popup.css?17326140063495 */
/* /local/templates/imperialgarden/css/components/breadcrumbs.css?17515221951417 */
