@charset "UTF-8";

* {
  padding: 0px;
  margin: 0px;
  border: 0px;
}

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

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  color: #000000;
  line-height: 1;
  font-family: "Nunito Sans";
  font-size: 1.25rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
button,
textarea {
  font-family: "Nunito Sans";
  font-size: inherit;
}

button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}

a {
  color: inherit;
}

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

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}
.adrphone {
    white-space: nowrap;
}

img {
  vertical-align: top;
}

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

:root {
  --font-family: "Nunito Sans", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Raleway", sans-serif;
  --section-title-font: 56px;
  --text-color-second: #161616;
  --text-color-third: #313131;
}

body {
  overflow-x: hidden;
  background: #f6fafd;
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

.wrapper {
  min-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;
  overflow: hidden;
}

.wrapper > main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.wrapper > * {
  min-width: 0;
}

/*
(i) Стили будут применяться ко 
всем классам содержащим *__container
Например header__container, main__container и т.д.
Снипет (HTML): cnt
*/

.container {
  max-width: 105rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

[class*=__container] {
  max-width: 105rem;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 0 auto;
  padding: 0 0.9375rem;
}

.select {
  position: relative;
}

.select__body {
  position: relative;
}

.select__title {
  color: inherit;
  text-align: left;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  border-radius: 4px;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 1.875rem;
  padding: 0 0.9375rem;
  gap: 0.625rem;
}

.select__value > * {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__value:after {
  content: "";
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  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;
}

._select-open .select__value:after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select__value._select-pseudo-label::before {
  content: attr(data-pseudo-label);
  opacity: 0.5;
}

.select__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #000;
  position: absolute;
  top: 29px;
  border-radius: 0 0 4px 4px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border-top: 0;
  border: 1px solid #d9d9d9;
  border-top: 0;
  padding: 10px 0px 5px 0px;
}

.select__scroll {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
}

.select__option {
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 5px 15px;
  color: inherit;
}

.select__option._select-selected {
  background-color: #eee;
}

.select__row {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.select._select-open {
  z-index: 5;
}

._select-tag {
  cursor: pointer;
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
  pointer-events: none;
  z-index: 149;
}

.popup-show body::after {
  opacity: 1;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 30px 10px;
  -webkit-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
  pointer-events: none;
}

.popup_show {
  z-index: 150;
  visibility: visible;
  overflow: auto;
  pointer-events: auto;
}

.popup_show .popup__content {
  visibility: visible;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__wrapper {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__content {
  visibility: hidden;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  background-color: #eee;
  padding: 20px;
  width: 100%;
  max-width: 900px;
  border-radius: 20px;
}

.lock .popup__content {
  visibility: visible;
}

[class*=-ibg] {
  position: relative;
}

[class*=-ibg] img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

[class*=-ibg_contain] img {
  -o-object-fit: contain;
     object-fit: contain;
}

.btn {
  border-radius: 15px;
  color: white;
  padding: 12px 48px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  text-wrap: nowrap;
}

@supports (padding-top: clamp( 0.5rem , -2.75rem  +  4vw , 0.75rem )) {
  .btn {
    padding-top: clamp( 0.5rem , -2.75rem  +  4vw , 0.75rem );
  }
}

@supports not (padding-top: clamp( 0.5rem , -2.75rem  +  4vw , 0.75rem )) {
  .btn {
    padding-top: calc(0.5rem + 0.25 * (100vw - 81.25rem) / 6.25);
  }
}

@supports (padding-bottom: clamp( 0.5rem , -2.75rem  +  4vw , 0.75rem )) {
  .btn {
    padding-bottom: clamp( 0.5rem , -2.75rem  +  4vw , 0.75rem );
  }
}

@supports not (padding-bottom: clamp( 0.5rem , -2.75rem  +  4vw , 0.75rem )) {
  .btn {
    padding-bottom: calc(0.5rem + 0.25 * (100vw - 81.25rem) / 6.25);
  }
}

@supports (padding-left: clamp( 1.5rem , -18rem  +  24vw , 3rem )) {
  .btn {
    padding-left: clamp( 1.5rem , -18rem  +  24vw , 3rem );
  }
}

@supports not (padding-left: clamp( 1.5rem , -18rem  +  24vw , 3rem )) {
  .btn {
    padding-left: calc(1.5rem + 1.5 * (100vw - 81.25rem) / 6.25);
  }
}

@supports (padding-right: clamp( 1.5rem , -18rem  +  24vw , 3rem )) {
  .btn {
    padding-right: clamp( 1.5rem , -18rem  +  24vw , 3rem );
  }
}

@supports not (padding-right: clamp( 1.5rem , -18rem  +  24vw , 3rem )) {
  .btn {
    padding-right: calc(1.5rem + 1.5 * (100vw - 81.25rem) / 6.25);
  }
}

.btn_blue {
  background: #172da7;
}

.btn_blue:hover {
  background: rgb(45, 64, 173);
}

.select__select-box .select__title {
  background: none;
  border: none;
}

.select__select-box .select__options {
  z-index: 1;
}

.select__select-box .select {
  position: relative;
}

.select__select-box .select:after {
  position: absolute;
  content: "▼";
  height: 100%;
  font-size: 10px;
  border-radius: 0.25em;
  position: absolute;
  bottom: -20px;
  right: -10px;
  color: #525252;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  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;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.select__select-box .select._select-open:after {
  -webkit-transform: translateX(100%) rotate(180deg);
      -ms-transform: translateX(100%) rotate(180deg);
          transform: translateX(100%) rotate(180deg);
}

.select__select-box .select .select__option {
  display: block;
}

.select__select-box .select__body {
  position: relative;
}

.select__select-box .select__options {
  position: absolute;
  top: 110%;
  background-color: white;
  border-radius: 12px;
}

.section-title {
  font-size: var(--section-title-font);
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: #161616;
  margin-bottom: 44px;
}

.section-title_main {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 54px;
  letter-spacing: -0.02em;
  color: #161616;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.section-title_page {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 46px;
  letter-spacing: -0.02em;
  color: #161616;
}

.section__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 44px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.section__more {
  font-family: var(--second-family);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-align: right;
  color: #b7b7b7;
}

.wrapper:has(.header_move) {
  padding-top: 200px;
}

.header {
  padding: 32px 0 60px;
  position: relative;
  background: #f6fafd;
  z-index: 100;
  left: 0;
  right: 0;
}

.header.header_move {
  position: fixed;
  top: 0;
  padding: 12px 0;
}

.header.header_move .header__top {
  opacity: 0;
  height: 0;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.header.header_move .header__content {
  display: block;
}

.header__container {
  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;
}

@supports (gap: clamp( 1.875rem , -56.71875rem  +  62.5vw , 4.6875rem )) {
  .header__container {
    gap: clamp( 1.875rem , -56.71875rem  +  62.5vw , 4.6875rem );
  }
}

@supports not (gap: clamp( 1.875rem , -56.71875rem  +  62.5vw , 9.6875rem )) {
  .header__container {
    gap: calc(1.875rem + 7.8125 * (100vw - 93.75rem) / 12.5);
  }
}

.header__logo {
  max-height: 4.4375rem;
  width: 100%;
}

@supports (max-width: clamp( 10.625rem , -56.8125rem  +  83vw , 15.8125rem )) {
  .header__logo {
    max-width: clamp( 10.625rem , -56.8125rem  +  83vw , 15.8125rem );
  }
}

@supports not (max-width: clamp( 10.625rem , -56.8125rem  +  83vw , 15.8125rem )) {
  .header__logo {
    max-width: calc(10.625rem + 5.1875 * (100vw - 81.25rem) / 6.25);
  }
}

.header__logo img {
  max-width: 100%;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.header__top {
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

@supports (gap: clamp( 2rem , -28rem  +  30vw , 3.875rem )) {
  .header__top {
    gap: clamp( 2rem , -28rem  +  30vw , 1.875rem );
  }
}

@supports not (gap: clamp( 2rem , -28rem  +  30vw , 3.875rem )) {
  .header__top {
    gap: calc(2rem + 1.875 * (100vw - 100rem) / 6.25);
  }
}

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

@supports (gap: clamp( 2rem , -30rem  +  32vw , 4rem )) {
  .header__bottom {
    gap: clamp( 2rem , -30rem  +  32vw , 4rem );
  }
}

@supports not (gap: clamp( 2rem , -30rem  +  32vw , 4rem )) {
  .header__bottom {
    gap: calc(2rem + 2 * (100vw - 100rem) / 6.25);
  }
}

.header__callback {
  margin-left: auto;
}

.header-top__item {
  color: #525252;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@supports (gap: clamp( 0.5rem , -9.25rem  +  12vw , 1.25rem )) {
  .header-top__item {
    gap: clamp( 0.5rem , -9.25rem  +  12vw , 1.25rem );
  }
}

@supports not (gap: clamp( 0.5rem , -9.25rem  +  12vw , 1.25rem )) {
  .header-top__item {
    gap: calc(0.5rem + 0.75 * (100vw - 81.25rem) / 6.25);
  }
}

.header-top__phone {
  margin-left: auto;
  color: #525252;
  font-size: 24px;
  font-weight: 600;
  font-size: 26px;
  line-height: 92%;
  text-align: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.header-top__select-box .select {
  position: relative;
}

.header-top__select-box .select:after {
  position: absolute;
  content: "▼";
  height: 100%;
  font-size: 10px;
  border-radius: 0.25em;
  position: absolute;
  bottom: -20px;
  right: 0;
  -webkit-transform: initial;
      -ms-transform: initial;
          transform: initial;
  color: #525252;
  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;
  top: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header-top__select-box .select._select-open:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header-top__select-box .select .select__option {
  padding: 8px 16px;
}

.header-top__select-box .select__body {
  position: relative;
}

.header-top__select-box .select__options {
  position: absolute;
  top: 110%;
  background-color: white;
  border-radius: 12px;
}

.header-bottom__mobile-items {
  display: none;
}
.header_move .header-bottom__phone {
  display: block;
}
.header-bottom__phone {
  display: none;
}

.header-bottom__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@supports (gap: clamp( 2rem , -30rem  +  32vw , 4rem )) {
  .header-bottom__inner {
    gap: 28px;
  }
}

@supports not (gap: clamp( 2rem , -30rem  +  32vw , 4rem )) {
  .header-bottom__inner {
    gap: calc(2rem + 2 * (100vw - 100rem) / 6.25);
  }
}

.header-bottom__icon-menu {
  margin-left: auto;
}

.header-bottom__item {
  font-weight: 400;
  font-size: 18px;
  color: #000;
}

.header-bottom__item:hover {
  text-decoration: underline;
}

.header-bottom__select .select__options {
  top: calc(100% + 9px);
}

.header-bottom__select .select__option {
  padding: 8px 16px;
}

.header-bottom__select .select {
  border: 1px solid black;
  border-radius: 54px;
  padding: 6px 12px 6px 6px;
}

.header-bottom__select .select:after {
  position: absolute;
  content: "▼";
  color: black;
  right: 5px;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.header-bottom__select .select._select-open:after {
  -webkit-transform: translateX(-100%) rotate(180deg);
      -ms-transform: translateX(-100%) rotate(180deg);
          transform: translateX(-100%) rotate(180deg);
}

.icon-menu {
  display: none;
}

.footer__inner {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
  border-radius: 16px;
  padding: 60px 44px;
}

.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__logo {
  margin-bottom: 44px;
}

.footer__logo img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.footer__contacts-title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 18px;
  line-height: 130%;
  color: #282828;
  margin-bottom: 16px;
}

.footer__contacts{
    max-width: 50%;
}

.footer__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 18px;
  line-height: 130%;
  color: #282828;
}

.footer__contact img {
  width: 25px;
  height: 25px;
}

.footer__map {
  position: relative;
  max-width: 50%;
}

.footer__map img {
  max-width: 100%;
  height: auto;
}

.footer__copyright {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #696969;
  line-height: 130%;
}

.footer-products {
  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;
}

.footer-products__name {
  margin-bottom: 6px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #000;
}

.footer-products__item {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #696969;
}

.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: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer-menu__item {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #000;
}

.hero-main {
  margin-bottom: 6.1875rem;
}

.hero-main__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

.hero-main__images {
  max-width: 61%;
}

.hero-main__swiper {
  position: relative;
}

.hero-main__image {
  width: 100%;
}

.hero-main__image img {
  width: 100%;
  height: 609px;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero-main__pagination {
  position: absolute;
  bottom: 40px;
  z-index: 1;
  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;
  width: 100%;
  gap: 31px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.hero-main__pagination .swiper-pagination-bullet {
  display: block;
  width: 12px;
  height: 12px;
  background-color: #d5d5d5;
  border-radius: 50%;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  cursor: pointer;
}

.hero-main__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #172da7;
  -webkit-transform: scale(1.65);
      -ms-transform: scale(1.65);
          transform: scale(1.65);
}

.hero-main__btn {
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 17px;
  height: 25px;
}

.hero-main__btn_prev {
  left: 12px;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.hero-main__btn_next {
  right: 12px;
}

.hero-main__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.hero-main__item {
  border-radius: 16px;
  background: #fff;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
  justify-content: space-between;
  padding: 22px 22px 52px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  cursor: pointer;
}

.hero-main__item:hover {
  background: #172da7;
}

.hero-main__item:hover svg path {
  stroke: white;
}

.hero-main__item:hover .hero-main__text {
  color: white;
}

.hero-main__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #000;
}

.hero-main__image {
  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;
}

.hero-main__image svg path {
  stroke: #172da7;
}

.offers-list {
  margin-bottom: 60px;
}

.offers-list_small .offers-list__items {
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 392px;
  grid-template-rows: 392px;
}

.offers-list__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  -ms-grid-rows: 300px;
  grid-template-rows: 300px 300px;
  gap: 20px;
}

.offers-list__item {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.offers-list__item:hover .offers-list__icon {
  width: 100px;
}

.offers-list_page .offers-list__item:first-child .offers-list__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.offers-list__text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  border-radius: 16px 16px 50% 16px;
  clip-path: polygon(0 0, 100% 0, 100% 50%, 67% 100%, 25% 100%, 0 100%);
  padding: 30px 30px 16px 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #161616;
}

@supports (height: clamp( 5rem , -19.0625rem  +  27.5vw , 8.4375rem )) {
  .offers-list__text {
    height: clamp( 5rem , -19.0625rem  +  27.5vw , 5.4375rem );
  }
}

@supports not (height: clamp( 5rem , -19.0625rem  +  27.5vw , 8.4375rem )) {
  .offers-list__text {
    height: calc(5rem + 3.4375 * (100vw - 87.5rem) / 12.5);
  }
}

@supports (padding-top: clamp( 0.75rem , -7.125rem  +  9vw , 1.875rem )) {
  .offers-list__text {
    padding-top: clamp( 0.75rem , -7.125rem  +  9vw , 1.875rem );
  }
}

@supports not (padding-top: clamp( 0.75rem , -7.125rem  +  9vw , 1.875rem )) {
  .offers-list__text {
    padding-top: calc(0.75rem + 1.125 * (100vw - 87.5rem) / 12.5);
  }
}

@supports (padding-bottom: clamp( 0.75rem , -1rem  +  2vw , 1rem )) {
  .offers-list__text {
    padding-bottom: clamp( 0.75rem , -1rem  +  2vw , 1rem );
  }
}

@supports not (padding-bottom: clamp( 0.75rem , -1rem  +  2vw , 1rem )) {
  .offers-list__text {
    padding-bottom: calc(0.75rem + 0.25 * (100vw - 87.5rem) / 12.5);
  }
}

@supports (font-size: clamp( 1.25rem , -2.25rem  +  4vw , 1.75rem )) {
  .offers-list__text {
    font-size: clamp( 1.25rem , -2.25rem  +  4vw , 1.45rem );
  }
}

@supports not (font-size: clamp( 1.25rem , -2.25rem  +  4vw , 1.75rem )) {
  .offers-list__text {
    font-size: calc(1.25rem + 0.5 * (100vw - 87.5rem) / 12.5);
  }
}

.offers-list__image {
  width: 100%;
  height: 100%;
}

.offers-list__img {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: 100%;
  width: 100%;
}

.offers-list__icon {
  border-radius: 16px;
  width: 80px;
  height: 80px;
  background: #172da7;
  position: absolute;
  bottom: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

@supports (width: clamp( 3.75rem , -5rem  +  10vw , 5rem )) {
  .offers-list__icon {
    width: clamp( 3.75rem , -5rem  +  10vw , 5rem );
  }
}

@supports not (width: clamp( 3.75rem , -5rem  +  10vw , 5rem )) {
  .offers-list__icon {
    width: calc(3.75rem + 1.25 * (100vw - 87.5rem) / 12.5);
  }
}

@supports (height: clamp( 3.75rem , -5rem  +  10vw , 5rem )) {
  .offers-list__icon {
    height: clamp( 3.75rem , -5rem  +  10vw , 5rem );
  }
}

@supports not (height: clamp( 3.75rem , -5rem  +  10vw , 5rem )) {
  .offers-list__icon {
    height: calc(3.75rem + 1.25 * (100vw - 87.5rem) / 12.5);
  }
}

.offers-scroll {
  margin-bottom: 120px;
}

.offers-scroll__swiper {
  position: relative;
}

.offers-scroll .swiper-wrapper {
  padding-bottom: 32px;
}

.offers-scroll .swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: #e6e6e6;
}

.offers-scroll .swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: 50;
  height: 12px;
  width: 100%;
}

.offers-scroll .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.offers-scroll .swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: #172da7;
  border-radius: 10px;
  left: 0;
  top: 0;
}

.offers-scroll .swiper-scrollbar-cursor-drag {
  cursor: move;
}

.offers-scroll .swiper-scrollbar-lock {
  display: none;
}

.offers-scroll__item {
  height: 100%;
}

.offers-scroll__item:hover .offers-scroll__btn {
  background: #172da7;
}

.offers-scroll__item:hover .offers-scroll__btn svg path {
  stroke: white;
}
.element-detail .element-detail__content {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #313131;
}
.offers-scroll .swiper-initialized .swiper-slide {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-self: flex-end;
  justify-content: space-between;
  background: white;
}

.offers-scroll__top {
  width: 100%;
  text-align: center;
}

.offers-scroll__top img {
  max-width: 100%;
  height: 240px;
}

.offers-scroll__bottom {
  margin-top: -49px;
  position: relative;
  background: center/cover no-repeat url("../img/blocks-background/offers-scroll.svg");
  padding: 20px 40px 20px 20px;
  height: 190px;
  }

.offers-scroll__btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border-radius: 4px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

@supports (width: clamp( 2.25rem , -8.25rem  +  12vw , 3.75rem )) {
  .offers-scroll__btn {
    width: clamp( 2.25rem , -8.25rem  +  12vw , 3.75rem );
  }
}

@supports not (width: clamp( 2.25rem , -8.25rem  +  12vw , 3.75rem )) {
  .offers-scroll__btn {
    width: calc(2.25rem + 1.5 * (100vw - 87.5rem) / 12.5);
  }
}

@supports (height: clamp( 2.25rem , -8.25rem  +  12vw , 3.75rem )) {
  .offers-scroll__btn {
    height: clamp( 2.25rem , -8.25rem  +  12vw , 3.75rem );
  }
}

@supports not (height: clamp( 2.25rem , -8.25rem  +  12vw , 3.75rem )) {
  .offers-scroll__btn {
    height: calc(2.25rem + 1.5 * (100vw - 87.5rem) / 12.5);
  }
}
.swiper__arrows{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
}
.swiper__arrows div{
    cursor: pointer;
    z-index: 10;
}
.swiper__arrows div svg{
    cursor: pointer;
}
.offers-scroll__text {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 120%;
  max-width: 90%;
  letter-spacing: -0.02em;
  color: #161616;
  overflow: hidden;
      text-overflow: ellipsis;
      display: -moz-box;
      -moz-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      line-clamp: 4;
      box-orient: vertical;
}

@supports (font-size: clamp( 0.875rem , -0.5833333333rem  +  2.3333333333vw , 1.75rem )) {
  .offers-scroll__text {
    font-size: clamp( 0.875rem , -0.5833333333rem  +  2.3333333333vw , 1.75rem );
  }
}

@supports not (font-size: clamp( 0.875rem , -0.5833333333rem  +  2.3333333333vw , 1.75rem )) {
  .offers-scroll__text {
    font-size: calc(0.875rem + 0.875 * (100vw - 62.5rem) / 37.5);
  }
}

.about {
  margin-bottom: 120px;
}

.about__title {
  text-align: center;
}

.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about__certificates {
  width: 33%;
}

.about__content {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 65%;
  min-width: 0;
  gap: 16px;
}

.about__text {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: #313131;
  line-height: 1.1;
}

.about__images {
  width: 100%;
  position: relative;
  flex-grow: 1;
}

.about__images .swiper-wrapper {
  padding-bottom: 28px;
}

.about__images .swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: #e6e6e6;
  left: 0;
  right: 0;
  bottom: 0;
  height: 12px;
  position: absolute;
}

.about__images .swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 0;
  bottom: 3px;
  z-index: 50;
  height: 12px;
  width: 100%;
}

.about__images .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.about__images .swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: #172da7;
  border-radius: 10px;
  left: 0;
  top: 0;
}

.about__images .swiper-scrollbar-cursor-drag {
  cursor: move;
}

.about__images .swiper-scrollbar-lock {
  display: none;
}

.about__image {
  max-height: 450px;
}

.about__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.certificates__swiper {
  position: relative;
  height: 640px;
}

.certificates__slide {
  cursor: pointer;
}

.certificates__slide img {
  width: 100%;
  max-height: 641px;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-props__slide{
    display: flex;
    flex-direction: column;
}

.product-props__list{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-props__name{
    flex-grow: 1;
}


.certificates__tools {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: #172da7;
  height: 218px;
  clip-path: polygon(0 0, 80% 0, 100% 40%, 100% 100%, 49% 100%, 0 100%);
  padding-top: 35px;
  padding-left: 30px;
  padding-right: 60px;
  padding-bottom: 60px;
  pointer-events: none;
}

.certificates__loupe {
  position: absolute;
  right: 30px;
  bottom: 30px;
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  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;
  cursor: pointer;
}

.certificates__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #fff;
}

.certificates__pagination {
  position: absolute;
  left: 30px;
  bottom: 30px;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 50%;
  gap: 16px;
}

.certificates__pagination .swiper-pagination-bullet {
  border-radius: 100%;
  background: #d9d9d9;
  width: 10px;
  height: 10px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  cursor: pointer;
}

.certificates__pagination .swiper-pagination-bullet-active {
  background: white;
  -webkit-transform: scale(2);
      -ms-transform: scale(2);
          transform: scale(2);
}

.additional-services {
  margin-bottom: 120px;
}

.additional-services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.additional-services__item {
  min-width: calc(25% - 20px);
  position: relative;
  flex-basis: 33%;
}

.additional-services__item:hover .additional-services__btn {
  background: #172da7;
}

.additional-services__item:hover .additional-services__btn svg path {
  stroke: white;
}

.additional-services__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding-top: 34px;
  padding-left: 17px;
  padding-bottom: 33px;
  padding-right: 20px;
  font-family: var(--font-family);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #000;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 75% 100%, 25% 100%, 0 100%);
}

@supports (font-size: clamp( 1.25rem , -2.75rem  +  4vw , 1.5rem )) {
  .additional-services__header {
    font-size: clamp( 1.25rem , -2.75rem  +  4vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 1.25rem , -2.75rem  +  4vw , 1.5rem )) {
  .additional-services__header {
    font-size: calc(1.25rem + 0.25 * (100vw - 100rem) / 6.25);
  }
}

.additional-services__image img {
  width: 100%;
  height: auto;
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

.additional-services__btn {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  right: 0;
  bottom: 0;
}

.additional-services__btn svg path {
  stroke: #172da7;
}

.order-path {
  margin-bottom: 120px;
}

.order-path__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

.order-path__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 23px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.order-path__number {
  display: block;
}

.order-path__number:after {
  content: ". ";
}

.order-path__tab {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.3;
  max-width: 387px;
  position: relative;
  padding-left: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  cursor: pointer;
}

.order-path__tab:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: #b4b4b4;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.order-path__tab._tab-active:before {
  background: #172da7;
}

.order-path__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.order-path__subtitle {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 24px;
}

.order-path__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #313131;
}

.order-path__image {
  max-width: 556px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.order-path__image img {
  width: 100%;
  max-height: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.callback {
  margin-bottom: 120px;
}

.callback_second .callback__form {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.callback_second .callback__image {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-bottom: -40px;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.callback_second .callback__image img {
  max-width: 100%;
  height: auto;
}

.callback__inner {
  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;
  border-radius: 16px;
  padding: 40px;
  background: #172da7;
  gap: 140px;
}

.callback__title {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 32px;
}

.callback__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #fff;
}

.callback__wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  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;
  border-radius: 12px;
  padding: 40px 28px;
  background: #fff;
}

.callback__form {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  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;
  border-radius: 12px;
  padding: 40px 28px;
  background: #fff;
}

.callback__input {
  padding: 28px 20px;
  border-radius: 12px;
  background: #efefef;
}

.callback__checkbox {
  cursor: pointer;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.callback__checkbox input {
  display: none;
}

.callback__checkbox input:checked ~ .callback__checked {
  background: #172da7;
}

.callback__checkbox input:checked ~ .callback__checked svg {
  display: block;
}

.callback__checked {
  background: #efefef;
  border-radius: 4px;
  width: 25px;
  min-width: 25px;
  height: 25px;
  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;
}

.callback__checked svg {
  display: none;
}

.callback__submit {
  background: #030826;
  border-radius: 12px;
  padding: 24px 20px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #fff;
}

.news-list {
  margin-bottom: 120px;
}

.news-list__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 44px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news-list__more {
  font-family: var(--second-family);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-align: right;
  color: #b7b7b7;
}

.news-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

.news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d4d4d4;
}

.news-list__date {
  font-family: var(--second-family);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #b7b7b7;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

@supports (margin-right: clamp( 1.25rem , -88.75rem  +  90vw , 12.5rem )) {
  .news-list__date {
    margin-right: clamp( 1.25rem , -88.75rem  +  90vw , 12.5rem );
  }
}

@supports not (margin-right: clamp( 1.25rem , -88.75rem  +  90vw , 12.5rem )) {
  .news-list__date {
    margin-right: calc(1.25rem + 11.25 * (100vw - 100rem) / 12.5);
  }
}

@supports (font-size: clamp( 1.125rem , -3.375rem  +  6vw , 1.5rem )) {
  .news-list__date {
    font-size: clamp( 1.125rem , -3.375rem  +  6vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 1.125rem , -3.375rem  +  6vw , 1.5rem )) {
  .news-list__date {
    font-size: calc(1.125rem + 0.375 * (100vw - 75rem) / 6.25);
  }
}

.news-list__image {
  border-radius: 16px;
  max-height: 300px;
  max-width: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.news-list__image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-list__subtitle {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 20px;
}

.news-list__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #313131;
}

.news-list__details {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #172da7;
}

@supports (gap: clamp( 1.25rem , -167.5rem  +  180vw , 12.5rem )) {
  .news-list__details {
    gap: clamp( 1.25rem , -167.5rem  +  180vw , 12.5rem );
  }
}

@supports not (gap: clamp( 1.25rem , -167.5rem  +  180vw , 12.5rem )) {
  .news-list__details {
    gap: calc(1.25rem + 11.25 * (100vw - 93.75rem) / 6.25);
  }
}

.articles-list {
  margin-bottom: 120px;
}

.articles-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.articles-list__item {
  -ms-flex-preferred-size: 23%;
      flex-basis: 23%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.articles-list__image {
  margin-bottom: 12px;
}

.articles-list__image img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.articles-list__date {
  margin-bottom: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 90%;
  color: #b7b7b7;
}

.articles-list__name {
  -ms-flex-item-align: end;
      align-self: flex-end;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #000;
}

.services {
  margin-bottom: 120px;
}

.services__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.services__item {
  border-radius: 16px;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 49.5%;
      flex-basis: 49.5%;
}

.services__img img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.services__content {
  padding: 50px 40px;
  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;
  gap: 12px;
  background: #030826;
}

.services__icon {
  width: 65px;
  height: 65px;
}

.services__icon img {
  max-width: 100%;
  height: auto;
}

.services__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #fff;
  margin-top: auto;
}

.faq {
  margin-bottom: 120px;
}

.faq__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.faq__title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 20px;
  max-width: 700px;
}

.faq__info {
  border-radius: 16px;
  padding: 110px 20px;
  background: #fff;
  position: relative;
  max-width: 620px;
  padding-right: 210px;
}

.faq__subtitle {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 16px;
}

.faq__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #000;
  margin-bottom: 16px;
}

.faq__btn {
  background: #172da7;
  border-radius: 81px;
  padding: 12px 0px;
  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;
  width: 100%;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #fff;
}

.faq__image {
  position: absolute;
  right: 0;
  bottom: 0;
}

.faq__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
  flex-basis: 70%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.faq__item {
  border-radius: 16px;
  padding: 32px 40px;
  background: #fff;
  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;
  font-family: var(--second-family);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #000;
  cursor: pointer;
  line-height: 130%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

.faq__check {
  display: none;
}

.faq__check:checked ~ .faq__answer {
  display: block;
}

.faq__check:checked ~ .faq__question .faq__icon {
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}

.faq__question {
  width: 100%;
  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: 100px;
  cursor: pointer;
  font-weight: 500;
}

.faq__icon {
  width: 38px;
  height: 38px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

.faq__answer {
  display: none;
}

.product-list {
  margin-bottom: 120px;
}

.product-list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: 20px;
  -webkit-column-gap: 2%;
     -moz-column-gap: 2%;
          column-gap: 2%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.product-list__item {
  width: 32%;
  background-color: #fff;
  padding: 20px 20px 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.product-list__swipers {
  position: relative;
}

.product__slider-top {
  margin-bottom: 10px;
}

.product__slide-top {
  cursor: pointer;
  background: white;
}

.product__image-top {
  max-width: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
     height: 500px;
}
.product__wrapper-top{
    /* justify-content: center; */
}
.product__image-top_height{
  height: 200px;
}

.product__slider-thumbs {
  padding-bottom: 20px;
  margin-bottom: 10px;
  position: relative;
  height: 80px;
}

.product__slider-thumbs .product__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  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;
  gap: 16px;
  height: 4px;
}

.product__slider-thumbs .product__pagination .swiper-pagination-bullet {
  background: #e8e8e8;
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  height: 4px;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  cursor: pointer;
}

.product__slider-thumbs .product__pagination .swiper-pagination-bullet-active {
  background: #172da7;
}

.product__slide-bottom {
  cursor: pointer;
  opacity: 0.9;
  display: flex;
}

.product__slide-bottom.swiper-slide-thumb-active {
  opacity: 1;
}

.product__image-bottom {
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
     background: white;
}

.product__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #161616;
  margin-bottom: 16px;
  height: 120px;
}

.product__name a{
     overflow: hidden;
      text-overflow: ellipsis;
      display: -moz-box;
      -moz-box-orient: vertical;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      line-clamp: 4;
      box-orient: vertical;
      height: 115px;
}

.product__description {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #9d9d9d;
  margin-bottom: 16px;
}

.product__properties {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 28px;
}

.product__property {
  border-bottom: 1px solid #cfcfcf;
  padding: 12px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #000;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product__property-value {
  font-weight: 400;
}

.product__btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}

.product-detail {
  margin-bottom: 120px;
}

.product-detail__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}

.product-detail__left {
  width: 59%;
}

.product-detail__input {
  display: none;
}

.product-detail__input#product-detail__tab-1:checked ~ .product-detail__tabs [for=product-detail__tab-1] {
  background-color: #172da7;
  color: white;
}

.product-detail__input#product-detail__tab-2:checked ~ .product-detail__tabs [for=product-detail__tab-2] {
  background-color: #172da7;
  color: white;
}

.product-detail__tabs {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.product-detail__tab {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  background: #fff;
  border-radius: 16px;
  padding: 24px 0px;
  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;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  cursor: pointer;
}

.product-detail__input#product-detail__tab-2:checked ~ .product-detail__content .product-detail__description {
  display: block;
}

.product-detail__input#product-detail__tab-1:checked ~ .product-detail__content .product-detail__props {
      display: flex;
      min-width: 0;
      flex-grow: 1;
}

.product-detail__description {
  background-color: white;
  border-radius: 16px;
  padding: 50px 40px;
  display: none;
}

.product-detail__props {
  padding: 50px 00px;
  display: none;
}

.product-detail__right {
  width: 40%;
}

.product-detail__btn {
  cursor: pointer;
  position: absolute;
  z-index: 1;
  border-radius: 16px;
  background: #172da7;
  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;
}

@supports (width: clamp( 2.5rem , -1.25rem  +  5vw , 3.75rem )) {
  .product-detail__btn {
    width: clamp( 2.5rem , -1.25rem  +  5vw , 3.75rem );
  }
}

@supports not (width: clamp( 2.5rem , -1.25rem  +  5vw , 3.75rem )) {
  .product-detail__btn {
    width: calc(2.5rem + 1.25 * (100vw - 75rem) / 25);
  }
}

@supports (height: clamp( 2.5rem , -1.25rem  +  5vw , 3.75rem )) {
  .product-detail__btn {
    height: clamp( 2.5rem , -1.25rem  +  5vw , 3.75rem );
  }
}

@supports not (height: clamp( 2.5rem , -1.25rem  +  5vw , 3.75rem )) {
  .product-detail__btn {
    height: calc(2.5rem + 1.25 * (100vw - 75rem) / 25);
  }
}

@supports (bottom: clamp( 0.9375rem , -2.8125rem  +  5vw , 2.1875rem )) {
  .product-detail__btn {
    bottom: clamp( 0.9375rem , -2.8125rem  +  5vw , 2.1875rem );
  }
}

@supports not (bottom: clamp( 0.9375rem , -2.8125rem  +  5vw , 2.1875rem )) {
  .product-detail__btn {
    bottom: calc(0.9375rem + 1.25 * (100vw - 75rem) / 25);
  }
}

.product-detail__btn_prev {
  left: 0;
  bottom: 2%;
}

.product-detail__btn_next {
  right: 0;
  bottom: 2%;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.product-list__item.product_single {
  width: 100%;
  background: none;
  padding-top: 0;
  padding: 0;
}

.product_single {
  margin-bottom: 35px;
  position: relative;
}

.product_single .product__slider-thumbs {
  margin-bottom: 0;
  padding-bottom: 0;
  max-width: 85%;
    margin: 0 auto;
    min-width: 85%;
}

.product-desc__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}

.product-desc__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: 20px;
  padding-left: 20px;
}

.product-desc__list li {
  list-style: disc;
}

.product-desc__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.product-desc__item_row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

.product-desc__item_row .product-desc__title {
  margin-bottom: 40px;
}

.product-desc__title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: #000;
}

