/* =================================================
PRODUCTION CSS (merged)
normalize + main + navigation
================================================= */

/* ===== NORMALIZE ===== */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */button,hr,input{overflow:visible}progress,sub,sup{vertical-align:baseline}[type=checkbox],[type=radio],legend{padding:0;box-sizing:border-box}*,legend{box-sizing:border-box}html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:ButtonText dotted 1px}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}textarea{overflow:auto}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}


@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Inter local fonts */


/* ===== MAIN SYSTEM ===== */

:root{
  --color-accent:#00AEEF;
  --color-accent-dark:#0086c7;
  --color-danger:#005BAA;
}

:root {
  --color-accent: var(--color-accent);
  --color-accent-dark: var(--color-accent-dark);
  --color-danger: var(--color-danger);

  --color-bg: #ffffff;
  --color-bg-light: var(--color-bg-light);
  --color-bg-soft: #f7f8fa;

  --color-border: var(--color-border);
  --color-border-soft: #EDEDED;

  --color-text: #000000;
  --color-text-muted: #818181;

  --shadow-soft: 0 8px 28px rgba(0,0,0,0.06);
  --shadow-medium: 0 16px 42px rgba(0,0,0,0.12);

  --radius-m: 16px;
  --radius-l: 20px;

  --transition-fast: .15s ease-out;
  --transition: .3s ease;
}

/* Inter */

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: #00AEEF;
  text-decoration: none;
  transition-property: color;
  transition-duration: 0.15s;
  transition-timing-function: ease-out;
}
a:hover, a:active {
  color: #0086c7;
  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 #00AEEF;
}

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;
}
@media only screen and (min-width: 60em) {
}
@media only screen and (min-width: 36em) {
}
@media only screen and (min-width: 60em) {
}
@media only screen and (min-width: 75em) {
}
@media only screen and (min-width: 60em) {
}
@media only screen and (min-width: 75em) {
}
@media only screen and (min-width: 60em) {
}
@media only screen and (min-width: 90em) {
}
@media only screen and (min-width: 36em) {
}
@media only screen and (min-width: 75em) {
}
@media only screen and (min-width: 90em) {
}

.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: #00AEEF;
  --rhs-button-color: #fff;
  --rhs-button-border-color: transparent;
  --rhs-button-hover-bg: #0086c7;
  --rhs-button-hover-color: #fff;
  --rhs-button-hover-border-color: transparent;
  --rhs-button-focus-color: #0086c7;
  --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: #00AEEF;
  --rhs-icon-button-color: #fff;
  --rhs-icon-button-border-color: transparent;
  --rhs-icon-button-hover-bg: #0086c7;
  --rhs-icon-button-hover-color: #fff;
  --rhs-icon-button-hover-border-color: transparent;
  --rhs-icon-button-focus-color: #0086c7;
  --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: #005BAA;
  --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: #005BAA;
  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: #0086c7;
  --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: #005BAA;
}
.rhs-checkbox-checked {
  --rhs-checkbox-bg: #00AEEF;
  --rhs-checkbox-color: #fff;
  --rhs-checkbox-border-color: #00AEEF;
  --rhs-checkbox-hover-bg: #0086c7;
  --rhs-checkbox-hover-border-color: #0086c7;
}
.rhs-checkbox-checked.rhs-checkbox-error {
  --rhs-checkbox-bg: #005BAA;
  --rhs-checkbox-color: #fff;
  --rhs-checkbox-border-color: #005BAA;
}
.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: #005BAA;
}

.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: #005BAA;
}

.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: #005BAA;
}
.rhs-form-help-message--success {
  color: #00AEEF;
}

.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: #00AEEF;
  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__video {
  order: -1;
}
.rhs-item-box-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  grid-column: span 12;
}
@media only screen and (min-width: 60em) {
}
@media only screen and (min-width: 75em) {
}
@media only screen and (min-width: 60em) {
}
@media only screen and (min-width: 75em) {
}
@media only screen and (min-width: 75em) {
}
.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__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: #005BAA;
  --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: #00AEEF;
  --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: #005BAA;
  --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;
}

