@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");

:root {
  --color-text-secondary--rgb: 255, 255, 255;
  --color-text-secondary: #FFFFFF;
  --color-text-primary--rgb: 38, 39, 41;
  --color-text-primary: #262729;
  --color-bg-primary--rgb: 246, 246, 246;
  --color-bg-primary: #F6F6F6;
  --color-bg-secondary--rgb: 33, 34, 36;
  --color-bg-secondary: #212224;
  --color-button--rgb: 251, 39, 64;
  --color-button: #FB2740;
  /* --color-button: #AC1629; */
  --color-button-active--rgb: 207, 28, 49;
  --color-button-active: #CF1C31;
}

html {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

@media (min-width: 1200px) {
  :root {
    --wrap: 10.416vw;
    --wrap-1: 23.958vw;
    --wrap-2: 29.166vw;
    --wrap-lines: 22.152vw;
  }
}

@media (min-width: 1200px) and (min-width: 1440px) {
  :root {
    --wrap: calc((100vw - 1140px) / 2);
    --wrap-1: calc((100vw - 750px) / 2);
    --wrap-2: calc((100vw - 600px) / 2);
    --wrap-lines: calc((100vw - 811px) / 2);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  :root {
    --wrap: 5vw;
    --wrap-1: 5vw;
    --wrap-2: 5vw;
    --wrap-lines: 2.5vw;
  }
}

@media (max-width: 899px) {
  :root {
    --wrap: 5vw;
    --wrap-1: 5vw;
    --wrap-2: 5vw;
    --wrap-lines: 2.5vw;
  }
}

* {
  -webkit-tap-highlight-color: transparent;
}

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

* {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 899px) {
  * {
    outline: none;
  }
}

body,
input,
textarea,
button,
select {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
}

body {
  overflow-x: hidden;
  height: unset !important;
  font-weight: 400;
  font-size: 1rem;
  line-height: 160%;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
}

body._lock,
body._lock__pop {
  overflow: hidden;
}

._container {
  width: 100%;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  ._container {
    max-width: 1140px;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  ._container {
    max-width: 90%;
  }
}

@media (max-width: 899px) {
  ._container {
    max-width: 90%;
  }
}

.custom-logo-link {
  display: block;
  max-width: 6.5625rem;
  width: 100%;
  cursor: pointer;
}

.custom-logo-link img {
  width: 100%;
  height: auto;
}

.custom-form-select {
  position: relative;
  border: unset;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  border-bottom: 1px solid var(--color-text-secondary);
  -webkit-transform: unset !important;
  transform: unset !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
}

.custom-form-select select {
  display: none;
}

.custom-form-select .select-items div,
.custom-form-select .select-selected {
  position: relative;
  padding: 0.5rem 0.3125rem;
  cursor: pointer;
}

.custom-form-select .select-selected {
  background-color: var(--color-text-primary);
}

.custom-form-select .select-selected::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.625rem;
  height: 0.625rem;
  background-image: url(/images/design/label-arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.select-selected.select-arrow-active::before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}

.custom-form-select .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 3;
  background-color: var(--color-text-primary);
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.custom-form-select .select-items.select-hide {
  opacity: 0;
  visibility: hidden;
}

.custom-form-select .select-items div {
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.custom-form-select .select-items div.same-as-selected {
  border-color: var(--color-text-secondary);
}

.custom-form-select .select-pointer {
  position: absolute;
  top: 0;
  left: 0;
  display: var(--mobile);
  width: 100%;
  height: 2.625rem;
  background-color: var(--color-button);
  will-change: transform;
}

@media (max-width: 1199px) {
  .custom-form-select .select-pointer {
    display: none;
  }
}

.custom-form-select .same-as-selected {
  border-color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  ._margin-top {
    margin-top: 6.25rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  ._margin-top {
    margin-top: 5rem;
  }
}

@media (max-width: 899px) {
  ._margin-top {
    margin-top: 3.75rem;
  }
}

.lines {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 var(--wrap-lines);
  overflow: hidden;
}

.banner .lines {
  min-height: 35rem;
}

.blog .blog__bg .lines {
  z-index: 1;
}

.banner-inner .lines {
  z-index: 1;
}

.labeled .lines {
  z-index: 3;
}

.recording__container .lines {
  width: calc(100% + 2 * var(--wrap));
  margin-left: calc(-1 * var(--wrap));
}

.consultation__container .lines {
  width: calc(100% + 2 * var(--wrap));
  margin-left: calc(-1 * var(--wrap));
}

.lines-line {
  position: relative;
  width: 1px;
  height: 100%;
  background-color: rgba(var(--color-text-secondary--rgb), 0.06);
}

.lines-line__item {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 1.25rem;
  border-radius: 0.625rem;
  background-color: var(--color-button);
  opacity: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.hover-table {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  background-color: var(--color-button);
  will-change: transform;
  overflow: hidden;
}

.hover-table__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  .hover-table__content {
    padding: 0.9375rem 2.5rem 0.75rem;
  }
}

@media (max-width: 1199px) {
  .hover-table__content {
    padding: 0.9375rem 1.5625rem 0.75rem;
  }
}

.hover-table__content>*+* {
  margin-left: 0.9375rem;
}

@media (max-width: 899px) {
  .hover-table__content>*+* {
    margin-left: 1.25rem;
  }
}

html,
body {
  background-color: var(--color-bg-primary);
}

html._lock,
body._lock {
  overflow: hidden;
}

input,
textarea {
  width: 100%;
  border: unset;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  border-bottom: 1px solid var(--color-text-secondary);
  background-color: transparent;
  padding: unset;
  padding-top: 3px;
  padding-bottom: 6px;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  -moz-appearance: none;
  appearance: none;
  outline: none;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

input::placeholder,
textarea::placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

input.error,
label.incorrect input {
  border-color: var(--color-button);
}

textarea {
  height: 5.3125rem;
  padding-left: 3px;
  padding-right: 3px;
}

input[type=search] {
  -webkit-appearance: none;
}

input[type=date] {
  position: relative;
  height: 1.875rem;
  padding-bottom: 0.3125rem;
}

input[type=date]::-webkit-inner-spin-button,
input[type=date]::-webkit-calendar-picker-indicator {
  position: relative;
  opacity: 1;
  /* max-width: 0.9375rem; */
  width: 100%;
  box-sizing: border-box;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

input[type=date]::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  max-width: 0.625rem;
  width: 100%;
  height: 100%;
  background-image: url(/images/design/label-arrow-down.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

@media (min-width: 900px) {
  input[type=date]::before {
    background-position: 100% center;
  }
}

@media (max-width: 899px) {
  input[type=date]::before {
    background-position: 0 center;
  }
}

select {
  width: 100%;
  border: unset;
  border-radius: 0;
  -webkit-border-radius: 0;
  -webkit-appearance: none;
  border-bottom: 1px solid var(--color-text-secondary);
  background-color: transparent;
  padding: unset;
  padding-top: 3px;
  padding-bottom: 6px;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

select::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

select::-moz-placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

select:-ms-input-placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

select::-ms-input-placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

select::placeholder {
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

label.incorrect input {
  border-color: var(--color-button);
}

select option {
  background-color: var(--color-text-primary);
}

form label {
  display: block;
}

form div {
  color: var(--color-text-secondary);
}

form div span {
  display: block;
  font-weight: 300;
  line-height: 140%;
  font-size: 12px;
}

form div strong {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.625rem;
  color: var(--color-button);
}

form div strong::before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.3125rem;
  flex: 0 0 0.3125rem;
  height: 5px;
  margin-right: 0.25rem;
  background-image: url(/images/design/label-incorrect-input.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

label.incorrect strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

form p>*+* {
  margin-top: 1.0625rem;
}

form button[type=submit],
form input[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-weight: 600;
  padding: 0.9375rem 2.5rem;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 0;
  max-width: 11.25rem;
  width: 100%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background-color: var(--color-button);
}

form button[type=submit]::before,
form input[type=submit]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: rgba(var(--color-text-secondary--rgb), 0.42);
  opacity: 0.2;
  -webkit-filter: blur(13px);
  filter: blur(13px);
  border-radius: 3.125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0.4375rem 0.5625rem;
}

form button[type=submit]::after,
form input[type=submit]::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--color-button-active);
  border-radius: 3.125rem;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

form button[type=submit]:hover::before,
form button[type=submit]:focus-visible::before,
form input[type=submit]:hover::before,
form input[type=submit]:focus-visible::before {
  opacity: 0;
}

form button[type=submit]:hover::after,
form button[type=submit]:focus-visible::after,
form input[type=submit]:hover::after,
form input[type=submit]:focus-visible::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

@media (min-width: 900px) {

  form button[type=submit],
  form input[type=submit] {
    padding: 0.9375rem 1.75rem;
  }
}

@media (max-width: 899px) {

  form button[type=submit],
  form input[type=submit] {
    padding: 0.9375rem 1.125rem;
  }
}

form .form-group .control-label {
  display: block;
  font-weight: 300;
  line-height: 140%;
  font-size: 0.625rem;
}

form .form-group .ec-rating {
  margin-top: 1.0625rem;
}

form .form-group .ec-rating-stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

form .form-group .ec-rating-stars>*+* {
  margin-left: 0.5rem;
}

form .form-group .ec-rating-stars span {
  width: 2.375rem;
  height: 2.375rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background-image: url(/images/design/label-star-empty.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

form .form-group .ec-rating-stars span.active {
  background-image: url(/images/design/label-star.svg);
}

form .form-group .ec-error {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: opacity 0.3s ease, visibilty 0.3s ease;
  transition: opacity 0.3s ease, visibilty 0.3s ease;
  font-size: 0.625rem;
  color: var(--color-button);
}

form .form-group .ec-error::before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.3125rem;
  flex: 0 0 0.3125rem;
  height: 5px;
  margin-right: 0.25rem;
  background-image: url(/images/design/label-incorrect-input.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.form-group.has-error .ec-error {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

._btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-weight: 600;
  padding: 0.9375rem 2.5rem;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 0;
  max-width: 11.25rem;
  width: 100%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background-color: var(--color-button);
}

._btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: rgba(var(--color-text-secondary--rgb), 0.42);
  opacity: 0.2;
  -webkit-filter: blur(13px);
  filter: blur(13px);
  border-radius: 3.125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0.4375rem 0.5625rem;
}

._btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--color-button-active);
  border-radius: 3.125rem;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

._btn:hover::before,
._btn:focus-visible::before {
  opacity: 0;
}

._btn:hover::after,
._btn:focus-visible::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

._section-header__title__container {
  margin-bottom: 0.625rem;
}

._section-header__subtitle {
  font-weight: 500;
  font-size: 1rem;
  line-height: 129.9%;
  color: rgba(var(--color-text-primary--rgb), 0.62);
}

.breadcrumb-wrap._white {
  color: var(--color-text-secondary);
}

.breadcrumb-wrap._dark {
  color: var(--color-text-primary);
}

.breadcrumb-wrap .breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.675rem;
  line-height: 130%;
}

.breadcrumb-wrap .breadcrumbs>*+* {
  margin-left: 0.625rem;
}

.breadcrumb-wrap .breadcrumbs li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: inherit;
  opacity: 0.5;
}

.breadcrumb-wrap .breadcrumbs li a>*+* {
  margin-left: 0.625rem;
}

.breadcrumb-wrap .breadcrumbs li a span {
  position: relative;
  display: inline-block;
}

.breadcrumb-wrap .breadcrumbs li a span::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text-secondary);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}

.breadcrumb-wrap._white .breadcrumbs a>span::before {
  background-color: var(--color-text-secondary);
}

.breadcrumb-wrap._dark .breadcrumbs a>span::before {
  background-color: var(--color-text-primary);
}

.breadcrumb-wrap .breadcrumbs a:hover>span:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.breadcrumb-wrap .breadcrumbs a:focus-visible>span:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.breadcrumb-wrap .ti-angle-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 0.625rem;
  height: 1.25rem;
}

.breadcrumb-wrap .ti-angle-right::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(/images/design/label-arrow-right-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.breadcrumb-wrap._white .breadcrumbs .ti-angle-right::before {
  background-image: url(/images/design/label-arrow-right-white.svg);
}

.breadcrumb-wrap._dark .breadcrumbs .ti-angle-right::before {
  background-image: url(/images/design/label-arrow-right.svg);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.75rem 0;
  z-index: 11;
}

.header._dark {
  background-color: var(--color-text-primary);
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header__call__request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-weight: 600;
  padding: 0.9375rem 2.5rem;
  color: var(--color-text-secondary);
  max-width: 12.25em;
  width: 100%;
  border: 1px solid var(--color-text-secondary);
  padding: 0.5rem 0.625rem;
  -webkit-transition: border 0.3s ease, background 0.3s ease;
  transition: border 0.3s ease, background 0.3s ease;
  font-size: 0.75rem;
}

@media (max-width: 899px) {
  .header__call__request {
    padding: 0.375rem 0.375rem;
    font-size: 0.625rem;
  }
}

.header__call__request:hover,
.header__call__request:focus-visible {
  border-color: var(--color-button);
  background-color: var(--color-button);
}

@media (min-width: 900px) {
  .col-header:nth-child(1) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 6.5625rem;
    flex: 0 0 6.5625rem;
    margin-right: 1.25rem;
  }
}

@media (min-width: 900px) and (max-width: 1280px) and (min-width: 1200px) {
  .col-header:nth-child(1) {
    margin-right: 0rem;
  }
}

@media (max-width: 899px) {
  .col-header:nth-child(1) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 5rem;
    flex: 0 0 5rem;
    margin-right: 0.9375rem;
  }
}

@media (min-width: 1200px) {
  .col-header:nth-child(2) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 47.36%;
    flex: 0 0 47.36%;
  }
}

.col-header:nth-child(3) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .col-header:nth-child(3) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 32.89%;
    flex: 0 0 32.89%;
    -webkit-column-gap: 0.625rem;
    -moz-column-gap: 0.625rem;
    column-gap: 0.625rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .col-header:nth-child(3) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
  }
}

@media (max-width: 899px) {
  .col-header:nth-child(3) {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 0.5rem;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .btn-menu-fixed {
    display: none;
  }
}

@media (max-width: 1199px) {
  .btn-menu-fixed {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    bottom: 0.625rem;
    left: 0.625rem;
    z-index: 10;
    border: 2px solid var(--color-text-secondary);
    padding: 0.625rem 1rem 0.8125rem 0.6875rem;
    background-color: var(--color-button);
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5625rem;
    color: var(--color-text-secondary);
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .btn-menu-fixed::before {
    content: "";
    width: 1.5625rem;
    height: 1.5625rem;
    background-image: url(/images/design/label-burger.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    margin-right: 0.3125rem;
  }

  .btn-menu-fixed._hide {
    opacity: 0;
    visibility: hidden;
  }
}

@media (min-width: 1200px) {
  .cd-panel__header {
    display: none;
  }
}

@media (max-width: 1199px) {
  .cd-panel__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 998;
    background-color: var(--color-button);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform 0.15s ease;
    transition: -webkit-transform 0.15s ease;
    transition: transform 0.15s ease;
    transition: transform 0.15s ease, -webkit-transform 0.15s ease;
  }

  .cd-panel__header._opened {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.cd-panel__title {
  padding: 0.625rem 0;
  font-size: 1.0625rem;
  line-height: 1.25rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.cd-panel__close {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(var(--color-text-primary--rgb), 0.3);
}

.cd-panel__close::before,
.cd-panel__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 0.1875rem;
  background-color: var(--color-text-secondary);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: -webkit-transform 0.3s ease 0.15s;
  transition: -webkit-transform 0.3s ease 0.15s;
  transition: transform 0.3s ease 0.15s;
  transition: transform 0.3s ease 0.15s, -webkit-transform 0.3s ease 0.15s;
}

.cd-panel__header._opened .cd-panel__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.cd-panel__header._opened .cd-panel__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (min-width: 1200px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 1199px) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 997;
    width: 100%;
    height: 100%;
    padding: 3.75rem 1.25rem 0;
    background-color: var(--color-text-primary);
    overflow: auto;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

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

  .menu._lock {
    overflow: hidden;
  }

  .menu._opened {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@media (max-width: 1199px) {
  .menu>*+* {
    margin-top: 0.9375rem;
  }
}

.menu__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(var(--color-text-secondary--rgb), 0.1);
  padding-bottom: 0.9375rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.9375rem;
  -moz-column-gap: 0.9375rem;
  column-gap: 0.9375rem;
}

@media (min-width: 1200px) {
  .menu__social {
    display: none;
  }
}

.menu__social svg {
  width: 100%;
  height: auto;
}

.menu__social svg path {
  -webkit-transition: fill 0.3s ease;
  transition: fill 0.3s ease;
}

.menu__social a:hover path {
  fill: var(--color-button);
}

.menu__social a:focus-visible path {
  fill: var(--color-button);
}

.menu__social a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu .instagram {
  width: 1.25rem;
}

.menu .facebook {
  width: 0.6875rem;
}

.menu__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 0.9375rem;
}

@media (min-width: 1200px) {
  .menu__phone.menu__phone__mobile {
    display: none;
  }
}

@media (max-width: 1199px) {
  .menu__phone.menu__phone__mobile {
    padding-bottom: 0.9375rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 0.9375rem;
  }
}

.menu__phone.menu__phone__mobile a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 1.25rem;
  color: var(--color-text-secondary);
}

.menu__phone.menu__phone__mobile a:hover,
.menu__phone.menu__phone__mobile a:focus-visible {
  color: var(--color-button);
}

.menu__phone.menu__phone__desktop {
  max-width: 10.816em;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--color-text-secondary);
}

.menu__phone.menu__phone__desktop:hover,
.menu__phone.menu__phone__desktop:focus-visible {
  color: var(--color-button);
}

@media (max-width: 899px) {
  .menu__phone.menu__phone__desktop {
    display: none;
  }
}

.menu__phone__label {
  max-width: 1.166em;
  width: 100%;
  margin-right: 0.3125rem;
}

.menu__phone__label svg {
  width: 100%;
  height: auto;
}

.menu__phone__label svg path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

.menu__phone:hover path {
  stroke: var(--color-button);
}

.menu__phone:focus-visible path {
  stroke: var(--color-button);
}

.menu__lang {
  position: relative;
}

@media (min-width: 1200px) {
  .menu__lang {
    margin-left: auto;
  }
}

.menu__lang ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding-top: 0.3125rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.menu__lang:hover ul {
  opacity: 1;
  visibility: visible;
}

.menu__lang:focus-visible ul {
  opacity: 1;
  visibility: visible;
}

.menu__lang .lang-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 0.9375rem;
  color: var(--color-text-secondary);
}

.menu__lang .lang-item a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: inherit;
}