.product-desc__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  overflow-wrap: anywhere;
  color: #313131;
}

.product-desc__image_half {
  width: 45%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.product-desc__image img {
  max-width: 100%;
  height: auto;
}

.product-props__title {
     border: 1px solid #989898;
    padding: 18px 10px;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 24px;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000;
    height: 62px;
}

.product-props__table {
  margin-bottom: 44px;
}

.product-props__prop {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-props__prop:nth-child(odd) {
  background: #efefef;
}

.product-props__prop:nth-child(even) {
  background: white;
}

.product-props__prop:nth-child(3n) .product-props__name {
  border-right: none;
}

.product-props__prop:nth-child(3n) .product-props__value {
  border-left: none;
}

.product-props__name {
  width: 100%;
  border: 1px solid #989898;
  padding: 18px 10px;
  min-height: 58px;
  height: 66px;
}

.product-props__value {
  border: 1px solid #989898;
  padding: 18px 10px;
  width: 50%;
  white-space: nowrap;
  overflow-x: auto;
}

.product-detail__right {
  position: relative;
}

.product-info__wrapper {
  position: sticky;
  position: -webkit-sticky;
  top: 12%;
  padding-right: 20px;
}

.product-info__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 22px;
}

.product-info__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.product-info__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.product-info__actions > div {
  cursor: pointer;
}

.product-info__name {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 22px;
  height: 112px;
}

@supports (font-size: clamp( 1.5rem , -3.3rem  +  4.8vw , 2.25rem )) {
  .product-info__name {
    font-size: clamp( 1.5rem , -3.3rem  +  4.8vw , 2.25rem );
  }
}

@supports not (font-size: clamp( 1.5rem , -3.3rem  +  4.8vw , 2.25rem )) {
  .product-info__name {
    font-size: calc(1.5rem + 0.75 * (100vw - 100rem) / 15.625);
  }
}

.product-info__properties {
  margin-bottom: 16px;
}

.product-info__property {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #cfcfcf;
  padding: 10px 0px;
}

.product-info__character {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #000;
}

.product-info__value {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  text-align: right;
  color: #000;
}

.product-info__all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #172da7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  cursor: pointer;
}

