/* Reset and base styles  */
@import url("../fonts/stylesheet.css");
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

html,
body {
  font-family: "Montserrat", sans-serif;
  scroll-behavior: smooth;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media (max-width: 1024px) {
  html,
  body {
    overflow-x: hidden;
  }
}

h1 {
  color: #323232;
}

h2 {
  font-weight: 700;
  font-size: 38px;
  line-height: 168%;
  text-transform: uppercase;
  color: #323232;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  h2 {
    line-height: 144%;
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  h2 {
    line-height: 120%;
    font-size: 24px;
  }
}
@media (max-width: 375px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  color: #323232;
}

.container {
  max-width: 1248px;
  width: 100%;
  margin: 0 auto;
}
.container__inner {
  margin-top: 28px;
}
@media (max-width: 480px) {
  .container__inner {
    margin-top: 18px;
  }
}
@media (max-width: 1248px) {
  .container {
    padding: 0 24px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.left-padding {
  padding-left: calc((100vw - 100px) / 2);
}
@media (max-width: 1248px) {
  .left-padding {
    padding-left: 24px;
  }
}
@media (max-width: 768px) {
  .left-padding {
    padding-left: 16px;
  }
}

.no-scroll {
  overflow: hidden;
}

.header {
  position: relative;
  z-index: 3;
}
.header--index {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: 3;
}
.header__wrapper {
  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;
  z-index: 2;
}
.header__top {
  padding: 12px 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .header__top {
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .header__top {
    padding: 8px 16px;
  }
}
.header__top-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.header__top-item__name {
  font-weight: 500;
  font-size: 16px;
  color: #323232;
}
@media (max-width: 480px) {
  .header__top-item__name {
    font-size: 12px;
  }
}
@media (max-width: 375px) {
  .header__top-item__name {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .header__top-item__icon {
    max-height: 16px;
  }
}
.header__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px 26px;
  position: relative;
}
.header__main::after {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(248, 248, 248, 0.58);
  background: rgba(248, 248, 248, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  border-radius: 20px;
  z-index: -1;
}
@media (max-width: 480px) {
  .header__main::after {
    border-radius: 18px;
  }
}
@media (max-width: 768px) {
  .header__main {
    padding: 15px 20px;
  }
}
@media (max-width: 480px) {
  .header__main {
    padding: 8px 16px;
    border-radius: 22px;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 28px;
}
@media (max-width: 1248px) {
  .header__inner {
    gap: 20px;
  }
}
@media (max-width: 1024px) {
  .header__inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__inner-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 480px) {
  .header__inner-left {
    gap: 8px;
  }
}
.header__inner-left__description {
  width: 120px;
}
.header__inner-left__description p {
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  color: #323232;
}
@media (max-width: 480px) {
  .header__inner-left__description p {
    font-size: 10px;
  }
}
.header__menu {
  margin: 28px auto 0;
  padding-top: 10px;
  border-top: 1px solid #b3b3b3;
}
@media (max-width: 1024px) {
  .header__menu {
    display: none;
  }
}
.header__contacts {
  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: end;
      -ms-flex-align: end;
          align-items: end;
}
.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .header .logo {
    max-width: 110px;
  }
}
@media (max-width: 480px) {
  .header .logo {
    max-width: 90px;
  }
}
@media (max-width: 1024px) {
  .header .social-list {
    display: none;
  }
}

.modal {
  opacity: 0;
}
.modal.active {
  opacity: 1;
}
.modal.active::before {
  pointer-events: all;
}
.modal.active .modal__body {
  pointer-events: all;
}
.modal__body {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 8;
  pointer-events: none;
}
.modal__info {
  height: 100%;
}
.modal__wrapper {
  position: relative;
  background: #F8F8F8;
  border-radius: 20px;
}
.modal::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 7;
  pointer-events: none;
}

.menu {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media (max-width: 768px) {
  .menu {
    display: none;
  }
}
.menu--open {
  position: relative;
}
.menu--open::before, .menu--open::after {
  content: "";
  position: absolute;
  background: #fff;
  width: 16px;
  height: 100dvh;
  top: 0;
}
.menu--open::before {
  left: -16px;
}
.menu--open::after {
  right: -16px;
}
@media (max-width: 768px) {
  .menu--open {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    position: absolute;
    top: 100%;
    background: #fff;
    width: 100%;
    height: 100dvh;
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .menu--open .menu-nav {
    -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;
    gap: 28px;
    width: 100%;
  }
}
.menu--open .menu-nav__link {
  font-size: 18px;
}

.btn-menu {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 32px;
  height: 20px;
}
@media (max-width: 1024px) {
  .btn-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 480px) {
  .btn-menu {
    width: 30px;
    height: 18px;
  }
}
.btn-menu span {
  position: absolute;
  background: #0CB6A6;
  border-radius: 100px;
  width: 100%;
  height: 3px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn-menu span:first-child {
  top: 0;
  left: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.btn-menu span:nth-of-type(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
.btn-menu span:last-child {
  bottom: 0;
  left: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.btn-menu--open {
  height: 26px;
  overflow: hidden;
  z-index: 4;
}
.btn-menu--open span:first-child {
  display: block;
  rotate: 45deg;
  top: auto;
}
.btn-menu--open span:nth-of-type(2) {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.btn-menu--open span:last-child {
  display: block;
  rotate: -45deg;
  bottom: auto;
}

.menu-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
@media (max-width: 1024px) {
  .menu-nav {
    gap: 6px;
  }
}
.menu-nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.menu-nav__link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.menu-nav__link:hover {
  color: #0CB6A6;
}
@media (max-width: 1024px) {
  .menu-nav__link {
    font-size: 16px;
  }
}
.menu-nav__link--active {
  color: #0CB6A6;
}

.catalog-menu__wrapper {
  position: relative;
  min-height: 400px;
  border-radius: 20px;
  border: 1px solid rgba(248, 248, 248, 0);
  overflow: hidden;
}
.catalog-menu__wrapper::after {
  content: "";
  width: 0;
  -webkit-transition: width 0.2s;
  transition: width 0.2s;
}
.catalog-menu__wrapper:has(.catalog-menu-section:hover) {
  width: 1042px;
}
@media (max-width: 1248px) {
  .catalog-menu__wrapper:has(.catalog-menu-section:hover) {
    width: 977px;
  }
}
.catalog-menu__wrapper:has(.catalog-menu-section__head:hover)::after {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid rgba(248, 248, 248, 0.58);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.66);
}
.catalog-menu__wrapper:has(.catalog-menu__subsection:hover)::after {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border: 1px solid rgba(248, 248, 248, 0.58);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.66);
}
.catalog-menu__side {
  width: 465px;
  min-height: inherit;
  padding: 20px 28px 28px;
  border: 1px solid rgba(248, 248, 248, 0.58);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: rgba(248, 248, 248, 0.81);
}
.catalog-menu__subsection {
  position: absolute;
  top: 0;
  left: 465px;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.catalog-menu__subsection-wrapper {
  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;
  height: 100%;
  padding: 28px 0 44px 46px;
  z-index: 2;
}
.catalog-menu__subsection-list {
  margin-top: 50px;
  height: 160px;
}
.catalog-menu__subsection-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #323232;
}
@media (max-width: 1248px) {
  .catalog-menu__subsection-title {
    font-size: 20px;
  }
}
.catalog-menu__subsection-link {
  margin: auto auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 20px;
  color: #9a9a98;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.catalog-menu__subsection-link:hover {
  color: #0CB6A6;
}
.catalog-menu__subsection-link:hover svg {
  fill: #0CB6A6;
  translate: 4px;
}
.catalog-menu__subsection-link svg {
  fill: #9A9A98;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.catalog-menu-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.catalog-menu-section__item {
  border-bottom: 1px solid #9a9a98;
}
.catalog-menu-section__item:first-child .catalog-menu-section__head {
  padding-top: 0;
}
.catalog-menu-section__item:hover .catalog-menu-section__head-name {
  color: #0CB6A6;
}
.catalog-menu-section__item:hover .catalog-menu-section__head-arrow {
  fill: #0CB6A6;
  translate: 4px;
}
.catalog-menu-section__item:hover > .catalog-menu__subsection {
  opacity: 1;
}
.catalog-menu-section__item:hover > .catalog-menu__subsection::before {
  content: "";
  position: absolute;
  top: 0;
  left: -28px;
  background: transparent;
  width: 74px;
  height: 100%;
  z-index: 3;
}
.catalog-menu-section__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  padding: 10px 0;
}
@media (max-width: 1248px) {
  .catalog-menu-section__head {
    gap: 12px;
  }
}
.catalog-menu-section__head-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 85px;
}
.catalog-menu-section__head-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.catalog-menu-section__head-name {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #9a9a98;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  width: 290px;
}
@media (max-width: 1248px) {
  .catalog-menu-section__head-name {
    font-size: 18px;
  }
}
.catalog-menu-section__head-arrow {
  position: absolute;
  right: 28px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  fill: #9A9A98;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 1248px) {
  .catalog-menu-section__head-arrow {
    width: 14px;
  }
}

.catalog-menu-subsection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 10px;
}
.catalog-menu-subsection__link {
  display: block;
  padding: 13px 16px;
  border: 2px solid #b7b7b7;
  border-radius: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #323232;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog-menu-subsection__link:hover {
  color: #0CB6A6;
  border-color: #0CB6A6;
}

.header-search {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 48px;
  border: 1px solid #a5a5a3;
  border-radius: 12px;
  overflow: hidden;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.header-search:has(> input:focus) {
  border-color: #0CB6A6;
}
@media (max-width: 1024px) {
  .header-search--desktop {
    display: none;
  }
}
.header-search--mobile {
  margin-top: 26px;
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          flex-grow: unset;
}
.header-search--mobile .header-search__input {
  color: #fff;
}
.header-search__input {
  height: inherit;
  border-radius: inherit;
  padding: 13px 48px 13px 18px;
  width: 100%;
}
.header-search__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
.header-search__input::-moz-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
.header-search__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
.header-search__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
.header-search__input::placeholder {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
.header-search__btn {
  position: absolute;
  top: 0;
  right: 0;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 18px;
}
.header-search__btn > img {
  width: 16px;
}

.header-contacts {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 1024px) {
  .header-contacts {
    display: none;
  }
}
.header-contacts__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
@media (max-width: 1248px) {
  .header-contacts__container {
    gap: 14px;
  }
}
.header-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.header-contacts__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
@media (max-width: 1248px) {
  .header-contacts__title {
    font-size: 14px;
  }
}
.header-contacts__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 1248px) {
  .header-contacts__link {
    font-size: 14px;
  }
}
.header-contacts__link--phone::before {
  content: url(../img/icons/i-phone.svg);
  height: 18px;
}
.header-contacts__link--mail::before {
  content: url(../img/icons/i-mail.svg);
  height: 15px;
}
.header-contacts__link:hover {
  color: #0a9e8f;
}

.header-mobile {
  display: none;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  position: absolute;
  top: 0;
  right: -24px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .header-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 768px) {
  .header-mobile {
    right: -16px;
  }
}
.header-mobile.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.header-mobile__wrapper {
  position: relative;
  width: 390px;
  padding: 63px 27px;
  border-radius: 0 0 0 20px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  -webkit-box-shadow: 0 0 36px 0 rgba(50, 50, 50, 0.15);
          box-shadow: 0 0 36px 0 rgba(50, 50, 50, 0.15);
  background: rgba(248, 248, 248, 0.9);
  height: 100dvh;
  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: 480px) {
  .header-mobile__wrapper {
    width: 290px;
    padding: 34px 14px;
  }
}
.header-mobile__bottom {
  -webkit-margin-before: auto;
          margin-block-start: auto;
}
.header-mobile__schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.header-mobile__schedule-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}
.header-mobile__schedule-name {
  font-weight: 500;
  font-size: 16px;
  color: #323232;
}
@media (max-width: 480px) {
  .header-mobile__schedule-name {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .header-mobile__schedule-icon {
    max-height: 16px;
  }
}
.header-mobile__menu {
  margin-top: 46px;
}
.header-mobile__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.header-mobile__contacts-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
.header-mobile__contacts-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
}
.header-mobile__contacts-link--phone::before {
  content: url(../img/icons/i-phone.svg);
  height: 18px;
}
.header-mobile__contacts-link--mail::before {
  content: url(../img/icons/i-mail.svg);
  height: 15px;
}
.header-mobile .social-list {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  max-height: 270px;
  overflow-y: auto;
}
@media (max-width: 768px) {
  .menu-mobile {
    max-height: 190px;
  }
}
.menu-mobile__wrapper {
  padding-left: 15px;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu-mobile__link {
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #323232;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.menu-mobile__item.active .menu-mobile__wrapper {
  padding-top: 15px;
  grid-template-rows: 1fr;
}
.menu-mobile__item.active .menu-mobile__link {
  color: #0CB6A6;
}
.menu-mobile__item.active .menu-mobile__top svg {
  fill: #0CB6A6;
  rotate: 180deg;
}
.menu-mobile__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.menu-mobile__top svg {
  fill: #323232;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.menu-mobile__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  height: 26px;
}
.menu-mobile__list-lvl2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  min-height: 0;
}
.menu-mobile__list-lvl2__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
}

.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.social-list__icon {
  max-height: 39px;
}

.dropdown-menu--relative {
  position: relative;
}
.dropdown-menu--relative .dropdown-menu__container {
  top: calc(100% + 18px);
  left: -18px;
}
.dropdown-menu--relative:hover::after {
  bottom: -18px;
}
.dropdown-menu--main .dropdown-menu__container {
  top: calc(100% + 3px);
  right: 575px;
}
@media (max-width: 1248px) {
  .dropdown-menu--main .dropdown-menu__container {
    right: 510px;
  }
}
.dropdown-menu--main .dropdown-menu__container:has(.catalog-menu-section:hover) {
  right: 0;
}
.dropdown-menu--main:hover::after {
  bottom: -3px;
}
.dropdown-menu:hover::after {
  content: "";
  background: transparent;
  width: 100%;
  height: 18px;
  position: absolute;
  left: 0;
}
.dropdown-menu:hover .dropdown-menu__toggle {
  color: #0CB6A6;
}
.dropdown-menu:hover .dropdown-menu__toggle svg {
  fill: #0CB6A6;
  rotate: 180deg;
}
.dropdown-menu:hover .dropdown-menu__container {
  opacity: 1;
  pointer-events: all;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.dropdown-menu--main .dropdown-menu__toggle {
  color: #0CB6A6;
}
.dropdown-menu__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.dropdown-menu__toggle-icon {
  fill: #323232;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.dropdown-menu__toggle:hover svg {
  rotate: 180deg;
  fill: #0CB6A6;
}
.dropdown-menu__container {
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  pointer-events: none;
  position: absolute;
  -webkit-box-shadow: 0 0 36px 0 rgba(50, 50, 50, 0.15);
          box-shadow: 0 0 36px 0 rgba(50, 50, 50, 0.15);
  border-radius: 20px;
}

.products__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(430px, 1fr));
  gap: 28px;
}
@media (max-width: 768px) {
  .products__wrapper {
    gap: 18px;
    grid-template-columns: unset;
  }
}
.products__item {
  container: card/inline-size;
}

.products-card {
  position: relative;
  height: 100%;
  padding: 20px 38px;
  min-height: 375px;
  border: 2px solid #d8d8d8;
  border-radius: 15px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: url(../img/products/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 600px) {
  .products-card {
    padding: 16px 20px 220px;
  }
}
@container card (max-width: 535px) {
  .products-card {
    padding: 16px 20px 220px;
  }
  .products-card .products-card__right {
    max-width: 170px;
    position: absolute;
    bottom: 0;
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .products-card .products-card__left {
    max-width: 100%;
  }
}
.products-card__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.products-card__top:hover .products-card__top-icon {
  -webkit-transform: translate(3px, -3px);
          transform: translate(3px, -3px);
}
.products-card__top-title {
  max-width: 300px;
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #0CB6A6;
}
@media (max-width: 480px) {
  .products-card__top-title {
    font-size: 20px;
  }
}
.products-card__top-icon {
  aspect-ratio: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .products-card__top-icon {
    width: 34px;
  }
}
@media (max-width: 480px) {
  .products-card__top-icon {
    width: 28px;
  }
}
@media (max-width: 375px) {
  .products-card__top-icon {
    width: 20px;
  }
}
.products-card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
.products-card__left {
  max-width: 360px;
  width: 100%;
}
@media (max-width: 768px) {
  .products-card__left {
    max-width: 100%;
  }
}
.products-card__right {
  margin-top: auto;
  max-width: 190px;
  position: relative;
  right: -28px;
  bottom: -10px;
}
@media (max-width: 600px) {
  .products-card__right {
    max-width: 170px;
    position: absolute;
  }
}
.products-card__right-img {
  -o-object-fit: contain;
     object-fit: contain;
}

.products-subsection {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.products-subsection__link {
  display: block;
  padding: 11px 16px;
  border: 2px solid #b7b7b7;
  border-radius: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  color: #323232;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.products-subsection__link:hover {
  border-color: #0CB6A6;
  color: #0CB6A6;
}

.about {
  position: relative;
  z-index: 2;
}
.about__wrapper {
  margin-top: 95px;
  margin-left: 180px;
}
@media (max-width: 1140px) {
  .about__wrapper {
    margin-top: 225px;
    margin-left: 0;
  }
}
@media (max-width: 480px) {
  .about__wrapper {
    margin-top: 200px;
  }
}
.about__card {
  max-width: 675px;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.29);
  border-radius: 20px;
  padding: 24px 36px;
}
@media (max-width: 1140px) {
  .about__card {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .about__card {
    padding: 20px 36px;
  }
}
@media (max-width: 480px) {
  .about__card {
    padding: 20px;
  }
}
.about__card-title {
  font-weight: 800;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  color: #0CB6A6;
}
@media (max-width: 480px) {
  .about__card-title {
    font-size: 32px;
  }
}
.about__card-text {
  margin-top: 16px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #323232;
}
@media (max-width: 768px) {
  .about__card-text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .about__card-text {
    font-size: 16px;
  }
}
.about__card-link {
  margin: 24px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #0CB6A6;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 480px) {
  .about__card-link {
    font-size: 16px;
  }
}
.about__card-link svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #0CB6A6;
}
.about__card-link:hover {
  color: #0a9e8f;
}
.about__card-link:hover svg {
  translate: 4px;
  fill: #0a9e8f;
}

.section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50%;
  position: relative;
}
.section--type-1 {
  padding: 38px 0;
}
@media (max-width: 768px) {
  .section--type-1 {
    padding: 28px 0;
  }
}
@media (max-width: 480px) {
  .section--type-1 {
    padding: 18px 0;
  }
}
.section--type-2 {
  padding: 38px 0 104px;
}
.section--type-1::before, .section--type-1::after, .section--type-2::before, .section--type-2::after {
  content: "";
  width: 100%;
  height: 550px;
  position: absolute;
  left: 0;
  pointer-events: none;
}
.section--banner {
  background-image: url(../img/bg/banner-bg.png);
  background-position-x: 80%;
}
.section--banner::before, .section--banner::after {
  content: "";
  position: absolute;
  left: 0;
  pointer-events: none;
}
.section--banner::before {
  /* width: 550px;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.8)), color-stop(55%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.3) 55%, rgba(255, 255, 255, 0) 100%); */

  width: 100%;
  height: 550px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 55%, rgb(255, 255, 255) 100%);
}
@media (max-width: 1248px) {
  .section--banner::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (max-width: 768px) {
  .section--banner::before {
    width: 100%;
  }
}
.section--banner::after {
  width: 100%;
  height: 550px;
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 1248px) {
  .section--banner::after {
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (max-width: 768px) {
  .section--banner::after {
    background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (max-width: 768px) {
  .section--banner::after {
    height: 650px;
  }
}
.section--about {
  background-image: url(../img/bg/about-bg.png);
}
@media (max-width: 992px) {
  .section--about {
    background-position-x: 60%;
  }
}
@media (max-width: 768px) {
  .section--about {
    background-position-x: 75%;
  }
}
@media (max-width: 480px) {
  .section--about {
    padding: 18px 0;
  }
}
.section--about::before {
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(55%, rgba(255, 255, 255, 0.2)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 55%, rgb(255, 255, 255) 100%);
}
.section--about::after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}
.section--news {
  background-image: url(../img/bg/news-bg.png);
}
.section--news::before {
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(55%, rgba(255, 255, 255, 0.2)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 55%, rgb(255, 255, 255) 100%);
}
.section--news::after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}
.section--customers {
  background-image: url(../img/bg/customers-bg.png);
}
@media (max-width: 480px) {
  .section--customers {
    padding: 38px 0;
  }
}
.section--customers::before {
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(55%, rgba(255, 255, 255, 0.2)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 55%, rgb(255, 255, 255) 100%);
}
.section--customers::after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}
.section--service {
  background-image: url(../img/bg/service-bg.png);
}
@media (max-width: 480px) {
  .section--service {
    padding: 18px 0 100px;
  }
}
.section--service::before {
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(55%, rgba(255, 255, 255, 0.2)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 55%, rgb(255, 255, 255) 100%);
}
.section--service::after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}
.section--breadcrumb {
  padding: 27px 0 24px;
}
@media (max-width: 768px) {
  .section--breadcrumb {
    padding: 15px 0;
  }
}
@media (max-width: 480px) {
  .section--breadcrumb {
    padding: 12px 0;
  }
}
.section--catalog {
  padding-bottom: 38px;
}
.section--certificate {
  background-image: url(../img/bg/certificate-bg.png);
  padding: 38px 0 76px;
}
.section--certificate::before {
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(55%, rgba(255, 255, 255, 0.7)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 55%, rgb(255, 255, 255) 100%);
}
.section--certificate::after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}
.section--contact-details {
  background-image: url(../img/bg/contact-details-bg.png);
  padding: 38px 0 140px;
}
@media (max-width: 768px) {
  .section--contact-details {
    padding: 28px 0;
  }
}
@media (max-width: 480px) {
  .section--contact-details {
    padding: 18px 0;
  }
}
.section--contact-details::before {
  top: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(55%, rgba(255, 255, 255, 0.7)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 55%, rgb(255, 255, 255) 100%);
}
.section--contact-details::after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}
.section--gallery {
  background-image: url(../img/bg/gallery-bg.png);
}
.section--gallery::before {
  top: 0;
  height: 350px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(55%, rgba(255, 255, 255, 0.7)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 55%, rgb(255, 255, 255) 100%);
}
.section--gallery::after {
  bottom: 0;
  height: 350px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.3)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
}
.section--error {
  background-image: url(../img/bg/error-bg.png);
  padding: 290px 0 200px;
}
@media (max-width: 1024px) {
  .section--error {
    padding: 290px 0 120px;
  }
}
@media (max-width: 600px) {
  .section--error {
    padding: 230px 0 120px;
  }
}
@media (max-width: 480px) {
  .section--error {
    padding: 190px 0 120px;
  }
}
.section--error::before {
  top: 0;
  height: 150px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(55%, rgba(255, 255, 255, 0.7)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 55%, rgb(255, 255, 255) 100%);
}
.section--error::after {
  bottom: 0;
  height: 200px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
}
.section--pb {
  padding-bottom: 38px;
}
@media (max-width: 768px) {
  .section--pb {
    padding: 28px 0;
  }
}
@media (max-width: 480px) {
  .section--pb {
    padding: 18px 0;
  }
}

.application__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 15px;
}
@media (max-width: 768px) {
  .application__wrapper {
    grid-template-columns: unset;
    gap: 8px;
  }
}
.application__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 44px;
  border-radius: 12px;
  padding: 22px;
  background: #0CB6A6;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
@media (max-width: 480px) {
  .application__item {
    padding: 20px;
    gap: 20px;
  }
}
.application__item:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.application__img {
  width: 66px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 480px) {
  .application__img {
    width: 40px;
  }
}
.application__img img {
  -o-object-fit: contain;
     object-fit: contain;
}
.application__name {
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  color: #f8f8f8;
}
@media (max-width: 480px) {
  .application__name {
    font-size: 18px;
  }
}

.news-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  position: relative;
  height: 100%;
  border-radius: 30px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.news-card--gray {
  background: rgba(183, 183, 183, 0.17);
  border: 1px solid rgba(183, 183, 183, 0.23);
}
.news-card--glass {
  background: rgba(248, 248, 248, 0.47);
}
.news-card:hover .news-card__hit {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.news-card__hit {
  position: absolute;
  top: 18px;
  right: 15px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.79);
  padding: 4px 14px 4px 12px;
}
.news-card__hit-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.news-card__hit-text {
  font-weight: 600;
  font-size: 12px;
  line-height: 175%;
  color: #0CB6A6;
}
.news-card__img {
  height: 200px;
  border-radius: 30px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.news-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8px 15px 15px;
  height: 100%;
}
.news-card__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 144%;
  letter-spacing: -0.01em;
  color: #323232;
}
.news-card__text {
  margin-top: 12px;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 15px;
  line-height: 140%;
  color: #323232;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
}
.news-card__date {
  display: block;
  -webkit-margin-before: auto;
          margin-block-start: auto;
  font-weight: 500;
  font-size: 12px;
  color: #0CB6A6;
}