/* показываем только на десктопе */
@media (max-width: 768px) {
  .rhs-header-container-second {
    display: none;
  }
}

.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: #0086c7;
  fill: #0086c7;
  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: #00AEEF;
  --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: #00AEEF;
  --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: #00AEEF;
  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: #00AEEF;
  --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: #00AEEF;
    --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: #00AEEF;
  --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: #00AEEF;
  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: #00AEEF;
  --rhs-tag-color: #fff;
  --rhs-tag-delete-button-bg: #0086c7;
  --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;
  }
}

.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: #005BAA;
  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 */

/* ===== TABLE ===== */

.profile-compare {
  padding: 80px 0;
  background: #f7f9fb;
}

.profile-compare h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #eef2f6;
}

.compare-table thead {
  background: #00AEEF;
  color: #fff;
}

.compare-table th a {
  color: #fff;
  text-decoration: none;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: #f1f7f6;
}

/* =========================
   MOBILE TABLE VERSION
========================= */

@media (max-width: 768px) {

  .compare-table thead {
    display: none;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table tr {
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 15px;
  }

  .compare-table td {
    padding: 10px 0;
    border: none;
    display: flex;
    justify-content: space-between;
    font-size: 15px;
  }

  .compare-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #00AEEF;
  }

}

/* ===== FAQ ===== */

.faq-section {
  padding: 60px 20px;
  background: #f7f8fa;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  color: #1a1a1a;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111111;
}

.faq-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #444444;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }

  .faq-item {
    padding: 20px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 15px;
  }
}
/* ===== TEXT BLOCK ===== */

.text-block {
  max-width: 980px;
  margin: 60px auto;
  padding: 0 20px;
}

.text-block__title {
  font-size: 28px;
  line-height: 1.25;
  font-weight: 600;
  color: #1c1c1c;
  margin-bottom: 24px;
  position: relative;
}

/* Акцентная линия под заголовком */
.text-block__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #005BAA; /* акцент */
  margin-top: 12px;
}

.text-block__content {
  font-size: 16px;
  line-height: 1.7;
  color: #4a4a4a;
}

.text-block__content p {
  margin: 0;
}

/* Адаптив */
@media (max-width: 768px) {
  .text-block {
    margin: 40px auto;
  }

  .text-block__title {
    font-size: 22px;
  }

  .text-block__content {
    font-size: 15px;
  }
}
/* ===== CALCULATOR ===== */

/* =====================================================
   ОБЁРТКА КАЛЬКУЛЯТОРА
   (НЕ влияет на шапку и другие блоки)
===================================================== */
#calc.window-calc-wrap {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* =====================================================
   SVG-БЛОК
===================================================== */
#calc .calc-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

#calc #windowSvg {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
}

/* створки и импосты */
#calc .sash,
#calc .impost {
  transition: opacity 0.25s ease;
}

/* скрытие створок */
#calc .hidden {
  opacity: 0;
  pointer-events: none;
}

/* =====================================================
   КАЛЬКУЛЯТОР
===================================================== */
#calc .window-calc {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

#calc .window-calc h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

/* сетка полей */
#calc .calc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

#calc .calc-group {
  display: flex;
  flex-direction: column;
}

#calc .calc-group label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}

#calc .calc-group input,
#calc .calc-group select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
  background: #fff;
}

#calc .calc-group input:focus,
#calc .calc-group select:focus {
  border-color: #00AEEF;
  outline: none;
}

/* =====================================================
   РЕЗУЛЬТАТ
===================================================== */
#calc .calc-result {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
}

#calc .calc-result strong {
  font-size: 28px;
  color: #00AEEF;
}

/* =====================================================
   КНОПКА (ТОЛЬКО В КАЛЬКУЛЯТОРЕ)
===================================================== */
#calc .rhs-button {
  margin-top: 30px;
  display: block;
  width: 100%;
  padding: 16px;
  font-size: 18px;
  text-align: center;
  border-radius: 0;
  background: linear-gradient(135deg, #00AEEF, #00AEEF);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.25s ease;
}

#calc .rhs-button:hover {
  opacity: 0.9;
}