.menu__lang .lang-item a:hover,
.menu__lang .lang-item a:focus-visible {
  color: var(--color-button);
}

.menu__lang .lang-item svg {
  width: 0.625rem;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.menu__lang:hover svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu__lang:focus-visible svg {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.menu__burger {
  position: relative;
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.5625rem;
  flex: 0 0 1.5625rem;
  width: 100%;
  height: 1.125rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (min-width: 1200px) {
  .menu__burger {
    display: none;
  }
}

.menu__burger._opened {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.menu__burger::before,
.menu__burger::after,
.menu__burger span {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 0.125rem;
  background-color: var(--color-text-secondary);
}

.menu__burger span {
  top: 50%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.menu__burger._opened span {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.menu__burger::before {
  top: 0;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.menu__burger._opened::before {
  -webkit-transform: translate(0, 9px);
  transform: translate(0, 9px);
}

.menu__burger::after {
  top: 100%;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}

.menu__burger._opened::after {
  -webkit-transform: translate(0, -9px) rotate(90deg);
  transform: translate(0, -9px) rotate(90deg);
}

.custom-select-wrapper {
    display: none;
}

@media (min-width: 1200px) {
  .custom-select-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 6.25rem;
    flex: 0 0 6.25rem;
  }
}

.custom-select {
  position: relative;
}

@media (min-width: 1200px) {
  .custom-select {
    -webkit-transform: translateY(0.3125rem);
    transform: translateY(0.3125rem);
    padding: 0.625rem 0;
  }
}

@media (max-width: 1199px) {
  .custom-select {
    padding-left: 1.5625rem;
    padding-bottom: 0.9375rem;
    border-bottom: 1px solid rgba(var(--color-text-secondary--rgb), 0.1);
    -webkit-transition: padding 0.3s ease;
    transition: padding 0.3s ease;
    font-size: 1.5rem;
    line-height: 100%;
  }

  .custom-select._opened {
    padding-left: 0;
  }
}

@media (max-width: 899px) {
  .custom-select {
    font-size: 1.25rem;
  }
}

@media (min-width: 1200px) {
  .custom-select__additional {
    display: none;
  }
}

@media (max-width: 1199px) {
  .custom-select__additional {
    position: absolute;
    top: 2%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 1.3125rem;
    height: 1.3125rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }

  .custom-select._opened .custom-select__additional {
    opacity: 0;
  }

  .custom-select__additional svg {
    width: 100%;
    height: auto;
  }
}

.custom-select__trigger {
  position: relative;
  width: 100%;
  font-weight: 500;
  color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  .custom-select__trigger {
    padding: 0 0.625rem 0.625rem 1.25rem;
    border-bottom: 1px solid rgba(var(--color-text-secondary--rgb), 0.12);
    font-size: 0.75rem;
    line-height: 0.9375rem;
  }
}

.custom-select__trigger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url(/images/design/label-geo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media (max-width: 1199px) {
  .custom-select__trigger::before {
    display: none;
  }
}

.custom-select__trigger::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 0;
  width: 0.5rem;
  height: 0.5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background-image: url(/images/design/label-arrow-down.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

@media (max-width: 1199px) {
  .custom-select__trigger::after {
    display: none;
  }
}

.custom-select:hover .custom-select__trigger::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.custom-select:focus-visible .custom-select__trigger::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.custom-select .custom-options {
  background-color: var(--color-bg-primary);
}

@media (min-width: 1200px) {
  .custom-select .custom-options {
    position: absolute;
    left: 0;
    top: 100%;
    z-index: 1;
    display: -ms-grid;
    display: grid;
    border-radius: 1.875rem;
    padding: 1.5625rem;
    -ms-grid-columns: 1fr 1.25rem 1fr 1.25rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    -webkit-transform: translateX(-0.625rem);
    transform: translateX(-0.625rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0s 0.3s;
    transition: opacity 0.3s ease, visibility 0s 0.3s;
  }

  .custom-select:hover .custom-options {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease 0.3s, visibility 0s;
    transition: opacity 0.3s ease 0.3s, visibility 0s;
  }

  .custom-select:focus-visible .custom-options {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease 0.3s, visibility 0s;
    transition: opacity 0.3s ease 0.3s, visibility 0s;
  }
}

@media (max-width: 1199px) {
  .custom-select .custom-options {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 3.75rem 3.75rem 1.25rem 1.25rem;
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
    overflow: auto;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .custom-select .custom-options::-webkit-scrollbar {
    display: none;
  }

  .custom-select._opened .custom-options {
    -webkit-transform: translateX(2.5rem);
    transform: translateX(2.5rem);
  }
}

@media (max-width: 1199px) {
  .custom-select .custom-options>*+* {
    margin-top: 0.9375rem;
  }
}

@media (max-width: 1199px) {
  .custom-select .custom-options>* {
    border-bottom: 1px solid rgba(var(--color-text-primary--rgb), 0.1);
    padding-bottom: 0.9375rem;
  }
}

@media (min-width: 1200px) {
  .custom-select .custom-options__back {
    display: none;
  }
}

@media (max-width: 1199px) {
  .custom-select .custom-options__back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 0.5em;
    -moz-column-gap: 0.5em;
    column-gap: 0.5em;
    color: var(--color-text-primary);
  }

  .custom-select .custom-options__back svg {
    max-width: 0.625rem;
    width: 100%;
    height: auto;
  }
}

.custom-select .custom-option {
  color: var(--color-text-primary);
}

.custom-select .custom-option.selected {
  color: var(--color-button);
}

@media (min-width: 1200px) {
  .custom-select .custom-option {
    position: relative;
    padding: 5px;
  }
}

@media (max-width: 1199px) {
  .custom-select .custom-option {
    display: block;
  }
}

.custom-select .custom-option::before,
.custom-select .custom-option::after {
  position: absolute;
  width: 0;
  height: 0;
  -webkit-transition: width 0.4s ease, height 0.4s ease, border 0.1s ease 0.3s;
  transition: width 0.4s ease, height 0.4s ease, border 0.1s ease 0.3s;
}

@media (min-width: 1200px) {

  .custom-select .custom-option::before,
  .custom-select .custom-option::after {
    content: "";
  }
}

.custom-select .custom-option::before {
  top: 0;
  left: 0;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
}

.custom-option:hover::before {
  width: 95%;
  height: 70%;
  border-color: var(--color-text-primary);
  -webkit-transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
  transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
}

.custom-option:focus-visible::before {
  width: 95%;
  height: 70%;
  border-color: var(--color-text-primary);
  -webkit-transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
  transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
}

.custom-select .custom-option::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
}

.custom-option:hover::after {
  width: 95%;
  height: 70%;
  border-color: var(--color-text-primary);
  -webkit-transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
  transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
}

.custom-option:focus-visible::after {
  width: 95%;
  height: 70%;
  border-color: var(--color-text-primary);
  -webkit-transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
  transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
}

@media (min-width: 1200px) {
  .slimmenu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
  }
}

@media (min-width: 1200px) and (max-width: 1280px) {
  .slimmenu {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
  }
}

@media (max-width: 1199px) {
  .slimmenu>*+* {
    margin-top: 0.9375rem;
  }
}

@media (min-width: 1200px) {
  .slimmenu li {
    font-size: 0.75rem;
    line-height: 0.9375rem;
  }
}

@media (max-width: 1199px) {
  .slimmenu li {
    padding-bottom: 0.9375rem;
    border-bottom: 1px solid rgba(var(--color-text-secondary--rgb), 0.1);
    font-size: 1.5rem;
    line-height: 120%;
  }

  .slimmenu li.level2,
  .slimmenu li.level3,
  .slimmenu li.sub-toggle-back__container {
    border-bottom-color: rgba(var(--color-text-primary--rgb), 0.1);
  }
}

@media (max-width: 899px) {
  .slimmenu li {
    font-size: 1.25rem;
  }
}

.slimmenu li.has-submenu {
  position: relative;
  display: flex;
  align-items: center;
}

@media (max-width: 1199px) {
  .slimmenu li.has-submenu {
    padding-left: 1.5625rem;
    -webkit-transition: padding 0.3s ease;
    transition: padding 0.3s ease;
  }
}

@media (min-width: 1200px) {
  .slimmenu li.level1>a {
    position: relative;
    display: block;
    padding: 1.25rem 0 1.25rem;
  }

  .slimmenu li.level1>a.has-submenu__additional {
    display: none;
  }

  .slimmenu li.level1>a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 70%;
    width: 100%;
    height: 1px;
    background-color: var(--color-text-secondary);
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }

  .slimmenu li:hover a::before {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  .slimmenu li:focus-visible a::before {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@media (min-width: 1200px) {
  .slimmenu li.level1.has-submenu {
    padding-right: 0.9375rem;
  }
}

@media (max-width: 1199px) {
  .slimmenu li.level1.has-submenu.level1._opened {
    padding-left: 0;
  }
}

.slimmenu li.level1.has-submenu:hover::before,
.slimmenu li.level1.has-submenu:focus-visible::before {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.slimmenu li.level1.has-submenu::before {
  content: "";
  position: absolute;
  top: 42%;
  right: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 3.125rem;
  background-image: url(/images/design/label-dropdown-desk.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

@media (max-width: 1199px) {
  .slimmenu li.level1.has-submenu::before {
    display: none;
  }
}

@media (min-width: 1200px) {
  .slimmenu li.level2.has-submenu {
    position: static;
  }
}

@media (max-width: 1199px) {
  .slimmenu li.level2.has-submenu {
    position: relative;
  }

  .slimmenu li.level2.has-submenu.level2._opened {
    padding-left: 0;
  }
}

.slimmenu li.level2.has-submenu::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 1.875rem;
  background-color: var(--color-bg-primary);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0s ease 0.3s;
  transition: opacity 0.3s ease, visibility 0s ease 0.3s;
}

@media (min-width: 1200px) {
  .slimmenu li.level2.has-submenu::before {
    content: "";
  }
}

li.level2.has-submenu._opened::before {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (min-width: 1200px) {
  .slimmenu li.level2.has-submenu .has-submenu__additional {
    display: block;
   /*  width: 10px; */
    flex-shrink: 0;
  }
}

@media (min-width: 1200px) {
  .slimmenu li .has-submenu__additional {
    display: none;
  }
}



@media (max-width: 1199px) {
  .slimmenu li .has-submenu__additional {
    position: absolute;
    top: 15%;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 0.9375rem;
    height: 0.9375rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    color: #fff;
  }

  .level1._opened>.has-submenu__additional {
    opacity: 0;
  }

  .level2._opened>.has-submenu__additional {
    opacity: 0;
  }

  li.level2>.has-submenu__additional {
    top: 24%;
  }
}

.slimmenu li .has-submenu__additional svg {
  width: 100%;
  height: auto;
}

.slimmenu li .has-submenu__additional svg path {
  /* fill: var(--color-text-secondary); */
}

.slimmenu a {
  color: var(--color-text-secondary);
}

.slimmenu-submenu {
  scroll-behavior: smooth;
}

@media (min-width: 1200px) {
  .slimmenu-submenu {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 100%;
    display: -ms-grid;
    display: grid;
    width: 100%;
    min-width: 50rem;
    border-radius: 1.875rem;
    padding: 1.875rem 2.5rem;
    background-color: var(--color-bg-primary);
    -ms-grid-columns: 1fr 1.25rem 1fr 1.25rem 1fr;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 1.25rem;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    -webkit-transform: translateX(-1.25rem);
    transform: translateX(-1.25rem);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s ease, visibility 0s ease 0.3s;
    transition: opacity 0.3s ease, visibility 0s ease 0.3s;
  }

  .has-submenu:hover .slimmenu-submenu._level1 {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease 0.3s, visibility 0s ease;
    transition: opacity 0.3s ease 0.3s, visibility 0s ease;
  }

  .has-submenu:focus-visible .slimmenu-submenu._level1 {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease 0.3s, visibility 0s ease;
    transition: opacity 0.3s ease 0.3s, visibility 0s ease;
  }
}

@media (max-width: 1199px) {
  .slimmenu-submenu {
    position: fixed;
    top: 0;
    right: 0;
    
    /* display: none; */
    visibility: hidden;
    width: 100%;
    height: 100%;
    padding: 3.75rem 3.75rem 0.625rem 1.25rem;
    
    overflow-x: clip;
    overflow-y: auto;
    -webkit-transform: translateX(200%);
    transform: translateX(200%);
    /* -webkit-transition: -webkit-transform 0.3s ease; */
    /* transition: -webkit-transform 0.3s ease; */
    transition: transform 0.3s ease 0s, visibility 0.3s ease 0.3s;
    /* transition: transform 0.3s ease, -webkit-transform 0.3s ease; */
    -ms-overflow-style: none;
    scrollbar-width: none;
    
    background-color: var(--color-bg-primary);
    /* background-color: var(--color-text-primary); */
  }

  .slimmenu-submenu::-webkit-scrollbar {
    display: none;
  }

  .slimmenu-submenu._lock {
    overflow: hidden;
  }

  .level1._opened>.slimmenu-submenu {
    -webkit-transform: translateX(2.5rem);
    transform: translateX(2.5rem);
    z-index: 1;
    visibility: visible;
    
    transition: transform 0.3s ease 0.3s, visibility 0.3s ease 0s;
    /* display: block; */
  }

  .level2._opened>.slimmenu-submenu {
    -webkit-transform: translateX(0rem);
    transform: translateX(0rem);
    z-index: 2;
    visibility: visible;
    
    transition: transform 0.3s ease 0.3s, visibility 0.3s ease 0s;
    /* display: block; */
  }
}

@media (max-width: 1199px) {
  .slimmenu-submenu>*+* {
    margin-top: 0.9375rem;
  }
}

@media (min-width: 1200px) {
  .slimmenu-submenu._level2 {
    top: 0;
    left: 1.25rem;
    background: var(--color-bg-primary);
  }

  .has-submenu.level2._opened .slimmenu-submenu._level2 {
    visibility: visible;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}

@media (min-width: 1200px) {
  .slimmenu-submenu .sub-toggle-back__container {
    display: none;
  }

  .slimmenu-submenu._level2 .sub-toggle-back__container {
    display: block;
    grid-column: 1/-1;
  }
}

.slimmenu-submenu .sub-toggle-back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.5em;
  -moz-column-gap: 0.5em;
  column-gap: 0.5em;
}

@media (min-width: 1200px) {
  .slimmenu-submenu .sub-toggle-back {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

.slimmenu-submenu .sub-toggle-back svg {
  width: 100%;
  height: auto;
}

@media (min-width: 1200px) {
  .slimmenu-submenu .sub-toggle-back svg {
    max-width: 0.4375rem;
  }
}

@media (max-width: 1199px) {
  .slimmenu-submenu .sub-toggle-back svg {
    max-width: 0.625rem;
  }
  .slimmenu-submenu .sub-toggle-back svg path {
    /* stroke: var(--color-text-secondary); */
  }
}

.slimmenu-submenu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 0.25em;
  -moz-column-gap: 0.25em;
  column-gap: 0.25em;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  
  color: var(--color-text-primary);
  /* color: var(--color-text-secondary); */
}

@media (min-width: 1200px) {
  .slimmenu-submenu a {
    position: relative;
    padding: 5px;
  }
}

.slimmenu-submenu a::before,
.slimmenu-submenu a::after {
  position: absolute;
  width: 0;
  height: 0;
  -webkit-transition: width 0.4s ease, height 0.4s ease, border 0.1s ease 0.3s;
  transition: width 0.4s ease, height 0.4s ease, border 0.1s ease 0.3s;
}

@media (min-width: 1200px) {

  .slimmenu-submenu a::before,
  .slimmenu-submenu a::after {
    content: "";
  }
}

.slimmenu-submenu a::before {
  top: 0;
  left: 0;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
}

.slimmenu-submenu li>a:hover::before {
  width: 95%;
  height: 70%;
  border-color: var(--color-text-primary);
  -webkit-transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
  transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
}

.slimmenu-submenu li>a:focus-visible::before {
  width: 95%;
  height: 70%;
  border-color: var(--color-text-primary);
  -webkit-transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
  transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
}

.slimmenu-submenu a::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  border-right: 1px solid transparent;
}

.slimmenu-submenu li>a:hover::after {
  width: 95%;
  height: 70%;
  border-color: var(--color-text-primary);
  -webkit-transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
  transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
}

.slimmenu-submenu li>a:focus-visible::after {
  width: 95%;
  height: 70%;
  border-color: var(--color-text-primary);
  -webkit-transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
  transition: width 0.4s ease, height 0.4s ease, border 0.1s ease;
}

.slimmenu-submenu a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.25rem;
  flex: 0 0 1.25rem;
  margin-right: 0.3125rem;
}

.slimmenu-submenu a svg,
.slimmenu-submenu a img {
  max-width: 100%;
  /* display: none; */
}

.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: 35rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* background-image: url(/images/design/img-banner.png); */
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-text-secondary);
  background-color: var(--color-text-primary);
}

@media (min-width: 1200px) {
  .banner {
    padding: 12.5rem 0 10rem;
    background-position: center center;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner {
    padding: 6.25rem 0 7.5rem;
    background-position: center center;
  }
}

@media (max-width: 899px) {
  .banner {
    padding: 3.75rem 0 1.25rem;
    background-position: 35% center;
  }
}

.banner__wrapper {
  position: relative;
}

@media (min-width: 1200px) {
  .banner__wrapper {
    max-width: 44.824%;
  }
}

.banner__title__container {
  margin-bottom: 1.5625rem;
}

.banner__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .banner__title {
    font-size: 3rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner__title {
    font-size: 2.5625rem;
  }
}

@media (max-width: 899px) {
  .banner__title {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

.banner__list {
  margin-bottom: 1.9375rem;
  font-weight: 400;
  font-size: 1rem;
  line-height: 170%;
}

.banner__list>*+* {
  margin-top: 0.125rem;
}

.banner__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-weight: 600;
  padding: 0.9375rem 2.5rem;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 0;
  max-width: 11.25rem;
  width: 100%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background-color: var(--color-button);
}

.banner__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: rgba(var(--color-text-secondary--rgb), 0.42);
  opacity: 0.2;
  -webkit-filter: blur(13px);
  filter: blur(13px);
  border-radius: 3.125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0.4375rem 0.5625rem;
}

.banner__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--color-button-active);
  border-radius: 3.125rem;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.banner__btn:hover::before,
.banner__btn:focus-visible::before {
  opacity: 0;
}

.banner__btn:hover::after,
.banner__btn:focus-visible::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.labeled {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.labeled::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 67.278%;
}

._dark::before {
  content: "";
  background-color: var(--color-text-primary);
}

.contacts-section.labeled::before {
  content: "";
  height: 35.278%;
  background-color: var(--color-bg-primary);
}

@media (max-width: 899px) {
  .contacts-section.labeled::before {
    height: 31.278%;
  }
}

.coupled .labeled {
  margin-bottom: 0;
}

@media (max-width: 899px) {
  .coupled .labeled {
    padding-bottom: 1.25rem;
  }
}

.labeled__content {
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .labeled__content {
    margin-bottom: 8.875rem;
  }
}

@media (max-width: 899px) {
  .labeled__content {
    margin-bottom: 6.875rem;
  }
}

@media (max-width: 899px) {
  .coupled .labeled__content {
    margin-bottom: 0rem;
  }
}

.coupled__item:nth-child(2) .labeled__content {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .labeled._empty .labeled__content {
    margin-bottom: 4.6875rem;
  }
}

@media (max-width: 899px) {
  .labeled._empty .labeled__content {
    margin-bottom: 4.6875rem;
  }
}

@media (max-width: 899px) {
  .labeled.services .labeled__content {
    margin-bottom: 2.875rem;
  }
}

@media (min-width: 900px) {
  .labeled.contacts-section .labeled__content {
    margin-bottom: 3.875rem;
  }
}

@media (max-width: 899px) {
  .labeled.contacts-section .labeled__content {
    margin-bottom: 0.875rem;
  }
}

.labeled__label {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 77%;
}

@media (min-width: 1200px) {
  .labeled__label {
    font-size: 18.75rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .labeled__label {
    font-size: 13.75rem;
  }
}

@media (max-width: 899px) {
  .labeled__label {
    font-size: 10.75rem;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .labeled__label {
    font-size: 6.75rem;
  }
}

@media (max-width: 899px) and (max-width: 400px) {
  .labeled__label {
    font-size: 4.75rem;
  }
}

._light .labeled__label {
  color: rgba(var(--color-text-primary--rgb), 0.03);
}

._dark .labeled__label {
  color: rgba(var(--color-text-secondary--rgb), 0.03);
}

@media (min-width: 1200px) {
  .contacts-section.labeled .labeled__label {
    font-size: 13.75rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .contacts-section.labeled .labeled__label {
    font-size: 10.75rem;
  }
}

@media (max-width: 899px) {
  .contacts-section.labeled .labeled__label {
    font-size: 6.75rem;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .contacts-section.labeled .labeled__label {
    font-size: 4.375rem;
  }
}

@media (max-width: 899px) and (max-width: 400px) {
  .contacts-section.labeled .labeled__label {
    font-size: 3.375rem;
  }
}

@media (max-width: 899px) {
  .coupled>*+* {
    margin-top: 1.875rem;
  }
}

.coupled__item {
  position: relative;
  z-index: 0;
}

@media (min-width: 900px) {
  .coupled__item:first-child {
    margin-bottom: -6.5625rem;
  }
}

.coupled__item:first-child::before {
  content: "";
  position: absolute;
  left: 42%;
  bottom: 22%;
  z-index: 1;
  width: 50%;
  height: 5.0625rem;
  background: rgba(255, 255, 255, 0.05);
  -webkit-filter: blur(55.5px);
  filter: blur(55.5px);
}

@media (max-width: 899px) {
  .coupled__item:first-child::before {
    display: none;
  }
}

.displaced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0%;
  height: 100%;
  background-color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  .displaced::before {
    width: 68.33vw;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .displaced::before {
    width: 80.33vw;
  }
}

@media (max-width: 899px) {
  .displaced::before {
    width: 91.33vw;
  }
}

.displaced__wrapper {
  position: relative;
  padding: 6.25rem 0;
}

@media (min-width: 1200px) {
  .displaced__wrapper {
    max-width: 73.07%;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .displaced__wrapper {
    max-width: 83.07%;
  }
}

@media (max-width: 899px) {
  .displaced__wrapper {
    max-width: 83.07%;
  }
}

.displaced__main {
  position: relative;
}

@media (min-width: 1200px) {
  .displaced__main {
    max-width: 70.228%;
  }
}

@media (min-width: 1200px) {
  .displaced__main {
    max-width: 83.228%;
  }
}

@media (min-width: 1200px) {
  .displaced__main {
    max-width: 83.228%;
  }
}

.displaced__header {
  margin-bottom: 3.125rem;
}

.displaced__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .displaced__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .displaced__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .displaced__title {
    font-size: 1.75rem;
  }
}

.displaced-list {
  display: -ms-grid;
  display: grid;
  row-gap: 2.375rem;
  -webkit-column-gap: 15.232%;
  -moz-column-gap: 15.232%;
  column-gap: 15.232%;
}

@media (min-width: 900px) {
  .displaced-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 899px) {
  .displaced-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.displaced-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.displaced-list__item>*+* {
  margin-left: 1.1875rem;
}

.displaced-list__label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.75rem;
  flex: 0 0 2.75rem;
}

.displaced-list__label img {
  width: 100%;
  height: auto;
}

.displaced-list__description {
  font-weight: 500;
  line-height: 129.9%;
}

@media (min-width: 900px) {
  .displaced-list__description {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .displaced-list__description {
    font-size: 0.875rem;
  }
}

.displaced__additional {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 10rem;
  width: 100%;
  padding: 1.25rem 1.3125rem 1.6875rem;
  background-color: var(--color-button);
  -webkit-transform: translate(0, 59.854%);
  transform: translate(0, 59.854%);
  font-weight: 500;
  font-size: 1rem;
  line-height: 151.9%;
  color: var(--color-text-secondary);
}

.displaced__additional span {
  width: 600px;
  font-size: 2rem;
}

.displaced__img {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  max-width: 22.25rem;
  -webkit-transform: translate(85%, -50%);
  transform: translate(85%, -50%);
}

.displaced__img img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  will-change: transform;
}

@media (min-width: 1200px) and (min-width: 1880px) {
  .displaced__img {
    -webkit-transform: translate(120%, -50%);
    transform: translate(120%, -50%);
  }
}

@media (max-width: 899px) {
  .displaced__img {
    -webkit-transform: translate(75%, -50%);
    transform: translate(75%, -50%);
  }
}

.with-image {
  position: relative;
}

.with-image__header {
  max-width: 21.3125rem;
  width: 100%;
}

@media (min-width: 900px) {
  .with-image__header {
    margin-bottom: -2.875rem;
  }
}

@media (max-width: 899px) {
  .with-image__header {
    margin-bottom: 1.875rem;
  }
}

.contacts-section.labeled .with-image__header {
  max-width: unset;
}

.with-image__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (min-width: 900px) {
  .with-image__body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    overflow: hidden;
  }
}

@media (max-width: 899px) {
  .with-image__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

@media (min-width: 900px) {
  .with-image__body._reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.with-image__footer {
  position: relative;
  z-index: 2;
  margin-top: -2.5625rem;
  margin-left: 0.5625rem;
}

@media (max-width: 899px) {
  .with-image__footer {
    margin-left: 1.25rem;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .with-image__footer {
    margin: 0;
    margin: -1.875rem auto 0;
  }
}

.with-image__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-weight: 600;
  padding: 0.9375rem 2.5rem;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 0;
  max-width: 11.25rem;
  width: 100%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background-color: var(--color-button);
}

.with-image__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: rgba(var(--color-text-secondary--rgb), 0.42);
  opacity: 0.2;
  -webkit-filter: blur(13px);
  filter: blur(13px);
  border-radius: 3.125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0.4375rem 0.5625rem;
}

.with-image__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--color-button-active);
  border-radius: 3.125rem;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.with-image__btn:hover::before,
.with-image__btn:focus-visible::before {
  opacity: 0;
}

.with-image__btn:hover::after,
.with-image__btn:focus-visible::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

@media (max-width: 899px) and (max-width: 550px) {
  .with-image__btn {
    margin: 0 auto;
  }
}

.with-image__breadcrumbs {
  margin-bottom: 1.5625rem;
}

.with-image__title__container {
  margin-bottom: 0.25rem;
}

.with-image__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .with-image__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .with-image__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .with-image__title {
    font-size: 1.75rem;
  }
}

.contacts-section.labeled .with-image__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .contacts-section.labeled .with-image__title {
    font-size: 3rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .contacts-section.labeled .with-image__title {
    font-size: 2.5625rem;
  }
}

@media (max-width: 899px) {
  .contacts-section.labeled .with-image__title {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

.with-image__img {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .with-image__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 47.807%;
    flex: 0 0 47.807%;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .with-image__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45.754%;
    flex: 0 0 45.754%;
  }
}

@media (max-width: 899px) and (min-width: 550px) {
  .with-image__img {
    max-width: 70%;
    margin: 0 auto;
    -webkit-transform: translate(0, -1.875rem);
    transform: translate(0, -1.875rem);
  }
}

@media (min-width: 1200px) {
  .with-image__body._large .with-image__img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 56.754%;
    flex: 0 0 56.754%;
  }
}

@media (max-width: 899px) and (min-width: 550px) {
  .with-image__body._large .with-image__img {
    max-width: 80%;
    margin: 0 0 0 auto;
    -webkit-transform: translate(1.25rem, -1.875rem);
    transform: translate(1.25rem, -1.875rem);
  }
}

@media (max-width: 899px) {
  .contacts-section .with-image__body._large .with-image__img {
    margin-left: -6%;
    width: 112%;
  }
}

.with-image__img__container {
  padding-top: 63.486%;
}

.with-image__body._large .with-image__img__container {
  padding-top: 51.004%;
}

.with-image__img img,
.with-image__img iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.with-image__main {
  position: relative;
  z-index: 0;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 56.754%;
  flex: 0 0 56.754%;
  width: 100%;
  background-color: var(--color-text-primary);
  color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  .with-image__main {
    -webkit-transform: translateX(-7.506%);
    transform: translateX(-7.506%);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .with-image__main {
    -webkit-transform: translateX(-4.506%);
    transform: translateX(-4.506%);
  }
}

@media (max-width: 899px) {
  .with-image__main {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
  }
}

@media (min-width: 1200px) {
  .with-image__body._reverse .with-image__main {
    -webkit-transform: translateX(7.506%);
    transform: translateX(7.506%);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .with-image__body._reverse .with-image__main {
    -webkit-transform: translateX(4.506%);
    transform: translateX(4.506%);
  }
}

@media (min-width: 1200px) {
  .with-image__body._large .with-image__main {
    -webkit-transform: translateX(-23.506%);
    transform: translateX(-23.506%);
  }
}

@media (max-width: 899px) {
  .coupled .coupled__item:nth-child(even) .with-image__main {
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
  }
}

.with-image-list {
  width: 100%;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .with-image-list {
    max-width: 63.523%;
    padding: 3.3125rem 7.375rem 5.25rem 0;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .with-image-list {
    max-width: 85.523%;
    padding: 3.3125rem 1.875rem 5.25rem 0;
  }
}

@media (max-width: 899px) {
  .with-image-list {
    padding: 3.3125rem 1.875rem;
  }
}

@media (max-width: 899px) and (max-width: 530px) {
  .with-image-list {
    padding: 2.1875rem 1.25rem;
  }
}

.with-image-list>*+* {
  margin-top: 1.75rem;
}

.with-image-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.with-image-list__count {
  margin-right: 0.8125rem;
  font-weight: 600;
  font-size: 1rem;
  line-height: 130%;
  color: var(--color-button);
}

.with-image-list__content {
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 130%;
}

.with-image-list__title__conteiner {
  margin-bottom: 0.4375rem;
}

.with-image-list__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .with-image-list__title {
    font-size: 1rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .with-image-list__title {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .with-image-list__title {
    font-size: 1rem;
  }
}

.with-image-list__description p {
    font-size: 14px;
}

.with-image-article {
  font-weight: 400;
  font-size: 1rem;
  line-height: 160.4%;
}

@media (min-width: 1200px) {
  .with-image-article {
    max-width: 84.698%;
    margin-left: auto;
    padding: 3.3125rem 1.75rem 5.5625rem 0;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .with-image-article {
    max-width: 95.698%;
    margin-left: auto;
    padding: 1.875rem 1.25rem;
  }
}

@media (max-width: 899px) {
  .with-image-article {
    padding: 1.875rem 1.25rem 3.75rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 1200px) {
  .with-image__body._reverse .with-image-article {
    margin-left: unset;
    padding: 2.9375rem 0 4rem 2.875rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .with-image__body._reverse .with-image-article {
    margin-left: unset;
  }
}

.with-image-article__title__container {
  margin-bottom: 2rem;
}

.with-image-article__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .with-image-article__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .with-image-article__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .with-image-article__title {
    font-size: 1.75rem;
  }
}

.with-image-article__description>*+* {
  margin-top: 1.875rem;
}

.with-image-article__description ol,
.with-image-article__description ul{
    list-style: auto;
    padding-left: 20px;
}

@media (min-width: 1200px) {
  .services {
    margin-bottom: 6.25rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .services {
    margin-bottom: 5rem;
  }
}

@media (max-width: 899px) {
  .services {
    margin-bottom: 3.75rem;
  }
}

/* @media (min-width: 1200px) {
  .services._services-section {
    margin-top: 8.9375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .services._services-section {
    margin-top: 7.125rem;
  }
}

@media (max-width: 899px) {
  .services._services-section {
    margin-top: 6.75rem;
  }
} */

.services.labeled {
  margin-bottom: 0;
}

.services__header {
  margin-bottom: 1.875rem;
  text-align: center;
}

.services__breadcrumbs {
  margin-bottom: 1.875rem;
}

.services__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .services__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .services__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .services__title {
    font-size: 1.75rem;
  }
}

.services._services-section .services__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .services._services-section .services__title {
    font-size: 3rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .services._services-section .services__title {
    font-size: 2.5625rem;
  }
}

@media (max-width: 899px) {
  .services._services-section .services__title {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

.services._services-section .services__subtitle {
  margin-top: 0.625rem;
}

.services-list {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 0.625rem;
  -moz-column-gap: 0.625rem;
  column-gap: 0.625rem;
  row-gap: 0.875rem;
}

@media (min-width: 1200px) {
  .services-list {
    -ms-grid-columns: (1fr)[7];
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .services-list {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 899px) {
  .services-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .services-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

.services-list__item {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.services-list__item__inner,
.services-list__item__hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  text-align: center;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 129.9%;
}

@media (min-width: 900px) {

  .services-list__item__inner,
  .services-list__item__hover {
    padding: 2.3125rem 1.125rem 1.3125rem;
  }
}

@media (max-width: 899px) {

  .services-list__item__inner,
  .services-list__item__hover {
    padding: 1.25rem 0.75rem 0.9375rem;
  }
}

.services-list__item__inner {
  background-color: var(--color-text-secondary);
  color: var(--color-text-primary);
}

.services-list__item:hover .services-list__item__inner {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.services-list__item:focus-visible .services-list__item__inner {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.services-list__item__hover {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--color-button);
  color: var(--color-text-secondary);
}

.services-list__item:hover .services-list__item__hover {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.services-list__item:focus-visible .services-list__item__hover {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.services-list__label {
  position: relative;
  max-width: 2.625rem;
}

@media (min-width: 900px) {
  .services-list__label {
    margin-bottom: 1.375rem;
  }
}

@media (max-width: 899px) {
  .services-list__label {
    margin-bottom: 0.9375rem;
  }
}

.services-list__label svg path {
  -webkit-transition: -webkit-filter 0.3s ease;
  transition: -webkit-filter 0.3s ease;
  transition: filter 0.3s ease;
  transition: filter 0.3s ease, -webkit-filter 0.3s ease;
}

.services-list__item:hover path {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.services-list__item:focus-visible path {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.services-list__title {
  position: relative;
  font-size: 14px;
}

.recording {
  position: relative;
  overflow: hidden;
}

.banner-inner-form.recording {
    overflow: visible;
}

@media (min-width: 1200px) {
  .recording {
    padding: 6.25rem 0;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .recording {
    margin: 5rem 0;
  }
}

@media (max-width: 899px) {
  .recording {
    margin: 3.75rem 0;
  }
}

.banner-inner .recording {
    padding: 0;
}

.recording__container {
  position: relative;
}

.recording__lines__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.recording__img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 62.5rem;
  width: 100%;
}

@media (min-width: 1200px) {
  .recording__img {
    -webkit-transform: translate(59.6%, 0.625rem);
    transform: translate(59.6%, 0.625rem);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .recording__img {
    -webkit-transform: translate(67.6%, 0.625rem);
    transform: translate(67.6%, 0.625rem);
  }
}

@media (max-width: 899px) {
  .recording__img {
    max-width: 50rem;
    -webkit-transform: translate(67.6%, 0.625rem);
    transform: translate(67.6%, 0.625rem);
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .recording__img {
    width: 40rem;
    -webkit-transform: translate(76.6%, 0.625rem);
    transform: translate(76.6%, 0.625rem);
  }
}

.recording__img img {
  width: 100%;
  height: auto;
  will-change: transform;
}

.recording__wrapper {
  background-color: var(--color-text-primary);
  overflow: hidden;
  color: var(--color-text-secondary);
}

@media (min-width: 900px) {
  .recording__wrapper {
    padding: 3.625rem 5.9375rem;
  }
}

@media (max-width: 899px) {
  .recording__wrapper {
    padding: 1.875rem 1.25rem 7.5rem;
  }
}

.recording__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 4.375rem;
}

@media (min-width: 1200px) {
  .recording__header {
    max-width: 82.105%;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .recording__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 899px) {
  .recording__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 900px) {
  .recording__header>*+* {
    margin-left: 3.75rem;
  }
}

@media (max-width: 899px) {
  .recording__header>*+* {
    margin-top: 3.75rem;
  }
}

@media (min-width: 900px) {
  .recording__title__container {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

.recording__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .recording__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .recording__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .recording__title {
    font-size: 1.75rem;
  }
}

.recording__title span {
  display: block;
  font-weight: 700;
}

.recording-sales {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .recording-sales {
    max-width: 20.5em;
  }
}

@media (max-width: 899px) {
  .recording-sales {
    max-width: 60%;
  }
}

@media (max-width: 899px) and (max-width: 720px) {
  .recording-sales {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: unset;
  }
}

.recording-sales>*+* {
  margin-left: 1.4375rem;
}

@media (max-width: 899px) and (max-width: 720px) {
  .recording-sales>*+* {
    margin-left: unset;
    margin-top: 1.4375rem;
  }
}

.recording-sales__count {
  position: relative;
  z-index: 0;
  font-weight: 700;
  font-size: 4rem;
  line-height: 100%;
}

.recording-sales__count::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-button);
}

@media (min-width: 900px) {
  .recording-sales__count::before {
    width: 118.4%;
    height: 200%;
    -webkit-transform: translate(-0.5625rem, -3.625rem);
    transform: translate(-0.5625rem, -3.625rem);
  }
}

@media (max-width: 899px) {
  .recording-sales__count::before {
    width: 123%;
    height: 120%;
    -webkit-transform: translate(-15%, -10%);
    transform: translate(-15%, -10%);
  }
}

.recording-sales__count p {
  position: relative;
}

.recording-sales__description {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 130%;
}

.recording__form__container {
  width: 100%;
}

@media (min-width: 1200px) {
  .recording__form__container {
    max-width: 65.894%;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .recording__form__container {
    max-width: 90%;
  }
}

.recording-form>*+* {
  margin-top: 2.5625rem;
}

.recording-form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  
  position: relative;
  z-index: 10;
}

@media (max-width: 899px) and (max-width: 720px) {
  .recording-form div {
    display: block;
  }
}

.recording-form div>*+* {
  margin-left: 1.875rem;
}

@media (max-width: 899px) and (max-width: 720px) {
  .recording-form div>*+* {
    margin-left: unset;
    margin-top: 1.875rem;
  }
}

.recording-form label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10rem;
  flex: 0 0 10rem;
}

.recording-form p span {
  position: relative;
  display: block;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  padding-left: 0.4375rem;
}

.recording-form p span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background-color: var(--color-text-secondary);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.price {
  position: relative;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .price {
    margin: 6.25rem 0;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .price {
    padding: 5rem 0;
  }
}

@media (max-width: 899px) {
  .price {
    padding: 3.75rem 0;
  }
}

.price._price-section {
    margin-bottom: 0;  
    padding-bottom: 0;  
}

@media (min-width: 1200px) {
  .price._price-section {
    margin-top: 8.9375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .price._price-section {
    margin-top: 7.125rem;
  }
}

@media (max-width: 899px) {
  .price._price-section {
    padding: 0;
    margin-top: 6.75rem;
  }
}


@media (min-width: 1200px) and (min-width: 1440px) {
  .price__container {
    position: relative;
  }
}

.price__img__bg {
  position: absolute;
  right: 0;
  max-width: 38.5625rem;
  width: 100%;
  -webkit-transform: translate(14.91%, 0);
  transform: translate(14.91%, 0);
}

@media (min-width: 1200px) {
  .price__img__bg {
    top: 26.38%;
  }
}

@media (min-width: 1200px) and (min-width: 1440px) {
  .price__img__bg {
    right: -12%;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .price__img__bg {
    top: 5%;
  }
}

@media (max-width: 899px) {
  .price__img__bg {
    bottom: 0;
    width: 20rem;
  }
}

.price__img__bg img {
  width: 100%;
  height: auto;
  will-change: transform;
}

.price__wrapper {
  position: relative;
}

@media (min-width: 1200px) {
  .price__wrapper {
    /* max-width: 85.436%; */
    width: 100%;
  }
}

.price__header {
  margin-bottom: 1rem;
}

@media (min-width: 900px) {
  .price__header {
    max-width: 59.24%;
  }
}

@media (min-width: 1200px) {
  .price._price-section .price__header {
    max-width: 90.24%;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .price._price-section .price__header {
    max-width: 57.24%;
  }
}

.price__breadcrumbs {
  margin-bottom: 1.875rem;
}

.price__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .price__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .price__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .price__title {
    font-size: 1.75rem;
  }
}

.price._price-section .price__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .price._price-section .price__title {
    font-size: 3rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .price._price-section .price__title {
    font-size: 2.5625rem;
  }
}

@media (max-width: 899px) {
  .price._price-section .price__title {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

@media (min-width: 900px) {
  .price__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .price__content>*+* {
    margin-left: 4.0625rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .price__content>*+* {
    margin-left: 2.5rem;
  }
}

@media (max-width: 899px) {
  .price__content>*+* {
    margin-top: 2.5rem;
  }
}

@media (min-width: 1200px) {
  .price__main>*+* {
    margin-top: 3.5625rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .price__main>*+* {
    margin-top: 2.5625rem;
  }
}

@media (max-width: 899px) {
  .price__main>*+* {
    margin-top: 1.5625rem;
  }
}

@media (min-width: 1200px) {
  .price__list__container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .price__list__container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 55%;
    flex: 0 0 55%;
  }
}

@media (min-width: 1200px) {
  .price__list__container>*+* {
    margin-top: 3.5625rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .price__list__container>*+* {
    margin-top: 2.5625rem;
  }
}

@media (max-width: 899px) {
  .price__list__container>*+* {
    margin-top: 1.5625rem;
  }
}

@media (min-width: 900px) {
  .price._price-section .price__list__container {
    -webkit-box-flex: unset;
    -ms-flex: unset;
    flex: unset;
    width: 100%;
  }
}

.price__description {
  font-weight: 500;
  line-height: 173.9%;
  color: rgba(var(--color-text-primary--rgb), 1);
}

@media (min-width: 900px) {
  .price__description {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .price__description {
    font-size: 0.875rem;
  }
}

.price__description>*+* {
  margin-top: 0.625rem;
}

@media (max-width: 899px) {
  .price__btn__container._desk {
    display: none;
  }
}

@media (min-width: 900px) {
  .price__btn__container._mob {
    display: none;
  }
}

.price-list {
  width: 100%;
  box-shadow: 0px 4px 12px 0px #00000040;
  margin-bottom: 8px;
}

@media (max-width: 899px) and (max-width: 550px) {
  .price-list {
    width: 112%;
    margin-left: -6%;
  }
}

.price-list__row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid rgba(var(--color-text-primary--rgb), 0.08);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 143.4%;
  color: var(--color-text-primary);
  background-color: var(--color-text-secondary);
  overflow: hidden;
}

@media (min-width: 1200px) {
  .price-list__row {
    padding: 0.9375rem 2.5rem 0.75rem;
  }
}

@media (max-width: 1199px) {
  .price-list__row {
    padding: 0.9375rem 1.5625rem 0.75rem;
  }
}

.price-list__row._header {
  border-top: unset;
  padding: 0.625rem 2.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 130%;
  color: var(--color-text-secondary);
  background-color: var(--color-text-primary);
}

@media (min-width: 1200px) {
  .price-list__row._header {
    padding: 0.625rem 2.5rem;
  }
}

@media (max-width: 1199px) {
  .price-list__row._header {
    padding: 0.625rem 1.5625rem;
  }
}

.price-list__row>*+* {
  margin-left: 0.9375rem;
}

@media (max-width: 899px) {
  .price-list__row>*+* {
    margin-left: 1.25rem;
  }
}

.price-list__column {
    position: relative;
    display: flex;
    align-items: center;
}

.price-list__column:nth-child(1):before {
    content: "";
    position: absolute;
    /* border: 1px solid black; */
    height: 280%;
    width: 1px;
    background: rgba(var(--color-text-primary--rgb), 0.08);
    right: 0;
    z-index: 2;
    transition: background 0.3s;
}
.price-list__row:hover .price-list__column:nth-child(1):before {
    background: white;
}
.price-list__row._header .price-list__column:nth-child(1):before {
    background: white;
}

@media (min-width: 1200px) {
  .price-list__column:nth-child(1) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80.25%;
    flex: 0 0 80.25%;
  }
}

@media (max-width: 1199px) {
  .price-list__column:nth-child(1) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75.25%;
    flex: 0 0 75.25%;
  }
}

@media (max-width: 1199px) and (max-width: 395px) {
  .price-list__column:nth-child(1) {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 68.25%;
    flex: 0 0 68.25%;
  }
}

@media (min-width: 1200px) {
  .brands {
    margin-top: 6.25rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .brands {
    margin-top: 5rem;
  }
}

@media (max-width: 899px) {
  .brands {
    margin-top: 3.75rem;
  }
}

.brands__header {
  margin-bottom: 2.0625rem;
}

.brands__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 1200px) {
  .brands__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .brands__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .brands__title {
    font-size: 1.75rem;
  }
}

.brands__slider__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.brands__slider__container .swiper-button-prev,
.brands__slider__container .swiper-button-next {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.5rem;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: unset;
  padding: 0 0.5rem;
  margin: unset;
  background-color: var(--color-text-secondary);
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.brands__slider__container .swiper-button-prev::after,
.brands__slider__container .swiper-button-next::after {
  display: none;
}

.brands__slider__container .swiper-button-prev::before,
.brands__slider__container .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-button);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.swiper-button-prev::before {
  -webkit-transform: translateX(110%);
  transform: translateX(110%);
}

.swiper-button-next::before {
  -webkit-transform: translateX(-110%);
  transform: translateX(-110%);
}

.swiper-button-prev:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.swiper-button-prev:focus-visible::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.swiper-button-next:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.swiper-button-next:focus-visible::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.brands__slider__container .swiper-button-prev img,
.brands__slider__container .swiper-button-prev svg,
.brands__slider__container .swiper-button-next img,
.brands__slider__container .swiper-button-next svg {
  position: relative;
  width: 100%;
  height: auto;
}

.brands__slider__container .swiper-button-prev img path,
.brands__slider__container .swiper-button-prev svg path,
.brands__slider__container .swiper-button-next img path,
.brands__slider__container .swiper-button-next svg path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

.brands__slider__container .swiper-button-prev:hover path {
  stroke: var(--color-text-secondary);
}

.brands__slider__container .swiper-button-prev:focus-visible path {
  stroke: var(--color-text-secondary);
}

.brands__slider__container .swiper-button-next:hover path {
  stroke: var(--color-text-secondary);
}

.brands__slider__container .swiper-button-next:focus-visible path {
  stroke: var(--color-text-secondary);
}

@media (min-width: 900px) {
  .brands__slider__container .swiper-button-prev {
    margin-right: 1.6875rem;
  }
}

@media (max-width: 899px) {
  .brands__slider__container .swiper-button-prev {
    margin-right: 0.625rem;
  }
}

@media (min-width: 900px) {
  .brands__slider__container .swiper-button-next {
    margin-left: 1.6875rem;
  }
}

@media (max-width: 899px) {
  .brands__slider__container .swiper-button-next {
    margin-left: 0.625rem;
  }
}

.brands-swiper__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: var(--color-text-secondary);
  overflow: hidden;
}

@media (min-width: 900px) {
  .brands-swiper__link {
    padding: 2.1875rem 0;
  }
}

@media (max-width: 899px) {
  .brands-swiper__link {
    padding: 1.5625rem 0;
  }
}

.brands-swiper__link>*+* {
  margin-left: 0.5rem;
}

.brands-swiper__label {
  display: block;
  height: 1.875rem;
}

.brands-swiper__label img {
  height: 100%;
  width: auto;
}

.brands-swiper__title {
  font-weight: 500;
  line-height: 130%;
  color: var(--color-text-primary);
  -webkit-transition: opacity 0.3s ease, font-size 0.3s ease, margin 0.3s ease;
  transition: opacity 0.3s ease, font-size 0.3s ease, margin 0.3s ease;
}

@media (min-width: 900px) {
  .brands-swiper__title {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .brands-swiper__title {
    font-size: 0.875rem;
  }
}

@media (min-width: 900px) {
  .brands-swiper__link:hover .brands-swiper__title {
    margin-left: 0;
    opacity: 0;
    font-size: 0;
  }
}

@media (min-width: 900px) {
  .brands-swiper__link:focus-visible .brands-swiper__title {
    margin-left: 0;
    opacity: 0;
    font-size: 0;
  }
}

@media (min-width: 1200px) {
  .faq {
    margin-top: 6.25rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .faq {
    margin-top: 5rem;
  }
}

@media (max-width: 899px) {
  .faq {
    margin-top: 3.75rem;
  }
}

@media (min-width: 1200px) {
  .faq__container {
    max-width: 45rem;
  }
}

@media (min-width: 900px) {
  .faq__header {
    margin-bottom: 4rem;
  }
}

@media (max-width: 899px) {
  .faq__header {
    margin-bottom: 2rem;
  }
}

.faq__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 1200px) {
  .faq__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .faq__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .faq__title {
    font-size: 1.75rem;
  }
}

.faq-list__item {
  border-bottom: 1px solid rgba(var(--color-text-primary--rgb), 0.26);
  padding-bottom: 1rem;
  -webkit-transition: border 0.3s ease;
  transition: border 0.3s ease;
}

.faq-list__item._active {
  border-color: rgba(var(--color-text-primary--rgb), 0.99);
}

.faq-list__summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: unset;
  padding: unset;
  background-color: unset;
}

.faq-list__summary>*+* {
  margin-left: 1.25rem;
}

@media (min-width: 900px) {
  .faq-list>*+* .faq-list__summary {
    padding-top: 3rem;
  }
}

@media (max-width: 899px) {
  .faq-list>*+* .faq-list__summary {
    padding-top: 2rem;
  }
}

.faq-list__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
  text-align: left;
  font-weight: 500;
  line-height: 130%;
}

@media (min-width: 1200px) {
  .faq-list__title {
    font-size: 1.25rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .faq-list__title {
    font-size: 1.175rem;
  }
}

@media (max-width: 899px) {
  .faq-list__title {
    font-size: 1.175rem;
  }
}

.faq-list__mark {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.875rem;
  flex: 0 0 0.875rem;
}

.faq-list__mark svg,
.faq-list__mark img {
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq-list__mark svg._active,
.faq-list__mark img._active {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-list__mark svg path,
.faq-list__mark img path {
  -webkit-transition: d 0.15s ease, -webkit-transform 0.3s ease;
  transition: d 0.15s ease, -webkit-transform 0.3s ease;
  transition: d 0.15s ease, transform 0.3s ease;
  transition: d 0.15s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}

.faq-list__details {
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.faq-list__description {
  padding-top: 1.75rem;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 174%;
}

.consultation {
  overflow-y: visible;
  overflow-x: clip;
}

@media (min-width: 1200px) {
  .consultation {
    padding: 13.4375rem 0 9.125rem;
  }
  .category-new .consultation {
    padding: 7.4375rem 0 9.125rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .consultation {
    padding: 9.1875rem 0 6.25rem;
  }
}

@media (max-width: 899px) {
  .consultation {
    padding: 5rem 0 3.75rem;
  }
}

.consultation__container {
  position: relative;
  /* background-image: url(/images/design/img-consultation-bg.png); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.consultation__lines__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.consultation__img {
  position: absolute;
  z-index: 0;
}

@media (min-width: 1200px) {
  .consultation__img {
    top: -30%;
    left: -12%;
    max-width: 54.75rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .consultation__img {
    top: -40%;
    left: -15%;
    max-width: 49.75rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) and (max-width: 1050px) {
  .consultation__img {
    left: -30%;
  }
}

@media (max-width: 899px) {
  .consultation__img {
    bottom: -40%;
    right: -35%;
    width: 32.25rem;
  }
}

@media (max-width: 899px) and (max-width: 750px) {
  .consultation__img {
    bottom: -32%;
    right: -45%;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .consultation__img {
    bottom: -32%;
    right: -95%;
  }
}

@media (max-width: 899px) and (max-width: 390px) {
  .consultation__img {
    bottom: -32%;
    right: -104%;
  }
}

@media (max-width: 899px) and (max-width: 360px) {
  .consultation__img {
    bottom: -32%;
    right: -120%;
  }
}

.consultation__img img {
  width: 100%;
  height: auto;
}

.consultation__wrapper {
  position: relative;
  z-index: 1;
  margin-left: auto;
  color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  .consultation__wrapper {
    max-width: 39.473%;
    padding: 5.75rem 0;
    margin-right: 10.875rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .consultation__wrapper {
    max-width: 51.473%;
    padding: 4.0625rem 0;
    margin-right: 3.875rem;
  }
}

@media (max-width: 899px) {
  .consultation__wrapper {
    padding: 1.875rem 1.25rem;
  }
}

@media (min-width: 1200px) {
  .consultation__header {
    margin-bottom: 4.625rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .consultation__header {
    margin-bottom: 3.25rem;
  }
}

@media (max-width: 899px) {
  .consultation__header {
    margin-bottom: 2rem;
  }
}

.consultation__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
  font-weight: 400;
}

@media (min-width: 1200px) {
  .consultation__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .consultation__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .consultation__title {
    font-size: 1.75rem;
  }
}

.consultation__title span {
  font-weight: 700;
}

.consultation__form__container {
  width: 100%;
}

@media (min-width: 1200px) {
  .consultation__form__container {
    max-width: 87.333%;
  }
}

@media (max-width: 899px) {
  .consultation__form__container {
    max-width: 63.333%;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .consultation__form__container {
    max-width: unset;
  }
}

.consultation-form>*+* {
  margin-top: 2.5625rem;
}

.consultation-form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (min-width: 1200px) {
  .consultation-form div {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 899px) and (max-width: 720px) {
  .consultation-form div {
    display: block;
  }
}

.consultation-form div>*+* {
  margin-left: 1.875rem;
}

@media (max-width: 899px) and (max-width: 720px) {
  .consultation-form div>*+* {
    margin-left: unset;
    margin-top: 1.875rem;
  }
}

.consultation-form label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 10rem;
  flex: 0 0 10rem;
}

.consultation-form p {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.consultation-form p span {
  position: relative;
  display: block;
  font-weight: 300;
  font-size: 12px;
  line-height: 100%;
  padding-left: 0.4375rem;
}

.consultation-form p span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background-color: var(--color-text-secondary);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.consultation-form button[type=submit],
.consultation-form input[type=submit] {
  max-width: unset;
  max-width: 13.625rem;
  padding: 0.9375rem 1.125rem;
}

.typoghraphy__wrapper {
  font-weight: 400;
}

@media (min-width: 900px) {
  .typoghraphy__wrapper {
    font-size: 1rem;
    line-height: 160.4%;
  }
}

@media (min-width: 900px) {
  .typoghraphy__wrapper {
    font-size: 0.875rem;
    line-height: 130%;
  }
}

@media (min-width: 900px) {
  .typoghraphy__wrapper>*+* {
    margin-top: 3.5rem;
  }
}

@media (max-width: 899px) {
  .typoghraphy__wrapper>*+* {
    margin-top: 1.875rem;
  }
}

@media (min-width: 900px) {
  .typoghraphy__wrapper h2+p {
    margin-top: 1.5rem;
  }
}

@media (max-width: 899px) {
  .typoghraphy__wrapper h2+p {
    margin-top: 1rem;
  }
}

.typoghraphy__wrapper h3+p {
  margin-top: 0.6875rem;
}

.typoghraphy__wrapper p+ul,
.typoghraphy__wrapper p+ol {
  margin-top: 0.6875rem;
}

@media (min-width: 900px) {
  .typoghraphy__wrapper *+* {
    margin-top: 2.0625rem;
  }
}

@media (max-width: 899px) {
  .typoghraphy__wrapper *+* {
    margin-top: 1.5rem;
  }
}

.typoghraphy__wrapper h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .typoghraphy__wrapper h2 {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .typoghraphy__wrapper h2 {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .typoghraphy__wrapper h2 {
    font-size: 1.75rem;
  }
}

.typoghraphy__wrapper h3 {
  /* margin: 0; */
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .typoghraphy__wrapper h3 {
    font-size: 1rem;
  }
}

.typoghraphy__wrapper h4 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .typoghraphy__wrapper h4 {
    font-size: 1rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .typoghraphy__wrapper h4 {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .typoghraphy__wrapper h4 {
    font-size: 1rem;
  }
}

.typoghraphy__wrapper strong {
  font-weight: 700;
}

.typoghraphy__wrapper ul>*+*,
.typoghraphy__wrapper ol>*+* {
  margin-top: 0.375rem;
}

.typoghraphy__wrapper ul li {
  list-style-position: inside;
  list-style-type: disc;
}

.typoghraphy__wrapper ol li {
  list-style-position: inside;
  list-style-type: decimal;
}

.typoghraphy__wrapper img {
  display: block;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .typoghraphy__wrapper img {
    max-width: 81.3%;
  }
}

.typoghraphy__wrapper a {
  display: inline-block;
  position: relative;
  font-weight: 500;
  color: var(--color-button);
}

.typoghraphy__wrapper a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-button);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.typoghraphy__wrapper a:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.typoghraphy__wrapper a:focus-visible::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.comments {
  position: relative;
  background-color: var(--color-text-primary);
  overflow: hidden;
  color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  .comments {
    padding: 6.25rem 0;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .comments {
    padding: 5rem 0;
  }
}

@media (max-width: 899px) {
  .comments {
    padding: 3.75rem 0;
  }
}

.comments__header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (min-width: 1200px) {
  .comments__header__container {
    margin-bottom: 6.25rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .comments__header__container {
    margin-bottom: 3.75rem;
  }
}

@media (max-width: 899px) {
  .comments__header__container {
    display: block;
    margin-bottom: 1.875rem;
  }
}

@media (min-width: 900px) {
  .comments__header__container>*+* {
    margin-left: 2.5rem;
  }
}

@media (max-width: 899px) {
  .comments__header__container>*+* {
    margin-top: 1.875rem;
  }
}

.comments__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .comments__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .comments__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .comments__title {
    font-size: 1.75rem;
  }
}

.comments__subtitle {
  margin-top: 0.5rem;
  color: inherit;
}

@media (min-width: 900px) {
  .comments__btn {
    max-width: 18.75rem;
  }
}

@media (max-width: 899px) {
  .comments__btn {
    max-width: 13.75rem;
  }
}

.comments__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 var(--wrap-1);
}

.comments__slider__container {
  position: relative;
  width: 100%;
}

.comments__slider__container .swiper-button-prev,
.comments__slider__container .swiper-button-next {
  position: absolute;
  top: 45%;
  border: unset;
  padding: unset;
  margin: unset;
  background-color: transparent;
}

.comments__slider__container .swiper-button-prev::after,
.comments__slider__container .swiper-button-next::after {
  display: none;
}

.comments__slider__container .swiper-button-prev {
  left: 0;
}

@media (min-width: 1200px) {
  .comments__slider__container .swiper-button-prev {
    -webkit-transform: translate(calc(-100% + -1.875rem), -50%);
    transform: translate(calc(-100% + -1.875rem), -50%);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .comments__slider__container .swiper-button-prev {
    -webkit-transform: translate(-130%, -50%);
    transform: translate(-130%, -50%);
  }
}

@media (max-width: 899px) {
  .comments__slider__container .swiper-button-prev {
    display: none;
  }
}

.comments__slider__container .swiper-button-next {
  right: 0;
}

@media (min-width: 1200px) {
  .comments__slider__container .swiper-button-next {
    -webkit-transform: translate(calc(100% + 1.875rem), -50%);
    transform: translate(calc(100% + 1.875rem), -50%);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .comments__slider__container .swiper-button-next {
    -webkit-transform: translate(130%, -50%);
    transform: translate(130%, -50%);
  }
}

@media (max-width: 899px) {
  .comments__slider__container .swiper-button-next {
    display: none;
  }
}

.comments__pagination__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: unset;
}

@media (min-width: 900px) {
  .comments__pagination__container {
    margin-top: 2.5rem;
  }
}

@media (max-width: 899px) {
  .comments__pagination__container {
    margin-top: 2rem;
  }
}

.comments__pagination__container.swiper-pagination-bullets {
  top: unset;
  bottom: unset;
  left: unset;
}

.comments__pagination__container.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0;
}

.comments__pagination__container.swiper-pagination-bullets .swiper-pagination-bullet+.swiper-pagination-bullet {
  margin-left: 1rem;
}

.comments__pagination__container .swiper-pagination-bullet {
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  opacity: unset;
  background: unset;
  background-color: rgba(var(--color-text-secondary--rgb), 0.24);
  overflow: hidden;
}

.comments__pagination__container .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 57.142%;
  height: 57.142%;
  border-radius: 50%;
  background-color: var(--color-text-primary);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.comments__pagination__container .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-button);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.comments-slider {
  overflow: visible;
}

.comments-slider.swiper .swiper-wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.comments-slider__item {
  position: relative;
  width: 100%;
}

@media (min-width: 900px) {
  .comments-slider__preview {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 18.4375rem;
    border-radius: 0.625rem;
    padding: 2.375rem 2rem;
    background-color: var(--color-bg-secondary);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0.3;
    color: var(--color-text-secondary);
  }
}

@media (max-width: 899px) {
  .comments-slider__preview {
    display: none;
  }
}

.comments-slider__preview__container {
  max-height: 13.6875rem;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.swiper-slide.swiper-slide-active .comments-slider__preview__container {
  -webkit-transform: scale(0);
  transform: scale(0);
}

.comments-slider__content {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 0.625rem;
  margin: 0 auto;
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

@media (min-width: 900px) {
  .comments-slider__content {
    max-width: 73.466%;
    padding: 3rem 2.5rem;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }
}

@media (max-width: 899px) {
  .comments-slider__content {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 900px) {
  .swiper-slide.swiper-slide-active .comments-slider__content {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.comments-slider__title {
  font-weight: 600;
  line-height: 120%;
  color: inherit;
}

@media (min-width: 900px) {
  .comments-slider__title {
    font-size: 1.25rem;
  }
}

@media (max-width: 899px) {
  .comments-slider__title {
    font-size: 1rem;
  }
}

.comments-slider-raiting {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 0.625rem;
}

.comments-slider-raiting>*+* {
  margin-left: 0.1875rem;
}

.comments-slider-raiting__star {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.75rem;
  flex: 0 0 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.comments-slider-raiting__star img {
  width: 100%;
  height: auto;
}

.comments-slider__description {
  margin-top: 0.625rem;
  font-weight: 500;
  color: inherit;
}

@media (min-width: 900px) {
  .comments-slider__description {
    font-size: 1rem;
    line-height: 173.4%;
  }
}

@media (max-width: 899px) {
  .comments-slider__description {
    font-size: 0.875rem;
  }
}

.comments-slider__date {
  margin-top: 0.5rem;
  font-weight: 400;
  line-height: 163.4%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (min-width: 900px) {
  .comments-slider__date {
    font-size: 0.875rem;
  }
}

@media (max-width: 899px) {
  .comments-slider__date {
    font-size: 0.75rem;
  }
}

.swiper-slide.swiper-slide-active .comments-slider__date {
  opacity: 1;
}

.article .comments {
    background: none;
    color: #262729;
    padding-bottom: 0;
}

.article .comments__header__container {
    margin-bottom: 50px;
}
.article .comments__wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
}
.article .comments__item {
    margin-bottom: 25px;
    background-color: var(--color-text-primary);
    color: white;
    padding: 30px;
    width: 100%;
}
.article .comments-slider__title {
    display: flex;
    justify-content: space-between;
}
.article .comments-slider-raiting {
    margin: 0 0 0 10px;
}
.article .comments-slider-raiting__star {
    flex: 0 0 1.05rem;
    margin-top: 0;
}

.banner-inner {
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  z-index: 1;
  color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  .banner-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 37.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8.9375rem 0 7.625rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner-inner {
    padding: 7.125rem 0 4.5rem;
  }
}

@media (max-width: 899px) {
  .banner-inner {
    padding: 5.75rem 0 4.25rem;
  }
}

.banner-inner__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.banner-inner__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-text-primary--rgb), 0.96);
}

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

.banner-inner__wrapper {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1200px) {
  .banner-inner__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner-inner__wrapper {
    -webkit-box-align: unset;
    -ms-flex-align: unset;
    align-items: unset;
  }
}

@media (min-width: 1200px) {
  .banner-inner__wrapper>*+* {
    margin-left: 5.97%;
  }
}

@media (max-width: 1199px) {
  .banner-inner__wrapper>*+* {
    margin-top: 2.5rem;
  }
}

@media (min-width: 900px) {
  .banner-inner__text__container>*+* {
    margin-top: 1.5625rem;
  }
}

@media (max-width: 899px) {
  .banner-inner__text__container>*+* {
    margin-top: 1.25rem;
  }
}

.banner-inner__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .banner-inner__title {
    font-size: 3rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner-inner__title {
    font-size: 2.5625rem;
  }
}

@media (max-width: 899px) {
  .banner-inner__title {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

.banner-inner__list {
  font-weight: 400;
  font-size: 1rem;
  line-height: 170%;
}

.banner-inner__list>*+* {
  margin-top: 0.125rem;
}

.banner-inner-labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.banner-inner-labels>* {
  margin-right: 0.875rem;
  margin-bottom: 0.875rem;
}

.banner-inner-labels>*:last-child {
  margin-right: unset;
}

.banner-inner-labels__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 9.5625rem;
  flex: 0 0 9.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 0.9375rem;
  padding: 0.75rem 0.3125rem 0.5625rem;
  background: rgba(var(--color-text-secondary--rgb), 0.08);
  text-align: center;
}

@media (max-width: 899px) and (max-width: 550px) {
  .banner-inner-labels__item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.5625rem;
    flex: 0 0 8.5625rem;
  }
}

.banner-inner-labels__item>*+* {
  margin-top: 0.1875rem;
}

.banner-inner-labels__money {
  font-weight: 700;
  color: var(--color-button);
}

@media (min-width: 900px) {
  .banner-inner-labels__money {
    font-size: 1.5rem;
    line-height: 172%;
  }
}

@media (max-width: 899px) {
  .banner-inner-labels__money {
    font-size: 1.25rem;
    line-height: 140%;
  }
}

.banner-inner-labels__money span {
  font-weight: 400;
}

@media (min-width: 900px) {
  .banner-inner-labels__money span {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .banner-inner-labels__money span {
    font-size: 0.875rem;
  }
}

.banner-inner-labels__description {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 172%;
}

.banner-inner__form__container {
  position: relative;
  width: 100%;
  border-radius: 1.25rem;
  border: 0.8125rem solid rgba(var(--color-text-secondary--rgb), 0.08);
  background-color: var(--color-text-primary);
}

@media (min-width: 1200px) {
  .banner-inner__form__container {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.916%;
    flex: 0 0 41.916%;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner-inner__form__container {
    max-width: 29.75rem;
  }
}

@media (max-width: 899px) {
  .banner-inner__form__container {
    border: 0.375rem solid rgba(var(--color-text-secondary--rgb), 0.08);
  }
}

.banner-inner__form__wrapper {
  max-width: 78.666%;
  border-radius: 1.25rem;
  margin: 0 auto;
}

@media (min-width: 1200px) {
  .banner-inner__form__wrapper {
    padding: 3.375rem 0;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .banner-inner__form__wrapper {
    padding: 2.25rem 0;
  }
}

@media (max-width: 899px) {
  .banner-inner__form__wrapper {
    padding: 1.5rem 0;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .banner-inner__form__wrapper {
    max-width: 90%;
  }
}

@media (min-width: 900px) {
  .banner-inner__form__title__container {
    margin-bottom: 2.25rem;
  }
}

@media (max-width: 899px) {
  .banner-inner__form__title__container {
    margin-bottom: 1.5rem;
  }
}

.banner-inner__form__title {
  font-weight: 600;
}

@media (min-width: 900px) {
  .banner-inner__form__title {
    font-size: 1.25rem;
    line-height: 172%;
  }
}

@media (max-width: 899px) {
  .banner-inner__form__title {
    font-size: 1rem;
    line-height: 130%;
  }
}

.banner-inner-form {
  width: 100%;
}

@media (min-width: 900px) {
  .banner-inner-form>*+* {
    margin-top: 2.8125rem;
  }
}

@media (max-width: 899px) {
  .banner-inner-form>*+* {
    margin-top: 1.5625rem;
  }
}

.banner-inner-form>div {
  width: 100%;
}

@media (min-width: 900px) {
  .banner-inner-form>div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.banner-inner-form>div>* {
  width: 100%;
}

@media (min-width: 900px) {
  .banner-inner-form>div>* {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45.197%;
    flex: 0 0 45.197%;
  }
}

@media (min-width: 900px) {
  .banner-inner-form>div>*+* {
    margin-left: 10.169%;
  }
}

@media (max-width: 899px) {
  .banner-inner-form>div>*+* {
    margin-top: 1.5625rem;
  }
}

@media (min-width: 900px) {
  .banner-inner-form p {
    margin-top: 2.5rem;
  }
}

@media (max-width: 899px) {
  .banner-inner-form p {
    margin-top: 1.5625rem;
  }
}

.gallery {
  overflow: hidden;
}

.gallery__header {
  margin-bottom: 1.5rem;
}

.gallery__title__container {
  text-align: center;
}

.gallery__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .gallery__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .gallery__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .gallery__title {
    font-size: 1.75rem;
  }
}

.gallery__wrapper {
  position: relative;
  padding: 0 var(--wrap-2);
}

.gallery__slider__container {
  position: relative;
  width: 100%;
}

@media (max-width: 899px) and (max-width: 650px) {
  .gallery__slider__container {
    width: calc(100% + 2 * var(--wrap-2));
    margin-left: calc(-1 * var(--wrap-2));
  }
}

.gallery__slider__container .swiper-button-prev,
.gallery__slider__container .swiper-button-next {
  position: absolute;
  top: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2.5rem;
  height: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: unset;
  padding: 2.375rem 0.5rem;
  margin: unset;
  background-color: var(--color-text-primary);
  overflow: hidden;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.gallery__slider__container .swiper-button-prev::after,
.gallery__slider__container .swiper-button-next::after {
  display: none;
}

.gallery__slider__container .swiper-button-prev::before,
.gallery__slider__container .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-text-secondary);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.swiper-button-prev::before {
  -webkit-transform: translateX(110%);
  transform: translateX(110%);
}

.swiper-button-next::before {
  -webkit-transform: translateX(-110%);
  transform: translateX(-110%);
}

.swiper-button-prev:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.swiper-button-prev:focus-visible::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.swiper-button-next:hover::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.swiper-button-next:focus-visible::before {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.gallery__slider__container .swiper-button-prev img,
.gallery__slider__container .swiper-button-prev svg,
.gallery__slider__container .swiper-button-next img,
.gallery__slider__container .swiper-button-next svg {
  position: relative;
  width: 100%;
  height: auto;
}

.gallery__slider__container .swiper-button-prev img path,
.gallery__slider__container .swiper-button-prev svg path,
.gallery__slider__container .swiper-button-next img path,
.gallery__slider__container .swiper-button-next svg path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

.gallery__slider__container .swiper-button-prev:hover path {
  stroke: var(--color-text-primary);
}

.gallery__slider__container .swiper-button-prev:focus-visible path {
  stroke: var(--color-text-primary);
}

.gallery__slider__container .swiper-button-next:hover path {
  stroke: var(--color-text-primary);
}

.gallery__slider__container .swiper-button-next:focus-visible path {
  stroke: var(--color-text-primary);
}

.gallery__slider__container .swiper-button-prev {
  left: 0;
}

@media (min-width: 1200px) {
  .gallery__slider__container .swiper-button-prev {
    -webkit-transform: translate(calc(-100% + -1.5rem), -50%);
    transform: translate(calc(-100% + -1.5rem), -50%);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .gallery__slider__container .swiper-button-prev {
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
}

@media (max-width: 899px) {
  .gallery__slider__container .swiper-button-prev {
    display: none;
  }
}

.gallery__slider__container .swiper-button-next {
  right: 0;
}

@media (min-width: 1200px) {
  .gallery__slider__container .swiper-button-next {
    -webkit-transform: translate(calc(100% + 1.5rem), -50%);
    transform: translate(calc(100% + 1.5rem), -50%);
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .gallery__slider__container .swiper-button-next {
    -webkit-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
}

@media (max-width: 899px) {
  .gallery__slider__container .swiper-button-next {
    display: none;
  }
}

.gallery-slider {
  overflow: visible;
}

.gallery-slider.swiper .swiper-slide {
  opacity: 0.6;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.gallery-slider.swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}

.gallery-slider__img {
  position: relative;
  width: 100%;
}

.gallery-slider__img__container {
  padding-top: 60.333%;
}

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

.footer {
  position: relative;
  padding: 4.625rem 0 4.3125rem;
  background-color: var(--color-text-primary);
  color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  .footer {
    margin-top: 6.25rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .footer {
    margin-top: 5rem;
  }
}

@media (max-width: 899px) {
  .footer {
    padding: 0 0 2.5rem;
    margin-top: 3.75rem;
  }
}

.footer.footer-mini {
  margin-top: 0;
}

@media (max-width: 899px) {
  .footer.footer-mini {
    padding: 2.5rem 0 2.5rem;
  }
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 11.488%;
  -moz-column-gap: 11.488%;
  column-gap: 11.488%;
}

@media (min-width: 900px) {
  .footer__wrapper {
    max-width: 54.21%;
  }
}

@media (max-width: 899px) and (max-width: 690px) {
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    row-gap: 1.875rem;
  }
}

.footer-mini .footer__wrapper {
  max-width: unset;
}

.footer__copyright {
  font-weight: 400;
  font-size: 12px;
  line-height: 146.9%;
}

@media (max-width: 899px) and (max-width: 690px) {
  .footer__copyright {
    text-align: center;
  }
}

.footer__copyright>*+* {
  margin-top: 6px;
}

.footer__copyright a {
  display: block;
  max-width: 5.625rem;
  width: 100%;
}

@media (max-width: 899px) and (max-width: 690px) {
  .footer__copyright a {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer__copyright a img {
  width: 100%;
  height: auto;
}

.footer__logo {
  max-width: 7.4375rem;
}

@media (max-width: 899px) and (max-width: 690px) {
  .footer__logo {
    margin: 0 auto;
  }
}

.footer-mini .custom-logo-link {
  margin: 0 auto;
}

.footer-map {
  width: 100%;
}

@media (min-width: 900px) {
  .footer-map {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 44.027%;
    height: 100%;
  }
}

@media (max-width: 899px) {
  .footer-map {
    position: relative;
    margin-bottom: 1.875rem;
  }
}

@media (max-width: 899px) {
  .footer-map__container {
    padding-top: 55%;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .footer-map__container {
    padding-top: 80%;
  }
}

.footer-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 899px) and (max-width: 690px) {
  .footer-col {
    display: block;
  }
}

.footer-mini .footer-col {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.footer-mini .footer-col>*+* {
  margin-top: unset;
  margin-left: 1.5625rem;
}

@media (max-width: 899px) and (max-width: 690px) {
  .footer-mini .footer-col>*+* {
    margin-top: 1.5625rem;
    margin-left: unset;
  }
}

.footer-col:last-child {
  max-width: 61.003%;
  width: 100%;
}

@media (max-width: 899px) and (max-width: 690px) {
  .footer-col:last-child {
    max-width: unset;
  }
}

.footer-mini .footer-col:last-child {
  max-width: unset;
}

.footer-col>*+* {
  margin-top: 1.1875rem;
}

.footer-col__item._large {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.footer-socials>*+* {
  margin-top: 0.8125rem;
}

.footer-socials__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 160.4%;
  color: inherit;
}

@media (max-width: 899px) and (max-width: 690px) {
  .footer-socials__item {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer-socials__item>*+* {
  margin-left: 0.625rem;
}

.footer-socials__item img {
  max-width: 0.9375rem;
  height: auto;
}

.footer-socials__label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.9375rem;
  flex: 0 0 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.footer-socials__description {
  position: relative;
}

.footer-socials__description::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text-secondary);
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.footer-socials__item:hover .footer-socials__description::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.footer-socials__item:focus-visible .footer-socials__description::before {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.popup {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-text-primary--rgb), 0);
  opacity: 0;
  overflow: hidden;
  color: var(--color-text-secondary);
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}

.popup._opened {
  background-color: rgba(var(--color-text-primary--rgb), 0.88);
}

.popup__scroll {
  width: 100%;
  height: auto;
  max-height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-box-shadow: -12px 7px 39px 3px rgba(var(--color-bg-primary--rgb), 0.03);
  box-shadow: -12px 7px 39px 3px rgba(var(--color-bg-primary--rgb), 0.03);
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
  -ms-overflow-style: none;
  scrollbar-width: none;
}

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

@media (min-width: 1200px) {
  .popup__scroll {
    max-width: 50.347%;
    margin: auto 0 0 auto;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .popup__scroll {
    max-width: 70.347%;
    margin: auto 0 auto auto;
  }
}

@media (max-width: 899px) {
  .popup__scroll {
    max-width: 90.347%;
    margin: 0 auto;
  }
}

.popup__wrapper {
  position: relative;
  width: 100%;
  background-color: var(--color-text-primary);
}

@media (min-width: 1200px) {
  .popup__wrapper {
    padding: 5.25rem 6.5rem 6.75rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .popup__wrapper {
    padding: 3.75rem 4rem 5rem;
  }
}

@media (max-width: 899px) {
  .popup__wrapper {
    padding: 2.5rem 1.5rem 3.25rem;
  }
}

.popup__close {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  padding: unset;
  border: unset;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 900px) {
  .popup__close {
    top: 1.5625rem;
    left: 1.375rem;
  }
}

@media (max-width: 899px) {
  .popup__close {
    top: 0.5rem;
    left: 0.625rem;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .popup__close {
    top: 0.3125rem;
    left: 0.1875rem;
  }
}

.popup__close img {
  width: 100%;
  height: auto;
}

.popup__content {
  width: 100%;
}

@media (min-width: 900px) {
  .popup__content {
    max-width: 66.448%;
    margin-right: auto;
  }
}

@media (max-width: 899px) {
  .popup__content {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .popup__content {
    max-width: unset;
  }
}

@media (min-width: 900px) {
  .popup__title__container {
    margin-bottom: 3.3125rem;
  }
}

@media (max-width: 899px) {
  .popup__title__container {
    margin-bottom: 1.875rem;
  }
}

.popup__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .popup__title {
    font-size: 2rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .popup__title {
    font-size: 1.875rem;
  }
}

@media (max-width: 899px) {
  .popup__title {
    font-size: 1.75rem;
  }
}

@media (min-width: 1200px) {
  .popup-comment-form>*+* {
    margin-top: 2.8125rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .popup-comment-form>*+* {
    margin-top: 2.25rem;
  }
}

@media (max-width: 899px) {
  .popup-comment-form>*+* {
    margin-top: 1.875rem;
  }
}

.popup-comment-form button[type=submit],
.popup-comment-form input[type=submit] {
  max-width: 11.875rem;
}

.contacts-section {
  background-color: var(--color-text-primary);
  color: var(--color-text-secondary);
}

@media (min-width: 1200px) {
  .contacts-section {
    padding: 8.9375rem 0 7.625rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .contacts-section {
    padding: 7.125rem 0 4.5rem;
  }
}

@media (max-width: 899px) {
  .contacts-section {
    padding: 5.75rem 0 3.25rem;
  }
}

.contacts-section .contacts {
  width: 100%;
  margin-left: auto;
}

@media (min-width: 1200px) {
  .contacts-section .contacts {
    max-width: 70.523%;
    padding: 3.3125rem 7.375rem 5.25rem 0;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .contacts-section .contacts {
    max-width: 85.523%;
    padding: 3.3125rem 1.875rem 5.25rem 0;
  }
}

@media (max-width: 899px) {
  .contacts-section .contacts {
    padding-bottom: 2.25rem;
  }
}

.contacts__title__container {
  margin-bottom: 1rem;
}

.contacts__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 600;
}

@media (min-width: 1200px) {
  .contacts__title {
    font-size: 1rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .contacts__title {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .contacts__title {
    font-size: 1rem;
  }
}

.contacts__list>*+* {
  margin-top: 1.1875rem;
}

.contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 0.4375rem;
  -moz-column-gap: 0.4375rem;
  column-gap: 0.4375rem;
}

.contacts__label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0.875rem;
  flex: 0 0 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transform: translateY(5px);
  transform: translateY(5px);
}

.contacts__label img {
  width: 100%;
  height: auto;
}

.contacts__content {
  font-weight: 600;
  font-size: 14px;
  line-height: 160.4%;
}

.contacts__content>*+* {
  margin-top: 0.5em;
}

.contacts-section.labeled .contacts__content>*+* {
  margin-top: 0.9375rem;
}

.contacts__phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacts__phone>*+* {
  margin-left: 0.75rem;
}

.contacts__link {
  color: var(--color-text-secondary);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (min-width: 900px) and (max-width: 1199px) {
  .contacts__link {
    width: 100%;
  }
}

@media (max-width: 899px) and (max-width: 330px) {
  .contacts__link {
    width: 100%;
  }
}

.contacts__link:hover,
.contacts__link:focus-visible {
  color: var(--color-button);
}

.contacts__messangers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.contacts__messangers>*+* {
  margin-left: 0.375rem;
}

.contacts__messangers a {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.1875rem;
  flex: 0 0 1.1875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.contacts__messangers a img {
  width: 100%;
  height: auto;
}

@media (min-width: 900px) {
  .contacts-section.labeled .contacts__messangers a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.875rem;
    flex: 0 0 1.875rem;
  }
}

@media (max-width: 899px) {
  .contacts-section.labeled .contacts__messangers a {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.25rem;
    flex: 0 0 1.25rem;
  }
}

.contacts__description span {
  display: block;
}

.blog {
  overflow-x: clip;
  overflow-y: visible;
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .blog {
    padding-top: 8.9375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .blog {
    padding-top: 7.125rem;
  }
}

@media (max-width: 899px) {
  .blog {
    padding-top: 5.75rem;
  }
}

.blog__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100vh;
}

@media (min-width: 1200px) {
  .blog__bg {
    height: calc(var(--vh, 1vh) * 65);
    min-height: 29.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .blog__bg {
    height: calc(var(--vh, 1vh) * 70);
    min-height: 33.75rem;
  }
}

@media (max-width: 899px) {
  .blog__bg {
    height: calc(var(--vh, 1vh) * 56);
    min-height: 27.1875rem;
  }
}

.blog__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.blog__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--color-text-primary--rgb), 0.96);
}

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

.blog__container {
  position: relative;
}

.blog__header {
  color: var(--color-text-secondary);
}

@media (min-width: 900px) {
  .blog__header>*+* {
    margin-top: 1.5625rem;
  }
}

@media (max-width: 899px) {
  .blog__header>*+* {
    margin-top: 1.25rem;
  }
}

.blog__breadcrumbs {
  margin-bottom: 1.5625rem;
}

.blog__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .blog__title {
    font-size: 3rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .blog__title {
    font-size: 2.5625rem;
  }
}

@media (max-width: 899px) {
  .blog__title {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

.blog__subtitle {
  color: inherit;
}

@media (min-width: 1200px) {
  .blog__subtitle {
    max-width: 45%;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .blog__subtitle {
    max-width: 55%;
  }
}

@media (max-width: 899px) {
  .blog__subtitle {
    max-width: 85%;
  }
}

.blog-categories {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-text-secondary);
}

@media (min-width: 900px) {
  .blog-categories {
    margin-top: 3rem;
    padding-bottom: 1rem;
  }
}

@media (max-width: 899px) {
  .blog-categories {
    margin-top: 2.5rem;
    padding-bottom: 0.5rem;
  }
}

.blog-categories::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

@media (min-width: 1200px) {
  .blog-categories::before {
    height: 1px;
    background-color: var(--color-text-secondary);
  }
}

@media (max-width: 1199px) {
  .blog-categories::before {
    background-image: url(/images/design/blog/label-categories-2.svg);
  }
}

@media (max-width: 1199px) and (max-width: 550px) {
  .blog-categories::before {
    background-image: url(/images/design/blog/label-categories.svg);
  }
}

.blog-categories__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
}

@media (min-width: 1200px) {
  .blog-categories__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .blog-categories__title {
    font-size: 1.375rem;
  }
}

@media (max-width: 899px) {
  .blog-categories__title {
    font-size: 1.25rem;
  }
}

.blog-categories__list__container {
  margin-top: 1.5rem;
}

@media (max-width: 1199px) {
  .blog-categories__list__container {
    width: 110%;
    margin-left: -5%;
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
  }

  .blog-categories__list__container::-webkit-scrollbar {
    display: none;
  }
}

.blog-categories__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1199px) {
  .blog-categories__list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding: 0 var(--wrap-1);
  }
}

.blog-categories__list>*+* {
  margin-left: 1.25rem;
}

@media (max-width: 1199px) {
  .blog-categories__list>*+* {
    min-width: 6.25rem;
  }
}

.blog-categories__item {
  position: relative;
  padding-bottom: 0.1875rem;
  font-weight: 700;
  color: var(--color-text-secondary);
}

.blog-categories__item span {
  font-weight: 400;
}

.blog-categories__item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text-secondary);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
}

.blog-categories__item:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.blog-list {
  display: -ms-grid;
  display: grid;
  margin-top: 3.25rem;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  row-gap: 3.125rem;
}

@media (min-width: 1200px) {
  .blog-list {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1199px) {
  .blog-list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1199px) and (max-width: 720px) {
  .blog-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.blog-list__img {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.blog-list__img__container {
  display: block;
  padding-top: 56.23%;
}

.blog-list__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.blog-list__img:hover img {
  -webkit-transform: scale(1.14);
  transform: scale(1.14);
}

.blog-list__img:focus-visible img {
  -webkit-transform: scale(1.14);
  transform: scale(1.14);
}

.blog-list-tags {
  padding: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid var(--color-button);
}

.blog-list-tags>*+* {
  margin-left: 0.625rem;
}

.blog-list-tags__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-list-tags__item>*+* {
  margin-left: 0.25em;
}

.blog-list-tags__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.blog-list-tags__img img {
  width: 100%;
  height: auto;
}

.blog-list-tags__description {
  font-size: 0.625rem;
  line-height: 180%;
  font-weight: 700;
  color: var(--color-button);
}

.blog-list__text {
  margin-top: 1.25rem;
}

.blog-list__text>*+* {
  margin-top: 0.9375rem;
}

.blog-list__title__container a {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  color: var(--color-text-primary);
}

.blog-list__title__container a:hover,
.blog-list__title__container a:focus-visible {
  color: var(--color-button);
}

.blog-list__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 600;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .blog-list__title {
    font-size: 1rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .blog-list__title {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .blog-list__title {
    font-size: 1rem;
  }
}

.blog-list__description {
  line-height: 120%;
}

@media (min-width: 900px) {
  .blog-list__description {
    font-size: 0.875rem;
  }
}

@media (max-width: 899px) {
  .blog-list__description {
    font-size: 0.75rem;
  }
}

.blog-list__btn__container {
  margin-top: 1.25rem;
}

.blog-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 0;
  border-radius: 3.125rem;
  font-size: 0.875rem;
  line-height: 1.0625rem;
  font-weight: 600;
  padding: 0.9375rem 2.5rem;
  color: var(--color-text-secondary);
  position: relative;
  z-index: 0;
  max-width: 11.25rem;
  width: 100%;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  background-color: var(--color-button);
}

.blog-list__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: rgba(var(--color-text-secondary--rgb), 0.42);
  opacity: 0.2;
  -webkit-filter: blur(13px);
  filter: blur(13px);
  border-radius: 3.125rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  padding: 0.4375rem 0.5625rem;
}

.blog-list__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: var(--color-button-active);
  border-radius: 3.125rem;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: 50% 0;
  transform-origin: 50% 0;
}

.blog-list__btn:hover::before,
.blog-list__btn:focus-visible::before {
  opacity: 0;
}

.blog-list__btn:hover::after,
.blog-list__btn:focus-visible::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

@media (min-width: 1200px) {
  .article {
    padding-top: 8.9375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .article {
    padding-top: 7.125rem;
  }
}

@media (max-width: 899px) {
  .article {
    padding-top: 6.75rem;
  }
}

@media (min-width: 900px) {
  .article__header>*+* {
    margin-top: 1.5625rem;
  }
}

@media (max-width: 899px) {
  .article__header>*+* {
    margin-top: 1.25rem;
  }
}

.article__breadcrumbs {
  margin-bottom: 1.5625rem;
}

.article__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: normal;
  line-height: 130%;
  font-weight: 700;
}

@media (min-width: 1200px) {
  .article__title {
    font-size: 3rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .article__title {
    font-size: 2.5625rem;
  }
}

@media (max-width: 899px) {
  .article__title {
    font-size: 2.125rem;
    line-height: 120%;
  }
}

.article__main {
  margin-top: 1.25rem;
}

@media (min-width: 900px) {
  .article__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .article__main>*+* {
    margin-left: 2.5rem;
  }
}

@media (max-width: 899px) {
  .article__main>*+* {
    margin-top: 2.5rem;
  }
}

.article__info {
  width: 100%;
}

.article__typography {
  margin-top: 1.5rem;
}

.article-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.article-tags__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  margin-right: 1.5625rem;
}

.article-tags__item:last-child {
  margin-right: 0;
}

.article-tags__item::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-text-primary);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
}

.article-tags a.article-tags__item:hover::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.article-tags a.article-tags__item:focus-visible::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.article-tags__item>*+* {
  margin-left: 0.25em;
}

.article-tags__img {
  width: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.article-tags__img img {
  width: 100%;
  height: auto;
}

.article-tags__description {
  font-size: 0.875rem;
  line-height: 180%;
  color: var(--color-text-primary);
}

@media (min-width: 900px) {
  .article-publish {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 24.959%;
    flex: 0 0 24.959%;
  }
}

.article-publish>*+* {
  margin-top: 1.5rem;
}

.article-publish__title__container {
  padding-bottom: 0.3125rem;
  border-bottom: 3px solid var(--color-button);
}

.article-publish__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 130%;
}

.article-publish__list {
  margin-top: 1.25rem;
}

.article-publish__list>*+* {
  margin-top: 1.25rem;
}

.article-publish__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article-publish__item>*+* {
  margin-left: 0.75rem;
}

.article-publish__image {
  position: relative;
  display: block;
  width: 6.25rem;
  height: 5rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

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

.article-publish__description {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 1rem;
  line-height: 130%;
  color: var(--color-text-primary);
}

.article-publish__item:hover .article-publish__description {
  color: var(--color-button);
}

.article-publish__item:focus-visible .article-publish__description {
  color: var(--color-button);
}

.article__comment__btn__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.875rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.article__comment__btn {
  max-width: 13.25rem;
}

.article-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.875rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.article-author>*+* {
  margin-top: 0.9375rem;
}

.article-author__image {
  position: relative;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media (min-width: 900px) {
  .article-author__image {
    max-width: 15.625rem;
  }
}

@media (max-width: 899px) {
  .article-author__image {
    max-width: 12.5rem;
  }
}

.article-author__image__container {
  padding-top: 100%;
}

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

.article-author__title {
  line-height: 130%;
}

@media (min-width: 900px) {
  .article-author__title {
    font-size: 1.5rem;
  }
}

@media (max-width: 899px) {
  .article-author__title {
    font-size: 1.25rem;
  }
}

.article-author__title span {
  font-weight: 700;
}

.article-author__position {
  line-height: 130%;
}

@media (min-width: 900px) {
  .article-author__position {
    font-size: 1rem;
  }
}

@media (max-width: 899px) {
  .article-author__position {
    font-size: 0.875rem;
  }
}

.article-author-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.article-author-socials>*+* {
  margin-left: 1.25rem;
}

.article-author-socials__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.article-author-socials__item svg {
  width: 100%;
  height: auto;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: -webkit-transform 0.6s ease;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}

.article-author-socials__item:hover svg {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.article-author-socials__item:focus-visible svg {
  -webkit-transform: rotateY(360deg);
  transform: rotateY(360deg);
}

.article-navigate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.875rem;
}

@media (min-width: 900px) {
  .article-navigate {
    width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media (max-width: 899px) {
  .article-navigate {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .article-navigate>*+* {
    margin-left: 2.5rem;
  }
}

@media (max-width: 899px) {
  .article-navigate>*+* {
    margin-top: 2.5rem;
  }
}

.article-navigate__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (min-width: 900px) {
  .article-navigate__item._next {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
}

@media (min-width: 900px) {
  .article-navigate__item {
    width: calc(50% - 1.25rem);
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}

@media (max-width: 899px) {
  .article-navigate__item {
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.article-navigate__item>*+* {
  margin-top: 1.25rem;
}

.article-navigate__header {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.article-navigate__header>*+* {
  margin-left: 0.5em;
}

.article-navigate__arrow {
  position: relative;
  width: 0.625rem;
  height: 1.375rem;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}

.article-navigate__arrow::before,
.article-navigate__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 1px;
  background-color: var(--color-button);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}

.article-navigate__arrow::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.article-navigate__item:hover .article-navigate__arrow::before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.article-navigate__item:focus-visible .article-navigate__arrow::before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.article-navigate__arrow::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.article-navigate__item:hover .article-navigate__arrow::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.article-navigate__item:focus-visible .article-navigate__arrow::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.article-navigate__item._next .article-navigate__arrow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateY(1px) rotateY(180deg);
  transform: translateY(1px) rotateY(180deg);
}

.article-navigate__title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-button);
}

@media (max-width: 899px) {
  .article-navigate__title {
    text-align: center;
  }
}

.article-navigate__image {
  position: relative;
  display: block;
  width: 100%;
}

@media (min-width: 900px) {
  .article-navigate__image {
    max-width: 80%;
  }
}

@media (max-width: 899px) {
  .article-navigate__image {
    max-width: 70%;
  }
}

@media (max-width: 899px) and (max-width: 550px) {
  .article-navigate__image {
    max-width: unset;
  }
}

.article-navigate__image__container {
  display: block;
  padding-top: 60%;
}

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

@media (min-width: 1200px) {
  .category-new .breadcrumbs {
    margin-top: 8.9375rem;
  }
}

@media (min-width: 900px) and (max-width: 1199px) {
  .breadcrumbs {
    margin-top: 7.125rem;
  }
}

@media (max-width: 899px) {
  .breadcrumbs {
    margin-top: 6.75rem;
  }
}

.blog .breadcrumbs,
.article .breadcrumbs,
.price .breadcrumbs {
    margin-top: 0;
}

.ec-antispam {
    display: none!important;
    visibility: hidden!important;
}