/* Inter */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/Inter/Inter-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../assets/fonts/Inter/Inter-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../assets/fonts/Inter/Inter-Bold.woff2") format("woff2");
}
html {
  scroll-padding-top: 60px;
}
@media only screen and (min-width: 60em) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  font-weight: 500;
  font-family: Inter, sans-serif; /* [1] */
  background-color: #fff; /* [2] */
  color: #000000; /* [3] */
}

main {
  display: grid;
  gap: 72px;
}
@media only screen and (min-width: 60em) {
  main {
    gap: 96px;
  }
}

button {
  font-family: inherit;
}

.rhs-gallery {
  --rhs-gallery-font-size: 20px;
  --rhs-gallery-line-height: 28px;
  --rhs-gallery-list-gap: 16px;
  --rhs-gallery-title-margin: 24px;
}
@media only screen and (min-width: 36em) {
  .rhs-gallery {
    --rhs-gallery-font-size: 24px;
    --rhs-gallery-line-height: 32px;
    --rhs-gallery-title-margin: 32px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-gallery {
    --rhs-gallery-font-size: 28px;
    --rhs-gallery-line-height: 36px;
    --rhs-gallery-list-gap: 24px;
    --rhs-gallery-title-margin: 48px;
  }
}
.rhs-gallery__title {
  margin-bottom: var(--rhs-gallery-title-margin);
  font-size: var(--rhs-gallery-font-size);
  line-height: var(--rhs-gallery-line-height);
}
.rhs-gallery__list {
  display: grid;
  gap: var(--rhs-gallery-list-gap);
}
@media only screen and (min-width: 36em) {
  .rhs-gallery__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 75em) {
  .rhs-gallery__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.rhs-gallery__item {
  position: relative;
  padding: 0;
  outline: none;
  background-color: transparent;
  border: none;
  aspect-ratio: 1;
  text-decoration: none;
  cursor: pointer;
}
.rhs-gallery__item-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: center;
}
.rhs-gallery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.rhs-gallery-lightbox {
  --rhs-gallery-lightbox-text-font-size: 14px;
  --rhs-gallery-lightbox-text-line-height: 22px;
  --rhs-gallery-lightbox-slide-count-text-font-size: 16px;
  --rhs-gallery-lightbox-slide-count-text-line-height: 24px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 12px;
  padding-top: 56px;
}
@media only screen and (min-width: 36em) {
  .rhs-gallery-lightbox {
    --rhs-gallery-lightbox-slide-count-text-font-size: 20px;
    --rhs-gallery-lightbox-slide-count-text-line-height: 28px;
  }
}
@media only screen and (min-width: 60em) {
  .rhs-gallery-lightbox {
    padding: 120px 12px;
    gap: 16px;
    --rhs-gallery-lightbox-slide-count-text-font-size: 14px;
    --rhs-gallery-lightbox-slide-count-text-line-height: 22px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-gallery-lightbox {
    gap: 24px;
    --rhs-gallery-lightbox-slide-count-text-font-size: 14px;
    --rhs-gallery-lightbox-slide-count-text-line-height: 22px;
  }
}
.rhs-gallery-lightbox__btn {
  position: absolute;
  z-index: 1000;
  height: -moz-max-content;
  height: max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: #fff;
  outline: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition-property: color;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
.rhs-gallery-lightbox__btn:hover {
  color: #F8F8F8;
}
.rhs-gallery-lightbox__btn--close {
  top: 24px;
  right: 12px;
}
@media only screen and (min-width: 36em) {
  .rhs-gallery-lightbox__btn--close {
    top: 32px;
    right: 32px;
  }
}
.rhs-gallery-lightbox__btn--prev, .rhs-gallery-lightbox__btn--next {
  display: none;
}
@media only screen and (min-width: 60em) {
  .rhs-gallery-lightbox__btn--prev, .rhs-gallery-lightbox__btn--next {
    display: block;
  }
}
.rhs-gallery-lightbox__btn--prev {
  left: 8px;
}
@media only screen and (min-width: 60em) {
  .rhs-gallery-lightbox__btn--prev {
    left: 32px;
  }
}
.rhs-gallery-lightbox__btn--next {
  right: 8px;
}
@media only screen and (min-width: 60em) {
  .rhs-gallery-lightbox__btn--next {
    right: 32px;
  }
}
.rhs-gallery-lightbox__btn .rhs-icon {
  width: 24px;
  height: 24px;
}
@media only screen and (min-width: 36em) {
  .rhs-gallery-lightbox__btn .rhs-icon {
    width: 32px;
    height: 32px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-gallery-lightbox__btn .rhs-icon {
    width: 40px;
    height: 40px;
  }
}
.rhs-gallery-lightbox__container {
  position: relative;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}
.rhs-gallery-lightbox__container-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 100vw;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition-property: opacity;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
@media only screen and (min-width: 60em) {
  .rhs-gallery-lightbox__container-slide {
    width: -moz-max-content;
    width: max-content;
  }
}
.rhs-gallery-lightbox__container-slide img {
  display: block;
  width: 100%;
  min-width: 320px;
  max-height: 70vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.rhs-gallery-lightbox__container-slide--active {
  opacity: 1;
  z-index: 10;
}
.rhs-gallery-lightbox__container-slide--product {
  width: 100%;
  display: grid;
}
.rhs-gallery-lightbox__info {
  display: flex;
  margin-top: 16px;
  color: #fff;
  padding: 0 12px;
  font-size: var(--rhs-gallery-lightbox-text-font-size);
  line-height: var(--rhs-gallery-lightbox-text-line-height);
}
@media only screen and (min-width: 36em) {
  .rhs-gallery-lightbox__info {
    margin-top: 24px;
    padding: 0 32px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-gallery-lightbox__info {
    padding: 0;
  }
}
.rhs-gallery-lightbox__description {
  width: 100%;
}
@media only screen and (min-width: 75em) {
  .rhs-gallery-lightbox__description {
    margin-right: 16px;
  }
}
.rhs-gallery-lightbox__slide-count {
  margin-left: auto;
  white-space: nowrap;
  color: #fff;
  font-size: var(--rhs-gallery-lightbox-slide-count-text-font-size);
  line-height: var(--rhs-gallery-lightbox-slide-count-text-line-height);
}
.rhs-gallery-lightbox__slide-count--desktop {
  display: none;
}
@media only screen and (min-width: 75em) {
  .rhs-gallery-lightbox__slide-count--desktop {
    display: flex;
  }
}
.rhs-gallery-lightbox__slide-count--mobile {
  position: absolute;
  top: 24px;
  left: 12px;
}
@media only screen and (min-width: 36em) {
  .rhs-gallery-lightbox__slide-count--mobile {
    top: 34px;
    left: 32px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-gallery-lightbox__slide-count--mobile {
    display: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 24px 0;
  font-weight: 700;
}
@media only screen and (min-width: 36em) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin-bottom: 32px;
  }
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 28px;
  line-height: 36px;
}
@media only screen and (min-width: 36em) {
  h1 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media only screen and (min-width: 75em) {
  h1 {
    font-size: 36px;
    line-height: 48px;
  }
}

h2 {
  font-size: 22px;
  line-height: 28px;
}
@media only screen and (min-width: 36em) {
  h2 {
    font-size: 24px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 75em) {
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

h3 {
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (min-width: 36em) {
  h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
@media only screen and (min-width: 75em) {
  h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

h4,
h5,
h6 {
  font-size: 16px;
  line-height: 24px;
}

a {
  color: #4FC7B5;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
a:hover, a:active {
  color: #309787;
  text-decoration: none;
}

b,
strong {
  font-weight: 700;
}

p,
ul,
ol,
blockquote {
  margin-top: 24px;
  margin-bottom: 0;
}

blockquote {
  margin-right: 0;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 4px solid #4FC7B5;
}

p + ul,
p + ol {
  margin-top: 8px;
}

p:first-child,
ul:first-child,
ol:first-child,
blockquote:first-child {
  margin-top: 0;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.table {
  --table-scroll-color: #EDEDED;
  --table-scroll-thumb-color: #B0B0B0;
  margin: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--table-scroll-thumb-color) var(--table-scroll-color);
}
.table::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: var(--stable-croll-color);
}
.table::-webkit-scrollbar-thumb {
  background-color: var(--table-scroll-thumb-color);
}

table:not(.rhs-mx-table) {
  --table-font-size: 14px;
  --table-line-height: 22px;
  --table-cell-padding-y: 18px;
  --table-cell-padding-x: 12px;
  --table-cell-bg: #fff;
  --table-cell-color: #000000;
  --table-cell-border-color: #D9D9D9;
  --table-head-cell-bg: #F8F8F8;
  --table-head-cell-color: #000000;
  width: 100%;
  margin: 0 0 8px;
  font-weight: 300;
  font-size: var(--table-font-size);
  line-height: var(--table-line-height);
}
@media only screen and (min-width: 36em) {
  table:not(.rhs-mx-table) {
    --table-cell-padding-y: 24px;
    --table-cell-padding-x: 16px;
  }
}
@media only screen and (min-width: 75em) {
  table:not(.rhs-mx-table) {
    --table-font-size: 16px;
    --table-line-height: 24px;
  }
}
table:not(.rhs-mx-table) th,
table:not(.rhs-mx-table) td {
  padding: var(--table-cell-padding-y) var(--table-cell-padding-x);
  text-align: left;
  background-color: var(--table-cell-bg);
  border: 1px solid var(--table-cell-border-color);
  color: var(--table-cell-color);
}
table:not(.rhs-mx-table) th {
  font-weight: 500;
  background-color: var(--table-head-cell-bg);
  color: var(--table-head-cell-color);
}

iframe {
  border: none;
  outline: none;
}

.rhs-hero-section .slider__nav-button {
  display: none;
}
@media only screen and (min-width: 60em) {
  .rhs-hero-section .slider__nav-button {
    display: block;
  }
}

.rhs-hero-item {
  --rhs-hero-item-height: 656px;
  --rhs-hero-item-text-bg: #fff;
  --rhs-hero-item-text-color: #4E4E4E;
  --rhs-hero-item-title-font-size: 20px;
  --rhs-hero-item-title-line-height: 28px;
  --rhs-hero-item-title-color: #000000;
  --rhs-hero-item-desritpion-font-size: 14px;
  --rhs-hero-item-desritpion-line-height: 22px;
  height: var(--rhs-hero-item-height);
}
@media only screen and (min-width: 36em) {
  .rhs-hero-item {
    --rhs-hero-item-title-font-size: 28px;
    --rhs-hero-item-title-line-height: 36px;
    --rhs-hero-item-desritpion-font-size: 16px;
    --rhs-hero-item-desritpion-line-height: 24px;
  }
}
@media only screen and (min-width: 60em) {
  .rhs-hero-item {
    --rhs-hero-item-height: 556px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-hero-item {
    --rhs-hero-item-title-font-size: 36px;
    --rhs-hero-item-title-line-height: 48px;
  }
}
.rhs-hero-item__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rhs-hero-item__container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}
@media only screen and (min-width: 60em) {
  .rhs-hero-item__container {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-hero-item__container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.rhs-hero-item__text-wrapper {
  padding: 24px;
  background: var(--rhs-hero-item-text-bg);
  color: var(--rhs-hero-item-text-color);
}
@media only screen and (min-width: 60em) {
  .rhs-hero-item__text-wrapper {
    width: 480px;
    margin-left: 114px;
  }
  .rhs-hero-item__text-wrapper--placement-left {
    margin-left: 114px;
  }
  .rhs-hero-item__text-wrapper--placement-right {
    margin-right: 114px;
    margin-left: auto;
  }
}
@media only screen and (min-width: 90em) {
  .rhs-hero-item__text-wrapper {
    margin-left: 0;
  }
  .rhs-hero-item__text-wrapper--placement-left {
    margin-left: 0;
  }
  .rhs-hero-item__text-wrapper--placement-right {
    margin-right: 0;
    margin-left: auto;
  }
}
.rhs-hero-item__title {
  margin: 0;
  font-weight: 700;
  font-size: var(--rhs-hero-item-title-font-size);
  line-height: var(--rhs-hero-item-title-line-height);
  color: var(--rhs-hero-item-title-color);
}
.rhs-hero-item__description {
  margin-top: 16px;
  font-size: var(--rhs-hero-item-desritpion-font-size);
  line-height: var(--rhs-hero-item-desritpion-line-height);
}
.rhs-hero-item__description:first-child {
  margin-top: 0;
}
.rhs-hero-item__btn {
  margin-top: 32px;
}

.rhs-slider {
  --rhs-slider-container-slide-gap: 24px;
  --rhs-slider-nav-buttons-position: 12px;
  --rhs-slider-nav-button-color: #fff;
  --rhs-slider-nav-button-hover-color: #4FC7B5;
  --rhs-slider-pagination-margin-y: 12px;
  --rhs-slider-pagination-bullet-width: 48px;
  --rhs-slider-pagination-bullet-height: 4px;
  --rhs-slider-pagination-bullet-bg: #D9D9D9;
  --rhs-slider-pagination-bullet-bg-active: #4FC7B5;
  position: relative;
  height: 100%;
}
@media only screen and (min-width: 36em) {
  .rhs-slider {
    --rhs-slider-nav-buttons-position: 32px;
    --rhs-slider-pagination-margin-y: 20px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-slider {
    --rhs-slider-pagination-margin-y: 28px;
  }
}
@media only screen and (min-width: 90em) {
  .rhs-slider--buttons-outside {
    --rhs-slider-nav-buttons-position: -72px;
    --rhs-slider-nav-button-color: #D9D9D9;
  }
}
.rhs-slider__container, .rhs-slider__pagination {
  list-style: none;
  margin: 0;
  padding: 0;
}
.rhs-slider__container {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  gap: var(--rhs-slider-container-slide-gap);
  overflow: hidden;
  touch-action: pan-y;
}
.rhs-slider__container-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
  transition-property: margin;
  transition-duration: 0.25s;
  transition-timing-function: ease-out;
}
.rhs-slider__nav-button {
  position: absolute;
  top: 50%;
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: var(--rhs-slider-nav-button-color);
  outline: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transform: translateY(-50%);
  transition-property: color;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
.rhs-slider__nav-button:hover {
  color: var(--rhs-slider-nav-button-hover-color);
}
.rhs-slider__nav-button--prev {
  left: var(--rhs-slider-nav-buttons-position);
}
.rhs-slider__nav-button--next {
  right: var(--rhs-slider-nav-buttons-position);
}
.rhs-slider__nav-button--disabled {
  color: var(--rhs-slider-nav-button-color);
  opacity: 0.5;
  pointer-events: none;
}
.rhs-slider__nav-icon {
  --rhs-icon-size: 40px;
}
.rhs-slider__pagination {
  position: static;
  display: flex;
  margin: var(--rhs-slider-pagination-margin-y) 0;
  justify-content: center;
  width: 100%;
}
.rhs-slider__pagination-bullet {
  display: inline-block;
  width: var(--rhs-slider-pagination-bullet-width);
  height: var(--rhs-slider-pagination-bullet-height);
  background-color: var(--rhs-slider-pagination-bullet-bg);
  cursor: pointer;
}
.rhs-slider__pagination-bullet--active {
  background-color: var(--rhs-slider-pagination-bullet-bg-active);
}

.rhs-container {
  width: 100%;
  max-width: 1264px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 12px;
  padding-left: 12px;
  box-sizing: border-box;
}
@media only screen and (min-width: 36em) {
  .rhs-container {
    padding-right: 32px;
    padding-left: 32px;
  }
}

:root {
  --rhs-container-gutter: 12px;
}
@media only screen and (min-width: 36em) {
  :root {
    --rhs-container-gutter: 32px;
  }
}

.rhs-icon {
  display: inline-block;
  width: var(--rhs-icon-size, 16px);
  height: var(--rhs-icon-size, 16px);
  fill: currentColor;
}
.rhs-icon--name-sort-bottom path:nth-child(2) {
  fill: #B0B0B0;
}
.rhs-icon--name-wapp, .rhs-icon--name-telegram {
  width: 32px;
  height: 32px;
}
@media only screen and (min-width: 60em) {
  .rhs-icon--name-wapp, .rhs-icon--name-telegram {
    width: 24px;
    height: 24px;
  }
}
.rhs-icon--name--phone {
  text-align: center;
}
.rhs-icon--name-sort-top path:nth-child(1) {
  fill: #B0B0B0;
}

.rhs-form {
  --rhs-form-padding-y: 48px;
  --rhs-form-padding-x: 12px;
  --rhs-form-bg: #F8F8F8;
  --rhs-form-wrapper-padding: 24px;
  --rhs-form-wrapper-bg: #fff;
  background-image: url("../assets/image/form/bg-form.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position-y: 75%;
}
@media only screen and (min-width: 36em) {
  .rhs-form {
    --rhs-form-padding-y: 64px;
    --rhs-form-padding-x: 32px;
    --rhs-form-description-font-size: 16px;
    --rhs-form-description-line-height: 24px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-form {
    --rhs-form-padding-y: 96px;
  }
}
.rhs-form__container {
  padding: var(--rhs-form-padding-y) var(--rhs-form-padding-x);
}
.rhs-form__container--left .rhs-form__wrapper, .rhs-form__container--center .rhs-form__wrapper {
  margin: 0 auto;
}
.rhs-form__container--right {
  display: grid;
  justify-content: center;
}
@media only screen and (min-width: 75em) {
  .rhs-form__container--right {
    gap: 40px;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    justify-content: space-between;
  }
}
.rhs-form__container--right .rhs-form__description {
  width: 100%;
}
@media only screen and (min-width: 75em) {
  .rhs-form__container--right .rhs-form__description {
    padding-bottom: var(--rhs-form-wrapper-padding);
  }
}
.rhs-form__wrapper {
  max-width: 792px;
  padding: var(--rhs-form-wrapper-padding);
  background-color: var(--rhs-form-wrapper-bg);
}
@media only screen and (min-width: 36em) {
  .rhs-form__wrapper {
    --rhs-form-wrapper-padding: 32px;
  }
}
.rhs-form__description {
  padding-bottom: 0;
}
.rhs-form__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 60em) {
  .rhs-form__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.rhs-form-description {
  --rhs-form-title-font-size: 22px;
  --rhs-form-title-line-height: 28px;
  --rhs-form-title-color: #000000;
  --rhs-form-description-font-size: 16px;
  --rhs-form-description-line-height: 24px;
  --rhs-form-description-color: #000000;
  box-sizing: border-box;
}
@media only screen and (min-width: 36em) {
  .rhs-form-description {
    --rhs-form-title-font-size: 24px;
    --rhs-form-title-line-height: 32px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-form-description {
    --rhs-form-title-font-size: 28px;
    --rhs-form-title-line-height: 36px;
  }
}
.rhs-form-description__title {
  margin: 0;
  font-weight: 700;
  font-size: var(--rhs-form-title-font-size);
  line-height: var(--rhs-form-title-line-height);
  color: var(--rhs-form-title-color);
}
.rhs-form-description__text {
  margin: 16px 0 0;
  font-size: var(--rhs-form-description-font-size);
  line-height: var(--rhs-form-description-line-height);
  font-weight: 500;
  color: var(--rhs-form-description-color);
}
.rhs-form-description__text p {
  margin: 0;
  padding: 0;
}

.rhs-button {
  display: inline-block;
  padding: var(--rhs-button-padding-y) var(--rhs-button-padding-x);
  font-weight: 500;
  font-size: var(--rhs-button-font-size);
  line-height: var(--rhs-button-line-height);
  text-align: center;
  text-decoration: none;
  background-color: var(--rhs-button-bg);
  border: 1px solid var(--rhs-button-border-color);
  outline: none;
  color: var(--rhs-button-color);
  cursor: pointer;
  transition-property: background-color, color, border-color;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
.rhs-button:hover {
  text-decoration: none;
  background-color: var(--rhs-button-hover-bg);
  border-color: var(--rhs-button-hover-border-color);
  color: var(--rhs-button-hover-color);
}
.rhs-button:focus-visible {
  box-shadow: 0 0 0 3px var(--rhs-button-focus-color);
}
.rhs-button:disabled {
  background-color: var(--rhs-button-disabled-bg);
  border-color: var(--rhs-button-disabled-border-color);
  color: var(--rhs-button-disabled-color);
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.rhs-button--center {
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 32px auto 0 auto;
}
@media only screen and (min-width: 36em) {
  .rhs-button--center {
    margin-top: 48px;
  }
}
.rhs-button--variant-accent {
  --rhs-button-bg: #4FC7B5;
  --rhs-button-color: #fff;
  --rhs-button-border-color: transparent;
  --rhs-button-hover-bg: #309787;
  --rhs-button-hover-color: #fff;
  --rhs-button-hover-border-color: transparent;
  --rhs-button-focus-color: #309787;
  --rhs-button-disabled-bg: #D9D9D9;
  --rhs-button-disabled-color: #fff;
  --rhs-button-disabled-border-color: transparent;
}
.rhs-button--size-s {
  --rhs-button-padding-y: 4px;
  --rhs-button-padding-x: 31px;
  --rhs-button-font-size: 14px;
  --rhs-button-line-height: 22px;
  --rhs-button-icon-size: 12px;
}
@media only screen and (min-width: 36em) {
  .rhs-button--size-s {
    --rhs-button-padding-y: 7px;
    --rhs-button-padding-x: 31px;
    --rhs-button-font-size: 16px;
    --rhs-button-line-height: 24px;
    --rhs-button-icon-size: 16px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-button--size-s {
    --rhs-button-padding-y: 9px;
    --rhs-button-padding-x: 31px;
    --rhs-button-font-size: 16px;
    --rhs-button-line-height: 24px;
  }
}
.rhs-button--size-m {
  --rhs-button-padding-y: 7px;
  --rhs-button-padding-x: 31px;
  --rhs-button-font-size: 16px;
  --rhs-button-line-height: 24px;
  --rhs-button-icon-size: 16px;
}
@media only screen and (min-width: 36em) {
  .rhs-button--size-m {
    --rhs-button-padding-y: 9px;
    --rhs-button-padding-x: 31px;
    --rhs-button-font-size: 16px;
    --rhs-button-line-height: 24px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-button--size-m {
    --rhs-button-padding-y: 11px;
    --rhs-button-padding-x: 31px;
    --rhs-button-font-size: 16px;
    --rhs-button-line-height: 24px;
  }
}
.rhs-button--mobile-call {
  display: none;
}
@media only screen and (min-width: 60em) {
  .rhs-button--mobile-call {
    display: inline-block;
  }
}
.rhs-button--icon-mobile {
  display: inline-flex;
  padding: 10px;
  --rhs-button-icon-size: 12px;
  border: none;
}
@media only screen and (min-width: 60em) {
  .rhs-button--icon-mobile {
    display: none;
  }
}
.rhs-button--has-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--rhs-button-inner-gap);
}
.rhs-button--has-icon.rhs-button--size-m {
  --rhs-button-inner-gap: 12px;
  --rhs-button-padding-x: 19px;
}
.rhs-button .rhs-icon {
  width: var(--rhs-button-icon-size);
  height: var(--rhs-button-icon-size);
}

.rhs-icon-button {
  display: inline-flex;
  padding: var(--rhs-icon-button-padding);
  text-decoration: none;
  background-color: var(--rhs-icon-button-bg);
  border: 1px solid var(--rhs-icon-button-border-color);
  color: var(--rhs-icon-button-color);
  cursor: pointer;
  transition-property: background-color, color, border-color;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
.rhs-icon-button:hover {
  background-color: var(--rhs-icon-button-hover-bg);
  color: var(--rhs-icon-button-hover-color);
  border-color: var(--rhs-icon-button-hover-border-color);
}
.rhs-icon-button:focus-visible {
  box-shadow: 0 0 0 3px var(--rhs-icon-button-focus-color);
  outline: none;
}
.rhs-icon-button--variant-accent {
  --rhs-icon-button-bg: #4FC7B5;
  --rhs-icon-button-color: #fff;
  --rhs-icon-button-border-color: transparent;
  --rhs-icon-button-hover-bg: #309787;
  --rhs-icon-button-hover-color: #fff;
  --rhs-icon-button-hover-border-color: transparent;
  --rhs-icon-button-focus-color: #309787;
  --rhs-icon-button-disabled-bg: #D9D9D9;
  --rhs-icon-button-disabled-color: #fff;
  --rhs-icon-button-disabled-border-color: transparent;
}
.rhs-icon-button--size-m {
  --rhs-icon-button-padding: 11px;
  --rhs-icon-button-icon-size: 16px;
}
@media only screen and (min-width: 36em) {
  .rhs-icon-button--size-m {
    --rhs-icon-button-padding: 13px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-icon-button--size-m {
    --rhs-icon-button-padding: 15px;
  }
}
.rhs-icon-button--size-l {
  --rhs-icon-button-padding: 13px;
  --rhs-icon-button-icon-size: 16px;
}
@media only screen and (min-width: 36em) {
  .rhs-icon-button--size-l {
    --rhs-icon-button-padding: 15px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-icon-button--size-l {
    --rhs-icon-button-padding: 17px;
    --rhs-icon-button-icon-size: 20px;
  }
}

.rhs-input {
  --rhs-input-disabled-color: #B0B0B0;
  --rhs-input-item-padding-y: 10px;
  --rhs-input-item-padding-x: 16px;
  --rhs-input-item-color: #000000;
  --rhs-input-item-bg: #fff;
  --rhs-input-item-border: #D9D9D9;
  --rhs-input-item-focus-border: #000000;
  --rhs-input-item-disabled-color: #000000;
  --rhs-input-item-disabled-bg: #F8F8F8;
  --rhs-input-item-disabled-border: #EDEDED;
  --rhs-input-item-placeholder-color: #B0B0B0;
  --rhs-input-item-error-border: #E50040;
  --rhs-input-icon-color: #B0B0B0;
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 0;
  border: none;
}
.rhs-input--disabled {
  color: var(--rhs-input-disabled-color);
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.rhs-input--type-password .rhs-input__item {
  padding-right: calc(var(--rhs-input-item-padding-x) + var(--rhs-input-button-size) + var(--rhs-input-item-gap));
}
.rhs-input--error .rhs-input__item {
  border-color: var(--rhs-input-item-error-border);
}
.rhs-input--size-m {
  --rhs-input-item-padding-y: 7px;
  --rhs-input-item-padding-x: 15px;
  --rhs-input-item-gap: 6px;
  --rhs-input-button-size: 20px;
  --rhs-input-font-size: 16px;
  --rhs-input-line-height: 24px;
}
@media only screen and (min-width: 36em) {
  .rhs-input--size-m {
    --rhs-input-item-padding-y: 9px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-input--size-m {
    --rhs-input-item-padding-y: 11px;
  }
}
.rhs-input__wrapper {
  position: relative;
}
.rhs-input__item {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: var(--rhs-input-item-padding-y) var(--rhs-input-item-padding-x);
  font: inherit;
  font-weight: 500;
  font-size: var(--rhs-input-font-size);
  line-height: var(--rhs-input-line-height);
  color: var(--rhs-input-item-color);
  background-color: var(--rhs-input-item-bg);
  border: 1px solid var(--rhs-input-item-border);
  transition-property: border-color;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
.rhs-input__item::-moz-placeholder {
  color: var(--rhs-input-item-placeholder-color);
}
.rhs-input__item::placeholder {
  color: var(--rhs-input-item-placeholder-color);
}
.rhs-input__item:focus, .rhs-input__item:focus-visible {
  border: 1px solid var(--rhs-input-item-focus-border);
  border-radius: 0;
  box-sizing: border-box;
  outline: 0;
}
.rhs-input__item:focus ~ .rhs-input__button, .rhs-input__item:focus-visible ~ .rhs-input__button {
  color: var(--rhs-input-item-color);
}
.rhs-input__button {
  position: absolute;
  top: 0;
  right: var(--rhs-input-item-padding-x);
  width: -moz-max-content;
  width: max-content;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  color: var(--rhs-input-icon-color);
}
.rhs-input__button .icon {
  width: var(--rhs-input-button-size);
  height: var(--rhs-input-button-size);
}

.rhs-input-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
}

.rhs-textarea {
  --rhs-textarea-item-color: #000000;
  --rhs-textarea-item-border: #D9D9D9;
  --rhs-textarea-item-bg: #fff;
  --rhs-textarea-item-border-focus: #000000;
  --rhs-textarea-item-disabled-color: #000000;
  --rhs-textarea-item-disabled-border-color: #EDEDED;
  --rhs-textarea-item-disabled-bg: #F8F8F8;
  --rhs-textarea-item-placeholder-color: #B0B0B0;
  --rhs-textarea-item-error-border-color: #E50040;
  display: flex;
  flex-direction: column;
  border: none;
}
.rhs-textarea--error .rhs-textarea__item {
  border-color: var(--rhs-textarea-item-error-border-color);
}
.rhs-textarea--size-m {
  --rhs-textarea-item-padding-y: 7px;
  --rhs-textarea-item-padding-x: 15px;
  --rhs-textarea-item-font-size: 16px;
  --rhs-textarea-item-line-height: 24px;
}
@media only screen and (min-width: 36em) {
  .rhs-textarea--size-m {
    --rhs-textarea-item-padding-y: 9px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-textarea--size-m {
    --rhs-textarea-item-padding-y: 11px;
  }
}
.rhs-textarea__item {
  width: 100%;
  box-sizing: border-box;
  min-height: 120px;
  padding: var(--rhs-textarea-item-padding-y) var(--rhs-textarea-item-padding-x);
  font: inherit;
  font-weight: 500;
  font-size: var(--rhs-textarea-item-font-size);
  line-height: var(--rhs-textarea-item-line-height);
  color: var(--rhs-textarea-item-color);
  border: 1px solid var(--rhs-textarea-item-border);
  background-color: var(--rhs-textarea-item-bg);
  resize: vertical;
  transition-property: border-color;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
.rhs-textarea__item::-moz-placeholder {
  color: var(--rhs-textarea-item-placeholder-color);
}
.rhs-textarea__item::placeholder {
  color: var(--rhs-textarea-item-placeholder-color);
}
.rhs-textarea__item:focus, .rhs-textarea__item:focus-visible {
  border: 1px solid var(--rhs-textarea-item-border-focus);
  border-radius: 0;
  box-sizing: border-box;
  outline: 0;
}

.rhs-checkbox {
  --rhs-checkbox-bg: transparent;
  --rhs-checkbox-color: #fff;
  --rhs-checkbox-border-color: #B0B0B0;
  --rhs-checkbox-hover-bg: transparent;
  --rhs-checkbox-hover-border-color: #309787;
  --rhs-checkbox-text-color: inherit;
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: var(--rhs-checkbox-gap);
  vertical-align: middle;
  font-weight: 500;
  font-size: var(--rhs-checkbox-font-size);
  line-height: var(--rhs-checkbox-line-height);
  color: var(--rhs-checkbox-text-color);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.rhs-checkbox--size-m {
  --rhs-checkbox-gap: 12px;
  --rhs-checkbox-size: 24px;
  --rhs-checkbox-icon-size: 20px;
  --rhs-checkbox-font-size: 16px;
  --rhs-checkbox-line-height: 24px;
}
.rhs-checkbox-error {
  --rhs-checkbox-border-color: #E50040;
}
.rhs-checkbox-checked {
  --rhs-checkbox-bg: #4FC7B5;
  --rhs-checkbox-color: #fff;
  --rhs-checkbox-border-color: #4FC7B5;
  --rhs-checkbox-hover-bg: #309787;
  --rhs-checkbox-hover-border-color: #309787;
}
.rhs-checkbox-checked.rhs-checkbox-error {
  --rhs-checkbox-bg: #E50040;
  --rhs-checkbox-color: #fff;
  --rhs-checkbox-border-color: #E50040;
}
.rhs-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.rhs-checkbox__mark {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--rhs-checkbox-size);
  height: var(--rhs-checkbox-size);
  background-color: var(--rhs-checkbox-bg);
  border: 1px solid var(--rhs-checkbox-border-color);
  color: var(--rhs-checkbox-color);
  transition-property: background-color, color, border-color;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
.rhs-checkbox:not(.rhs-checkbox-disabled):not(.rhs-checkbox-error):hover .rhs-checkbox__mark {
  background-color: var(--rhs-checkbox-hover-bg);
  border-color: var(--rhs-checkbox-hover-border-color);
}
.rhs-checkbox__mark .rhs-icon {
  width: var(--rhs-checkbox-icon-size);
  height: var(--rhs-checkbox-icon-size);
}

.rhs-label {
  display: inline-block;
  font-weight: 500;
  font-size: var(--rhs-label-font-size);
  line-height: var(--rhs-label-line-height);
  color: #818181;
  margin: 0;
}
.rhs-label--m {
  padding-bottom: 6px;
  --rhs-label-font-size: 14px;
  --rhs-label-line-height: 22px;
}
.rhs-label span {
  color: #E50040;
}

.rhs-form-error-message {
  width: 100%;
  margin-bottom: 0;
  margin-top: 6px;
  --rhs-form-help-font-size: 14px;
  --rhs-form-help-line-height: 22px;
  font-size: var(--rhs-form-help-font-size);
  line-height: var(--rhs-form-help-line-height);
  font-weight: 500;
  color: #E50040;
}

.rhs-form-help-message {
  margin-top: 6px;
  margin-bottom: 0;
  --rhs-form-help-font-size: 14px;
  --rhs-form-help-line-height: 22px;
  font-size: var(--rhs-form-help-font-size);
  line-height: var(--rhs-form-help-line-height);
  font-weight: 500;
}
.rhs-form-help-message--error {
  color: #E50040;
}
.rhs-form-help-message--success {
  color: #4FC7B5;
}

.rhs-item-box {
  display: grid;
  gap: 24px;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box {
    grid-template-columns: repeat(12, 1fr);
  }
}
.rhs-item-box__column {
  grid-column: span 12;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box__column {
    grid-column: span 5;
  }
  .rhs-item-box--type-grid_5_7 .rhs-item-box__column:nth-child(even) {
    grid-column: span 7;
  }
  .rhs-item-box--type-grid_7_5 .rhs-item-box__column:nth-child(odd) {
    grid-column: span 7;
  }
  .rhs-item-box__column .rhs-item-box--type-grid_6_6 {
    grid-column: span 6;
  }
  .rhs-item-box__column--full {
    grid-column: span 12 !important;
  }
}
.rhs-item-box__column--type-grid_6 {
  grid-column: span 12;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box__column--type-grid_6 {
    grid-column: span 6;
  }
  .rhs-item-box__column--type-grid_6 .rhs-item-box--type-grid_6_6 {
    grid-column: span 6;
  }
}
.rhs-item-box__column-first {
  background-repeat: no-repeat;
  background-size: cover;
}
.rhs-item-box__column-first--service {
  order: -1;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box__column-first--service {
    order: 1;
  }
}
.rhs-item-box__column-first--sertificate {
  background-image: url("../assets/image/sertification/img-sert.jpg");
}

.rhs-item-box-item {
  --rhs-item-box-item-content-max-height: auto;
  --rhs-item-box-item-slide-icon-color: #fff;
  --rhs-item-box-pagination-bullet-bg: #fff;
  --rhs-item-box-pagination-bullet-bg-active: #4FC7B5;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item {
    --rhs-item-box-item-content-max-height: 415px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item {
    --rhs-item-box-item-content-max-height: 486px;
  }
}
.rhs-item-box-item--reverse .rhs-item-box-item__slider {
  order: 1;
}
.rhs-item-box-item--reverse .rhs-item-box-item__video {
  order: -1;
}
.rhs-item-box-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  grid-column: span 12;
}
.rhs-item-box-item__slider {
  grid-column: span 12;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item__slider {
    grid-column: span 6;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item__slider {
    grid-column: span 5;
  }
}
.rhs-item-box-item__slider--map {
  grid-column: span 12;
  min-height: 392px;
  height: auto;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item__slider--map {
    grid-column: span 6;
    min-height: 415px;
    height: auto;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item__slider--map {
    grid-column: span 7;
  }
}
.rhs-item-box-item__slider .rhs-slider__pagination {
  position: absolute;
  bottom: 24px;
  margin: 0;
}
.rhs-item-box-item__slider__slider {
  grid-column: span 12;
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item__slider__slider {
    grid-column: span 12;
  }
}
.rhs-item-box-item__slider__slider .rhs-slider__pagination {
  position: absolute;
  bottom: 24px;
  margin: 0;
}
.rhs-item-box-item__slider__slider .rhs-slider__pagination-bullet {
  background-color: var(--rhs-item-box-pagination-bullet-bg);
}
.rhs-item-box-item__slider__slider .rhs-slider__pagination-bullet--active {
  background-color: var(--rhs-item-box-pagination-bullet-bg-active);
}
.rhs-item-box-item__text {
  grid-column: span 12;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item__text {
    grid-column: span 12;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item__text {
    grid-column: span 5;
  }
  .rhs-item-box-item__slider + .rhs-item-box-item__text {
    grid-column: span 7;
  }
  .rhs-item-box-item__text:only-child {
    grid-column: span 12;
  }
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item__text--map {
    grid-column: span 6;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item__text--map {
    grid-column: span 5;
  }
}
.rhs-item-box-item__text--product {
  max-height: 392px;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item__text--product {
    max-height: 415px;
    grid-column: span 6;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item__text--product {
    max-height: 486px;
  }
}
.rhs-item-box-item__video {
  grid-column: span 12;
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item__video {
    grid-column: span 7;
  }
}

.rhs-item-box-item {
  --rhs-item-box-item-slide-icon-color: #fff;
  --rhs-item-box-item-slide-icon-size: 21px;
}
@media only screen and (min-width: 36em) {
  .rhs-item-box-item {
    --rhs-item-box-item-slide-icon-size: 28px;
  }
}
.rhs-item-box-item__slide {
  position: relative;
  height: var(--rhs-item-box-item-content-max-height);
}
.rhs-item-box-item__slide--product {
  height: 320px;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item__slide--product {
    height: 415px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item__slide--product {
    height: 486px;
  }
}
.rhs-item-box-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rhs-item-box-item__tooltip {
  position: absolute;
  top: 10px;
  right: 10px;
}
@media only screen and (min-width: 36em) {
  .rhs-item-box-item__tooltip {
    top: 25px;
    right: 25px;
  }
}
.rhs-item-box-item__tooltip .rhs-icon {
  --rhs-icon-size: var( --rhs-item-box-item-slide-icon-size);
  color: var(--rhs-item-box-item-slide-icon-color);
}

.rhs-item-box-item-text {
  --rhs-item-box-item-text-height: 16px;
  --rhs-item-box-item-text-padding-x: 12px;
  --rhs-item-box-item-text-bg: #F8F8F8;
  --rhs-item-box-item-text-color: #000000;
  display: grid;
  grid-template-rows: 1fr max-content;
  background-color: var(--rhs-item-box-item-text-bg);
  color: var(--rhs-item-box-item-text-color);
}
@media only screen and (min-width: 36em) {
  .rhs-item-box-item-text {
    --rhs-item-box-item-text-height: 32px;
    --rhs-item-box-item-text-padding-x: 32px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item-text {
    --rhs-item-box-item-text-height: 48px;
    --rhs-item-box-item-text-padding-x: 48px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item-text {
    height: var(--rhs-item-box-item-content-max-height);
  }
}
.rhs-item-box-item-text__content {
  position: relative;
  flex: 1 1 0;
  overflow-x: auto;
  padding: 0 var(--rhs-item-box-item-text-padding-x);
}
.rhs-item-box-item-text__content::-webkit-scrollbar {
  height: 0;
}
.rhs-item-box-item-text__content::before, .rhs-item-box-item-text__content::after {
  content: "";
  position: sticky;
  left: 0;
  display: block;
  height: var(--rhs-item-box-item-text-height);
  background: linear-gradient(rgba(248, 248, 248, 0), rgb(248, 248, 248));
}
.rhs-item-box-item-text__content::before {
  top: 0;
  transform: rotate(-180deg);
}
.rhs-item-box-item-text__content::after {
  bottom: 0;
}
.rhs-item-box-item-text__title {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 22px;
  line-height: 36px;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item-text__title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item-text__title {
    font-size: 28px;
  }
}
.rhs-item-box-item-text__title--product, .rhs-item-box-item-text__title--map {
  margin-bottom: 12px;
}
.rhs-item-box-item-text h3 {
  font-size: 16px;
  margin-top: 16px;
  line-height: 24px;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item-text h3 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item-text h3 {
    font-size: 20px;
  }
}
.rhs-item-box-item-text__description {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
}
.rhs-item-box-item-text__description ul {
  font-weight: 300;
  padding-left: 18px;
}
.rhs-item-box-item-text__description--map p {
  margin: 0;
}
.rhs-item-box-item-text__description--map p:nth-child(even) {
  font-weight: 300;
}
.rhs-item-box-item-text__description--map p:nth-child(odd) {
  margin-top: 8px;
}
.rhs-item-box-item-text__description--product p {
  margin-top: 12px;
}
.rhs-item-box-item-text__description--product li {
  list-style-type: disc;
}
.rhs-item-box-item-text__description--product p {
  margin-top: 12px;
}
.rhs-item-box-item-text__description--product p span {
  font-weight: 700;
}
.rhs-item-box-item-text__description--product li {
  list-style-type: disc;
}
.rhs-item-box-item-text__bottom {
  z-index: 1;
  padding: 0 var(--rhs-item-box-item-text-padding-x) 48px;
}
@media only screen and (min-width: 36em) {
  .rhs-item-box-item-text__bottom {
    margin-top: -8px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item-text__bottom {
    margin-top: -24px;
  }
}

.rhs-item-box-item__content {
  --rhs-item-box-item-text-bg: #F8F8F8;
  margin: 167px 12px 12px 12px;
  grid-column: span 12;
  font-size: 12px;
}
.rhs-item-box-item__content-container {
  background-color: var(--rhs-item-box-item-text-bg);
  display: flex;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding: 24px;
  line-height: 1.25;
  justify-content: space-between;
}
.rhs-item-box-item__content--first {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}
.rhs-item-box-item__content--second img {
  max-width: -moz-max-content;
  max-width: max-content;
}
.rhs-item-box-item__content--title {
  font-size: 12px;
  margin: 0;
  line-height: 1.5;
}
.rhs-item-box-item__content--description {
  line-height: 1.5;
  font-weight: 300;
}
@media only screen and (min-width: 60em) {
  .rhs-item-box-item__content {
    margin: 260px 32px 32px 32px;
  }
  .rhs-item-box-item__content-container {
    -moz-column-gap: 16px;
         column-gap: 16px;
    padding: 24px;
  }
  .rhs-item-box-item__content--title {
    font-size: 14px;
  }
  .rhs-item-box-item__content--description {
    font-size: 14px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-item-box-item__content {
    margin: 248px 48px 48px 48px;
  }
  .rhs-item-box-item__content-container {
    -moz-column-gap: 24px;
         column-gap: 24px;
    padding: 32px;
  }
  .rhs-item-box-item__content--title {
    font-size: 16px;
  }
  .rhs-item-box-item__content--description {
    font-size: 16px;
  }
}

.rhs-player {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 70.435%;
}
.rhs-player__iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rhs-contact-banner {
  --rhs-contact-banner-title-font-size: 20px;
  --rhs-contact-banner-title-line-height: 28px;
  --rhs-contact-banner-description-font-size: 16px;
  --rhs-contact-banner-description-line-height: 24px;
  --rhs-contact-banner-padding-y: 24px;
  --rhs-contact-banner-description-margin: 12px;
  --rhs-contact-banner-color-white: #fff;
  --rhs-contact-banner-color-black: #000000;
  --rhs-contact-banner-color-red: #E50040;
  --rhs-contact-banner-color-gray: #F8F8F8;
  color: var(--rhs-contact-banner-color-white);
}
@media only screen and (min-width: 36em) {
  .rhs-contact-banner {
    --rhs-contact-banner-padding-y: 32px;
    --rhs-contact-banner-description-margin: 24px;
    --rhs-contact-banner-title-font-size: 24px;
    --rhs-contact-banner-title-line-height: 32px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-contact-banner {
    --rhs-contact-banner-title-font-size: 28px;
    --rhs-contact-banner-title-line-height: 36px;
    --rhs-contact-banner-padding-y: 42px;
  }
}
.rhs-contact-banner__container {
  display: grid;
  gap: 24px;
  padding-top: var(--rhs-contact-banner-padding-y);
  padding-bottom: var(--rhs-contact-banner-padding-y);
}
@media only screen and (min-width: 60em) {
  .rhs-contact-banner__container {
    grid-template-columns: 6fr 6fr;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-contact-banner__container {
    grid-template-columns: 6fr 6fr;
  }
}
.rhs-contact-banner__block:first-child a {
  text-decoration: none;
  color: inherit;
}
.rhs-contact-banner__block:first-child a:hover {
  text-decoration: underline;
}
@media only screen and (min-width: 75em) {
  .rhs-contact-banner__block:last-child {
    margin-left: auto;
  }
}
.rhs-contact-banner__title {
  margin: 0;
  font-size: var(--rhs-contact-banner-title-font-size);
  line-height: var(--rhs-contact-banner-title-line-height);
  font-weight: 700;
}
.rhs-contact-banner__title--partner {
  font-size: 22px;
}
@media only screen and (min-width: 60em) {
  .rhs-contact-banner__title--partner {
    font-size: 24px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-contact-banner__title--partner {
    font-size: 28px;
  }
}
.rhs-contact-banner__description {
  margin: var(--rhs-contact-banner-description-margin) 0 0;
  font-size: var(--rhs-contact-banner-description-font-size);
  line-height: var(--rhs-contact-banner-description-line-height);
  font-weight: 500;
}
.rhs-contact-banner--color-gray {
  color: var(--rhs-contact-banner-color-black);
  background-color: var(--rhs-contact-banner-color-gray);
}

.rhs-feature-box-large__list {
  display: grid;
  gap: 16px;
}
@media only screen and (min-width: 36em) {
  .rhs-feature-box-large__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 75em) {
  .rhs-feature-box-large__list--type-two {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 75em) {
  .rhs-feature-box-large__list--type-three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.rhs-feature-box-item-large {
  --rhs-feature-box-item-large-padding: 12px;
  --rhs-feature-box-item-large-height-btn: 32px;
  --rhs-feature-box-item-large-margin-btn: 24px;
  --rhs-feature-box-item-large-title-font-size: 20px;
  --rhs-feature-box-item-large-title-line-height: 28px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  color: var(--rhs-feature-box-item-large-color);
  background-color: var(--rhs-feature-box-item-large-bg);
}
@media only screen and (min-width: 75em) {
  .rhs-feature-box-item-large {
    --rhs-feature-box-item-large-padding: 24px;
    flex-direction: row;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.rhs-feature-box-item-large--advantage {
  flex-direction: column;
}
.rhs-feature-box-item-large--color-black {
  --rhs-feature-box-item-large-bg: #000000;
  --rhs-feature-box-item-large-color: #fff;
}
.rhs-feature-box-item-large--color-green {
  --rhs-feature-box-item-large-bg: #4FC7B5;
  --rhs-feature-box-item-large-color: #fff;
}
.rhs-feature-box-item-large--color-grey {
  --rhs-feature-box-item-large-bg: #F8F8F8;
  --rhs-feature-box-item-large-color: #000000;
}
.rhs-feature-box-item-large--color-red {
  --rhs-feature-box-item-large-bg: #E50040;
  --rhs-feature-box-item-large-color: #fff;
}
.rhs-feature-box-item-large__icon {
  margin-bottom: 24px;
}
.rhs-feature-box-item-large__icon img {
  display: block;
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (min-width: 75em) {
  .rhs-feature-box-item-large__icon img {
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
.rhs-feature-box-item-large__icon--advantage {
  margin-bottom: 0;
}
.rhs-feature-box-item-large__title {
  margin-bottom: 4px;
  font-size: 22px;
  line-height: var(--rhs-feature-box-item-large-title-line-height);
  font-weight: 700;
}
.rhs-feature-box-item-large__title:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 60em) {
  .rhs-feature-box-item-large__title {
    margin-bottom: 10px;
    font-size: 24px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-feature-box-item-large__title {
    margin-bottom: 10px;
    font-size: 28px;
  }
}
.rhs-feature-box-item-large__title--advantage {
  margin-bottom: 4px;
  font-size: 20px;
}
.rhs-feature-box-item-large__title--reasons {
  margin-bottom: 8px;
  font-size: 22px;
}
@media only screen and (min-width: 60em) {
  .rhs-feature-box-item-large__title--reasons {
    font-size: 24px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-feature-box-item-large__title--reasons {
    font-size: 28px;
  }
}
.rhs-feature-box-item-large__description {
  margin-bottom: 24px;
  font-size: var(--rhs-feature-box-item-large-descr-font-size);
  line-height: var(--rhs-feature-box-item-large-descr-line-height);
  font-weight: 500;
  --rhs-feature-box-item-large-descr-font-size: 14px;
  --rhs-feature-box-item-large-descr-line-height: 22px;
}
.rhs-feature-box-item-large__description:last-child {
  margin-bottom: 0;
}
.rhs-feature-box-item-large__description--reason {
  margin-bottom: 32px !important;
  font-size: 16px;
}
.rhs-feature-box-item-large__description--reason p {
  font-size: 14px;
}
.rhs-feature-box-item-large__btn {
  margin-top: auto;
}

@media only screen and (min-width: 75em) {
  .rhs-feature-box-item-large-box {
    display: flex;
    flex-direction: column;
  }
}

.rhs-header__container {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 60em) {
  .rhs-header__container {
    flex-direction: column-reverse;
  }
}

.rhs-contact-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: flex-end;
}
@media only screen and (min-width: 60em) {
  .rhs-contact-list {
    align-items: center;
    gap: 24px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-contact-list {
    padding: 2px 0;
  }
}

.rhs-header-container-second {
  background-color: #F8F8F8;
}

.rhs-header-container-first-wrapper {
  padding: 12px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 39px;
       column-gap: 39px;
}
@media only screen and (min-width: 36em) {
  .rhs-header-container-first-wrapper {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 60em) {
  .rhs-header-container-first-wrapper {
    padding: 16px 32px;
  }
}

.rhs-header-container-second-wrapper {
  padding: 8px 12px;
}
@media only screen and (min-width: 60em) {
  .rhs-header-container-second-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.rhs-work-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 12px;
  color: #4E4E4E;
}
@media only screen and (min-width: 60em) {
  .rhs-work-list {
    flex-direction: row;
    justify-content: flex-end;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
.rhs-work-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 1px 0;
}
.rhs-work-list-item a {
  color: #4E4E4E;
}
.rhs-work-list-item a:hover {
  color: #818181;
}

.rhs-contact__item:nth-child(2) {
  margin-right: 8px;
}
@media only screen and (min-width: 60em) {
  .rhs-contact__item:nth-child(2) {
    margin-right: 2px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-contact__item:nth-child(2) {
    margin-right: 12px;
  }
}
.rhs-contact__item a svg, .rhs-contact__item a p {
  fill: black;
  transform: scale(1);
  transition: transform 0.15s ease-out;
}
.rhs-contact__item a:hover svg, .rhs-contact__item a:hover p {
  color: #309787;
  fill: #309787;
  transform: scale(1.1);
  transition: transform 0.15s ease-out;
}
@media only screen and (min-width: 60em) {
  .rhs-contact__item:first-child {
    margin-right: -6px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-contact__item:first-child {
    margin-right: 2px;
  }
}
.rhs-contact__item-link {
  display: flex;
  align-items: center;
  gap: 6px;
}
.rhs-contact__item-link p {
  display: none;
  color: #000000;
  margin: 0;
}
@media only screen and (min-width: 36em) {
  .rhs-contact__item-link p {
    display: inline-block;
  }
}

.rhs-rhs-logo {
  display: flex;
  gap: 16px;
  align-items: center;
}
@media only screen and (min-width: 60em) {
  .rhs-rhs-logo {
    gap: 20px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-rhs-logo {
    gap: 24px;
  }
  .rhs-rhs-logo img {
    max-width: 100%;
  }
}
.rhs-rhs-logo__rect {
  margin-bottom: -6px;
}
@media only screen and (min-width: 75em) {
  .rhs-rhs-logo__rect {
    margin-bottom: -10px;
  }
}
.rhs-rhs-logo__partner {
  display: flex;
 /* max-height: 36px;*/
  align-self: flex-end;
}

.rhs-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rhs-list-item {
  --rhs-list-item-marker-color: #4FC7B5;
  --rhs-list-item-title-color: #000000;
  --rhs-list-item-description-color: #3D3D3D;
  --rhs-list-item-font-size: 16px;
  --rhs-list-item-line-height: 24px;
  --rhs-list-item-number-font-size: 14px;
  --rhs-list-item-number-line-height: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 16px 8px 48px;
  font-size: var(--rhs-list-item-font-size);
  line-height: var(--rhs-list-item-line-height);
}
.rhs-list-item__marker {
  position: absolute;
  top: 12px;
  left: 16px;
  color: var(--rhs-list-item-marker-color);
}
.rhs-list--type-numbered .rhs-list-item {
  counter-increment: num;
}
.rhs-list--type-numbered .rhs-list-item::before {
  content: counter(num);
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: var(--rhs-list-item-number-font-size);
  line-height: var(--rhs-list-item-number-line-height);
  color: var(--rhs-list-item-marker-color);
}
.rhs-list--type-numbered .rhs-list-item:nth-child(-n+9)::before {
  content: "0" counter(num);
}
.rhs-list-item__title {
  margin: 0;
  font-weight: 500;
  color: var(--rhs-list-item-title-color);
}
.rhs-list-item__title a {
  text-decoration: none;
  color: inherit;
}
.rhs-list-item__title a:hover {
  text-decoration: underline;
  color: inherit;
}
.rhs-list-item__description {
  margin: 0;
  font-weight: 300;
  color: var(--rhs-list-item-description-color);
}

.rhs-anchor-menu {
  --rhs-anchor-menu-color: #000000;
  --rhs-anchor-menu-border: #D9D9D9;
  --rhs-anchor-menu-item-height: 44px;
  --rhs-anchor-menu-item-bg: #fff;
  --rhs-anchor-menu-item-hover-bg: #F8F8F8;
  --rhs-anchor-menu-item-selected-bg: #fff;
  --rhs-anchor-menu-item-selected-color: #000000;
  --rhs-anchor-menu-link-padding-x: 16px;
  --rhs-anchor-menu-link-gap: 12px;
  --rhs-anchor-menu-link-font-size: 16px;
  --rhs-anchor-menu-link-line-height: 24px;
  --rhs-anchor-menu-tag-color: #fff;
  --rhs-anchor-menu-tag-bg: #4FC7B5;
  --rhs-anchor-menu-tag-padding-x: 8px;
  --rhs-anchor-menu-tag-padding-y: 1px;
  --rhs-anchor-menu-tag-font-size: 14px;
  --rhs-anchor-menu-tag-line-height: 22px;
  position: sticky;
  top: var(--rhs-anchor-menu-top, 0);
  z-index: 110;
  max-width: 100vw;
  background-color: white;
}
@media only screen and (min-width: 36em) {
  .rhs-anchor-menu {
    --rhs-anchor-menu-item-height: 40px;
    --rhs-anchor-menu-link-font-size: 14px;
    --rhs-anchor-menu-link-line-height: 22px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-anchor-menu {
    --rhs-anchor-menu-item-height: 52px;
    --rhs-anchor-menu-link-padding-x: 24px;
    --rhs-anchor-menu-link-gap: 8px;
    --rhs-anchor-menu-link-font-size: 16px;
    --rhs-anchor-menu-link-line-height: 24px;
    --rhs-anchor-menu-tag-padding-y: 2px;
    --rhs-anchor-menu-tag-font-size: 16px;
    --rhs-anchor-menu-tag-line-height: 24px;
  }
}
.rhs-anchor-menu--open {
  --rhs-anchor-menu-border: #4FC7B5;
  padding-bottom: var(--rhs-anchor-menu-item-height);
}
.rhs-anchor-menu--open .rhs-anchor-menu__list {
  position: absolute;
  right: var(--rhs-container-gutter);
  left: var(--rhs-container-gutter);
}
.rhs-anchor-menu--open .rhs-anchor-menu__item {
  display: block;
}
.rhs-anchor-menu__container {
  position: relative;
}
@media only screen and (min-width: 36em) {
  .rhs-anchor-menu__container {
    display: flex;
  }
}
.rhs-anchor-menu__list {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  font-weight: 500;
  list-style: none;
  color: var(--rhs-anchor-menu-color);
  overflow: hidden;
}
@media only screen and (min-width: 36em) {
  .rhs-anchor-menu__list {
    flex-direction: row;
    width: 100%;
    border-bottom: 1px solid var(--rhs-anchor-menu-border);
  }
}
.rhs-anchor-menu__item {
  display: none;
  width: 100%;
  height: var(--rhs-anchor-menu-item-height);
  background-color: var(--rhs-anchor-menu-item-bg);
}
.rhs-anchor-menu__item:hover {
  background-color: var(--rhs-anchor-menu-item-hover-bg);
}
.rhs-anchor-menu__item--selected {
  --rhs-anchor-menu-tag-color: #fff;
  --rhs-anchor-menu-tag-bg: #4FC7B5;
  --rhs-anchor-menu-link-line-height: 18px;
  display: block;
  order: -1;
  color: var(--rhs-anchor-menu-item-selected-color);
  background-color: var(--rhs-anchor-menu-item-selected-bg);
  border: 1px solid var(--rhs-anchor-menu-border);
}
.rhs-anchor-menu__item--selected:hover {
  color: var(--rhs-anchor-menu-item-selected-color);
  background-color: var(--rhs-anchor-menu-item-selected-bg);
}
.rhs-anchor-menu__item--selected .rhs-anchor-menu__link {
  padding-right: calc(var(--rhs-anchor-menu-item-height) + var(--rhs-anchor-menu-link-padding-x));
}
@media only screen and (min-width: 36em) {
  .rhs-anchor-menu__item--selected .rhs-anchor-menu__link {
    padding-right: var(--rhs-anchor-menu-link-padding-x);
  }
}
.rhs-anchor-menu__item--selected .rhs-anchor-menu__link > .rhs-anchor-menu__link-btn {
  display: block !important;
}
@media only screen and (min-width: 36em) {
  .rhs-anchor-menu__item--selected .rhs-anchor-menu__link > .rhs-anchor-menu__link-btn {
    display: none !important;
  }
}
@media only screen and (min-width: 36em) {
  .rhs-anchor-menu__item--selected {
    --rhs-anchor-menu-tag-bg: #EDEDED;
    --rhs-anchor-menu-tag-color: #000000;
    --rhs-anchor-menu-item-selected-bg: #4FC7B5;
    --rhs-anchor-menu-item-selected-color: #fff;
    order: inherit;
    border: none;
  }
}
@media only screen and (min-width: 36em) {
  .rhs-anchor-menu__item {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.rhs-anchor-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  gap: var(--rhs-anchor-menu-link-gap);
  width: 100%;
  padding: 0 var(--rhs-anchor-menu-link-padding-x);
  font-size: var(--rhs-anchor-menu-link-font-size);
  line-height: var(--rhs-anchor-menu-link-line-height);
  color: inherit;
  text-decoration: none;
}
.rhs-anchor-menu__link:hover {
  color: inherit;
  text-decoration: none;
}
.rhs-anchor-menu__link-text {
  flex: 0 1 auto;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.rhs-anchor-menu__link-tag {
  padding: var(--rhs-anchor-menu-tag-padding-y) var(--rhs-anchor-menu-tag-padding-x);
  font-size: var(--rhs-anchor-menu-tag-font-size);
  line-height: var(--rhs-anchor-menu-tag-line-height);
  text-transform: uppercase;
  background-color: var(--rhs-anchor-menu-tag-bg);
  color: var(--rhs-anchor-menu-tag-color);
}
.rhs-anchor-menu__select {
  display: block;
  position: absolute;
  right: 12px;
  top: 0;
  display: flex;
  height: 44px;
  width: 40px;
  align-items: center;
}
@media only screen and (min-width: 36em) {
  .rhs-anchor-menu__select {
    display: none;
  }
}
.rhs-anchor-menu__btn {
  display: none;
}
@media only screen and (min-width: 36em) {
  .rhs-anchor-menu__btn {
    position: absolute;
    z-index: 30;
    display: block;
    width: 24px;
    height: var(--rhs-anchor-menu-item-height);
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    cursor: pointer;
  }
  .rhs-anchor-menu__btn .rhs-icon {
    width: 24px;
    height: 24px;
  }
  .rhs-anchor-menu__btn::before {
    content: "";
    position: absolute;
    top: 0;
    z-index: -1;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 90%);
    pointer-events: none;
  }
  .rhs-anchor-menu__btn:first-child {
    left: var(--rhs-container-gutter);
  }
  .rhs-anchor-menu__btn:first-child::before {
    left: 0;
  }
  .rhs-anchor-menu__btn:last-child {
    right: var(--rhs-container-gutter);
  }
  .rhs-anchor-menu__btn:last-child::before {
    right: 0;
    transform: matrix(-1, 0, 0, 1, 0, 0);
  }
}
@media only screen and (min-width: 36em) and (min-width: 60em) {
  .rhs-anchor-menu__btn {
    display: none;
  }
}

.rhs-teasers {
  --rhs-teasers-bg: #fff;
  --rhs-teasers-color: #000000;
  padding: 0;
  background-color: var(--rhs-teasers-bg);
  color: var(--rhs-teasers-color);
}
.rhs-teasers__header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
@media only screen and (min-width: 36em) {
  .rhs-teasers__header {
    margin-bottom: 32px;
  }
}
.rhs-teasers__title {
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
}
@media only screen and (min-width: 36em) {
  .rhs-teasers__title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-teasers__title {
    font-size: 28px;
    line-height: 36px;
  }
}
.rhs-teasers__btn {
  margin-left: auto;
}
.rhs-teasers__btn--top {
  display: none;
}
@media only screen and (min-width: 36em) {
  .rhs-teasers__btn--top {
    display: block;
  }
}
.rhs-teasers__btn--bottom {
  display: block;
  margin: 0;
  margin-top: 32px;
}
@media only screen and (min-width: 36em) {
  .rhs-teasers__btn--bottom {
    display: none;
  }
}

.rhs-teaser-one__list {
  display: grid;
  gap: 32px 16px;
}
@media only screen and (min-width: 60em) {
  .rhs-teaser-one__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 75em) {
  .rhs-teaser-one__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
  }
}

.rhs-teaser-one-item {
  --rhs-teaser-one-item-gap: 12px;
  --rhs-teaser-one-item-img-height: 208px;
  --rhs-teaser-one-item-info-margin-bottom: 8px;
  --rhs-teaser-one-item-info-font-size: 16px;
  --rhs-teaser-one-item-info-line-height: 24px;
  --rhs-teaser-one-item-category-color: #818181;
  --rhs-teaser-one-item-date-color: #B0B0B0;
  --rhs-teaser-one-item-title-margin-bottom: 6px;
  --rhs-teaser-one-item-title-font-size: 16px;
  --rhs-teaser-one-item-title-line-height: 24px;
  --rhs-teaser-one-item-description-font-size: 14px;
  --rhs-teaser-one-item-description-line-height: 22px;
  --rhs-teaser-one-item-description-color: #3D3D3D;
  display: flex;
  flex-direction: column;
  gap: var(--rhs-teaser-one-item-gap);
}
@media only screen and (min-width: 36em) {
  .rhs-teaser-one-item {
    --rhs-teaser-one-item-img-height: 304px;
    --rhs-teaser-one-item-title-font-size: 18px;
    --rhs-teaser-one-item-title-line-height: 26px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-teaser-one-item {
    --rhs-teaser-one-item-gap: 16px;
    --rhs-teaser-one-item-img-height: 208px;
    --rhs-teaser-one-item-info-margin-bottom: 12px;
    --rhs-teaser-one-item-title-margin-bottom: 8px;
    --rhs-teaser-one-item-title-font-size: 20px;
    --rhs-teaser-one-item-title-line-height: 28px;
  }
}
.rhs-teaser-one-item:hover {
  cursor: pointer;
}
.rhs-teaser-one-item__image-wrapper {
  height: var(--rhs-teaser-one-item-img-height);
}
.rhs-teaser-one-item__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.rhs-teaser-one-item__text-wrapper {
  display: flex;
  flex-direction: column;
}
.rhs-teaser-one-item__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: var(--rhs-teaser-one-item-info-margin-bottom);
  font-size: var(--rhs-teaser-one-item-info-font-size);
  line-height: var(--rhs-teaser-one-item-info-line-height);
}
.rhs-teaser-one-item__date {
  order: -1;
  color: var(--rhs-teaser-one-item-date-color);
}
.rhs-teaser-one-item__category {
  color: var(--rhs-teaser-one-item-category-color);
}
.rhs-teaser-one-item__title {
  margin: 0 0 var(--rhs-teaser-one-item-title-margin-bottom);
  font-weight: 700;
  font-size: var(--rhs-teaser-one-item-title-font-size);
  line-height: var(--rhs-teaser-one-item-title-line-height);
  color: var(--four-slide-item-title);
}
.rhs-teaser-one-item__description {
  font-size: var(--rhs-teaser-one-item-description-font-size);
  line-height: var(--rhs-teaser-one-item-description-line-height);
  color: var(--rhs-teaser-one-item-description-color);
}
.rhs-teaser-one-item__description p {
  margin: 0;
}

.rhs-footer-web {
  margin-top: 72px;
  --rhs-footer-web-top-bg: #EDEDED;
  --rhs-footer-web-top-padding-top: 48px;
  --rhs-footer-web-top-padding-bottom: 24px;
  --rhs-footer-web-line-bg: #4FC7B5;
  --rhs-footer-web-green-line-image-width: 148px;
  --rhs-footer-web-green-line-image-height: 32px;
  --rhs-footer-web-line-padding-y: 20px;
  --rhs-footer-web-preview-text-font-size: 12px;
  --rhs-footer-web-preview-text-line-height: 18px;
  --rhs-footer-web-text-color: #fff;
  --rhs-footer-web-center-padding-y: 32px;
  --rhs-footer-web-center-font-size: 14px;
  --rhs-footer-web-center-line-height: 22px;
  --rhs-footer-web-center-bg: #000000;
  --rhs-footer-web-center-color: #fff;
  --rhs-footer-web-bot-bg: #fff;
  --rhs-footer-web-bot-color: #000000;
  --rhs-footer-web-bot-padding-y: 32px;
  overflow-x: hidden;
}
@media only screen and (min-width: 60em) {
  .rhs-footer-web {
    margin-top: 96px;
  }
}
@media only screen and (min-width: 36em) {
  .rhs-footer-web {
    --rhs-footer-web-top-padding-top: 64px;
    --rhs-footer-web-center-padding-y: 60px;
    --rhs-footer-web-line-padding-y: 16px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-footer-web {
    --rhs-footer-web-top-padding-top: 96px;
    --rhs-footer-web-green-line-image-width: 178px;
    --rhs-footer-web-green-line-image-height: 40px;
    --rhs-footer-web-center-padding-y: 62px;
    --rhs-footer-web-line-padding-y: 28px;
    --rhs-footer-web-preview-text-font-size: 14px;
    --rhs-footer-web-preview-text-line-height: 22px;
    --rhs-footer-web-bot-padding-y: 20px;
  }
}
.rhs-footer-web__scroll-block {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: var(--rhs-footer-web-top-padding-top);
  padding-bottom: var(--rhs-footer-web-top-padding-bottom);
  background-color: var(--rhs-footer-web-top-bg);
}
.rhs-footer-web__line {
  padding: var(--rhs-footer-web-line-padding-y) 0;
  background-color: var(--rhs-footer-web-line-bg);
}
.rhs-footer-web__line-container {
  display: flex;
  justify-content: end;
}
.rhs-footer-web__preview-img {
  width: var(--rhs-footer-web-green-line-image-width);
  height: var(--rhs-footer-web-green-line-image-height);
}
.rhs-footer-web__column-title {
  margin-bottom: 16px;
  font-weight: 700;
}
.rhs-footer-web__center {
  padding: var(--rhs-footer-web-center-padding-y) 0;
  font-size: var(--rhs-footer-web-center-font-size);
  line-height: var(--rhs-footer-web-center-line-height);
  color: var(--rhs-footer-web-center-color);
  background-color: var(--rhs-footer-web-center-bg);
}
.rhs-footer-web__center-container {
  display: grid;
  gap: 32px;
}
@media only screen and (min-width: 36em) {
  .rhs-footer-web__center-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-footer-web__center-container {
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-footer-web__contacts-info {
    grid-column: span 7;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-footer-web__social {
    grid-column: span 5;
    display: flex;
    justify-content: end;
    align-self: flex-end;
  }
}
.rhs-footer-web__bot {
  padding: var(--rhs-footer-web-bot-padding-y) 0;
  color: var(--rhs-footer-web-bot-color);
  background-color: var(--rhs-footer-web-bot-bg);
  font-weight: 500;
}

.rhs-help-navigation {
  --rhs-help-navigation-font-size: 14px;
  --rhs-help-navigation-line-height: 22px;
}
.rhs-help-navigation__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.rhs-help-navigation__item {
  font-size: var(--rhs-help-navigation-font-size);
  line-height: var(--rhs-help-navigation-line-height);
}
.rhs-help-navigation__link {
  color: inherit;
}
.rhs-help-navigation__link:hover {
  text-decoration: underline;
}

.rhs-social {
  --rhs-social-color: #fff;
  display: flex;
  align-items: end;
  color: var(--rhs-social-color);
}
@media only screen and (min-width: 36em) {
  .rhs-social {
    justify-content: flex-end;
  }
}
.rhs-social__list {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.rhs-social__item:hover .rhs-icon {
  transform: scale(1.1);
}
.rhs-social__link {
  color: inherit;
}
.rhs-social .rhs-icon {
  width: 31px;
  height: 31px;
  transform: scale(1);
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}

.rhs-contacts-info__title {
  margin-bottom: 16px;
  font-weight: 700;
}
.rhs-contacts-info__item {
  margin: 0;
  font-style: normal;
  font-weight: 500;
}
.rhs-contacts-info__item:not(:last-child) {
  margin-bottom: 4px;
}
.rhs-contacts-info__link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.rhs-contacts-info__link:hover {
  text-decoration: underline;
}

.rhs-tiles {
  --rhs-tile-shade-bg-color1: rgba(0, 0, 0, 0);
  --rhs-tile-shade-bg-color2: rgba(0, 0, 0, 0.56);
  display: grid;
  grid-template-areas: "a" "b" "c";
}
@media only screen and (min-width: 60em) {
  .rhs-tiles--type-three_large {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "a b" "c c";
  }
}
@media only screen and (min-width: 75em) {
  .rhs-tiles--type-three_large {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 600px;
    grid-template-areas: "a b c";
  }
}

.rhs-tile {
  --rhs-tile-title-font-size: 20px;
  --rhs-tile-title-line-height: 28px;
  --rhs-tile-description-font-size: 12px;
  --rhs-tile-description-line-height: 18px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  height: 300px;
  padding: 16px;
  text-align: left;
  text-decoration: none;
  background-color: #4FC7B5;
  color: #fff;
  overflow: hidden;
}
@media only screen and (min-width: 36em) {
  .rhs-tile {
    --rhs-tile-title-font-size: 24px;
    --rhs-tile-title-line-height: 32px;
    --rhs-tile-description-font-size: 14px;
    --rhs-tile-description-line-height: 22px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-tile {
    --rhs-tile-title-font-size: 28px;
    --rhs-tile-title-line-height: 36px;
    --rhs-tile-description-font-size: 16px;
    --rhs-tile-description-line-height: 24px;
  }
}
@media only screen and (min-width: 36em) {
  .rhs-tile {
    padding: 32px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-tile {
    gap: 24px;
    height: auto;
    padding: 32px 40px;
  }
}
.rhs-tile:nth-child(1) {
  grid-area: a;
}
.rhs-tile:nth-child(2) {
  grid-area: b;
}
.rhs-tile:nth-child(3) {
  grid-area: c;
}
.rhs-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--rhs-tile-shade-bg-color1) 0%, var(--rhs-tile-shade-bg-color2) 100%);
}
.rhs-tile:hover {
  text-decoration: none;
  color: #fff;
}
.rhs-tile:hover::after {
  --rhs-tile-shade-bg-color1: rgba(0, 0, 0, 0.08);
  --rhs-tile-shade-bg-color2: rgba(0, 0, 0, 0.72);
}
.rhs-tile:hover .rhs-tile__img {
  transform: scale(1.1);
}
.rhs-tile__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media only screen and (min-width: 60em) {
  .rhs-tile__text {
    max-width: 480px;
  }
}
@media only screen and (min-width: 75em) {
  .rhs-tile__text {
    gap: 12px;
    max-width: 400px;
  }
}
.rhs-tile__title {
  margin: 0;
  font-weight: 700;
  font-size: var(--rhs-tile-title-font-size);
  line-height: var(--rhs-tile-title-line-height);
}
.rhs-tile__description {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: var(--rhs-tile-description-font-size);
  line-height: var(--rhs-tile-description-line-height);
  overflow: hidden;
}
.rhs-tile__img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 55% 10%;
     object-position: 55% 10%;
  transform: scale(1);
  transition-property: transform;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
}
.rhs-tile__img--second {
  -o-object-position: 65% 10%;
     object-position: 65% 10%;
}
.rhs-tile__img--third {
  -o-object-position: 45% 10%;
     object-position: 45% 10%;
}

.rhs-tag {
  --rhs-tag-bg: #4FC7B5;
  --rhs-tag-color: #fff;
  --rhs-tag-delete-button-bg: #309787;
  --rhs-tag-delete-button-color: #fff;
  position: relative;
  margin-left: 11px;
  padding: 8px 36px 8px 4px;
  font-weight: 500;
  font-size: 14px;
  background-color: var(--rhs-tag-bg);
  color: var(--rhs-tag-color);
  align-self: flex-end;
}
.rhs-tag::after {
  content: "";
  position: absolute;
  right: 100%;
  top: 0;
  border-top: 16px solid transparent;
  border-right: 11px solid var(--rhs-tag-bg);
  border-bottom: 16px solid transparent;
}
@media (hover: hover) {
  .rhs-tag {
    transition-property: padding;
    transition-duration: 0.15s;
    transition-timing-function: ease-out;
  }
  .rhs-tag__delete {
    transition-property: opacity;
    transition-duration: 0.15s;
    transition-timing-function: ease-out;
  }
  .rhs-tag:not(:hover) {
    padding: 8px 20px;
  }
  .rhs-tag:not(:hover) .rhs-tag__delete {
    opacity: 0;
  }
}

.rhs-tiles-accessories .rhs-slider__nav-button {
  color: #D9D9D9;
}
.rhs-tiles-accessories .rhs-slider__nav-button:hover {
  color: #4FC7B5;
}

.chat-widgets {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 16px;
  top: auto;
  right: 16px;
  left: auto;
  z-index: 10000000;
}
.chat-widgets--open .chat-widgets__button-close {
  display: block;
}
.chat-widgets--open .chat-widgets__button-chat {
  display: none;
}
.chat-widgets--open .chat-widgets__chats {
  opacity: 1;
  pointer-events: auto;
}
.chat-widgets__button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #E50040;
  display: flex;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  transition: 0.3s transform ease-in-out;
  cursor: pointer;
  border: none;
  outline: none;
}
.chat-widgets__button:hover {
  transform: scale(1.1);
}
.chat-widgets__button-close {
  color: #fff;
  display: none;
}
.chat-widgets__chats {
  position: absolute;
  bottom: 77px;
  display: flex;
  flex-direction: column;
  grid-gap: 18px;
  gap: 18px;
  opacity: 0;
  transition: 0.3s;
  pointer-events: none;
}
.chat-widgets__telegram svg {
  margin-left: -3px;
}/*# sourceMappingURL=main.css.map */