/* =====================================================
   МОБИЛЬНАЯ ВЕРСИЯ
===================================================== */
@media (max-width: 768px) {
  #calc.window-calc-wrap {
    grid-template-columns: 1fr;
  }

  #calc .calc-image {
    order: -1;
    margin-bottom: 20px;
  }

  #calc #windowSvg {
    max-width: 300px;
  }

  #calc .window-calc {
    padding: 30px 20px;
  }
}

.rhs-contact__item-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rhs-icon--name-max {
  width: 32px;
  height: 32px;
  display: block;
}

.chat-widgets__max svg {
  background: #005BAA;
}

/* =========================
   BEFORE / AFTER BLOCK
========================= */

.before-after {
  padding: 80px 0;
  background: #f7f9fb;
}

.before-after h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 28px;
}

.before-after__wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.before-after__item {
  position: relative;
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  background: #ffffff;
}

.before-after__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.before-after__label {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
}

.before-after__label.before {
  background: #005BAA;
}

.before-after__label.after {
  background: #00AEEF;
}

/* Hover-эффект */
.before-after__item:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .before-after__wrapper {
    flex-direction: column;
  }

  .before-after {
    padding: 50px 0;
  }

}

/* =========================
   VIDEO BLOCK
========================= */

.video-block {
  padding: 80px 0;
  background: #ffffff;
}

.video-block__wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.video-block__media {
  flex: 0 0 380px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.video-block__media video {
  width: 100%;
  height: auto;
  display: block;
}

.video-block__content {
  flex: 1;
}

.video-block__content h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.video-block__content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.video-block__btn {
  display: inline-block;
  padding: 14px 28px;
  background: #00AEEF;
  color: #fff;
  border-radius: 0px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.video-block__btn:hover {
  background: #0086c7;
}

.video-block {
  padding: 80px 0;
  background: #ffffff;
}

.video-block__wrapper {
  max-width: 1200px;   /* ограничиваем ширину */
  margin: 0 auto;      /* центрируем */
  padding: 0 20px;     /* внутренний отступ */
  display: flex;
  align-items: center;
  gap: 60px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 992px) {
  .video-block__wrapper {
    flex-direction: column;
  }

  .video-block__media {
    width: 100%;
    max-width: 400px;
  }

  .video-block__content {
    text-align: center;
  }
}
/* ===== Breadcrumbs ===== */

.breadcrumbs {
  margin: 15px 0 10px 0;
}

.breadcrumbs .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumbs__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  font-size: 14px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

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

.breadcrumbs__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: #8a8a8a;
}

.breadcrumbs__item + .breadcrumbs__item::before {
  content: "›";
  margin: 0 6px;
  color: #c2c2c2;
  font-size: 13px;
}

.breadcrumbs__item a {
  text-decoration: none;
  color: #333;
  padding: 4px 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.breadcrumbs__item a:hover {
  background: #f3f4f6;
  color: #000;
}

.breadcrumbs__item--current {
  background: #f1f1f1;
  padding: 4px 10px;
  border-radius: 8px;
  color: #000;
  font-weight: 500;
}

/* ===== Mobile ===== */

@media (max-width: 768px) {

  .breadcrumbs {
    margin: 10px 0 8px 0;
  }

  .breadcrumbs .container {
    padding: 0 15px;
  }

  .breadcrumbs__list {
    font-size: 13px;
    gap: 6px;
  }
}
/* Иконка главной */

.breadcrumbs__home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  transition: 0.2s ease;
  color: #333;
}

.breadcrumbs__home:hover {
  background: #f3f4f6;
  color: #000;
}

/* Скрытый текст для SEO и доступности */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
/* =====================================================
   BLOG SYSTEM v2 – FULLY ISOLATED
   Без конфликтов с глобальными стилями
===================================================== */

/* =========================
   BLOG INDEX (РАЗДЕЛ)
========================= */

.blog-index {
  padding: 0px 0 96px;
}

.blog-index__header {
  text-align: center;
  margin-bottom: 56px;
}

.blog-index__title {
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
  margin: 0;
}

.blog-index__grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .blog-index__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .blog-index__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-index__block {
  padding: 32px;
  border-radius: var(--radius-l);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-index__block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.blog-index__block-title {
  font-size: 20px;
  margin: 0 0 20px 0;
}

.blog-index__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-index__list li + li {
  margin-top: 12px;
}

.blog-index__list a {
  color: var(--color-text);
  font-weight: 500;
  position: relative;
  padding-left: 18px;
  transition: color var(--transition-fast);
}

.blog-index__list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.blog-index__list a:hover {
  color: var(--color-accent);
}

/* =========================
   BLOG ARTICLE
========================= */

.blog-article {
  --blog-max-width: 1200px;

  max-width: var(--blog-max-width);
  margin: 0 auto;
  padding: 0px 20px 96px;
}

.blog-article__title {
  margin: 0 0 24px 0;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: 1.2;
}

.blog-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.blog-article__image img {
  width: 100%;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-medium);
  margin-bottom: 56px;
}

/* Контент из TV */

.blog-article__content {
  font-size: 18px;
  line-height: 1.75;
}

.blog-article__content h2 {
  margin-top: 56px;
  margin-bottom: 24px;
  font-size: clamp(22px, 2.5vw, 30px);
  position: relative;
}

.blog-article__content h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin-top: 12px;
  background: var(--color-accent);
  border-radius: 3px;
}