.product-info__btn {
  width: 100%;
  margin-bottom: 20px;
}

.product-info__bottom {
  display: block;
}

.product-info__faq-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.product-info__faq-item {
  background-color: white;
  border-radius: 16px;
  padding: 18px 20px;
  position: relative;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.product-info__faq-item:nth-child(2) {
  background: none;
  padding: initial;
}

.product-info__faq-item img {
  position: absolute;
  right: 10px;
  bottom: 20px;
}

.product-info__quest {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 12px;
}

.product-info__text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 135%;
  color: #000;
  margin-bottom: 12px;
  max-width: 166px;
}

.product-info__write {
  margin-bottom: 12px;
}

.product-info__number {
  max-width: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f6fafd;
  border-radius: 47px;
  padding: 9px 0px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 135%;
  text-align: center;
  color: #172da7;
}

.product-info__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;
}

.product-info__link {
  background: #fff;
  padding: 12px 24px;
  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;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 135%;
  text-align: center;
  color: #000;
}

.popup__content {
  background-color: white;
  border-radius: 16px;
  padding: 50px 40px;
  max-width: 800px;
}

.popup__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 64px;
}

.popup__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.02em;
  color: #000;
  margin-bottom: 28px;
}

@supports (font-size: clamp( 1.5rem , -0.1666666667rem  +  5.3333333333vw , 2.5rem )) {
  .popup__title {
    font-size: clamp( 1.5rem , -0.1666666667rem  +  5.3333333333vw , 2.5rem );
  }
}