.news-block {
  position: relative;
  z-index: 2;
}
.news-block__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news-block__more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 28px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #0CB6A6;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 480px) {
  .news-block__more {
    font-size: 16px;
    gap: 12px;
  }
}
.news-block__more svg {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  fill: #0CB6A6;
}
.news-block__more:hover {
  color: #0a9e8f;
}
.news-block__more:hover svg {
  fill: #0a9e8f;
  translate: 4px;
}
.news-block__wrapper {
  margin-top: 38px;
}

@media (max-width: 375px) {
  .swiper-news {
    max-width: 300px;
  }
}
.swiper-news__slide {
  height: auto !important;
}
.swiper-news__btns {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
@media (max-width: 480px) {
  .swiper-news__btns {
    margin-top: 18px;
    gap: 18px;
  }
}
.swiper-news__btn {
  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: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #0CB6A6;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .swiper-news__btn {
    width: 40px;
    height: 40px;
  }
}
.swiper-news__btn svg {
  fill: #0CB6A6;
}
.swiper-news__btn.swiper-button-disabled {
  border: 1px solid #9a9a98;
}
.swiper-news__btn.swiper-button-disabled svg {
  fill: #9A9A98;
}
.swiper-news__btn:not(.swiper-button-disabled):hover {
  background: rgba(12, 182, 166, 0.39);
}
.swiper-news__btn:not(.swiper-button-disabled):hover svg {
  fill: #0CB6A6;
}

.contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 86px;
}
@media (max-width: 768px) {
  .contacts {
    gap: 82px;
  }
}
.contacts__wrapper {
  margin: 0 auto;
  max-width: 850px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(325px, 1fr));
  gap: 58px;
}
@media (max-width: 992px) {
  .contacts__wrapper {
    gap: 25px;
  }
}
@media (max-width: 480px) {
  .contacts__wrapper {
    grid-template-columns: none;
    gap: 18px;
  }
}
.contacts__item {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.47);
  padding: 20px 50px;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 992px) {
  .contacts__item {
    padding: 20px 30px;
  }
}
@media (max-width: 480px) {
  .contacts__item {
    padding: 20px 12px;
  }
}
.contacts__item-icon {
  max-height: 44px;
}
.contacts__item-icon svg {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.contacts__item-text {
  margin-top: 22px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
}
@media (max-width: 480px) {
  .contacts__item-text {
    margin-top: 14px;
  }
}
.contacts__item-link {
  margin-top: 6px;
  font-weight: 700;
  font-size: 24px;
  line-height: 130%;
  color: #323232;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 480px) {
  .contacts__item-link {
    font-size: 20px;
  }
}
.contacts__item-link:hover {
  color: #0a9e8f;
}

.contact-details {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-details__wrapper {
  border: 1px solid rgba(248, 248, 248, 0.7);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: rgba(248, 248, 248, 0.59);
  padding: 25px;
}
@media (max-width: 768px) {
  .contact-details__wrapper {
    padding: 25px 18px;
  }
}
@media (max-width: 480px) {
  .contact-details__wrapper {
    padding: 24px 2px;
  }
}
.contact-details__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact-details__item {
  padding: 15px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 480px) {
  .contact-details__item {
    gap: 10px;
  }
}
.contact-details__item:nth-of-type(even) {
  background: rgba(154, 154, 152, 0.2);
}
.contact-details__item-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #9a9a98;
}
@media (max-width: 480px) {
  .contact-details__item-text {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .contact-details__item-text {
    font-size: 14px;
  }
}
.contact-details__item-value {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: right;
  color: #323232;
  max-width: 530px;
}
@media (max-width: 480px) {
  .contact-details__item-value {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .contact-details__item-value {
    font-size: 14px;
  }
}

.contacts-info {
  padding: 35px 32px;
  border: 1px solid #d8d8d8;
  border-radius: 20px;
  background-image: url(../img/bg/contacts-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 768px) {
  .contacts-info {
    padding: 65px 24px;
  }
}
@media (max-width: 480px) {
  .contacts-info {
    padding: 0;
    border: none;
  }
}
.contacts-info__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 35px;
}
@media (max-width: 992px) {
  .contacts-info__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 570px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .contacts-info__wrapper {
    gap: 36px;
  }
}
.contacts-info__left {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 30px 35px;
  border: 1px solid rgba(248, 248, 248, 0.52);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.47);
}
@media (max-width: 480px) {
  .contacts-info__left {
    border-radius: 20px;
    padding: 22px 10px;
  }
}
.contacts-info__schedule {
  margin-top: 15px;
}
@media (max-width: 480px) {
  .contacts-info__schedule {
    margin-top: 16px;
  }
}
.contacts-info__schedule-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
  color: #323232;
}
@media (max-width: 768px) {
  .contacts-info__schedule-title {
    font-size: 16px;
  }
}
.contacts-info__schedule-list {
  margin-top: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media (max-width: 480px) {
  .contacts-info__schedule-list {
    margin-top: 16px;
  }
}
.contacts-info__schedule-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.contacts-info__schedule-item-text {
  font-weight: 400;
  font-size: 20px;
  color: #9a9a98;
}
@media (max-width: 768px) {
  .contacts-info__schedule-item-text {
    font-size: 16px;
  }
}
.contacts-info__schedule-item-value {
  font-weight: 500;
  font-size: 20px;
  color: #000;
  text-align: right;
}
@media (max-width: 768px) {
  .contacts-info__schedule-item-value {
    font-size: 16px;
  }
}
.contacts-info__map {
  max-width: 570px;
  width: 100%;
  border: 1px solid #9a9a98;
  border-radius: 20px;
  height: 390px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .contacts-info__map {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .contacts-info__map {
    height: 360px;
  }
}
.contacts-info__map iframe {
  height: inherit;
  width: 100%;
}

.contacts-info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
@media (max-width: 480px) {
  .contacts-info-list {
    gap: 16px;
  }
}
.contacts-info-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding-bottom: 22px;
  border-bottom: 1px solid #9a9a98;
}
@media (max-width: 768px) {
  .contacts-info-list__item {
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .contacts-info-list__item {
    padding-bottom: 16px;
    gap: 12px;
  }
}
.contacts-info-list__item-icon {
  width: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 480px) {
  .contacts-info-list__item-icon {
    width: 20px;
  }
}
.contacts-info-list__item-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 375px) {
  .contacts-info-list__item-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.contacts-info-list__item-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  white-space: nowrap;
  color: #9a9a98;
}
@media (max-width: 768px) {
  .contacts-info-list__item-title {
    font-size: 16px;
  }
}
.contacts-info-list__item-link {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #323232;
  text-align: right;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 768px) {
  .contacts-info-list__item-link {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .contacts-info-list__item-link {
    text-align: left;
    font-size: 14px;
  }
}
.contacts-info-list__item-link--small {
  font-size: 16px;
  max-width: 240px;
}
@media (max-width: 768px) {
  .contacts-info-list__item-link--small {
    font-size: 14px;
  }
}
.contacts-info-list__item-link:hover:not(p) {
  color: #0a9e8f;
}

.footer {
  position: relative;
  padding: 38px 0 18px;
  background-image: url(../img/bg/footer-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer::before {
  content: "";
  width: 100%;
  height: 532px;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0)), color-stop(70%, rgba(255, 255, 255, 0.5)), to(rgb(255, 255, 255)));
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 70%, rgb(255, 255, 255) 100%);
}
.footer__logo {
  display: block;
  margin: 0 auto;
}
.footer__wrapper {
  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;
  gap: 20px;
  z-index: 2;
}
.footer__main {
  padding: 48px 66px 66px;
  border: 1px solid rgba(248, 248, 248, 0.58);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.52);
}
@media (max-width: 768px) {
  .footer__main {
    padding: 32px 28px;
  }
}
@media (max-width: 600px) {
  .footer__main {
    padding: 25px 22px;
  }
}
@media (max-width: 480px) {
  .footer__main {
    border-radius: 18px;
  }
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1140px) {
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .footer__top {
    gap: 20px;
  }
}
.footer__row {
  margin-top: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 54px;
}
@media (max-width: 600px) {
  .footer__row {
    margin-top: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
.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;
}
.footer__col-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #323232;
}
.footer__col-body {
  margin-top: 14px;
}
.footer__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(248, 248, 248, 0.58);
  border-radius: 20px;
  row-gap: 16px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.52);
  padding: 24px 54px;
}
@media (max-width: 992px) {
  .footer__bottom {
    padding: 20px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }
}
@media (max-width: 600px) {
  .footer__bottom {
    padding: 10px 20px;
    grid-template-columns: unset;
    gap: 6px;
  }
}
@media (max-width: 480px) {
  .footer__bottom {
    border-radius: 18px;
  }
}
.footer__bottom-link {
  font-weight: 500;
  font-size: 15px;
  color: #323232;
}
@media (max-width: 600px) {
  .footer__bottom-link {
    text-align: center !important;
  }
}
.footer__bottom-link:nth-of-type(2) {
  text-align: right;
}
@media (max-width: 992px) {
  .footer__bottom-link:nth-of-type(2) {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.footer__bottom-copyright {
  font-weight: 500;
  font-size: 14px;
  color: #323232;
  text-align: center;
}
@media (max-width: 992px) {
  .footer__bottom-copyright {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    grid-column: 1/3;
  }
}
@media (max-width: 600px) {
  .footer__bottom-copyright {
    margin-top: 14px;
    grid-column: unset;
  }
}
.footer__bottom-copyright a {
  text-decoration: underline;
}
.footer__btn {
  margin-top: 32px;
  border-radius: 30px;
  padding: 15px 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #f8f8f8;
  position: relative;
  background: transparent;
  overflow: hidden;
}
@media (max-width: 480px) {
  .footer__btn {
    font-size: 16px;
    padding: 13px 32px;
  }
}
.footer__btn::before {
  content: "";
  position: absolute;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #0cb6a6), to(#0cb6a6));
  background: linear-gradient(90deg, #0cb6a6 4.34%, #0cb6a6 100%);
}
.footer__btn::after {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #055049), to(#0cb6a6));
  background: linear-gradient(90deg, #055049 4.34%, #0cb6a6 100%);
}
.footer__btn:hover::before {
  opacity: 0;
}
.footer__btn:hover::after {
  opacity: 1;
}

.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 10px;
}
@media (max-width: 1024px) {
  .footer-contacts {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
  }
}
@media (max-width: 480px) {
  .footer-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-contacts__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-contacts__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
}
.footer-contacts__link {
  display: block;
  margin-top: 4px;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  color: #0CB6A6;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-contacts__link:hover {
  color: #0a9e8f;
}

.footer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer-menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-menu__link {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer-menu__link:hover {
  color: #0CB6A6;
}

.footer-mode {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.footer-mode__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.footer-mode__item p {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
}

.form-block-questions {
  background-image: url(../img/bg/form-q-bg.png);
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  border: 2px solid #d8d8d8;
  border-radius: 30px;
  padding: 35px 44px;
}
@media (max-width: 768px) {
  .form-block-questions {
    padding: 44px 76px 186px;
  }
}
@media (max-width: 700px) {
  .form-block-questions {
    background-image: url(../img/bg/form-q-bg-mobile.png);
  }
}
@media (max-width: 480px) {
  .form-block-questions {
    padding: 28px 20px 140px;
  }
}
.form-block-questions__wrapper {
  max-width: 570px;
}
.form-block-questions__title {
  margin-bottom: 18px;
  line-height: 1;
  font-size: 48px;
  color: #0CB6A6;
  text-transform: none;
}
@media (max-width: 768px) {
  .form-block-questions__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .form-block-questions__title {
    font-size: 32px;
  }
}
.form-block-questions__subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #323232;
}
@media (max-width: 768px) {
  .form-block-questions__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .form-block-questions__subtitle {
    font-size: 16px;
  }
}

.form-questions {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.form-questions__input {
  border: 1px solid rgba(183, 183, 183, 0.17);
  border-radius: 16px;
  padding: 20px 24px;
  background: rgba(183, 183, 183, 0.17);
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media (max-width: 480px) {
  .form-questions__input {
    padding: 15px 24px;
    font-size: 16px;
  }
}
.form-questions__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.form-questions__input::-moz-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.form-questions__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.form-questions__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.form-questions__input::placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 480px) {
  .form-questions__input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-questions__input::-moz-placeholder {
    font-size: 16px;
  }
  .form-questions__input:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-questions__input::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-questions__input::placeholder {
    font-size: 16px;
  }
}
.form-questions__input:not(:first-child) {
  margin-top: 16px;
}
.form-questions__input:focus {
  border-color: #0CB6A6;
}
.form-questions__bottom {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media (max-width: 700px) {
  .form-questions__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.form-questions__submit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 30px;
  padding: 15px 34px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #f8f8f8;
  position: relative;
  background: transparent;
  overflow: hidden;
}
@media (max-width: 480px) {
  .form-questions__submit {
    padding: 13px 32px;
    font-size: 16px;
  }
}
.form-questions__submit::before {
  content: "";
  position: absolute;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #0cb6a6), to(#0cb6a6));
  background: linear-gradient(90deg, #0cb6a6 4.34%, #0cb6a6 100%);
}
.form-questions__submit::after {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #055049), to(#0cb6a6));
  background: linear-gradient(90deg, #055049 4.34%, #0cb6a6 100%);
}
.form-questions__submit:hover::before {
  opacity: 0;
}
.form-questions__submit:hover::after {
  opacity: 1;
}
.form-questions__submit span {
  position: relative;
  z-index: 1;
}
.form-questions__text {
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.74);
}
@media (max-width: 700px) {
  .form-questions__text {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .form-questions__text {
    font-size: 12px;
  }
}

.form-block {
  position: relative;
  background-image: url(../img/bg/form-m-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  border: 2px solid #d8d8d8;
  border-radius: 30px;
  padding: 40px;
}
@media (max-width: 768px) {
  .form-block {
    padding: 40px 36px;
  }
}
@media (max-width: 480px) {
  .form-block {
    padding: 22px 20px;
  }
}
.form-block--question .form-block__img {
  -webkit-filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.36));
          filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.36));
}
.form-block__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
}
.form-block__left {
  max-width: 600px;
}
@media (max-width: 1024px) {
  .form-block__left {
    max-width: 100%;
  }
}
.form-block__top {
  width: 820px;
}
@media (max-width: 1024px) {
  .form-block__top {
    width: 100%;
  }
}
.form-block__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 37%;
}
.form-block__img--mobile {
  display: none;
}
@media (max-width: 1024px) {
  .form-block__img--mobile {
    margin: 20px auto 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 360px;
  }
}
@media (max-width: 640px) {
  .form-block__img--mobile {
    max-width: 240px;
  }
}
@media (max-width: 375px) {
  .form-block__img--mobile {
    max-width: 180px;
  }
}
@media (max-width: 1024px) {
  .form-block__img--desktop {
    display: none;
  }
}
.form-block__title {
  margin-bottom: 16px;
  line-height: 1;
  font-size: 48px;
  color: #0CB6A6;
  text-transform: none;
}
@media (max-width: 1024px) {
  .form-block__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .form-block__title {
    font-size: 32px;
  }
}
@media (max-width: 400px) {
  .form-block__title {
    font-size: 20px;
  }
}
.form-block__subtitle {
  font-weight: 500;
  font-size: 24px;
  line-height: 120%;
  color: #323232;
}
@media (max-width: 1024px) {
  .form-block__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .form-block__subtitle {
    font-size: 16px;
  }
}

.form-main {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) {
  .form-main {
    margin-top: 16px;
  }
}
@media (max-width: 640px) {
  .form-main {
    grid-template-columns: 1fr;
  }
}
.form-main__input {
  border: 1px solid #9a9a98;
  border-radius: 16px;
  padding: 20px 24px;
  background: #f8f8f8;
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
@media (max-width: 480px) {
  .form-main__input {
    padding: 15px 24px;
    font-size: 16px;
  }
}
.form-main__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.form-main__input::-moz-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.form-main__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.form-main__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.form-main__input::placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
@media (max-width: 480px) {
  .form-main__input::-webkit-input-placeholder {
    font-size: 16px;
  }
  .form-main__input::-moz-placeholder {
    font-size: 16px;
  }
  .form-main__input:-ms-input-placeholder {
    font-size: 16px;
  }
  .form-main__input::-ms-input-placeholder {
    font-size: 16px;
  }
  .form-main__input::placeholder {
    font-size: 16px;
  }
}
.form-main__input:nth-of-type(3) {
  grid-column: 1/3;
}
@media (max-width: 640px) {
  .form-main__input:nth-of-type(3) {
    grid-column: unset;
  }
}
.form-main__input:focus {
  border-color: #0CB6A6;
}
.form-main__bottom {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  grid-column: 1/3;
}
@media (max-width: 640px) {
  .form-main__bottom {
    grid-column: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
}
.form-main__submit {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 30px;
  padding: 15px 34px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #f8f8f8;
  position: relative;
  background: transparent;
  overflow: hidden;
}
@media (max-width: 480px) {
  .form-main__submit {
    font-size: 16px;
    padding: 13px 32px;
  }
}
.form-main__submit::before {
  content: "";
  position: absolute;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #0cb6a6), to(#0cb6a6));
  background: linear-gradient(90deg, #0cb6a6 4.34%, #0cb6a6 100%);
}
.form-main__submit::after {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #055049), to(#0cb6a6));
  background: linear-gradient(90deg, #055049 4.34%, #0cb6a6 100%);
}
.form-main__submit:hover::before {
  opacity: 0;
}
.form-main__submit:hover::after {
  opacity: 1;
}
.form-main__submit span {
  position: relative;
  z-index: 1;
}
.form-main__text {
  font-weight: 500;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.74);
}
@media (max-width: 640px) {
  .form-main__text {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .form-main__text {
    font-size: 12px;
  }
}

.tab-template {
  position: relative;
  z-index: 2;
}
.tab-template__subtitle {
  max-width: 1060px;
  margin-top: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: #454545;
}
.tab-template__body {
  margin-top: 16px;
}

.customers__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.customers__wrapper-title {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  color: #323232;
}
.customers__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #323232;
}
@media (max-width: 480px) {
  .customers__text {
    font-size: 16px;
  }
}

.production__wrapper {
  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: 768px) {
  .production .swiper-production-btn-next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 768px) {
  .production .swiper-production-btn-prev {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 768px) {
  .production__gallery {
    padding: 0 38px;
    display: grid;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template-columns: 50px 1fr 50px;
    gap: 28px;
  }
}
@media (max-width: 600px) {
  .production__gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 0;
  }
}
.production__description {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .production__description {
    margin-top: 44px;
  }
}
@media (max-width: 600px) {
  .production__description {
    margin-top: 16px;
  }
}
.production__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.production__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #323232;
}
@media (max-width: 768px) {
  .production__text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .production__text {
    font-size: 16px;
  }
}
.production__subtitle {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #323232;
}

.services__title {
  font-weight: 500;
  font-size: 32px;
  line-height: 122%;
  text-align: center;
  color: #000;
}
@media (max-width: 480px) {
  .services__title {
    font-size: 20px;
  }
}
.services__inner {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .services__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 480px) {
  .services__inner {
    margin-top: 10px;
  }
}
.services__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  width: 58%;
}
@media (max-width: 992px) {
  .services__left {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .services__left {
    gap: 24px;
  }
}
.services__right {
  margin-top: 50px;
  width: 35%;
  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 (max-width: 992px) {
  .services__right {
    margin-top: 28px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .services__right {
    margin-top: 22px;
  }
}
.services__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  color: #454545;
}
.services__img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 400/266;
  border-radius: 15px;
}
.services__btn {
  margin-top: 55px;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #f8f8f8;
  position: relative;
  background: transparent;
  overflow: hidden;
}
@media (max-width: 992px) {
  .services__btn {
    margin-top: 28px;
  }
}
@media (max-width: 480px) {
  .services__btn {
    margin-top: 22px;
    font-size: 16px;
    padding: 13px 30px;
  }
}
.services__btn::before {
  content: "";
  position: absolute;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #0cb6a6), to(#0cb6a6));
  background: linear-gradient(90deg, #0cb6a6 4.34%, #0cb6a6 100%);
}
.services__btn::after {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #055049), to(#0cb6a6));
  background: linear-gradient(90deg, #055049 4.34%, #0cb6a6 100%);
}
.services__btn:hover::before {
  opacity: 0;
}
.services__btn:hover::after {
  opacity: 1;
}

.services-block__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
.services-block__item {
  height: 100%;
  padding: 40px;
  border: 1px solid rgba(183, 183, 183, 0.23);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(183, 183, 183, 0.17);
}
@media (max-width: 992px) {
  .services-block__item {
    padding: 40px 32px 28px;
  }
}
@media (max-width: 480px) {
  .services-block__item {
    padding: 20px 8px;
  }
}

.services-work__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.services-work__list {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  counter-reset: list;
}
@media (max-width: 480px) {
  .services-work__list {
    gap: 16px;
  }
}
.services-work__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.services-work__item::before {
  counter-increment: list;
  content: counter(list);
  margin-top: 2px;
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #0CB6A6;
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  text-align: center;
  color: #fff;
}
.services-work__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}

.services-list__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #000;
}
.services-list__list {
  margin-top: 10px;
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  row-gap: 8px;
}
@media (max-width: 768px) {
  .services-list__list {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
  }
}
.services-list__item {
  position: relative;
  padding-left: 24px;
}
.services-list__item::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0CB6A6;
}
.services-list__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #323232;
}

.banner {
  padding-top: 226px;
  padding-bottom: 42px;
}
@media (max-width: 768px) {
  .banner {
    padding-top: 175px;
  }
}
@media (max-width: 480px) {
  .banner {
    padding-top: 120px;
    padding-bottom: 18px;
  }
}

.banner-slide {
  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;
  min-height: 426px;
  width: 100%;
}
@media (max-width: 768px) {
  .banner-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 28px;
  }
}
@media (max-width: 480px) {
  .banner-slide {
    min-height: 380px;
  }
}
.banner-slide__left {
  max-width: 682px;
}
.banner-slide__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #323232;
}
@media (max-width: 1024px) {
  .banner-slide__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .banner-slide__title {
    font-size: 28px;
  }
}
@media (max-width: 375px) {
  .banner-slide__title {
    font-size: 20px;
  }
}
.banner-slide__subtitle {
  margin-top: 10px;
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
  color: #323232;
  text-wrap-style: balance;
}
@media (max-width: 1024px) {
  .banner-slide__subtitle {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .banner-slide__subtitle {
    margin-top: 14px;
  }
}
@media (max-width: 480px) {
  .banner-slide__subtitle {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .banner-slide__subtitle {
    margin-top: 10px;
    font-size: 14px;
  }
}
.banner-slide__btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 42px;
  border-radius: 30px;
  padding: 15px 34px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #fff;
  position: relative;
  background: transparent;
  overflow: hidden;
}
@media (max-width: 480px) {
  .banner-slide__btn {
    font-size: 16px;
    padding: 13px 32px;
  }
}
.banner-slide__btn::before {
  content: "";
  position: absolute;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #0cb6a6), to(#0cb6a6));
  background: linear-gradient(90deg, #0cb6a6 4.34%, #0cb6a6 100%);
}
.banner-slide__btn::after {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #055049), to(#0cb6a6));
  background: linear-gradient(90deg, #055049 4.34%, #0cb6a6 100%);
}
.banner-slide__btn:hover::before {
  opacity: 0;
}
.banner-slide__btn:hover::after {
  opacity: 1;
}
.banner-slide__btn--mobile {
  display: none;
}
@media (max-width: 768px) {
  .banner-slide__btn--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 106px;
  }
}
@media (max-width: 480px) {
  .banner-slide__btn--mobile {
    margin-top: 96px;
  }
}
@media (max-width: 768px) {
  .banner-slide__btn--desktop {
    display: none;
  }
}
.banner-slide__img {
  position: relative;
  max-width: 454px;
  width: 100%;
  max-height: 370px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 480px) {
  .banner-slide__img {
    max-width: 270px;
  }
}
.banner-slide__img img {
  -o-object-fit: contain;
     object-fit: contain;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .banner-slide__img img {
    max-height: 250px;
  }
}
@media (max-width: 900px) {
  .banner-slide__img img {
    max-height: 220px;
  }
}
@media (max-width: 768px) {
  .banner-slide__img img {
    max-height: 100%;
    max-height: 220px;
  }
}
.banner-slide__img::after {
  content: "";
  background-image: url(../img/banner/circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 100%;
  aspect-ratio: 454/131;
  bottom: -30px;
  right: 0;
}

.swiper-banner__slide {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swiper-banner__btns {
  margin-top: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
@media (max-width: 768px) {
  .swiper-banner__btns {
    margin-top: 0;
    position: absolute;
    z-index: 2;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .swiper-banner__btns {
    bottom: 75x;
  }
}
.swiper-banner__btns-btn {
  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: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #0CB6A6;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .swiper-banner__btns-btn {
    width: 40px;
    height: 40px;
  }
}
.swiper-banner__btns-btn svg {
  fill: #0CB6A6;
}
.swiper-banner__btns-btn.swiper-button-disabled {
  border: 1px solid #9a9a98;
}
.swiper-banner__btns-btn.swiper-button-disabled svg {
  fill: #9A9A98;
}
.swiper-banner__btns-btn:not(.swiper-button-disabled):hover {
  background: rgba(12, 182, 166, 0.39);
}
.swiper-banner__btns-btn:not(.swiper-button-disabled):hover svg {
  fill: #0CB6A6;
}

.advantages {
  position: relative;
  z-index: 2;
}
.advantages--banner {
  margin-top: 38px;
}
.advantages__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
@media (max-width: 1248px) {
  .advantages__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .advantages__wrapper {
    grid-template-columns: 1fr;
  }
}
.advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  min-width: 0;
}
.advantages__item-icon {
  max-width: 60px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 480px) {
  .advantages__item-icon {
    max-width: 50px;
  }
}
.advantages__item-icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.advantages__item-text {
  font-weight: 500;
  font-size: 20px;
  color: #323232;
}
@media (max-width: 480px) {
  .advantages__item-text {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .advantages__item-text br {
    display: none;
  }
}

.swiper-production {
  width: 100%;
  max-width: 100%;
  max-height: 100vh;
  min-height: 0;
  min-width: 0;
}
@media (max-width: 768px) {
  .swiper-production {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 600px) {
  .swiper-production {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.swiper-production__slide-img {
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  aspect-ratio: 368/246;
}
.swiper-production__btns {
  display: none;
}
@media (max-width: 768px) {
  .swiper-production__btns {
    display: contents;
  }
}
@media (max-width: 600px) {
  .swiper-production__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.swiper-production__btn {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #0CB6A6;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .swiper-production__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 480px) {
  .swiper-production__btn {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 768px) {
  .swiper-production__btn--prev {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media (max-width: 768px) {
  .swiper-production__btn--next {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
.swiper-production__btn svg {
  fill: #0CB6A6;
}
.swiper-production__btn.swiper-button-disabled {
  border: 1px solid #9a9a98;
}
.swiper-production__btn.swiper-button-disabled svg {
  fill: #9A9A98;
}
.swiper-production__btn:not(.swiper-button-disabled):hover {
  background: rgba(12, 182, 166, 0.39);
}
.swiper-production__btn:not(.swiper-button-disabled):hover svg {
  fill: #0CB6A6;
}

.dropdown {
  border: 1px solid rgba(248, 248, 248, 0.78);
  border-radius: 20px;
  background: rgba(248, 248, 248, 0.7);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  padding: 26px 18px;
  overflow: hidden;
  position: relative;
}
.dropdown__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.dropdown__link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
  white-space: nowrap;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  border-bottom: 1px solid rgba(154, 154, 152, 0.6);
  padding: 11px 0;
}
.dropdown__link:hover {
  color: #0CB6A6;
}
.dropdown__item:first-child .dropdown__link {
  padding-top: 0;
}
.dropdown__item:last-child .dropdown__link {
  padding-bottom: 0;
  border-bottom: none;
}

.breadcrumb {
  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;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 4px;
}
.breadcrumb__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.breadcrumb__item:first-child .breadcrumb__item-link {
  color: #aeaeae;
}
.breadcrumb__item-link {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #6b6b6b;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 480px) {
  .breadcrumb__item-link {
    font-size: 14px;
  }
}
.breadcrumb__item-link--active {
  color: #323232;
}
.breadcrumb__item:first-child .breadcrumb__item-link:hover {
  color: #979797;
}
.breadcrumb__item:not(:first-child) .breadcrumb__item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.breadcrumb__item:not(:first-child) .breadcrumb__item-link::before {
  content: "-";
}

.catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media (max-width: 992px) {
  .catalog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.catalog__side {
  max-width: 340px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media (max-width: 1024px) {
  .catalog__side {
    max-width: 300px;
  }
}
@media (max-width: 992px) {
  .catalog__side {
    max-width: 100%;
    position: static;
  }
}
.catalog__wrapper {
  width: 100%;
}
.catalog__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
.catalog__menu {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background: #0CB6A6;
  cursor: pointer;
}
@media (max-width: 768px) {
  .catalog__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.catalog__inner {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: sticky;
  top: 20px;
}
@media (max-width: 768px) {
  .catalog__inner {
    max-width: 600px;
    margin: 36px auto 0 auto;
  }
}
@media (max-width: 600px) {
  .catalog__inner {
    max-width: 275px;
  }
}
.catalog__bottom {
  margin-top: 28px;
}

.filter {
  border: 1px solid rgba(154, 154, 152, 0.26);
  border-radius: 30px;
  background: #f0f0ef;
  padding: 27px 21px;
}
@media (max-width: 992px) {
  .filter {
    padding: 40px 24px;
    background: #f4f4f4;
    height: 100dvh;
    overflow-y: scroll;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    border-radius: 0;
    border: none;
  }
}
.filter.open {
  display: block;
  z-index: 9;
}
.filter.open .filter__wrapper {
  max-width: 100%;
}
.filter__top {
  margin-bottom: 24px;
  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;
}
.filter__top-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #323232;
}
@media (max-width: 992px) {
  .filter__wrapper {
    max-width: 300px;
  }
}
.filter__group-btn {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.filter__btn {
  border-radius: 14px;
  padding: 10px;
  width: 100%;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.filter__btn--clear {
  border: 1px solid #9a9a98;
  color: #A3A3A1;
}
.filter__btn--clear:hover {
  color: #d13939;
  border: 1px solid #d13939;
}
.filter__btn--show {
  border: 1px solid #0CB6A6;
  color: #323232;
}
.filter__btn--show:hover {
  color: #0CB6A6;
}
.filter__close {
  display: none;
}
@media (max-width: 992px) {
  .filter__close {
    position: absolute;
    top: 17px;
    right: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.filter__close img {
  pointer-events: none;
}

.filter-panel {
  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;
}
.filter-panel__btn {
  display: none;
  height: 36px;
  background: #f0f0ef;
}
@media (max-width: 992px) {
  .filter-panel__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 768px) {
  .filter-panel__btn {
    height: 32px;
  }
}
.filter-panel__btn-icon {
  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;
  height: inherit;
  width: 36px;
  border: 2px solid #dadada;
}
@media (max-width: 768px) {
  .filter-panel__btn-icon {
    width: 32px;
  }
}
.filter-panel__btn-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 16px;
  height: inherit;
  border: 2px solid #dadada;
  border-left: 0;
}
@media (max-width: 768px) {
  .filter-panel__btn-main {
    display: none;
  }
}
.filter-panel__btn svg {
  fill: #9A9A98;
}
.filter-panel__btn-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
}
.filter-panel__right {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.filter-panel__sort {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
  width: 250px;
  height: 36px;
  border: 2px solid #dadada;
  border-radius: 5px;
  background: #f0f0ef;
  padding-left: 14px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url(../img/icons/select-arrow.svg);
  background-repeat: no-repeat;
  background-position: 101% center;
}
@media (max-width: 768px) {
  .filter-panel__sort {
    height: 32px;
    width: 190px;
    font-size: 14px;
    background-size: 17%;
  }
}
.filter-panel__view {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  background: #f0f0ef;
  border: 2px solid #dadada;
}
.filter-panel__view::after {
  content: "";
  height: 100%;
  width: 2px;
  background: #dadada;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .filter-panel__view {
    display: none;
  }
}
.filter-panel__view-link {
  width: 32px;
  height: 32px;
  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;
}
.filter-panel__view-link svg {
  fill: #9A9A98;
}
.filter-panel__view-link--active svg {
  fill: #0CB6A6;
}

.filter-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.filter-category__list {
  border-bottom: 1px solid rgba(154, 154, 152, 0.4);
  padding-bottom: 16px;
}
.filter-category__list:has(.filter-properties__list.radio) .filter-category__top {
  display: none;
}
.filter-category__list:has(.filter-properties__list.radio) .filter-category__description {
  margin-top: 0 !important;
}
.filter-category__list.open .filter-category__top .filter-category__icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.filter-category__list.open .filter-category__description {
  margin-top: 10px;
  grid-template-rows: 1fr;
  border-bottom: unset;
}
.filter-category__list:last-of-type {
  padding-bottom: 0;
  border: none;
}
.filter-category__list:last-of-type .filter-category__description {
  margin-top: 0;
}
.filter-category__list:last-of-type .filter-category__description.open {
  margin-top: 10px;
}
.filter-category__list:last-of-type .filter-category__description.open .filter-properties {
  padding-bottom: 0;
}
.filter-category__list:last-of-type.open .filter-category__description {
  margin-top: 10px;
}
.filter-category__list:last-of-type.open .filter-category__description .filter-properties {
  padding-bottom: 0;
}
.filter-category__top {
  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;
  cursor: pointer;
}
.filter-category__top span {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
}
.filter-category__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.filter-category__description {
  margin-top: 10px;
  gap: 20px;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 0;
}
.filter-category__row {
  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;
}
.filter-category__row span {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
}
.filter-category__more {
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #0CB6A6;
  cursor: pointer;
}

.range {
  margin-top: 24px;
}
.range__slider {
  height: 2px;
  position: relative;
  background-color: #A3A3A1;
}
.range__selected {
  height: 100%;
  left: 0;
  right: 0;
  position: absolute;
  background-color: #0CB6A6;
}
.range__input {
  position: relative;
}
.range__input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -4px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.range__input input::-webkit-slider-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #000;
  pointer-events: auto;
  -webkit-appearance: none;
  cursor: pointer;
}
.range__input input::-moz-range-thumb {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: #000;
  pointer-events: auto;
  -moz-appearance: none;
}
.range__price {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.range__price-input {
  position: relative;
  max-width: 100%;
}
.range__price-text {
  position: absolute;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 400;
  font-size: 16px;
}
.range__price-currency {
  position: absolute;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-weight: 400;
  font-size: 16px;
}
.range__price label {
  margin-right: 5px;
}
.range__price input {
  border: 1px solid #a3a3a1;
  padding: 8px 30px;
  width: 100%;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.pagination-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.pagination-list__item:first-child {
  margin-right: 16px;
}
@media (max-width: 768px) {
  .pagination-list__item:first-child {
    margin-right: 2px;
  }
}
.pagination-list__item:last-child {
  margin-left: 16px;
}
@media (max-width: 768px) {
  .pagination-list__item:last-child {
    margin-left: 2px;
  }
}
.pagination-list__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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 2px solid #dadada;
  background: #f0f0ef;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
.pagination-list__link--active {
  border: 2px solid #0CB6A6;
}
.pagination-list__prev, .pagination-list__next {
  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;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 36px;
  height: 36px;
}
.pagination-list__prev.disabled svg, .pagination-list__next.disabled svg {
  fill: #B3B3B3;
}
.pagination-list__prev svg, .pagination-list__next svg {
  fill: #0CB6A6;
}
.pagination-list__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.filter-properties {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 0;
}
.filter-properties__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.side-menu {
  border: 1px solid rgba(154, 154, 152, 0.26);
  border-radius: 30px;
  background: #f0f0ef;
  padding: 29px 21px;
}
@media (max-width: 480px) {
  .side-menu {
    padding: 25px 18px;
  }
}
.side-menu__top {
  margin-bottom: 27px;
}
@media (max-width: 992px) {
  .side-menu__top {
    margin-bottom: 18px;
  }
}
.side-menu__top-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #323232;
}
@media (max-width: 480px) {
  .side-menu__top-title {
    font-size: 20px;
  }
}
.side-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.side-menu__item {
  padding: 10px 0;
  border-bottom: 1px solid rgba(154, 154, 152, 0.4);
}
.side-menu__item-top {
  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;
}
.side-menu__item-link {
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
.side-menu__item-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.side-menu__item-icon {
  fill: #9A9A98;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.side-menu__item.open .side-menu__dropdown {
  margin-top: 10px;
  grid-template-rows: 1fr;
}
.side-menu__item.open .side-menu__item-link {
  color: #0CB6A6;
}
.side-menu__item.open .side-menu__item-icon {
  fill: #0CB6A6;
  rotate: 180deg;
}
.side-menu__dropdown {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.side-menu__subsection {
  min-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.side-menu__subsection-link {
  display: block;
  padding: 6px 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  color: #323232;
}
@media (max-width: 480px) {
  .side-menu__subsection-link {
    padding: 6px 0;
  }
}

.catalog-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 18px 32px;
  height: 100%;
  border: 1px solid #d1d1d0;
  border-radius: 12px;
  background: #f0f0ef;
}
.catalog-card__img {
  height: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.catalog-card__img img {
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0px 12px 27px rgba(0, 0, 0, 0.36));
          filter: drop-shadow(0px 12px 27px rgba(0, 0, 0, 0.36));
}
.catalog-card__description {
  margin-top: 10px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.catalog-card__name {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 20px;
  line-height: 130%;
  color: #323232;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog-card__name:hover {
  color: #0CB6A6;
}
.catalog-card__price {
  -webkit-margin-before: auto;
          margin-block-start: auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
.catalog-card__btn {
  margin-top: 14px;
  padding: 9px;
  width: 100%;
  border-radius: 14px;
  background: #0CB6A6;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #F8F8F8;
}
.catalog-card__more {
  margin-top: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #9a9a98;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.catalog-card__more:hover {
  color: #0CB6A6;
}

.catalog-list__wrapper {
  display: grid;
}
.catalog-list__wrapper--col {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
}
@media (max-width: 1248px) {
  .catalog-list__wrapper--col {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
  }
}
.catalog-list__wrapper--row {
  grid-template-columns: 1fr;
  gap: 18px;
}
.catalog-list__item {
  container: card/inline-size;
}
.catalog-list__item .products-card {
  padding: 8px 24px 28px 24px;
}
@media (max-width: 768px) {
  .catalog-list__item .products-card {
    padding: 8px 10px 28px 8px;
  }
}

.certificate {
  position: relative;
  z-index: 2;
}
.certificate__wrapper {
  margin-top: 26px;
}
.certificate__subtitle {
  font-weight: 700;
  font-size: 20px;
  line-height: 128%;
  color: #323232;
}
@media (max-width: 768px) {
  .certificate__subtitle {
    font-size: 18px;
  }
}
.certificate__list {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.certificate__item {
  position: relative;
  padding-left: 34px;
}
.certificate__item::before {
  content: "";
  background: #0CB6A6;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  position: absolute;
  left: 13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.certificate__text {
  font-weight: 600;
  font-size: 20px;
  line-height: 135%;
  color: #323232;
}
@media (max-width: 768px) {
  .certificate__text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .certificate__text {
    font-size: 16px;
  }
}
.certificate__inner {
  margin-top: 26px;
  border: 1px solid rgba(248, 248, 248, 0.52);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.47);
  padding: 28px 30px;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 50px auto 50px;
  gap: 30px;
}
@media (max-width: 600px) {
  .certificate__inner {
    padding: 28px 16px;
    gap: 24px;
  }
}
@media (max-width: 375px) {
  .certificate__inner {
    gap: 8px;
  }
}

.swiper-certificate {
  width: 100%;
}
@media (max-width: 480px) {
  .swiper-certificate-v2 {
    grid-column: span 2;
  }
}
.swiper-certificate__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swiper-certificate__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.swiper-certificate__btn {
  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: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #0CB6A6;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .swiper-certificate__btn {
    width: 40px;
    height: 40px;
  }
}
.swiper-certificate__btn svg {
  fill: #0CB6A6;
}
.swiper-certificate__btn.swiper-button-disabled {
  border: 1px solid #9a9a98;
}
.swiper-certificate__btn.swiper-button-disabled svg {
  fill: #9A9A98;
}
.swiper-certificate__btn:not(.swiper-button-disabled):hover {
  background: rgba(12, 182, 166, 0.39);
}
.swiper-certificate__btn:not(.swiper-button-disabled):hover svg {
  fill: #0CB6A6;
}

.news__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  row-gap: 34px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
@media (max-width: 768px) {
  .news__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
    max-width: 628px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .news__wrapper {
    max-width: 300px;
  }
}
.news__bottom {
  margin-top: 28px;
}

.news-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 992px) {
  .news-page__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-page__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30%;
}
@media (max-width: 992px) {
  .news-page__left {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}
.news-page__left-group {
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 992px) {
  .news-page__left-group {
    margin-top: 0;
  }
}
.news-page__right {
  max-width: 862px;
  width: 100%;
}
@media (max-width: 992px) {
  .news-page__right {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .news-page__inner {
    margin-top: 16px;
  }
}
.news-page__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #323232;
}
@media (max-width: 992px) {
  .news-page__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .news-page__title {
    font-size: 24px;
  }
}
.news-page__date {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
@media (max-width: 480px) {
  .news-page__date {
    margin-top: 16px;
  }
}
.news-page__date-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  font-variant: small-caps;
  color: #9a9a98;
}
@media (max-width: 992px) {
  .news-page__date-text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .news-page__date-text {
    font-size: 16px;
  }
}
.news-page__content {
  margin-top: 28px;
}
@media (max-width: 480px) {
  .news-page__content {
    margin-top: 16px;
  }
}
.news-page__content p {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  color: #323232;
}
@media (max-width: 992px) {
  .news-page__content p {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .news-page__content p {
    font-size: 16px;
  }
}
.news-page__content p:not(:first-child) {
  margin-top: 32px;
}
@media (max-width: 480px) {
  .news-page__content p:not(:first-child) {
    margin-top: 24px;
  }
}
.news-page__slider {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 50px auto 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}
.news-page__slider-groups {
  display: contents;
}
@media (max-width: 480px) {
  .news-page__slider-groups {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 480px) {
  .news-page__slider {
    grid-template-columns: 1fr;
  }
}
.news-page .swiper-news-gallery-btn-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.news-page .swiper-news-gallery-btn-next {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
.news-page__back {
  margin-top: 45px;
}
@media (max-width: 480px) {
  .news-page__back {
    margin-top: 32px;
  }
}
.news-page__back-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: #9a9a98;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.news-page__back-link:hover {
  color: #0CB6A6;
}
.news-page__back-link:hover svg {
  fill: #0CB6A6;
  -webkit-transform: translateX(-4px);
          transform: translateX(-4px);
}
.news-page__back-link svg {
  fill: #9A9A98;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.news-page__bottom {
  margin-top: 56px;
}
@media (max-width: 992px) {
  .news-page__bottom {
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .news-page__bottom {
    margin-top: 32px;
  }
}

.swiper-button {
  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: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #0CB6A6;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 480px) {
  .swiper-button {
    width: 40px;
    height: 40px;
  }
}
.swiper-button svg {
  fill: #0CB6A6;
}
.swiper-button.swiper-button-disabled {
  border: 1px solid #9a9a98 !important;
}
.swiper-button.swiper-button-disabled svg {
  fill: #9A9A98 !important;
}
.swiper-button:not(.swiper-button-disabled):hover {
  background: rgba(12, 182, 166, 0.39);
}
.swiper-button:not(.swiper-button-disabled):hover svg {
  fill: #0CB6A6;
}

.swiper-news-gallery {
  width: 100%;
  max-width: 100%;
  max-height: 100vh;
  min-height: 0;
  min-width: 0;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 480px) {
  .swiper-news-gallery {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.swiper-news-gallery__slide-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swiper-news-gallery__slide-img {
  border-radius: 15px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-read-also__slide {
  height: auto;
}
.swiper-read-also__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.swiper-read-also__item-date {
  font-weight: 500;
  font-size: 12px;
  line-height: 300%;
  color: #0CB6A6;
}
.swiper-read-also__item-name {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 16px;
  line-height: 144%;
  letter-spacing: -0.01em;
  color: #323232;
}
.swiper-read-also__item-link {
  -webkit-margin-before: auto;
          margin-block-start: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 16px;
  color: #323232;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.swiper-read-also__item-link:hover {
  color: #0CB6A6;
}
.swiper-read-also__item-link:hover svg {
  fill: #0CB6A6;
  -webkit-transform: translate(2px, -2px);
          transform: translate(2px, -2px);
}
.swiper-read-also__item-link svg {
  fill: #323232;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.read-also__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.read-also__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.read-also__wrapper {
  margin-top: 24px;
}
@media (max-width: 480px) {
  .read-also__wrapper {
    margin-top: 12px;
  }
}

.projects__top {
  padding: 38px 64px;
  border: 1px solid rgba(248, 248, 248, 0.52);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.47);
}
@media (max-width: 992px) {
  .projects__top {
    padding: 28px 32px;
  }
}
@media (max-width: 480px) {
  .projects__top {
    padding: 24px 11px;
  }
}
.projects__list {
  margin-top: 12px;
}
.projects__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 141%;
  color: #323232;
}
@media (max-width: 992px) {
  .projects__text {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .projects__text {
    font-size: 16px;
  }
}
.projects__wrapper {
  margin-top: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
@media (max-width: 600px) {
  .projects__wrapper {
    margin-top: 50px;
  }
}

.projects-detail {
  border: 1px solid rgba(183, 183, 183, 0.23);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(183, 183, 183, 0.17);
  padding: 26px;
}
@media (max-width: 480px) {
  .projects-detail {
    padding: 9px 7px 20px;
  }
}
.projects-detail__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 992px) {
  .projects-detail__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 600px) {
  .projects-detail__wrapper {
    gap: 16px;
  }
}
.projects-detail__left {
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 470px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 992px) {
  .projects-detail__left {
    display: grid;
    grid-template-columns: 50px auto 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 36px;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .projects-detail__left {
    grid-template-columns: unset;
    gap: 0;
  }
}
.projects-detail__group {
  margin-top: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
@media (max-width: 992px) {
  .projects-detail__group {
    display: contents;
  }
}
@media (max-width: 600px) {
  .projects-detail__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.projects-detail__description {
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}
@media (max-width: 992px) {
  .projects-detail__description {
    width: 100%;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .projects-detail__description {
    gap: 10px;
  }
}
.projects-detail__name {
  font-weight: 600;
  font-size: 32px;
  line-height: 141%;
  color: #323232;
}
@media (max-width: 992px) {
  .projects-detail__name {
    font-size: 30px;
  }
}
@media (max-width: 600px) {
  .projects-detail__name {
    font-size: 20px;
  }
}
.projects-detail__text {
  font-weight: 600;
  font-size: 20px;
  line-height: 141%;
  color: #323232;
}
@media (max-width: 992px) {
  .projects-detail__text {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .projects-detail__text {
    font-size: 16px;
  }
}
.projects-detail .swiper-projects-btn-prev {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.projects-detail .swiper-projects-btn-next {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.projects-detail .swiper-projects-fill {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #F8F8F8;
  border: none;
  z-index: 2;
}
@media (max-width: 992px) {
  .projects-detail .swiper-projects-fill {
    position: relative;
    top: 0;
    -webkit-transform: none;
            transform: none;
    background: transparent;
    border: 1px solid #0CB6A6;
  }
}
.projects-detail .swiper-projects-fill.swiper-projects-btn-prev {
  left: 18px;
}
@media (max-width: 992px) {
  .projects-detail .swiper-projects-fill.swiper-projects-btn-prev {
    left: 0;
  }
}
.projects-detail .swiper-projects-fill.swiper-projects-btn-next {
  right: 18px;
}
@media (max-width: 992px) {
  .projects-detail .swiper-projects-fill.swiper-projects-btn-next {
    right: 0;
  }
}
.projects-detail .swiper-projects-fill.swiper-button-disabled {
  opacity: 0.7;
}

@media (max-width: 992px) {
  .swiper-projects {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    min-height: 0;
    min-width: 0;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (max-width: 600px) {
  .swiper-projects {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.swiper-projects__img {
  border-radius: 30px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .swiper-projects__img {
    max-height: 400px;
  }
}
@media (max-width: 480px) {
  .swiper-projects__img {
    border-radius: 21px;
  }
}

.list li {
  position: relative;
  padding-left: 32px;
}
@media (max-width: 600px) {
  .list li {
    padding-left: 24px;
  }
}
.list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 13px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0CB6A6;
}
@media (max-width: 600px) {
  .list li::before {
    top: 7px;
    left: 9px;
  }
}

.product-detail__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
@media (max-width: 992px) {
  .product-detail__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    border: 1px solid rgba(248, 248, 248, 0.52);
    border-radius: 30px;
    -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
    background: rgba(248, 248, 248, 0.47);
    padding: 34px 20px;
  }
}
@media (max-width: 600px) {
  .product-detail__wrapper {
    gap: 25px;
  }
}
@media (max-width: 375px) {
  .product-detail__wrapper {
    padding: 34px 12px;
    gap: 16px;
  }
}
.product-detail__slider {
  width: 43%;
  min-width: 470px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 50px 16px;
  border: 1px solid rgba(248, 248, 248, 0.52);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: rgba(248, 248, 248, 0.47);
  display: grid;
  grid-template-columns: 50px auto 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}
@media (max-width: 992px) {
  .product-detail__slider {
    width: 100%;
    border: none;
    border-radius: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
    padding: 0;
    gap: 14px;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .product-detail__slider {
    padding: 34px 14px;
    gap: 4px;
    border: 1px solid rgba(248, 248, 248, 0.52);
    border-radius: 30px;
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    background: rgba(248, 248, 248, 0.47);
  }
}
.product-detail__slider-wrapper {
  width: 100%;
  max-width: 100%;
  max-height: 100vh;
  min-height: 0;
  min-width: 0;
}
@media (max-width: 992px) {
  .product-detail__slider-wrapper {
    padding: 50px 20px;
    border: 1px solid rgba(248, 248, 248, 0.52);
    border-radius: 30px;
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
    background: rgba(248, 248, 248, 0.47);
  }
}
@media (max-width: 600px) {
  .product-detail__slider-wrapper {
    border: none;
    border-radius: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
    padding: 0;
  }
}
.product-detail__info {
  width: 57%;
  padding: 40px 38px;
  border: 1px solid rgba(248, 248, 248, 0.52);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: rgba(248, 248, 248, 0.47);
  container: product-info/inline-size;
}
@container product-info (max-width: 450px) {
  .product-detail__info .product-hits__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
@media (max-width: 992px) {
  .product-detail__info {
    width: 100%;
    border: none;
    border-radius: 0;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    background: transparent;
    padding: 0 40px;
  }
}
@media (max-width: 600px) {
  .product-detail__info {
    padding: 0;
  }
}
.product-detail__info-name {
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #323232;
}
@media (max-width: 1248px) {
  .product-detail__info-name {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .product-detail__info-name--desktop {
    display: none;
  }
}
.product-detail__info-name--mobile {
  display: none;
}
@media (max-width: 992px) {
  .product-detail__info-name--mobile {
    display: block;
  }
}
@media (max-width: 600px) {
  .product-detail__info-name--mobile {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .product-detail__info-name--mobile {
    font-size: 20px;
  }
}
@media (max-width: 375px) {
  .product-detail__info-name--mobile {
    font-size: 18px;
  }
}
.product-detail__info-bottom {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 600px) {
  .product-detail__info-bottom {
    margin-top: 25px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 16px;
  }
}
.product-detail__info-price {
  font-weight: 700;
  font-size: 24px;
  line-height: 120%;
  color: #323232;
}
@media (max-width: 600px) {
  .product-detail__info-price {
    font-size: 20px;
  }
}
.product-detail__info-btn {
  padding: 15px 34px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #F8F8F8;
  position: relative;
  background: transparent;
  overflow: hidden;
}
@media (max-width: 600px) {
  .product-detail__info-btn {
    font-size: 16px;
    padding: 13px 32px;
  }
}
.product-detail__info-btn::before {
  content: "";
  position: absolute;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #0cb6a6), to(#0cb6a6));
  background: linear-gradient(90deg, #0cb6a6 4.34%, #0cb6a6 100%);
}
.product-detail__info-btn::after {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #055049), to(#0cb6a6));
  background: linear-gradient(90deg, #055049 4.34%, #0cb6a6 100%);
}
.product-detail__info-btn:hover::before {
  opacity: 0;
}
.product-detail__info-btn:hover::after {
  opacity: 1;
}

.swiper-product__slide {
  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;
}
.swiper-product__slide-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swiper-product__slide-img {
  max-height: 340px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  max-width: 100%;
}

.product-hits {
  margin-top: 16px;
  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: 992px) {
  .product-hits {
    margin-top: 0;
  }
}
.product-hits__item {
  border-radius: 10px;
  padding: 10px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-hits__item:nth-of-type(even) {
  background: rgba(154, 154, 152, 0.22);
}
.product-hits__item-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #323232;
}
@media (max-width: 600px) {
  .product-hits__item-text {
    font-size: 16px;
  }
}
.product-hits__item-value {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: right;
  color: #323232;
}
@media (max-width: 600px) {
  .product-hits__item-value {
    font-size: 16px;
  }
}

.characteristics__inner {
  margin-top: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #323232;
}
@media (max-width: 992px) {
  .characteristics__inner {
    margin-top: 18px;
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .characteristics__inner {
    margin-top: 0;
    font-size: 16px;
  }
}
.characteristics__inner h3 {
  font-weight: 600;
}
.characteristics__inner td {
  text-align: center;
}
.characteristics__inner ol {
  list-style-position: inside;
  list-style: none;
}
.characteristics__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 130%;
  text-transform: none;
}
@media (max-width: 992px) {
  .characteristics__title {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .characteristics__title {
    font-size: 20px;
  }
}
.characteristics__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.characteristics__list-item {
  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;
  gap: 12px;
  border-radius: 10px;
  padding: 15px;
}
.characteristics__list-item:nth-of-type(even) {
  background: rgba(154, 154, 152, 0.22);
}
@media (max-width: 600px) {
  .characteristics__list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 6px;
  }
}
.characteristics__list-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 130%;
  color: #323232;
  width: 57%;
}
@media (max-width: 992px) {
  .characteristics__list-text {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .characteristics__list-text {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .characteristics__list-text {
    font-size: 16px;
  }
}
.characteristics__list-value {
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
  text-align: right;
  color: #323232;
  max-width: 500px;
}
@media (max-width: 992px) {
  .characteristics__list-value {
    font-size: 18px;
  }
}
@media (max-width: 600px) {
  .characteristics__list-value {
    max-width: 100%;
    text-align: left;
  }
}
@media (max-width: 480px) {
  .characteristics__list-value {
    font-size: 16px;
  }
}

.gallery {
  position: relative;
  z-index: 2;
}
.gallery__wrapper {
  margin-top: 38px;
  border: 1px solid rgba(248, 248, 248, 0.52);
  border-radius: 30px;
  padding: 35px 40px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.47);
}
@media (max-width: 768px) {
  .gallery__wrapper {
    padding: 27px 12px;
  }
}
.gallery__bottom {
  margin-top: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}

.swiper-gallery__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .product-similar {
    max-width: 576px;
    margin: 0 auto;
  }
}
@media (max-width: 600px) {
  .product-similar {
    max-width: 275px;
  }
}

.swiper-similar__slide {
  height: auto !important;
}
.swiper-similar__btns {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}

.project-block__wrapper {
  margin-top: 38px;
}
@media (max-width: 768px) {
  .project-block__wrapper {
    margin-top: 28px;
  }
}
@media (max-width: 480px) {
  .project-block__wrapper {
    margin-top: 18px;
  }
}
.project-block__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.swiper-project-block__btns {
  margin-top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 14px;
}
@media (max-width: 992px) {
  .swiper-project-block__btns--desktop {
    display: none;
  }
}
.swiper-project-block__btns--mobile {
  display: none;
}
@media (max-width: 992px) {
  .swiper-project-block__btns--mobile {
    margin-top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.swiper-project-block__slide {
  -webkit-transition: all 1s;
  transition: all 1s;
}

.map-website__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #323232;
}
@media (max-width: 768px) {
  .map-website__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .map-website__title {
    font-size: 24px;
  }
}
.map-website__subtitle {
  font-weight: 700 !important;
  font-size: 20px !important;
  line-height: 130% !important;
  text-decoration: none !important;
  color: #323232;
}
.map-website__wrapper {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .map-website__wrapper {
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .map-website__wrapper {
    margin-top: 30px;
  }
}
.map-website__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.map-website__list li:first-child:has(.map-website__subtitle) {
  padding-left: 0;
}
.map-website__list li:first-child:has(.map-website__subtitle)::before {
  content: none;
}
@media (max-width: 768px) {
  .map-website__list {
    gap: 8px;
  }
}
.map-website__list a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  text-decoration: underline;
  color: #323232;
}
@media (max-width: 375px) {
  .map-website__list a {
    font-size: 14px;
  }
}
.map-website__list li:has(ul) > a {
  font-weight: 700;
}

.error__wrapper {
  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;
}
@media (max-width: 600px) {
  .error__wrapper {
    padding: 0px 8px;
  }
}
.error__inner {
  max-width: 540px;
  padding: 20px 25px;
  border: 1px solid rgba(248, 248, 248, 0.45);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(13.5px);
          backdrop-filter: blur(13.5px);
  background: rgba(248, 248, 248, 0.37);
  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 (max-width: 600px) {
  .error__inner {
    padding: 20px 14px 16px;
  }
}
.error__num {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 610px;
  text-align: center;
  color: rgba(12, 182, 166, 0.53);
  pointer-events: none;
}
@media (max-width: 1280px) {
  .error__num {
    font-size: 480px;
  }
}
@media (max-width: 1024px) {
  .error__num {
    font-size: 360px;
    -webkit-transform: translate(-50%, -76%);
            transform: translate(-50%, -76%);
  }
}
@media (max-width: 768px) {
  .error__num {
    font-size: 280px;
  }
}
@media (max-width: 600px) {
  .error__num {
    font-size: 160px;
    -webkit-transform: translate(-50%, -102%);
            transform: translate(-50%, -102%);
  }
}
@media (max-width: 480px) {
  .error__num {
    font-size: 96px;
    -webkit-transform: translate(-50%, -145%);
            transform: translate(-50%, -145%);
  }
}
@media (max-width: 375px) {
  .error__num {
    -webkit-transform: translate(-50%, -153%);
            transform: translate(-50%, -153%);
  }
}
.error__title {
  font-weight: 700;
  font-size: 32px;
  color: #323232;
  text-align: center;
}
@media (max-width: 600px) {
  .error__title {
    font-size: 24px;
  }
}
.error__text {
  margin-top: 12px;
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  color: #323232;
}
@media (max-width: 600px) {
  .error__text {
    margin-top: 24px;
    font-size: 16px;
  }
}
.error__link {
  margin-top: 26px;
  border-radius: 30px;
  padding: 15px 60px;
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  color: #F8F8F8;
  position: relative;
  background: transparent;
  overflow: hidden;
}
@media (max-width: 600px) {
  .error__link {
    font-size: 16px;
  }
}
.error__link::before {
  content: "";
  position: absolute;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #0cb6a6), to(#0cb6a6));
  background: linear-gradient(90deg, #0cb6a6 4.34%, #0cb6a6 100%);
}
.error__link::after {
  content: "";
  opacity: 0;
  -webkit-transition: opacity 0.35s ease-in-out;
  transition: opacity 0.35s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: -webkit-gradient(linear, left top, right top, color-stop(4.34%, #055049), to(#0cb6a6));
  background: linear-gradient(90deg, #055049 4.34%, #0cb6a6 100%);
}
.error__link:hover::before {
  opacity: 0;
}
.error__link:hover::after {
  opacity: 1;
}

.top-bg {
  position: absolute;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 5%;
  background-image: url(../img/bg/banner-bg.png);
  pointer-events: none;
  width: 100%;
}
.top-bg--catalog {
  height: 420px;
}
@media (max-width: 992px) {
  .top-bg--catalog {
    height: 386px;
  }
}
@media (max-width: 480px) {
  .top-bg--catalog {
    height: 286px;
  }
}
.top-bg--news {
  height: 450px;
}
@media (max-width: 992px) {
  .top-bg--news {
    height: 386px;
  }
}
@media (max-width: 480px) {
  .top-bg--news {
    height: 286px;
  }
}
.top-bg--contacts {
  height: 620px;
}
@media (max-width: 992px) {
  .top-bg--contacts {
    height: 564px;
  }
}
@media (max-width: 768px) {
  .top-bg--contacts {
    height: 680px;
  }
}
@media (max-width: 480px) {
  .top-bg--contacts {
    height: 590px;
  }
}
.top-bg--services {
  height: 450px;
}
@media (max-width: 992px) {
  .top-bg--services {
    height: 564px;
  }
}
@media (max-width: 480px) {
  .top-bg--services {
    height: 590px;
  }
}
.top-bg--projects {
  height: 860px;
}
@media (max-width: 992px) {
  .top-bg--projects {
    height: 960px;
  }
}
@media (max-width: 480px) {
  .top-bg--projects {
    height: 980px;
  }
}
.top-bg--card {
  height: 770px;
}
@media (max-width: 992px) {
  .top-bg--card {
    height: 1280px;
  }
}
@media (max-width: 480px) {
  .top-bg--card {
    height: 1100px;
  }
}
.top-bg--map {
  height: 450px;
}
@media (max-width: 992px) {
  .top-bg--map {
    height: 315px;
  }
}
@media (max-width: 480px) {
  .top-bg--map {
    height: 286px;
  }
}
.top-bg--customers {
  height: 896px;
}
@media (max-width: 992px) {
  .top-bg--customers {
    height: 1126px;
  }
}
@media (max-width: 480px) {
  .top-bg--customers {
    height: 986px;
  }
}
.top-bg--about {
  height: 900px;
}
@media (max-width: 992px) {
  .top-bg--about {
    height: 840px;
  }
}
@media (max-width: 480px) {
  .top-bg--about {
    height: 650px;
  }
}
.top-bg::before, .top-bg::after {
  content: "";
  position: absolute;
  left: 0;
  pointer-events: none;
  height: 300px;
  width: 100%;
}
.top-bg::before {
  width: 550px;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.8)), color-stop(55%, rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 55%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 1248px) {
  .top-bg::before {
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (max-width: 768px) {
  .top-bg::before {
    width: 100%;
  }
}
.top-bg::after {
  bottom: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(255, 255, 255)), color-stop(50%, rgba(255, 255, 255, 0.6)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
}

.customers-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}
@media (max-width: 992px) {
  .customers-page__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 480px) {
  .customers-page__wrapper {
    gap: 20px;
  }
}
.customers-page__side {
  width: 236px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 992px) {
  .customers-page__side {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}
@media (max-width: 375px) {
  .customers-page__side {
    width: 100%;
  }
}
.customers-page__container {
  width: 100%;
}
.customers-page__inner {
  max-height: 410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 46px;
}
@media (max-width: 1440px) {
  .customers-page__inner {
    max-height: 510px;
  }
}
@media (max-width: 992px) {
  .customers-page__inner {
    gap: 25px;
  }
}
@media (max-width: 700px) {
  .customers-page__inner {
    max-height: 600px;
  }
}
@media (max-width: 600px) {
  .customers-page__inner {
    max-height: 700px;
  }
}
@media (max-width: 480px) {
  .customers-page__inner {
    max-height: 600px;
  }
}
@media (max-width: 375px) {
  .customers-page__inner {
    max-height: 680px;
  }
}

.customers-menu {
  border: 1px solid rgba(248, 248, 248, 0.3);
  border-radius: 30px;
  background: rgba(248, 248, 248, 0.41);
  padding: 26px 22px;
}
@media (max-width: 992px) {
  .customers-menu {
    padding: 24px 22px;
  }
}
.customers-menu__list {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
  -webkit-transform: none !important;
          transform: none !important;
}
.customers-menu__item {
  margin: 0 !important;
  height: auto !important;
  width: auto !important;
  border-radius: unset !important;
  background: transparent !important;
  opacity: 1 !important;
  border-bottom: 1px solid rgba(154, 154, 152, 0.6) !important;
}
.customers-menu__item:first-child .customers-menu__text {
  padding-top: 0 !important;
}
.customers-menu__item:last-child {
  border-bottom: none !important;
}
.customers-menu__item:last-child .customers-menu__text {
  padding-bottom: 0 !important;
}
.customers-menu__item.swiper-pagination-bullet-active .customers-menu__text {
  color: #0CB6A6 !important;
}
.customers-menu__text {
  display: block;
  padding: 11px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 130%;
  color: #9a9a98;
}
@media (max-width: 992px) {
  .customers-menu__text {
    padding: 10px 0;
  }
}
@media (max-width: 480px) {
  .customers-menu__text {
    padding: 8px 0;
  }
}

.info-block__title {
  font-weight: 700;
  font-size: 32px;
  color: #323232;
}
@media (max-width: 480px) {
  .info-block__title {
    font-size: 20px;
  }
}
.info-block__slider {
  margin-top: 24px;
  max-width: 894px;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 50px auto 50px;
  gap: 20px;
}
@media (max-width: 480px) {
  .info-block__slider .swiper-certificate-btn-prev {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-left: auto;
  }
  .info-block__slider .swiper-certificate-btn-next {
    grid-column: 2/3;
  }
}
@media (max-width: 700px) {
  .info-block__slider {
    max-width: 450px;
    margin: 24px auto;
  }
}
@media (max-width: 480px) {
  .info-block__slider {
    max-width: 300px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.info-block__inner {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.info-block__list {
  counter-reset: item;
}
.info-block__item {
  padding-left: 28px;
  position: relative;
}
.info-block__item::before {
  counter-increment: item;
  content: counter(item) ".";
  position: absolute;
  left: 6px;
  font-weight: 500;
  font-size: 20px;
  line-height: 157%;
  color: #323232;
}
@media (max-width: 992px) {
  .info-block__item::before {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .info-block__item::before {
    font-size: 16px;
  }
}
.info-block__text {
  font-weight: 500;
  font-size: 20px;
  line-height: 157%;
  color: #323232;
}
@media (max-width: 992px) {
  .info-block__text {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .info-block__text {
    font-size: 16px;
  }
}
.info-block__link {
  font-weight: 500;
  font-size: 20px;
  line-height: 157%;
  color: #0CB6A6;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (max-width: 992px) {
  .info-block__link {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .info-block__link {
    font-size: 16px;
  }
}
.info-block__link:hover {
  color: #0a9e8f;
}

.modal-form__body {
  height: 410px;
  max-width: 650px;
  width: 100%;
}
@media (max-width: 670px) {
  .modal-form__body {
    max-width: 98vw;
  }
}
.modal-form__wrapper {
  padding: 36px 28px;
  height: 100%;
}
@media (max-width: 375px) {
  .modal-form__wrapper {
    padding: 36px 12px;
  }
}
.modal-form__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 20px;
  right: 24px;
}
@media (max-width: 480px) {
  .modal-form__close {
    width: 12px;
    top: 24px;
    right: 24px;
  }
}

.modal-form-block {
  height: 100%;
  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;
}
.modal-form-block__title {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #323232;
}
@media (max-width: 480px) {
  .modal-form-block__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.modal-form-block__wrapper {
  max-width: 400px;
  width: 100%;
}

.modal-success__body {
  max-width: 715px;
  width: 100%;
}
@media (max-width: 768px) {
  .modal-success__body {
    width: min(92%, 715px);
  }
}
.modal-success__wrapper {
  padding: 80px 60px;
}
@media (max-width: 768px) {
  .modal-success__wrapper {
    border-radius: 10px;
    padding: 110px 50px;
  }
}
@media (max-width: 375px) {
  .modal-success__wrapper {
    padding: 110px 30px;
  }
}
.modal-success__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 20px;
  right: 24px;
}
@media (max-width: 480px) {
  .modal-success__close {
    width: 12px;
    top: 24px;
    right: 24px;
  }
}

.modal-success-block {
  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;
}
.modal-success-block__wrapper {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .modal-success-block__wrapper {
    margin-top: 30px;
  }
}
.modal-success-block__title {
  font-weight: 600;
  font-size: 30px;
  line-height: 133%;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #323232;
}
@media (max-width: 480px) {
  .modal-success-block__title {
    font-size: 22px;
  }
}
.modal-success-block__text {
  margin-top: 24px;
  font-weight: 500;
  font-size: 18px;
  line-height: 142%;
  text-align: center;
  color: #323232;
}
@media (max-width: 768px) {
  .modal-success-block__text {
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  .modal-success-block__text {
    font-size: 14px;
  }
}

.consult-form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
@media (max-width: 480px) {
  .consult-form__wrapper {
    gap: 16px;
  }
}
.consult-form__input {
  border: 1px solid #9a9a98;
  border-radius: 12px;
  padding: 12px 18px;
  background: #f8f8f8;
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.consult-form__input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.consult-form__input::-moz-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.consult-form__input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.consult-form__input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.consult-form__input::placeholder {
  font-weight: 500;
  font-size: 18px;
  color: rgba(0, 0, 0, 0.5);
}
.consult-form__bottom {
  margin-top: 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 480px) {
  .consult-form__bottom {
    margin-top: 26px;
    gap: 20px;
  }
}
@media (max-width: 375px) {
  .consult-form__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.consult-form__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.consult-form__btn:hover .consult-form__btn-icon {
  background: transparent;
  border: 1px solid #0CB6A6;
}
.consult-form__btn:hover .consult-form__btn-icon svg {
  fill: #0CB6A6;
  -webkit-transform: translate(3px, -3px);
          transform: translate(3px, -3px);
}
.consult-form__btn-icon {
  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: 55px;
  height: 55px;
  border-radius: 50%;
  background: #0CB6A6;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.consult-form__btn-icon svg {
  fill: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.consult-form__btn-text {
  font-weight: 800;
  font-size: 16px;
  color: #323232;
}
.consult-form__confirm {
  max-width: 220px;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  color: #9a9a98;
}
@media (max-width: 375px) {
  .consult-form__confirm {
    max-width: 100%;
  }
}

.simplebar-scrollbar::before {
  background-color: #0CB6A6 !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
}
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1 !important;
}

.simplebar-vertical.simplebar-track__subsection {
  right: -8px !important;
  width: 5px !important;
  background: #DADADA !important;
  border-radius: 5px !important;
}

.simplebar-horizontal.simplebar-track {
  height: 5px !important;
}
.simplebar-horizontal.simplebar-track__tabs {
  background: rgba(248, 248, 248, 0.75) !important;
  border-radius: 5px !important;
}

.geography__title {
  text-wrap-style: balance;
}
@media (max-width: 480px) {
  .geography__title {
    font-size: 22px;
  }
}
.geography__subtitle {
  font-weight: 700;
  font-size: 24px;
  line-height: 107%;
  text-transform: uppercase;
  text-align: center;
  color: #323232;
}
@media (max-width: 768px) {
  .geography__subtitle {
    margin-top: 24px;
    font-size: 20px;
  }
}
@media (max-width: 600px) {
  .geography__subtitle {
    font-size: 18px;
  }
}

.geography-delivery {
  margin: 30px auto 0;
  max-width: 780px;
}
.geography-delivery__title {
  font-weight: 600;
  font-size: 24px;
  line-height: 267%;
  text-align: center;
  color: #323232;
}
@media (max-width: 1024px) {
  .geography-delivery__title {
    font-size: 20px;
    line-height: 195%;
  }
}
.geography-delivery__wrapper {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1024px) {
  .geography-delivery__wrapper {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .geography-delivery__wrapper {
    gap: 20px;
  }
}
@media (max-width: 600px) {
  .geography-delivery__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
}
.geography-delivery__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.geography-delivery__icon {
  width: 70px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .geography-delivery__icon {
    width: 48px;
  }
}
.geography-delivery__icon img {
  -o-object-fit: contain;
     object-fit: contain;
}
.geography-delivery__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: #323232;
}
@media (max-width: 1024px) {
  .geography-delivery__name {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .geography-delivery__name {
    font-size: 16px;
  }
}

.about-block__title {
  padding-left: calc((100vw - 1248px) / 2);
}
@media (max-width: 1248px) {
  .about-block__title {
    padding-left: 24px;
  }
}
@media (max-width: 768px) {
  .about-block__title {
    padding-left: 16px;
  }
}
.about-block__wrapper {
  margin-top: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  padding-left: calc((100vw - 1248px) / 2);
}
@media (max-width: 1248px) {
  .about-block__wrapper {
    padding-left: 24px;
  }
}
@media (max-width: 1024px) {
  .about-block__wrapper {
    margin-top: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
@media (max-width: 768px) {
  .about-block__wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }
}
@media (max-width: 600px) {
  .about-block__wrapper {
    margin-top: 44px;
  }
}
.about-block__img {
  width: 53%;
}
@media (max-width: 1024px) {
  .about-block__img {
    margin-bottom: 40px;
    width: 100%;
    max-width: 720px;
    z-index: 1;
  }
}
@media (max-width: 768px) {
  .about-block__img {
    margin-bottom: 20px;
  }
}
.about-block__description {
  width: 45%;
}
@media (max-width: 1024px) {
  .about-block__description {
    width: 100%;
    max-width: 670px;
  }
}
.about-block__description-wrapper {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(183, 183, 183, 0.21);
  border-radius: 20px 0 0 20px;
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  background: rgba(154, 154, 152, 0.16);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 1024px) {
  .about-block__description-wrapper {
    border-radius: 20px;
    background: rgba(248, 248, 248, 0.21);
    padding: 42px 36px;
  }
}
@media (max-width: 600px) {
  .about-block__description-wrapper {
    padding: 40px 16px 50px;
  }
}
.about-block__description-text {
  max-width: 475px;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.01em;
  color: #323232;
}
@media (max-width: 1024px) {
  .about-block__description-text {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .about-block__description-text {
    font-size: 16px;
  }
}
.about-block__bottom {
  margin-top: 32px;
}

.about-advantages__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 50px;
}
@media (max-width: 1024px) {
  .about-advantages__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .about-advantages__wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 275px;
    margin: 0 auto;
  }
}
.about-advantages__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.about-advantages__item-top {
  border-bottom: 2px solid #323232;
}
.about-advantages__item-title {
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #0CB6A6;
}
.about-advantages__item-title span {
  font-size: 64px;
}
.about-advantages__item-text {
  margin-top: 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #323232;
}

.swiper-customers {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  min-width: 0;
}
.swiper-customers__slide {
  -webkit-transition: all 1s;
  transition: all 1s;
  border: 1px solid rgba(248, 248, 248, 0.52);
  border-radius: 30px;
  padding: 30px 36px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.47);
}
@media (max-width: 992px) {
  .swiper-customers__slide {
    padding: 33px;
  }
}
@media (max-width: 480px) {
  .swiper-customers__slide {
    padding: 28px 20px;
  }
}
@media (max-width: 375px) {
  .swiper-customers__slide {
    padding: 28px 10px;
  }
}

.custom-checkbox {
  display: block;
  margin: 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
}
.custom-checkbox input[type=checkbox] {
  position: absolute;
  z-index: -1;
  opacity: 0;
  display: block;
  width: 0;
  height: 0;
}
.custom-checkbox input[type=checkbox]:disabled + span {
  color: #666;
  cursor: default;
}
.custom-checkbox input[type=checkbox]:disabled + span::before {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.6;
}
.custom-checkbox input[type=checkbox]:checked + span:before {
  background-image: url(../img/icons/checkbox.svg);
  background-repeat: no-repeat;
  background-position: 50%;
}
.custom-checkbox input[type=checkbox]:not(:checked) + span {
  color: #9A9A98;
}
.custom-checkbox span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
  line-height: 22px !important;
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  color: #323232;
}
@media (max-width: 1024px) {
  .custom-checkbox span {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .custom-checkbox span {
    font-size: 12px;
  }
}
.custom-checkbox span:hover::before {
  -webkit-filter: brightness(110%);
          filter: brightness(110%);
}
.custom-checkbox span:active::before {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
}
.custom-checkbox span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #A3A3A1;
}

.custom-radio input[type=radio] {
  display: none;
}
.custom-radio input[type=radio]:checked + label:before {
  background: url(../img/icons/radio-2.png) 0 0 no-repeat;
}
.custom-radio input[type=radio]:disabled + label:before {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
.custom-radio label {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin-right: 0;
  line-height: 20px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.custom-radio label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  bottom: 1px;
  background: url(../img/icons/radio-1.png) 0 0 no-repeat;
}
.custom-radio label:hover::before {
  -webkit-filter: brightness(120%);
          filter: brightness(120%);
}

.toggle {
  display: inline-block;
}
.toggle input[type=radio] {
  display: none;
}
.toggle input[type=radio]:checked + label {
  border-color: #0CB6A6;
}
.toggle input[type=radio]:disabled + label {
  cursor: not-allowed;
}
.toggle label {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  border: 1px solid rgb(232, 232, 232);
  border-radius: 12px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.toggle label:hover {
  border-color: #0CB6A6;
}
.toggle--1 label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 11px;
}
@media (max-width: 480px) {
  .toggle--1 label {
    font-size: 12px;
    padding: 8px 10px;
  }
}

.accordion__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.accordion__bottom {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.accordion__bottom.open {
  margin-top: 20px;
  grid-template-rows: 1fr;
}
@media (max-width: 768px) {
  .accordion__bottom.open {
    margin-top: 12px;
  }
}
.accordion__title {
  font-weight: 600;
  font-size: 28px;
  line-height: 130%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .accordion__title {
    font-size: 19px;
  }
}
.accordion__text {
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  min-height: 0;
}
@media (max-width: 768px) {
  .accordion__text {
    font-size: 12px;
  }
}

.accordion-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.accordion-list__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  pointer-events: none;
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .accordion-list__btn {
    width: 24px;
    height: 24px;
  }
}
.accordion-list__btn.open {
  background-color: #0CB6A6;
}
.accordion-list__btn.open span:nth-of-type(2) {
  opacity: 0;
}
.accordion-list__btn span {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 50px;
}
.accordion-list__btn span:nth-of-type(1) {
  width: 20px;
  height: 2px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media (max-width: 768px) {
  .accordion-list__btn span:nth-of-type(1) {
    width: 14px;
  }
}
.accordion-list__btn span:nth-of-type(2) {
  width: 2px;
  height: 20px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
@media (max-width: 768px) {
  .accordion-list__btn span:nth-of-type(2) {
    height: 14px;
  }
}

.tabs {
  position: relative;
}
.tabs__top {
  height: 90px;
  overflow-x: auto;
  padding-bottom: 24px;
}
@media (max-width: 992px) {
  .tabs__top {
    height: 78px;
  }
}
.tabs__list {
  width: 1248px;
  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;
  position: relative;
  border: 1px solid rgba(248, 248, 248, 0.52);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.47);
}
@media (max-width: 992px) {
  .tabs__list {
    width: 1180px;
  }
}
@media (max-width: 768px) {
  .tabs__list {
    width: 1000px;
  }
}
.tabs--type-2 .tabs__list {
  background: #f0f0ef;
  border: 1px solid rgba(183, 183, 183, 0.55);
}
.tabs--type-2 .tabs__target.active .tabs__target-title {
  color: #fff;
}
.tabs--type-2 .tabs__slider {
  background: #0CB6A6;
}
.tabs--type-2 .tabs__panel {
  background: #f0f0ef;
  border: 1px solid rgba(183, 183, 183, 0.55);
}
.tabs--char .tabs__panel {
  padding: 36px;
}
@media (max-width: 992px) {
  .tabs--char .tabs__panel {
    padding: 32px 23px;
  }
}
@media (max-width: 480px) {
  .tabs--char .tabs__panel {
    padding: 32px 4px;
  }
}
.tabs--wide .tabs__list {
  width: 100%;
}
.tabs--wide .tabs__panels {
  margin-top: 0;
}
.tabs__slider {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.72);
  border: 1px solid rgba(248, 248, 248, 0.52);
  border-radius: 30px;
  z-index: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.tabs__target {
  height: 100%;
  display: block;
  cursor: pointer;
  padding: 22px;
  border-radius: 30px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  z-index: 1;
  position: relative;
  color: #7c828d;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.tabs__target.active .tabs__target-title {
  color: #0CB6A6;
  font-weight: 700;
}
@media (max-width: 992px) {
  .tabs__target {
    padding: 16px;
  }
}
@media (max-width: 768px) {
  .tabs__target {
    padding: 14px;
  }
}
.tabs__target-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #323232;
}
@media (max-width: 768px) {
  .tabs__target-title {
    font-size: 14px;
  }
}
.tabs__target:hover {
  color: #0CB6A6;
}
.tabs__panels {
  margin-top: 30px;
}
@media (max-width: 480px) {
  .tabs__panels {
    margin-top: 20px;
  }
}
.tabs__panel {
  display: none;
  height: 100%;
  padding: 40px;
  border: 1px solid rgba(248, 248, 248, 0.52);
  border-radius: 30px;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  background: rgba(248, 248, 248, 0.47);
}
@media (max-width: 992px) {
  .tabs__panel {
    padding: 40px 32px 28px;
  }
}
@media (max-width: 480px) {
  .tabs__panel {
    padding: 20px 8px;
  }
}
.tabs__panel.show {
  display: block;
}