.blog-article__content h3 {
  margin-top: 36px;
  margin-bottom: 18px;
  font-size: clamp(18px, 2vw, 22px);
}

.blog-article__content a {
  color: var(--color-accent);
  border-bottom: 1px solid rgba(79,199,181,0.3);
  transition: border-color var(--transition-fast);
}

.blog-article__content a:hover {
  border-bottom-color: var(--color-accent);
}

.blog-article__content blockquote {
  margin: 40px 0;
  padding: 24px 28px;
  background: var(--color-bg-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-m);
}

/* Таблицы внутри статьи */
.blog-article__content table {
  width: 100%;
  margin: 40px 0;
  border-collapse: collapse;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-m);
  overflow: hidden;
}

.blog-article__content th,
.blog-article__content td {
  padding: 16px;
  border: 1px solid var(--color-border-soft);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

  .blog-index {
    padding: 48px 0 64px;
  }

  .blog-article {
    padding: 48px 16px 72px;
  }

  .blog-article__content {
    font-size: 16px;
  }

  .blog-article__content table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

}
body {
  overflow-x: hidden;
}

.cookie-banner{
position:fixed;
bottom:25px;
left:50%;
transform:translateX(-50%) translateY(120%);
width:90%;
max-width:900px;
background:#ffffff;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.15);
padding:22px 26px;
z-index:9999;
transition:0.4s;
}

.cookie-banner.show{
transform:translateX(-50%) translateY(0);
}

.cookie-content{
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
}

.cookie-text{
font-size:14px;
line-height:1.5;
color:#444;
}

.cookie-text a{
color:#0a84ff;
text-decoration:none;
}

.cookie-buttons{
display:flex;
gap:12px;
}

.cookie-accept{
background:#0a84ff;
color:#fff;
border:none;
padding:10px 20px;
border-radius:8px;
cursor:pointer;
font-weight:600;
}

.cookie-settings{
background:#f1f1f1;
border:none;
padding:10px 18px;
border-radius:8px;
cursor:pointer;
}

.cookie-modal{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
display:none;
align-items:center;
justify-content:center;
z-index:10000;
}

.cookie-modal-box{
background:#fff;
padding:35px;
border-radius:14px;
width:420px;
max-width:90%;
}

.cookie-option{
display:block;
margin:20px 0;
font-weight:500;
}

.cookie-option span{
display:block;
font-size:13px;
color:#666;
margin-top:3px;
}

.cookie-save{
background:#0a84ff;
color:white;
border:none;
padding:10px 20px;
border-radius:8px;
cursor:pointer;
}

@media(max-width:600px){

.cookie-content{
flex-direction:column;
text-align:center;
}

}

.sticky-calc{
position:fixed;
right:0;
top:50%;
transform:translateY(-50%);
z-index:9998;
opacity:0;
transition:0.35s;
}

.sticky-calc.show{
opacity:1;
}