@supports not (font-size: clamp( 1.5rem , -0.1666666667rem  +  5.3333333333vw , 2.5rem )) {
  .popup__title {
    font-size: calc(1.5rem + 1 * (100vw - 31.25rem) / 18.75);
  }
}

.popup__form {
  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;
}

.popup__input {
  background: #efefef;
  padding: 28px 20px;
  font-family: var(--second-family);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: black;
  border-radius: 12px;
}

@supports (font-size: clamp( 1rem , 0.1666666667rem  +  2.6666666667vw , 1.5rem )) {
  .popup__input {
    font-size: clamp( 1rem , 0.1666666667rem  +  2.6666666667vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 1rem , 0.1666666667rem  +  2.6666666667vw , 1.5rem )) {
  .popup__input {
    font-size: calc(1rem + 0.5 * (100vw - 31.25rem) / 18.75);
  }
}

.popup__input::-webkit-input-placeholder {
  color: #c3c3c3;
}

.popup__input::-moz-placeholder {
  color: #c3c3c3;
}

.popup__input:-ms-input-placeholder {
  color: #c3c3c3;
}

.popup__input::-ms-input-placeholder {
  color: #c3c3c3;
}

.popup__input::placeholder {
  color: #c3c3c3;
}

.popup__label {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  cursor: pointer;
  margin-bottom: 42px;
}

.popup__checkbox {
  display: none;
}

.popup__checkbox:checked ~ .popup__checked {
  background: #172da7;
}

.popup__checked {
  border-radius: 4px;
  width: 25px;
  height: 25px;
  background: #efefef;
  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;
}

.popup .popup__input-submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 20px;
  background: #030826;
  font-family: var(--second-family);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  border-radius: 12px;
  cursor: pointer;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
}