.sticky-calc-btn{
display:block;
background:#005BAA;
color:#fff;
padding:16px 12px;
font-weight:600;
text-decoration:none;
writing-mode:vertical-rl;
transform:rotate(180deg);
border-radius:10px 0 0 10px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
transition:0.2s;
}

.sticky-calc-btn:hover{
background:#004a8f;
}

@media(max-width:768px){

.sticky-calc{
top:auto;
bottom:90px;
transform:none;
}

.sticky-calc-btn{
writing-mode:horizontal-tb;
transform:none;
padding:12px 18px;
border-radius:10px;
}

}

/* ======================
PORTFOLIO
====================== */

.portfolio{
padding:80px 0;
background:#f7f8fa;
}

.portfolio h2{
text-align:center;
margin-bottom:10px;
}

.portfolio .subtitle{
text-align:center;
color:#777;
margin-bottom:30px;
}

.calc-btn-main{
display:block;
width:max-content;
margin:0 auto 50px;
padding:14px 28px;
background:#00AEEF;
color:#fff;
border-radius:10px;
text-decoration:none;
font-weight:600;
transition:.3s;
}

.calc-btn-main:hover{
background:#0086c7;
}

/* GRID */

.portfolio-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

/* CARD */

.portfolio-card{
background:#fff;
border-radius:16px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.06);
transition:.3s;
display:flex;
flex-direction:column;
}

.portfolio-card:hover{
transform:translateY(-6px);
box-shadow:0 18px 45px rgba(0,0,0,0.12);
}

/* IMAGE */

.portfolio-card__image{
position:relative;
overflow:hidden;
}

.portfolio-card__image img{
width:100%;
height:210px;
object-fit:cover;
transition:.4s;
}

.portfolio-card:hover img{
transform:scale(1.05);
}

/* LABEL */

.portfolio-card__label{
position:absolute;
top:12px;
left:12px;
background:#00AEEF;
color:#fff;
font-size:13px;
padding:5px 12px;
border-radius:20px;
}

/* CONTENT */

.portfolio-card__content{
padding:18px;
display:flex;
flex-direction:column;
flex:1;
}

.portfolio-card h3{
margin:0 0 10px;
font-size:18px;
}

.portfolio-card__info{
padding-left:18px;
margin-bottom:15px;
color:#666;
font-size:14px;
}

/* BOTTOM */

.portfolio-card__bottom{
display:flex;
justify-content:space-between;
align-items:center;
margin-top:auto;
}

.portfolio-card__price{
font-weight:700;
color:#00AEEF;
}

.portfolio-card__btn{
background:#00AEEF;
color:#fff;
padding:8px 16px;
border-radius:8px;
text-decoration:none;
font-size:14px;
transition:.3s;
}

.portfolio-card__btn:hover{
background:#0086c7;
}

/* TABLET */

@media(max-width:1100px){

.portfolio-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:600px){

.portfolio-grid{
grid-template-columns:1fr;
}

.portfolio{
padding:60px 0;
}

}

/* ===== NAVIGATION ===== */
/* ===============================
   SITE NAV (STICKY)
================================ */

.site-nav{
position:sticky;
top:0;
z-index:1000;
width:100%;
background:#fff;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
box-shadow:0 4px 10px rgba(0,0,0,0.05);
}

/* ===============================
   NAV INNER
================================ */

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===============================
   DESKTOP MENU
================================ */

.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

/* hover */
.nav-menu a:hover {
  color: #00AEEF;
}

/* active (scrollspy) */
.nav-menu a.active {
  color: #00AEEF;
}

/* ===============================
   DROPDOWN (DESKTOP)
================================ */

.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 16px 0;
  list-style: none;

  background: #fff;
  border: 1px solid #eee;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.7s ease;
}

.dropdown li a {
  display: block;
  padding: 8px 24px;
  font-size: 14px;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===============================
   BURGER
================================ */

.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
}

.burger span {
  width: 24px;
  height: 2px;
  background: #000;
}

/* ===============================
   MOBILE MENU (FULL SCREEN)
================================ */

@media (max-width: 992px) {

  .burger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    inset: 0;
    z-index: 1000;

    background: #fff;
    padding: 120px 24px 32px;

    display: flex;
    flex-direction: column;
    gap: 24px;

    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.25,.8,.25,1);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  /* dropdown без hover на мобиле */
  .dropdown {
    position: static;
    border: none;
    padding: 8px 0 0;

    opacity: 1;
    visibility: visible;
    transform: none;
  }

  /* индикатор прокрутки */
  .nav-menu::after {
    content: "";
    position: sticky;
    bottom: 0;
    height: 24px;
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0),
      #fff
    );
  }
}

/* ===============================
   CLOSE BUTTON (X)
================================ */

.menu-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;

  width: 40px;
  height: 40px;
  background: none;
  border: 0;
  cursor: pointer;

  display: none;
}

.menu-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background: #000;
}

.menu-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 992px) {
  .menu-close.active {
    display: block;
  }
}

/* ===============================
   SMOOTH SCROLL FIX
================================ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

/* =================================================
ADDITIONAL UI IMPROVEMENTS
Added spacing system, utilities, better containers,
image handling, button system and card system
================================================= */

/* ---- spacing system ---- */
:root{
--space-10:10px;
--space-20:20px;
--space-30:30px;
--space-40:40px;
--space-60:60px;
--space-80:80px;
}

/* ---- universal box sizing ---- */
*,*::before,*::after{
box-sizing:border-box;
}

/* ---- better image behavior ---- */
img{
max-width:100%;
height:auto;
display:block;
}

/* ---- small container for text pages ---- */
.container-small{
max-width:900px;
margin:0 auto;
padding:0 20px;
}

/* ---- smoother interactions ---- */
a,button{
transition:0.25s ease;
}

/* ---- universal button system ---- */
.btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 28px;
border-radius:12px;
font-weight:600;
cursor:pointer;
text-decoration:none;
}

.btn-primary{
background:var(--color-primary);
color:#fff;
}

.btn-primary:hover{
background:var(--color-primary-hover);
}

.btn-outline{
border:2px solid var(--color-primary);
color:var(--color-primary);
background:transparent;
}

.btn-outline:hover{
background:var(--color-primary);
color:#fff;
}

/* ---- universal card component ---- */
.card{
background:#fff;
border-radius:16px;
box-shadow:0 10px 30px rgba(0,0,0,.06);
overflow:hidden;
transition:.3s;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 20px 60px rgba(0,0,0,.12);
}

/* ---- utility classes ---- */
.text-center{text-align:center;}
.mt-20{margin-top:20px;}
.mt-40{margin-top:40px;}
.mt-60{margin-top:60px;}
.mb-20{margin-bottom:20px;}
.mb-40{margin-bottom:40px;}
.mb-60{margin-bottom:60px;}

/* ===============================
SERVICES GRID
=============================== */