@supports (font-size: clamp( 1.125rem , 0.5rem  +  2vw , 1.5rem )) {
  .popup .popup__input-submit {
    font-size: clamp( 1.125rem , 0.5rem  +  2vw , 1.5rem );
  }
}

@supports not (font-size: clamp( 1.125rem , 0.5rem  +  2vw , 1.5rem )) {
  .popup .popup__input-submit {
    font-size: calc(1.125rem + 0.375 * (100vw - 31.25rem) / 18.75);
  }
}

.popup .popup__input-submit:hover {
  background: #060f42;
}

.popup__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px 20px;
  background: #030826;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #fff;
}

.popup__product-name {
  margin-bottom: 24px;
}

.element-detail {
  padding: 60px 0 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.element-detail__image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 40%;
}

.element-detail__image img {
  max-width: 100%;
  height: auto;
}

.element-detail__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 20px;
  line-height: 135%;
  color: #313131;
}

.element-detail__image {
  margin-bottom: 60px;
  max-width: 50%;
}

.element-detail__image img {
  max-width: 100%;
  height: auto;
}

.breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: black;
  flex-wrap: wrap;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  letter-spacing: -0.04em;
}

.breadcrumbs:last-child {
  margin-bottom: 20px;
}

.breadcrumbs__item:last-child {
  cursor: default;
  pointer-events: none;
  color: #b7b7b7;
}