.services .grid-4{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

/* ===============================
SERVICE CARD
=============================== */

.service-card{
display:flex;
flex-direction:column;
overflow:hidden;
}

.service-card img{
width:100%;
height:180px;
object-fit:cover;
}

.service-content{
padding:20px;
display:flex;
flex-direction:column;
flex-grow:1;
}

.service-content h3{
margin-bottom:10px;
font-size:18px;
}

.service-content p{
margin-bottom:20px;
font-size:14px;
flex-grow:1;
}

/* ===============================
TABLET
=============================== */

@media (max-width:1000px){

.services .grid-4{
grid-template-columns:repeat(2,1fr);
}

}

/* ===============================
MOBILE
=============================== */

@media (max-width:600px){

.services .grid-4{
grid-template-columns:1fr;
}

}

.service-card{
transition:.3s;
}

.service-card:hover{
transform:translateY(-6px);
}

/* стрелка у кнопки */

.btn-outline{
display:inline-flex;
align-items:center;
gap:8px;
}

.btn-outline::after{
content:"→";
font-size:16px;
transition:transform .25s ease;
}

/* эффект при наведении */

.btn-outline:hover::after{
transform:translateX(4px);
}

/* ===============================
BUTTON OUTLINE FIX
=============================== */

.btn-outline{
display:inline-flex;
align-items:center;
justify-content:center;
gap:8px;

border:2px solid #00AEEF;
color:#00AEEF;
background:transparent;

transition:all .25s ease;
}

/* стрелка */

.btn-outline::after{
content:"→";
font-size:16px;
transition:transform .25s ease;
}

/* hover */

.btn-outline:hover{
background:#00AEEF;
color:#fff;
border-color:#00AEEF;
}

.btn-outline:hover::after{
transform:translateX(4px);
}

/* ===============================
PROCESS BLOCK
=============================== */

.process{
background:#f8fafc;
}

.process-subtitle{
max-width:700px;
margin:0 auto;
}

/* wrapper для линии */

.process-wrapper{
position:relative;
}

/* линия */

.process-wrapper::before{

content:"";
position:absolute;

top:60px;
left:10%;
right:10%;

height:3px;
background:#00AEEF;

z-index:1;

}

/* GRID */

.process-grid{

display:grid;
grid-template-columns:repeat(5,1fr);
gap:30px;
text-align:center;
position:relative;
z-index:2;

}

/* ITEM */

.process-item{
padding:20px;
}

/* ICON */

.process-icon{

width:100px;
height:100px;

margin:0 auto 20px;

background:#fff;
border:3px solid #00AEEF;

border-radius:50%;

display:flex;
align-items:center;
justify-content:center;

box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.process-icon img{
width:50px;
height:50px;
object-fit:contain;
}

/* TEXT */

.process-item h3{
font-size:18px;
margin-bottom:10px;
}

.process-item p{
font-size:14px;
color:#666;
}

/* ===============================
TABLET
=============================== */

@media (max-width:1100px){

.process-wrapper::before{
display:none;
}

.process-grid{
grid-template-columns:repeat(3,1fr);
}

}

/* ===============================
MOBILE
=============================== */

@media (max-width:700px){

.process-grid{
grid-template-columns:1fr;
}

.process-item{
background:#fff;
border-radius:14px;
padding:25px;
box-shadow:0 10px 25px rgba(0,0,0,.05);
}

}

.rhs-header__container{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow .3s ease;
}

.nav-call-btn{
display:inline-flex;
align-items:center;
justify-content:center;

padding:10px 22px;

background:#005baa;
color:#fff;

font-weight:600;
font-size:15px;

border-radius:6px;

text-decoration:none;

transition:all .25s ease;

box-shadow:0 4px 12px rgba(0,91,170,0.25);
}

.nav-call-btn:hover{
background:#004b8c;
transform:translateY(-2px);
box-shadow:0 6px 16px rgba(0,91,170,0.35);
}

/* HERO */

.hero{

position:relative;

min-height:520px;

display:flex;
align-items:center;
justify-content:center;

text-align:center;

overflow:hidden;

color:#fff;

}

/* фон */

.hero-bg{

position:absolute;

inset:0;

width:100%;
height:100%;

object-fit:cover;

z-index:1;

}

/* затемнение */

.hero::after{

content:"";

position:absolute;

inset:0;

background:rgba(0,0,0,0.45);

z-index:2;

}

/* контент */

.hero-content{

position:relative;

z-index:3;

max-width:900px;

padding:40px 20px;

}

.hero h1{

font-size:42px;

margin-bottom:20px;

}

.hero-subtitle{

font-size:20px;

margin-bottom:30px;

}

/* преимущества */

.hero-advantages{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.hero-adv{

background:rgba(255,255,255,0.9);

color:#000;

padding:10px 18px;

border-radius:6px;

font-size:14px;

font-weight:700;

}

/* мобильная версия */

@media (max-width:768px){

.hero h1{

font-size:30px;

}

.hero-subtitle{

font-size:16px;

}

.hero{

min-height:420px;

}

}

.rhs-item-box-item{
display:flex;
flex-wrap:wrap;
gap:30px;
}

.rhs-item-box-item__text{
flex:1 1 400px;
}

.rhs-item-box-item__slider--map{
flex:1 1 500px;
}

.rhs-item-box-item__slider--map iframe{
width:100%;
height:486px;
border:0;
display:block;
}

@media (max-width:768px){

.rhs-item-box-item{
flex-direction:column;
}

.rhs-item-box-item__slider--map iframe{
height:380px;
}

}