.breadcrumbs__item:not(:first-child):before {
  content: " / ";
}

.plashka {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  height: 66px;
  background-color: #172da7;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 28px;
  border-radius: 16px 16px 0px 0px;
}

.plashka svg {
  width: 30px;
  height: 30px;
}

.plashka svg path {
  stroke: white;
}

.plashka img {
  max-width: 30px;
  height: auto;
}

.plashka__name {
  color: white;
  font-size: 14px;
}

.plashka__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: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
          animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
          animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }

  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }

  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}

.f-throwOutUp {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}

.f-zoomInUp {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
          animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
          animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@-webkit-keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }

  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}

.f-fadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}

.f-fadeFastIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
          animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}

.f-fadeSlowIn {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}

.f-crossfadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
          animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@-webkit-keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}

.f-slideIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

.f-classicIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@-webkit-keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}

@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}

@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}

@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}

:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-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;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  -webkit-box-shadow: var(--f-button-shadow);
          box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  -webkit-transition: var(--f-button-transition);
  transition: var(--f-button-transition);
}

.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  -webkit-box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
          box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  -webkit-transform: var(--f-button-transform);
      -ms-transform: var(--f-button-transform);
          transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
          filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev,
.f-carousel__nav .f-button.is-next,
.fancybox__nav .f-button.is-prev,
.fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev,
.is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next,
.is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,
.is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev,
.is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next,
.is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg,
.is-vertical .f-carousel__nav .f-button.is-next svg,
.is-vertical .fancybox__nav .f-button.is-prev svg,
.is-vertical .fancybox__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled,
.fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  -ms-touch-action: none;
      touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  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-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.fancybox__container::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe,
.fancybox__slide.has-video,
.fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating,
.fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty,
.fancybox__viewport:empty,
.fancybox__track:empty,
.fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__content [data-selectable],
.fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content,
.is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: white;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.fancybox__caption {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption,
.is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
          animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
          animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport),
.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
          animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
          animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content,
.has-map .fancybox__content,
.has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content,
.fancybox__container.is-compact .has-map .fancybox__content,
.fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content,
.has-pdf .fancybox__content,
.has-youtube .fancybox__content,
.has-vimeo .fancybox__content,
.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebeff2), to(#e2e8f0));
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

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

.f-thumbs__slide {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  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;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
          transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  -webkit-transition: -webkit-transform 0.33s ease;
  transition: -webkit-transform 0.33s ease;
  transition: transform 0.33s ease;
  transition: transform 0.33s ease, -webkit-transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  -webkit-transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  -webkit-filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
          filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  -webkit-animation: f-fadeIn 0.2s ease-out;
          animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  -webkit-transition: none !important;
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute,
.is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.fancybox__toolbar__column.is-left,
.fancybox__toolbar__column.is-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: flex;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.swiper {
  overflow: hidden;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-android .swiper-slide,
.swiper-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}
/*Для пагинации новостей и статей */
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    padding-bottom:1rem;
}
.page-item.disabled .page-link {
    color: #ccc;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background: #172da7;
    border-color: #007bff;
}
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #172da7;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
}
#success-mes,#error-mes{
    display:none;
}
#error-mes{
    color:tomato;
}
nav ul {
  display: flex;
  justify-content: space-between;
  padding: 5px 0 0 0;
  margin: 0;
}

nav ul li {
  margin: 15px 0 0 0;
  list-style: none;
  position: relative;
  padding: 0 0 15px 0;
}

nav ul li a {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  padding: 0 22px 0 0;
  position: relative;
  background: url("../img/arr-down.svg") no-repeat right center;
}

nav ul li.level2 a {
  color: #000;
}

nav ul li a:hover {
  color: #000;
  text-decoration:underline;
  background: url("../img/arr-down-active.svg") no-repeat right center;
}

nav ul li ul {
  display: none;
  position: absolute;
  border-radius: 20px;
  background: #fff;
  box-shadow: 5px 6px 16px 12px rgba(0, 0, 0, 0.06);
  top: 35px;
  left: -30px;
  padding: 10px 0 16px 30px;
  width: 260px;
  z-index: 2;
}

nav ul li ul li {
  margin: 7px 0 0 0px;
  padding: 0;
}

nav ul li ul li a {
  background: none;
}

nav ul li ul li a:hover {
  background: none;
  text-decoration:underline
}

nav ul li:hover ul {
  display: block;
}

nav ul li ul li ul {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s;
  position: absolute;
  border-radius: 20px;
  background: #fff;
  box-shadow: 5px 6px 16px 12px rgba(0, 0, 0, 0.06);
  top: 0px;
  left: 130px;
  padding: 10px 0 16px 30px;
  width: 260px;
  z-index: 2;
}

nav ul li ul li:hover ul {
  visibility: visible;
  opacity: 1;
}

.services__container .container {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    
}
.services__container .container > div:first-child {
    flex-shrink: 0;
}
.services__container .container img {
    max-width: 100%;
    height: auto;
}
.product-props__left{
    flex-basis: 46%;
    flex-grow: 1;
}
.product-props__right__slider{
    flex-basis: 43%;
    flex-grow: 1;
}
.product-detail__props{

}
.product-props__name:nth-child(odd){
    background: white;
}
.product-props__name:nth-child(even){
    background: #efefef;
}
.product-props__title{
    background: #efefef;
}

.popup__checkbox-box {
  margin-top: 8px;
  width: 20px;
  height: 20px;
  border: 1px solid #696969;
  border-radius: 5px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: content;
      -ms-flex-pack: content;
          justify-content: content;
}

.popup__checkbox-box svg {
  display: none;
}

.popup__checkbox:checked ~ .popup__checkbox-box svg {
    display: initial;
}

















