:root {
  --accent: #e30613;
  --green: #26b99a;
  --dark: #17233c;
  --dgray: #616161;
  --lpink: #f7e8e8;
  --beige: #c4a9a9;
  --hover: #FF0000;
  --white: #fff;
  --black: #000;
  --placeholder: #666;
  --fontsize: 16px;
  --lineheight: 1.3;
  --mainfont: "Exo2", sans-serif;
  --secfont: "Inter", sans-serif;
  --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --anim100: .10s ease-out;
  --anim150: .15s ease-out;
  --anim300: .3s ease-out;
}

body.overflow {
  overflow: hidden;
}
body.home {
  margin-top: 128px;
}
@media (max-width: 1023.98px) {
  body.home {
    margin-top: 168px;
  }
}
@media (max-width: 767.98px) {
  body.home {
    margin-top: 122px;
  }
}

.container.container-xl {
  width: 100%;
  max-width: 1416px;
  overflow: visible;
}
@media (max-width: 1023.98px) {
  .container.container-xl {
    padding: 0 48px;
  }
}
@media (max-width: 767.98px) {
  .container.container-xl {
    padding: 0 16px;
  }
}
.container.container-md {
  width: 100%;
  max-width: 1218px;
  overflow: visible;
}
@media (max-width: 1023.98px) {
  .container.container-md {
    padding: 0 48px;
  }
}
@media (max-width: 767.98px) {
  .container.container-md {
    padding: 0 16px;
  }
}

.swiper {
  opacity: 0;
  -webkit-transition: opacity var(--anim);
  transition: opacity var(--anim);
}
.swiper.swiper-initialized {
  opacity: 1;
}

.swiper-pagination {
  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: 15px;
  bottom: 0 !important;
}
@media (max-width: 767.98px) {
  .swiper-pagination {
    gap: 7px;
  }
}
.swiper-pagination .swiper-pagination-bullet {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 !important;
  opacity: 1;
  background: var(--white);
}
@media (max-width: 767.98px) {
  .swiper-pagination .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
  }
}
.swiper-pagination .swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  opacity: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--accent);
}
@media (max-width: 767.98px) {
  .swiper-pagination .swiper-pagination-bullet:before {
    width: 7px;
    height: 7px;
  }
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--white);
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
}

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

.ovh {
  overflow: hidden;
}

img.lazy {
  opacity: 0;
}

img:not(.initial) {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

img.initial,
img.loaded,
img.error {
  opacity: 1;
}

img:not([src]) {
  visibility: hidden;
}

a {
  -webkit-transition: color var(--anim150), background var(--anim150);
  transition: color var(--anim150), background var(--anim150);
}

[data-tabs-content] {
  display: none;
}
[data-tabs-content].open {
  display: block;
}

[data-tabs-target].active {
  pointer-events: none;
}

.section-h-head {
  margin-bottom: 25px;
}
@media (max-width: 767.98px) {
  .section-h-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }
}

.section-h-title {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.41667;
  color: var(--dark);
  text-transform: none;
}
@media (max-width: 1023.98px) {
  .section-h-title {
    font-size: 32px;
    line-height: 1.0625;
  }
}
@media (max-width: 767.98px) {
  .section-h-title {
    font-size: 20px;
  }
}

.section-h-desc {
  font-size: 12px;
  font-family: var(--mainfont);
  color: var(--beige);
  line-height: 1.334;
}
@media (max-width: 767.98px) {
  .section-h-desc {
    font-size: 14px;
    line-height: 1.25;
  }
}
.section-h-desc p {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 55px;
  padding: 3px 15px 5px;
  -webkit-transition: color var(--anim150), background var(--anim150);
  transition: color var(--anim150), background var(--anim150);
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  color: var(--white);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 15px;
  background: var(--accent);
}
.h-btn:hover {
  color: var(--white);
  background: var(--hover);
}
.h-btn_light {
  color: var(--dark);
  background: var(--lpink);
}
.h-btn_green {
  color: var(--white);
  background: var(--green);
}
.h-btn_bd {
  color: var(--dark);
  border: 2px solid var(--accent);
  background: none;
}
.h-btn_sm {
  height: 27px;
  padding: 2px 11px 5px;
  font-size: 12px;
  border-radius: 15px;
}

.bg-accent {
  background: var(--accent);
}

.bg-lpink {
  background: var(--lpink);
}

.h-stick {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 19px;
  padding: 2px 10px 5px;
  font-size: 12px;
  color: var(--dgray);
  text-align: center;
  border-radius: 6px;
  background: var(--white);
}
.h-stick_accent {
  font-weight: 600;
  color: var(--accent);
}
.h-stick_bg-accent {
  color: var(--white);
  background: var(--accent);
}

.custom-select {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 55px;
  padding: 0 10px 0 17px;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  border: 1px solid var(--accent);
  border-radius: 15px;
  background: none;
}
.custom-select.disable {
  pointer-events: none;
}
.custom-select.disable .ts-control:after {
  opacity: 0.1;
}
.custom-select.dropdown-active .ts-control:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.custom-select.dropdown-active .ts-dropdown {
  z-index: 5;
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1) translateY(0);
      -ms-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
}
.custom-select.focus::after {
  opacity: 1;
}
.custom-select.input-hidden .ts-control input {
  opacity: 0;
  visibility: hidden;
}
.custom-select.full:after {
  opacity: 1;
}
.custom-select .ts-control {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 50px 0 0 !important;
  font-size: inherit;
  line-height: 1;
  z-index: 1;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 0;
  border: none;
  background: none !important;
}
.custom-select .ts-control .item {
  margin-top: 16px;
  white-space: normal;
}
.custom-select .ts-control:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  z-index: -1;
  width: 47px;
  height: 40px;
  margin-top: -20px;
  border-radius: 12px;
  background-color: var(--lpink);
  background-image: url(../images/icons/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 13px;
}
.custom-select .ts-control input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0 !important;
  padding: inherit;
  cursor: pointer;
  font-size: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  outline: none !important;
  border: none;
  background: none;
}
.custom-select .ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  margin-top: 0;
  padding: 4px;
  font-size: 16px;
  line-height: 1.125;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: 50% 0;
      -ms-transform-origin: 50% 0;
          transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(19px);
      -ms-transform: scale(0.75) translateY(19px);
          transform: scale(0.75) translateY(19px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(58, 44, 27, 0.1);
  -webkit-box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08);
          box-shadow: 0 12px 16px -4px rgba(16, 24, 40, 0.08);
  background: var(--white);
}
@media (max-width: 1023.98px) {
  .custom-select .ts-dropdown {
    font-size: 14px;
  }
}
.custom-select .ts-dropdown-content {
  max-height: 282px;
  overflow: hidden auto;
}
.custom-select .ts-dropdown-content::-webkit-scrollbar {
  width: 2px;
}
.custom-select .ts-dropdown-content::-webkit-scrollbar-track {
  background: #fff;
}
.custom-select .ts-dropdown-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  border: none;
}
.custom-select .ts-dropdown .option {
  position: relative;
  padding: 16px 40px 16px 16px;
  cursor: pointer;
  -webkit-transition: background var(--anim300);
  transition: background var(--anim300);
  border-radius: 4px;
}
@media (max-width: 1023.98px) {
  .custom-select .ts-dropdown .option {
    padding: 12px 35px 12px 12px;
  }
}
.custom-select .ts-dropdown .option:hover, .custom-select .ts-dropdown .option.selected {
  color: var(--accent);
  background: var(--lpink);
}
.custom-select .ts-dropdown .option.active:not(.selected) {
  background: var(--white);
}
.custom-select .ts-dropdown .option.active:hover {
  color: var(--accent);
  background: rgba(247, 232, 232, 0.5);
}

.custom-select.ts-hidden-accessible {
  position: absolute !important;
  width: 0;
  height: 0;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: -2 !important;
}

.h-footer {
  padding: 56px 0 30px;
  background: var(--lpink);
}
.h-footer p {
  margin: 0;
  font-family: var(--mainfont);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
@media (max-width: 1023.98px) {
  .h-footer {
    padding: 32px 0;
  }
}
@media (max-width: 767.98px) {
  .h-footer {
    padding: 25px 0 60px;
  }
}
.h-footer-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(400px, 630px) 24px minmax(400px, 495px);
  grid-template-columns: minmax(400px, 630px) minmax(400px, 495px);
  grid-column-gap: 24px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 28px;
}
@media (max-width: 1023.98px) {
  .h-footer-top {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    padding-bottom: 56px;
  }
}
@media (max-width: 767.98px) {
  .h-footer-top {
    grid-column-gap: 37px;
    padding-bottom: 79px;
  }
}
@media (max-width: 374.98px) {
  .h-footer-top {
    grid-column-gap: 16px;
  }
}
.h-footer-top-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1023.98px) {
  .h-footer-top-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 55px;
    -ms-grid-row: 2;
    grid-row: 2/2;
    -ms-grid-column: 1;
    grid-column: 1/1;
  }
}
@media (max-width: 767.98px) {
  .h-footer-top-main {
    gap: 26px;
  }
}
.h-footer-top-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1023.98px) {
  .h-footer-top-side {
    -ms-grid-row: 2;
    grid-row: 2/2;
    -ms-grid-column: 2;
    grid-column: 2/2;
  }
}
@media (max-width: 767.98px) {
  .h-footer-top-side {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 26px;
  }
}
.h-footer-top-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
  max-width: 197px;
}
.h-footer-top-pnl {
  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;
  margin-top: -37px;
}
@media (max-width: 1023.98px) {
  .h-footer-top-pnl {
    -ms-grid-row: 1;
    grid-row: 1/1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    margin: 0 0 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--accent);
  }
}
@media (max-width: 767.98px) {
  .h-footer-top-pnl {
    gap: 29px;
    margin-bottom: 59px;
    padding-bottom: 21px;
  }
}
.h-footer__copyright {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #6b6b6b;
}
.h-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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.h-footer-menu > li > a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #161616;
}
@media (max-width: 374.98px) {
  .h-footer-menu > li > a {
    font-size: 14px;
  }
}
.h-footer-menu > li > a:hover {
  color: var(--accent);
}
.h-footer-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  padding-top: 10px;
}
.h-footer-menu ul li a {
  display: inline-block;
  font-size: 14px;
  line-height: 1.5;
  color: #6b6b6b;
}
.h-footer-menu ul li a:hover {
  color: var(--accent);
}
.h-footer-scl {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 16px auto;
  grid-template-columns: repeat(2, auto);
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.h-footer-scl__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35px;
}
.h-footer-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  padding-top: 19px;
  border-top: 1px solid var(--accent);
}
@media (max-width: 1023.98px) {
  .h-footer-bottom {
    border-color: #616161;
  }
}
@media (max-width: 767.98px) {
  .h-footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.h-footer-bottom-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 47px;
  max-width: 755px;
}
@media (max-width: 1023.98px) {
  .h-footer-bottom-main {
    gap: 16px;
    max-width: 413px;
  }
}
@media (max-width: 767.98px) {
  .h-footer-bottom-main {
    gap: 26px;
    max-width: 100%;
  }
}
.h-footer__policy, .h-footer__desc, .h-footer-dev {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  color: #6b6b6b;
}
.h-footer__policy:hover {
  color: var(--accent);
}
.h-footer-dev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  text-align: right;
}
@media (max-width: 767.98px) {
  .h-footer-dev {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    text-align: left;
  }
}
.h-footer-dev br {
  display: none;
}
@media (max-width: 1199.98px) {
  .h-footer-dev br {
    display: block;
  }
}
.h-footer-dev p {
  margin: 0;
}
@media (max-width: 767.98px) {
  .h-footer-dev p {
    padding-left: 26px;
  }
}
.h-footer-dev a {
  position: relative;
  display: inline-block;
  color: inherit;
}
@media (max-width: 767.98px) {
  .h-footer-dev a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
.h-footer-dev a:hover {
  color: var(--accent);
}
.h-footer-dev a i {
  position: relative;
  padding-left: 26px;
}
.h-footer-dev a i:before {
  content: "";
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.h-footer-dev__lone i:before {
  top: 1px;
  width: 21px;
  height: 15px;
  background-image: url(../images/icons/m2.svg);
}
.h-footer-dev__ltwo i:before {
  top: -1px;
  width: 17px;
  height: 18px;
  background-image: url(../images/icons/stalker.svg);
}

.h-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
}
.h-header.fixed .h-header-main {
  padding: 10px 0;
}
.h-header-top {
  -webkit-box-shadow: 0 1px 24px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 24px 8px rgba(0, 0, 0, 0.1);
}
.h-header-top-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 40px;
  padding: 5px 0;
}
@media (max-width: 1023.98px) {
  .h-header-top-inner {
    min-height: 45px;
    padding: 12px 0;
  }
}
@media (max-width: 767.98px) {
  .h-header-top-inner {
    gap: 10px;
  }
}
.h-header-top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 1023.98px) {
  .h-header-top-nav {
    display: none;
  }
}
.h-header-top-nav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 24px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  border-radius: 17px;
  border: 1px solid var(--accent);
}
.h-header-top-nav__btn:hover {
  color: var(--white);
  background: var(--accent);
}
.h-header-top-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.h-header-top-menu li a {
  display: block;
  font-size: 12px;
  color: var(--maincolor);
}
.h-header-top-menu li a:hover {
  color: var(--accent);
}
.h-header-top-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
}
@media (max-width: 1023.98px) {
  .h-header-top-btns {
    display: none;
  }
}
.h-header-top__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 162px;
  height: 24px;
  padding: 3px 12px 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  border-radius: 17px;
}
.h-header-top__btn_green {
  background: var(--green);
}
.h-header-top__btn_green:hover {
	/*
  color: var(--white);
  background: var(--hover);
  */
   border: 1px solid var(--green);
  color: var(--green);
  background: #FFF;
  
  
}
.h-header-top__btn_red {
  background: var(--accent);
}
.h-header-top__btn_red:hover {
	    border: 1px solid var(--accent);
  color: var(--accent);
  background: #FFF;
}
.h-header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 52px;
  padding: 24px 0;
  -webkit-transition: padding var(--anim100);
  transition: padding var(--anim100);
}
@media (max-width: 1420px) {
  .h-header-main {
    gap: 32px;
  }
}
@media (max-width: 1023.98px) {
  .h-header-main {
    gap: 40px;
    padding: 30px 0;
  }
}
@media (max-width: 767.98px) {
  .h-header-main {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    padding: 19px 0;
  }
}
.h-header__logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 116px;
}
@media (max-width: 1023.98px) {
  .h-header__logo {
    width: 156px;
  }
}
@media (max-width: 767.98px) {
  .h-header__logo {
    width: 92px;
  }
}
.h-header__logo img {
  width: 100%;
}
.h-header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.h-header-nav__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 30px;
  padding: 4px 20px 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border-radius: 17px;
  border: 2px solid var(--accent);
}
@media (max-width: 1199.98px) {
  .h-header-nav__btn {
    padding: 4px 10px 5px;
    font-size: 14px;
  }
}
@media (max-width: 1023.98px) {
  .h-header-nav__btn {
    padding: 4px 23px 5px;
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .h-header-nav__btn {
    padding: 4px 10px 5px;
  }
}
@media (max-width: 374.98px) {
  .h-header-nav__btn {
    padding: 4px 5px 5px;
    font-size: 14px;
  }
}
.h-header-nav__btn:hover {
  color: var(--white);
  background: var(--accent);
}
.h-header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (max-width: 1199.98px) {
  .h-header-menu {
    gap: 12px;
  }
}
@media (max-width: 1023.98px) {
  .h-header-menu {
    display: none;
  }
}
.h-header-menu li a {
  font-size: 16px;
  color: var(--maincolor);
}
@media (max-width: 1199.98px) {
  .h-header-menu li a {
    font-size: 14px;
  }
}
.h-header-menu li a:hover {
  color: var(--accent);
}
.h-header-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .h-header-contact {
    display: none;
  }
}
.h-header__phone {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--maincolor);
}
@media (max-width: 1199.98px) {
  .h-header__phone {
    font-size: 14px;
  }
}
@media (max-width: 1023.98px) {
  .h-header__phone {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .h-header__phone {
    display: none;
  }
}
.h-header__phone_mob {
  display: none;
}
@media (max-width: 767.98px) {
  .h-header__phone_mob {
    display: inline-block;
    margin-left: auto;
    font-size: 16px;
  }
}
@media (max-width: 374.98px) {
  .h-header__phone_mob {
    font-size: 14px;
  }
}
.h-header__phone:hover {
  color: var(--accent);
}
.h-header-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 1023.98px) {
  .h-header-social {
    display: none;
  }
}
.h-header-social_mob {
  display: none;
}
@media (max-width: 1023.98px) {
  .h-header-social_mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .h-header-social_mob {
    gap: 10px;
  }
}
.h-header-social__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .h-header-social__item {
    width: 32px;
  }
}
@media (max-width: 374.98px) {
  .h-header-social__item {
    width: 32px;
  }
}
.h-header-social__item img {
  max-width: 100%;
}
.h-header-burger {
  display: none;
  position: relative;
  padding-left: 57px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}
@media (max-width: 1023.98px) {
  .h-header-burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767.98px) {
  .h-header-burger {
    padding-left: 38px;
    font-size: 16px;
  }
}
@media (max-width: 374.98px) {
  .h-header-burger {
    width: 28px;
    height: 28px;
    padding-left: 0;
    font-size: 0;
  }
}
.h-header-burger:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 45px;
  height: 45px;
  background-image: url(../images/icons/burger.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 767.98px) {
  .h-header-burger:before {
    width: 28px;
    height: 28px;
  }
}

.mnav {
  position: fixed;
  display: none;
  -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: 29px;
  top: 0;
  width: 100vw;
  height: 100dvh;
  padding: 28px 48px 40px;
  z-index: 900;
  -webkit-transition: visibility 0.7s, -webkit-transform 0.35s ease-out;
  transition: visibility 0.7s, -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out, visibility 0.7s;
  transition: transform 0.35s ease-out, visibility 0.7s, -webkit-transform 0.35s ease-out;
  overflow-y: auto;
  background: var(--white);
}
@media (min-width: 1024px) {
  .mnav {
    display: none !important;
  }
}
@media (max-width: 767.98px) {
  .mnav {
    padding: 22px 16px 35px;
  }
}
.mnav-head {
  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;
}
.mnav-logo {
  display: inline-block;
  width: 200px;
  margin-right: auto;
}
@media (max-width: 767.98px) {
  .mnav-logo {
    width: 116px;
  }
}
.mnav-logo img {
  width: 100%;
}
.mnav-cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.mnav-close {
  position: relative;
  width: 45px;
  height: 45px;
  margin-left: 94px;
  background-image: url(../images/icons/close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 767.98px) {
  .mnav-close {
    margin-left: 24px;
  }
}
.mnav-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}
@media (max-width: 767.98px) {
  .mnav-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 38px;
  }
}
.mnav-main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 330px;
}
@media (max-width: 767.98px) {
  .mnav-main {
    width: 100%;
    max-width: 100%;
  }
}
.mnav-main__btn {
  height: 42px;
  margin-bottom: 29px;
  font-size: 20px;
  border-radius: 17px;
}
.mnav-main-menu li {
  border-bottom: 1px solid var(--lpink);
}
@media (max-width: 767.98px) {
  .mnav-main-menu li:last-child {
    border-bottom: none;
  }
}
.mnav-main-menu li a {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 2.2;
  color: #000;
}
.mnav-main-menu li a:hover {
  color: var(--accent);
}
.mnav-main-menu li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 7px;
  height: 14px;
  background-image: url(../images/icons/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.mnav-menu {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 15px;
  max-width: 242px;
}
@media (max-width: 767.98px) {
  .mnav-menu {
    gap: 12px;
    max-width: 100%;
  }
}
.mnav-menu > li > a {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
}
@media (max-width: 374.98px) {
  .mnav-menu > li > a {
    font-size: 14px;
  }
}
.mnav-menu > li > a:hover {
  color: var(--accent);
}
.mnav-menu ul {
  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;
  padding-top: 17px;
}
@media (max-width: 767.98px) {
  .mnav-menu ul {
    gap: 10px;
    padding-top: 12px;
  }
}
.mnav-menu ul li a {
  display: inline-block;
  font-size: 20px;
  line-height: 1.2;
  color: #000;
}
.mnav-menu ul li a:hover {
  color: var(--accent);
}
.mnav-bottom {
  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;
}
@media (max-width: 767.98px) {
  .mnav-bottom {
    gap: 16px;
  }
}
.mnav-btn {
  height: 50px;
  font-size: 20px;
  border-radius: 25px;
}
.mnav-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .mnav-btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mnav-btns .mnav-btn {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.mnav-scl {
  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;
  margin-top: 26px;
}
@media (max-width: 767.98px) {
  .mnav-scl {
    margin-top: 18px;
  }
}

.mdl {
  width: 100%;
  max-width: 1254px;
  padding: 32px;
  background: #fff !important;
}
@media (max-width: 1023.98px) {
  .mdl {
    padding: 40px 48px 77px;
  }
}
@media (max-width: 767.98px) {
  .mdl {
    padding: 15px 16px;
  }
}
.mdl-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 370px 25px 1fr;
  grid-template-columns: 370px 1fr;
  grid-column-gap: 25px;
}
@media (max-width: 1023.98px) {
  .mdl-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 34px;
  }
}
@media (max-width: 767.98px) {
  .mdl-inner {
    gap: 29px;
  }
}
.mdl-head {
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .mdl-head {
    margin-bottom: 0;
  }
}
.mdl-head-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 1023.98px) {
  .mdl-head-row {
    gap: 38px;
  }
}
@media (max-width: 767.98px) {
  .mdl-head-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 25px;
    margin-bottom: 32px;
  }
}
.mdl-head-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 767.98px) {
  .mdl-head-group {
    width: 100%;
  }
}
.mdl-back {
  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: 235px;
  height: 31px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #000;
  border-radius: 15px;
  background: #f7e8e8;
}
@media (max-width: 767.98px) {
  .mdl-back {
    width: 180px;
    height: 24px;
    font-size: 13px;
  }
}
.mdl-dnd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.mdl-dnd__item {
  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-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #E30613;
}
.mdl-title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.41667;
  color: var(--dark);
}
@media (max-width: 767.98px) {
  .mdl-title {
    max-width: 300px;
    margin-bottom: 22px;
    font-size: 20px;
    line-height: 1.2;
  }
}
.mdl-prm {
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
}
.mdl-form {
  margin-top: 9px;
}
@media (max-width: 1023.98px) {
  .mdl-form-row {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 17px 1fr;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 17px;
  }
}
@media (max-width: 767.98px) {
  .mdl-form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mdl-form-field {
  margin-bottom: 8px;
}
.mdl-form-field input,
.mdl-form-field textarea {
  display: block;
  width: 100%;
  padding: 5px 8px;
  font-size: 12px;
  font-weight: 300;
  color: var(--dark);
  border: 1px solid #e30613;
  border-radius: 10px;
  background: none;
}
.mdl-form-field input:focus,
.mdl-form-field textarea:focus {
  outline: none;
}
.mdl-form-field input {
  height: 32px;
}
.mdl-form-field textarea {
  height: 80px;
  padding-top: 12px;
}
@media (max-width: 1023.98px) {
  .mdl-form-field textarea {
    height: 72px;
  }
}
@media (max-width: 767.98px) {
  .mdl-form-field textarea {
    height: 80px;
  }
}
.mdl-form__btn {
  width: 100%;
}
@media (max-width: 1023.98px) {
  .mdl-form__btn {
    margin-top: 8px;
  }
}
@media (max-width: 767.98px) {
  .mdl-form__btn {
    margin-top: 0;
  }
}
.mdl-form__accept {
  margin-top: 32px;
  font-size: 10px;
  font-weight: 300;
  color: var(--dark);
}
.mdl-form__accept a {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.mdl-form__accept a:hover {
  text-decoration: none;
  color: var(--accent);
}
.mdl-body {
  -ms-grid-column: 2;
  grid-column: 2/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
  padding-left: 29px;
  border-left: 1px solid #cebaba;
}
@media (max-width: 1023.98px) {
  .mdl-body {
    padding-left: 0;
    border: none;
  }
}
.mdl-body-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  margin-bottom: 30px;
}
@media (max-width: 1199.98px) {
  .mdl-body-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.mdl-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media (max-width: 767.98px) {
  .mdl-tabs {
    gap: 10px;
    width: 100%;
  }
}
.mdl-tabs__item {
  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: 153px;
  height: 31px;
  padding: 5px 5px 7px;
  cursor: pointer;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #000;
  -webkit-transition: background var(--anim100), border-color var(--anim100);
  transition: background var(--anim100), border-color var(--anim100);
  border: 2px solid #e30613;
  border-radius: 15px;
}
@media (max-width: 767.98px) {
  .mdl-tabs__item {
    width: 100%;
    max-width: 108px;
    font-size: 14px;
  }
}
.mdl-tabs__item.active {
  border-color: #f7e8e8;
  background: #f7e8e8;
}
@media (max-width: 1023.98px) {
  .mdl-logo {
    display: none;
  }
}
.mdl-logo_mob {
  display: none;
}
@media (max-width: 1023.98px) {
  .mdl-logo_mob {
    display: block;
    margin-left: auto;
  }
}
@media (max-width: 767.98px) {
  .mdl-logo_mob {
    margin-left: 0;
  }
}
.mdl-main {
  position: relative;
  padding-bottom: 30px;
}
@media (max-width: 1023.98px) {
  .mdl-main {
    padding: 70px 0 34px;
  }
}
@media (max-width: 767.98px) {
  .mdl-main {
    padding: 60px 0 68px;
  }
}
.mdl-compas {
  position: absolute;
  top: 0;
  left: -19px;
  width: 128px;
}
.mdl-compas img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1023.98px) {
  .mdl-compas {
    top: 20px;
  }
}
@media (max-width: 767.98px) {
  .mdl-compas {
    top: -18px;
    left: -10px;
    width: 95px;
  }
}
.mdl-pln {
  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;
  gap: 28px;
}
@media (max-width: 767.98px) {
  .mdl-pln {
    gap: 10px;
  }
}
.mdl-pln img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.mdl-pln__top {
  margin-bottom: 12px;
}
@media (max-width: 767.98px) {
  .mdl-pln__top {
    margin-bottom: 20px;
  }
}
.mdl-pln__top, .mdl-pln__bottom {
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  color: var(--dark);
}
.mdl-map {
  height: 381px;
}
.mdl-map iframe {
  width: 100% !important;
  height: 100% !important;
}
.mdl-desc {
  margin-bottom: 12px;
  font: 600 16px/1.4375 var(--mainfont);
  color: var(--dark);
}
.mdl-desc p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
}
.mdl-price {
  font-size: 32px;
  font-weight: 600;
  color: var(--dark);
}
.mdl-cnt {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  font: 400 16px/1.9375 var(--mainfont);
}
.mdl-cnt p {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  color: var(--dark);
}
.mdl-cnt span {
  font-size: 20px;
  font-weight: 600;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.mdl-logo-print {
  display: none;
}

.section-gl {
  padding-bottom: 129px;
}
@media (max-width: 1023.98px) {
  .section-gl {
    padding-bottom: 103px;
  }
}
@media (max-width: 767.98px) {
  .section-gl {
    padding-bottom: 55px;
  }
}

.gl-sl .swiper-button-prev,
.gl-sl .swiper-button-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 229px;
  margin: 0;
  opacity: 1 !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 767.98px) {
  .gl-sl .swiper-button-prev,
  .gl-sl .swiper-button-next {
    width: 7px;
    height: 97px;
  }
}
.gl-sl .swiper-button-prev:after,
.gl-sl .swiper-button-next:after {
  display: none;
}
.gl-sl .swiper-button-prev {
  left: 15px;
  background-image: url(../images/icons/prev.svg);
}
@media (max-width: 1023.98px) {
  .gl-sl .swiper-button-prev {
    left: 48px;
  }
}
@media (max-width: 767.98px) {
  .gl-sl .swiper-button-prev {
    left: 42px;
  }
}
.gl-sl .swiper-button-next {
  right: 15px;
  background-image: url(../images/icons/next.svg);
}
@media (max-width: 1023.98px) {
  .gl-sl .swiper-button-next {
    right: 48px;
  }
}
@media (max-width: 767.98px) {
  .gl-sl .swiper-button-next {
    right: 42px;
  }
}
.gl-item {
  width: 674px;
  height: auto;
}
@media (max-width: 1023.98px) {
  .gl-item {
    width: 533px;
  }
}
@media (max-width: 767.98px) {
  .gl-item {
    width: 323px;
  }
}
@media (max-width: 374.98px) {
  .gl-item {
    width: 270px;
  }
}
.gl-item img {
  min-height: 239px;
}
@media (max-width: 374.98px) {
  .gl-item img {
    min-height: 200px;
  }
}
.gl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 3;
}

.section-h-bnr {
  padding-bottom: 40px;
}
@media (max-width: 767.98px) {
  .section-h-bnr {
    padding-bottom: 58px;
  }
}
.section-h-bnr p {
  margin: 0;
  font-family: var(--mainfont);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h-bnr {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 18px 1fr 18px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 18px;
  grid-row-gap: 26px;
}
@media (max-width: 1023.98px) {
  .h-bnr {
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
    grid-row-gap: 14px;
  }
}
@media (max-width: 767.98px) {
  .h-bnr {
    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;
  }
}
.h-bnr-main {
  -ms-grid-column-span: 2;
  grid-column: span 2/auto;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
@media (max-width: 1023.98px) {
  .h-bnr-main {
    grid-row: auto;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    height: 537px;
  }
}
@media (max-width: 767.98px) {
  .h-bnr-main {
    height: auto;
  }
}
.h-bnr-main-inner {
  position: relative;
  height: 100%;
  border-radius: 25px 25px 0 25px;
}
@media (max-width: 767.98px) {
  .h-bnr-main-inner img {
    min-height: 232px;
  }
}
.h-bnr-main-body {
  position: absolute;
  top: 11%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 393px;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .h-bnr-main-body {
    top: 0;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: 100%;
    padding: 30px 90px;
  }
}
.h-bnr-main__title {
  margin: 0 0 19px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.41667;
  color: var(--dark);
}
.h-bnr-main__title br {
  display: none;
}
@media (max-width: 1023.98px) {
  .h-bnr-main__title {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .h-bnr-main__title {
    font-size: 20px;
    line-height: 1.4;
  }
  .h-bnr-main__title br {
    display: block;
  }
}
.h-bnr-main__desc {
  max-width: 328px;
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
}
@media (max-width: 1023.98px) {
  .h-bnr-main__desc {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .h-bnr-main__desc {
    display: none;
    max-width: 100%;
    padding: 20px 0 15px;
    font-size: 16px;
  }
}
.h-bnr-main__desc_mob {
  display: none;
}
@media (max-width: 767.98px) {
  .h-bnr-main__desc_mob {
    display: block;
  }
}
.h-bnr-item {
  padding: 34px 30px;
  border-radius: 25px 25px 0 25px;
}
@media (max-width: 767.98px) {
  .h-bnr-item {
    padding: 26px 30px;
  }
}
.h-bnr-item__title {
  margin: 0 0 11px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.41667;
  color: var(--dark);
}
@media (max-width: 1023.98px) {
  .h-bnr-item__title {
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.0625;
  }
}
@media (max-width: 767.98px) {
  .h-bnr-item__title {
    font-size: 20px;
    line-height: 1.4;
  }
}
.h-bnr-item__desc {
  max-width: 328px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.282;
  color: var(--dark);
}
@media (max-width: 1023.98px) {
  .h-bnr-item__desc {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .h-bnr-item__desc {
    max-width: 100%;
    font-size: 16px;
  }
}

.section-h-cnt {
  margin-top: -40px;
  padding-top: 66px;
}
@media (max-width: 1023.98px) {
  .section-h-cnt {
    padding-top: 90px;
  }
}
@media (max-width: 767.98px) {
  .section-h-cnt {
    padding-top: 0;
  }
}

.h-cnt {
  position: relative;
  padding-bottom: 35px;
}
@media (max-width: 1023.98px) {
  .h-cnt {
    padding-bottom: 70px;
  }
}
@media (max-width: 1023.98px) {
  .h-cnt-head {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 36px;
    padding-bottom: 85px;
  }
}
@media (max-width: 767.98px) {
  .h-cnt-head {
    margin-bottom: 30px;
    padding-bottom: 165px;
  }
}
.h-cnt-head:before {
  content: "";
  position: absolute;
  display: none;
  bottom: 0;
  left: -48px;
  width: 100vw;
  height: 2px;
  background: var(--accent);
}
@media (max-width: 1023.98px) {
  .h-cnt-head:before {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .h-cnt-head:before {
    left: -16px;
  }
}
@media (max-width: 1023.98px) {
  .h-cnt-head-group {
    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: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 30px;
  }
}
.h-cnt-title {
  margin-bottom: 30px;
}
@media (max-width: 1023.98px) {
  .h-cnt-title {
    margin-bottom: 0;
  }
}
@media (max-width: 767.98px) {
  .h-cnt-title {
    margin-bottom: 6px;
  }
}
.h-cnt__logo {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1023.98px) {
  .h-cnt__logo {
    position: relative;
    margin-bottom: 7px;
  }
}
@media (max-width: 767.98px) {
  .h-cnt__logo {
    margin-bottom: 0;
  }
}
.h-cnt__pict {
  position: absolute;
  bottom: 0;
  right: 92px;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .h-cnt__pict {
    right: 0;
  }
}
@media (max-width: 1023.98px) {
  .h-cnt__pict {
    right: -48px;
    max-height: 100%;
  }
}
@media (max-width: 767.98px) {
  .h-cnt__pict {
    right: -173px;
  }
}
.h-cnt-chks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  margin-bottom: 21px;
}
@media (max-width: 1023.98px) {
  .h-cnt-chks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 17px;
  }
}
.h-cnt-chk {
  position: relative;
  display: block;
  margin: 0;
}
.h-cnt-chk input {
  position: absolute;
  opacity: 0;
}
.h-cnt-chk .jq-radio {
  position: absolute !important;
  opacity: 0;
}
.h-cnt-chk .jq-radio.checked ~ .h-cnt-chk__btn {
  color: var(--white);
  background: var(--accent);
}
.h-cnt-main {
  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;
  max-width: 594px;
}
@media (max-width: 1023.98px) {
  .h-cnt-main {
    max-width: 100%;
  }
}
.h-cnt-fieldset {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 13px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 13px;
}
@media (max-width: 767.98px) {
  .h-cnt-fieldset {
    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;
  }
}
.h-cnt-field input,
.h-cnt-field textarea {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  color: var(--dark);
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: var(--white);
}
.h-cnt-field input:focus,
.h-cnt-field textarea:focus {
  outline: none;
  border-color: var(--hover);
}
.h-cnt-field input {
  height: 32px;
  padding: 0 7px;
}
.h-cnt-field textarea {
  height: 80px;
  padding: 14px 7px;
}
.h-cnt__btn {
  max-width: 177px;
  height: 33px;
  margin-top: 9px;
  font-size: 12px;
  border-radius: 5px;
}
@media (max-width: 1023.98px) {
  .h-cnt__btn {
    max-width: 100%;
    height: 70px;
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .h-cnt__btn {
    margin-top: 6px;
  }
}

.section-h-main {
  padding: 21px 0 40px;
}
@media (max-width: 1023.98px) {
  .section-h-main {
    padding: 0 0 28px;
  }
}
@media (max-width: 767.98px) {
  .section-h-main {
    padding-bottom: 37px;
  }
}

.h-main {
  position: relative;
}
.h-main .swiper-pagination {
  position: absolute;
  top: 50%;
  right: 33px;
  left: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 1023.98px) {
  .h-main .swiper-pagination {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    top: auto;
    bottom: 38px !important;
    right: 0;
    left: 0;
  }
}
@media (max-width: 767.98px) {
  .h-main .swiper-pagination {
    bottom: 19px !important;
  }
}
.h-main-item {
  min-height: 560px;
  padding: 72px 100px 56px;
  overflow: hidden;
  border-radius: 0 25px 25px 25px;
}
@media (max-width: 1023.98px) {
  .h-main-item {
    min-height: 816px;
    padding: 160px 0;
  }
}
@media (max-width: 767.98px) {
  .h-main-item {
    min-height: auto;
    padding: 80px 0 60px;
  }
}
.h-main-item__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.h-main-item-pnl {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  width: 495px;
  padding: 40px 40px 30px;
  border-radius: 25px 25px 25px 0;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1023.98px) {
  .h-main-item-pnl {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .h-main-item-pnl {
    gap: 0;
    width: 100%;
    max-width: 252px;
    padding: 20px;
  }
}
.h-main-item__title {
  margin: 0;
  font-size: 64px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.25;
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .h-main-item__title {
    font-size: 32px;
  }
}
.h-main-item__subtitle {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
@media (max-width: 767.98px) {
  .h-main-item__subtitle {
    font-size: 16px;
    line-height: 1.6875;
  }
}
.h-main-item__desc {
  min-height: 149px;
  margin-top: 17px;
  font-family: var(--mainfont);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  color: var(--dark);
}
@media (max-width: 767.98px) {
  .h-main-item__desc {
    min-height: auto;
    margin-top: 3px;
    font-size: 14px;
  }
}
.h-main-item__desc p {
  margin: 0 0 10px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.h-main-item__desc *:nth-last-child(1) {
  margin-bottom: 0;
}
.h-main-item__btn {
  min-width: 297px;
}
@media (max-width: 767.98px) {
  .h-main-item__btn {
    min-width: 152px;
    height: 28px;
    margin-top: 20px;
    padding: 3px 10px 5px;
    font-size: 14px;
    font-weight: 500;
  }
}

.section-h-sale {
  padding-bottom: 60px;
}
@media (max-width: 767.98px) {
  .section-h-sale {
    padding-bottom: 30px;
  }
}
.section-h-sale p {
  margin: 0;
  font-family: var(--mainfont);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h-sale {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(410px, 583px) 25px minmax(260px, 283px) 25px minmax(250px, 271px);
  grid-template-columns: minmax(410px, 583px) minmax(260px, 283px) minmax(250px, 271px);
  grid-column-gap: 25px;
  grid-row-gap: 16px;
}
@media (max-width: 1023.98px) {
  .h-sale {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 22px;
  }
}
.h-sale-sticks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 767.98px) {
  .h-sale-sticks {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 9px;
  }
}
.h-sale-sticks .h-stick {
  min-width: 76px;
}
@media (max-width: 1023.98px) {
  .h-sale-sticks .h-stick {
    min-width: 88px;
  }
}
@media (max-width: 767.98px) {
  .h-sale-sticks .h-stick {
    height: 22px;
  }
}
.h-sale-one {
  -ms-grid-column: 1;
  grid-column: 1/1;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  padding: 24px 28px;
  border-radius: 0 25px 25px 25px;
}
@media (max-width: 1199.98px) {
  .h-sale-one {
    gap: 16px;
  }
}
@media (max-width: 1023.98px) {
  .h-sale-one {
    gap: 53px;
  }
}
@media (max-width: 767.98px) {
  .h-sale-one {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    padding: 20px 16px 16px;
  }
}
.h-sale-one-main img {
  max-width: 100%;
}
@media (max-width: 1023.98px) {
  .h-sale-one-main img {
    width: 367px;
  }
}
.h-sale-two {
  -ms-grid-column: 2;
  grid-column: 2/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 23px 18px;
  overflow: hidden;
  border-radius: 25px 25px 0 25px;
}
@media (max-width: 1023.98px) {
  .h-sale-two {
    padding: 8px 23px 15px;
  }
}
@media (max-width: 767.98px) {
  .h-sale-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 10px;
    padding: 20px 16px 16px;
  }
}
.h-sale-two .h-sticks {
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width: 1023.98px) {
  .h-sale-two .h-sticks {
    position: relative;
    top: 13px;
    right: 0;
  }
}
@media (max-width: 1023.98px) and (max-width: 767.98px) {
  .h-sale-two .h-sticks {
    top: 0;
    min-width: 76px;
  }
}
.h-sale-two-body {
  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;
  padding-right: 65px;
}
@media (max-width: 1023.98px) {
  .h-sale-two-body {
    padding-left: 73px;
    padding-right: 0;
  }
}
@media (max-width: 767.98px) {
  .h-sale-two-body {
    gap: 10px;
    padding-left: 0;
    padding-right: 40px;
  }
}
.h-sale-two__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3612;
  color: var(--accent);
}
@media (max-width: 1023.98px) {
  .h-sale-two__title {
    font-size: 32px;
    line-height: 1.5;
  }
}
@media (max-width: 767.98px) {
  .h-sale-two__title {
    font-size: 20px;
    line-height: 1.1;
  }
}
.h-sale-two__desc {
  font-family: var(--mainfont);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.272;
  color: var(--dark);
}
@media (max-width: 1023.98px) {
  .h-sale-two__desc {
    font-size: 20px;
  }
}
@media (max-width: 767.98px) {
  .h-sale-two__desc {
    max-width: 198px;
    font-size: 16px;
  }
}
.h-sale-two__img {
  position: absolute;
  bottom: 0;
  right: 12px;
}
@media (max-width: 1023.98px) {
  .h-sale-two__img {
    position: relative;
    right: 0;
    bottom: -15px;
    width: 150px;
    -ms-flex-item-align: end;
        align-self: flex-end;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
@media (max-width: 767.98px) {
  .h-sale-two__img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 93px;
  }
}
.h-sale-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 20px 0 20px 20px;
}
@media (max-width: 1023.98px) {
  .h-sale-three {
    gap: 115px;
  }
}
@media (max-width: 767.98px) {
  .h-sale-three {
    gap: 34px;
  }
}
.h-sale-three__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 43px;
}
.h-sale-three__title {
  font-size: 14px;
  line-height: 1;
  color: var(--dark);
}
@media (max-width: 1023.98px) {
  .h-sale-three__title {
    max-width: 360px;
    font-size: 20px;
    font-weight: 300;
  }
}
@media (max-width: 767.98px) {
  .h-sale-three__title {
    font-size: 16px;
  }
}
.h-sale-three_accent {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 69px;
  border-radius: 20px 20px 20px 0;
}
@media (max-width: 1023.98px) {
  .h-sale-three_accent {
    padding: 16px 28px 24px;
  }
}
@media (max-width: 767.98px) {
  .h-sale-three_accent {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.h-sale-three_accent .h-sale-three__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
}
@media (max-width: 1023.98px) {
  .h-sale-three_accent .h-sale-three__title {
    max-width: 100%;
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .h-sale-three_accent .h-sale-three__title {
    max-width: 180px;
    font-size: 20px;
  }
}

.section-h-slt {
  padding-bottom: 82px;
}
@media (max-width: 767.98px) {
  .section-h-slt {
    padding-bottom: 40px;
  }
}
.section-h-slt p {
  margin: 0;
  font-family: var(--mainfont);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h-slt-ftr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  margin-bottom: 52px;
}
@media (max-width: 1023.98px) {
  .h-slt-ftr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 767.98px) {
  .h-slt-ftr {
    gap: 14px;
  }
}
.h-slt-ftr-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
}
@media (max-width: 1023.98px) {
  .h-slt-ftr-group {
    gap: 16px;
  }
}
@media (max-width: 767.98px) {
  .h-slt-ftr-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
  }
}
.h-slt-ftr-sel {
  position: relative;
  min-width: 198px;
}
@media (max-width: 1023.98px) {
  .h-slt-ftr-sel {
    min-width: auto;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
.h-slt-ftr-sel_wide {
  min-width: 286px;
}
@media (max-width: 1023.98px) {
  .h-slt-ftr-sel_wide {
    min-width: auto;
  }
}
.h-slt-ftr-sel__label {
  position: absolute;
  top: 11px;
  left: 17px;
  font-size: 12px;
  line-height: 1.334;
  color: var(--beige);
}
.h-slt-ftr__btn {
  width: 100%;
  max-width: 297px;
}
@media (max-width: 1023.98px) {
  .h-slt-ftr__btn {
    max-width: 100%;
  }
}
.h-slt-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 51px;
}
.h-slt-sticks {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  top: 0;
  left: 0;
  padding: 26px 24px;
  z-index: 2;
}
@media (max-width: 1023.98px) {
  .h-slt-sticks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.h-slt-sticks .h-stick {
  height: 27px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 1023.98px) {
  .h-slt-sticks .h-stick {
    height: 38px;
    padding: 2px 19px 5px;
    font-size: 20px;
  }
}
.h-slt-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 26px;
}
@media (max-width: 767.98px) {
  .h-slt-main {
    gap: 18px;
  }
}
.h-slt-main-pict {
  position: relative;
  height: 380px;
  border-radius: 25px 25px 25px 0;
}
@media (max-width: 1023.98px) {
  .h-slt-main-pict {
    height: auto;
    padding-bottom: 56.548%;
  }
}
@media (max-width: 767.98px) {
  .h-slt-main-pict {
    padding-bottom: 68.514%;
  }
}
@media (max-width: 1023.98px) {
  .h-slt-main__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.h-slt-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .h-slt-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 38px;
  }
}
.h-slt-info-main {
  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;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.445;
  color: var(--dark);
}
@media (max-width: 1023.98px) {
  .h-slt-info-main {
    width: 240px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .h-slt-info-main {
    font-size: 24px;
    line-height: 1.3;
  }
}
.h-slt-info-main strong {
  display: block;
  font-weight: 600;
}
.h-slt-info-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
@media (max-width: 1023.98px) {
  .h-slt-info-items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
    max-width: 386px;
  }
}
@media (max-width: 767.98px) {
  .h-slt-info-items {
    gap: 25px;
  }
}
.h-slt-info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
@media (max-width: 767.98px) {
  .h-slt-info-item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.h-slt-info-item__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 42px;
}
.h-slt-info-item__title {
  max-width: 225px;
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
}
@media (max-width: 1199.98px) {
  .h-slt-info-item__title {
    max-width: 190px;
  }
}
@media (max-width: 1023.98px) {
  .h-slt-info-item__title {
    max-width: 100%;
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .h-slt-info-item__title {
    font-size: 16px;
  }
}
.h-slt-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 26px;
  grid-row-gap: 26px;
}
@media (max-width: 1023.98px) {
  .h-slt-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 44px;
  }
}
.h-slt-crd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 25px 25px 0 25px;
}
.h-slt-crd-pict {
  position: relative;
  padding-bottom: 82.4%;
}
@media (max-width: 1023.98px) {
  .h-slt-crd-pict {
    padding-bottom: 56.548%;
  }
}
@media (max-width: 767.98px) {
  .h-slt-crd-pict {
    padding-bottom: 68.805%;
  }
}
.h-slt-crd__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.h-slt-crd .h-slt-sticks {
  padding: 21px 17px;
}
.h-slt-crd-body {
  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-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 25px 24px 19px;
  background: var(--lpink);
}
@media (max-width: 1023.98px) {
  .h-slt-crd-body {
    padding: 30px 40px 45px;
  }
}
.h-slt-crd__title {
  margin: 0 0 4px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3;
  color: var(--dark);
}
@media (max-width: 1023.98px) {
  .h-slt-crd__title {
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 1.2;
  }
}
.h-slt-crd__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2714;
  color: var(--dark);
}
@media (max-width: 1023.98px) {
  .h-slt-crd__desc {
    font-size: 18px;
    line-height: 1.2;
  }
}
.h-slt-crd__price {
  margin-top: auto;
  padding-top: 20px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark);
}
@media (max-width: 1023.98px) {
  .h-slt-crd__price {
    font-size: 32px;
    line-height: 1.2;
  }
}
.h-slt__btn {
  margin-top: 44px;
  font-size: 16px;
}
@media (max-width: 1023.98px) {
  .h-slt__btn {
    height: 70px;
    font-size: 20px;
  }
}

.section-h-stp {
  padding-bottom: 86px;
}
@media (max-width: 767.98px) {
  .section-h-stp {
    padding-bottom: 40px;
  }
}
.section-h-stp p {
  margin: 0;
  font-family: var(--mainfont);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h-stp {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr 15px 1fr;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 24px;
}
@media (max-width: 1023.98px) {
  .h-stp {
    -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 40px;
    grid-row-gap: 50px;
  }
}
@media (max-width: 767.98px) {
  .h-stp {
    -ms-grid-columns: 1fr 25px 1fr;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 25px;
    grid-row-gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .h-stp {
    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;
  }
}
.h-stp-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.h-stp-item img {
  margin-top: auto;
}
.h-stp-item__num {
  margin-bottom: 24px;
  font-size: 64px;
  font-weight: 600;
  line-height: 1.25;
  font-family: var(--secfont);
  text-shadow: -1px -1px 0 var(--accent), 1px -1px 0 var(--accent), -1px 1px 0 var(--accent), 1px 1px 0 var(--accent);
  color: var(--white);
  letter-spacing: 0.05em;
}
@media (max-width: 767.98px) {
  .h-stp-item__num {
    margin-bottom: 14px;
  }
}
.h-stp-item__title {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 1023.98px) {
  .h-stp-item__title {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .h-stp-item__title {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .h-stp-item__title br {
    display: none;
  }
}
.h-stp-item__desc {
  max-width: 182px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
}
@media (max-width: 1023.98px) {
  .h-stp-item__desc {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .h-stp-item__desc {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .h-stp-item__desc {
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .h-stp-item img {
    width: 198px;
    margin-left: -40px;
  }
}
@media (max-width: 575.98px) {
  .h-stp-item img {
    width: auto;
    max-width: 150px;
    margin-left: 0;
  }
}

.section-pln {
  padding-bottom: 23px;
}
@media (max-width: 767.98px) {
  .section-pln {
    padding-bottom: 40px;
  }
}

.pln-tabs {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  z-index: 2;
}
@media (max-width: 767.98px) {
  .pln-tabs {
    margin-bottom: 36px;
  }
}
.pln-tabs__item {
  cursor: pointer;
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
}
.pln-tabs__item.active {
  font-weight: 600;
}
.pln-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 768px 32px auto;
  grid-template-columns: 768px auto;
  grid-column-gap: 32px;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.pln-inner > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.pln-inner > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
@media (max-width: 1199.98px) {
  .pln-inner {
    -ms-grid-columns: 690px auto;
    grid-template-columns: 690px auto;
  }
}
@media (max-width: 1023.98px) {
  .pln-inner {
    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;
    gap: 22px;
  }
}
@media (max-width: 767.98px) {
  .pln-inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 50px;
  }
}
.pln-pict {
  position: relative;
  height: 635px;
  margin-top: -14px;
  margin-left: -43px;
}
@media (max-width: 1199.98px) {
  .pln-pict {
    height: auto;
  }
}
@media (max-width: 1023.98px) {
  .pln-pict {
    width: 768px;
    margin-left: 0;
  }
}
@media (max-width: 767.98px) {
  .pln-pict {
    width: 100%;
    margin-top: 0;
  }
}
.pln-pict__wrap {
  overflow-x: auto;
  scrollbar-width: none;
}
@media (max-width: 767.98px) {
  .pln-pict__wrap {
    margin: 0 -16px;
  }
}
.pln-pict img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  min-width: 477px;
}
.pln-pict__title, .pln-pict__desc {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  color: var(--dark);
  z-index: 2;
}
.pln-pict__title {
  top: 30px;
}
@media (max-width: 767.98px) {
  .pln-pict__title {
    top: 0;
  }
}
.pln-pict__desc {
  bottom: 50px;
}
@media (max-width: 1023.98px) {
  .pln-pict__desc {
    bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .pln-pict__desc {
    bottom: 0;
  }
}
.pln-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 98px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
@media (max-width: 1023.98px) {
  .pln-main {
    -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;
    width: 100%;
    gap: 24px;
  }
}
.pln-compas {
  -ms-flex-item-align: end;
      align-self: flex-end;
  width: 128px;
}
@media (max-width: 1023.98px) {
  .pln-compas {
    width: 176px;
  }
}
@media (max-width: 767.98px) {
  .pln-compas {
    width: 102px;
  }
}
.pln-view {
  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;
}
@media (max-width: 767.98px) {
  .pln-view img {
    width: 123px;
    margin: 0 auto;
  }
}
.pln-view__title, .pln-view__desc {
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
}
.pln-view__desc {
  text-align: right;
}

.section-sch {
  padding: 34px 0 109px;
}
@media (max-width: 767.98px) {
  .section-sch {
    padding: 0 0 50px;
  }
}

.sch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
@media (max-width: 767.98px) {
  .sch {
    gap: 30px;
  }
}
.sch-ftr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media (max-width: 767.98px) {
  .sch-ftr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 9px;
  }
}
.sch-ftr__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}
.sch-ftr-chks {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
@media (max-width: 575.98px) {
  .sch-ftr-chks {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 9px auto 9px auto;
    grid-template-columns: repeat(3, auto);
    grid-column-gap: 9px;
    grid-row-gap: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    align-self: flex-start;
    max-width: -webkit-min-content;
    max-width: -moz-min-content;
    max-width: min-content;
  }
}
.sch-ftr-chk {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 6px;
  margin: 0;
  cursor: pointer;
}
.sch-ftr-chk input {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.sch-ftr-chk input:checked ~ .sch-ftr-chk__check {
  border-color: var(--accent);
  background-image: url(../images/icons/check.svg);
}
.sch-ftr-chk__check {
  width: 35px;
  height: 35px;
  border: 1px solid #000;
  border-radius: 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 17px;
}
.sch-ftr-chk__title {
  position: relative;
  top: -2px;
  font-size: 16px;
  font-weight: 300;
  color: #17233c;
}
.sch-sl {
  overflow: visible;
}
.sch-item {
  width: auto;
}
.sch-item:hover {
  z-index: 10 !important;
}
.sch-item__title {
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
}
.sch-tb {
  border-collapse: separate;
  border-spacing: 10px;
}
.sch-tb td {
  padding: 0;
  border: none;
}
.sch-tb__num {
  margin-left: -10px;
  padding-right: 7px;
  font-size: 16px;
  font-weight: 300;
  color: var(--dark);
}
.sch-tb__cell {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #fff;
  cursor: pointer;
  -webkit-transition: visibility var(--anim100), opacity var(--anim100);
  transition: visibility var(--anim100), opacity var(--anim100);
}
.sch-tb__cell.hide {
  opacity: 0;
  visibility: hidden;
}
.sch-tb .c-sale {
  background: #92b692;
}
.sch-tb .c-res {
  cursor: default;
  background: #daa152;
}
.sch-tb .c-sold {
  cursor: default;
  background: #d3d3d3;
}

.tippy-box {
  border-radius: 0;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  background: none;
}

.tippy-content {
  padding: 0;
  overflow: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  border-right: 0;
}

.tlp-simple {
  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: 96px;
  height: 68px;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: rgba(255, 195, 110, 0.85);
}
@media (max-width: 767.98px) {
  .tlp-simple {
    width: 76px;
    height: 48px;
    padding-bottom: 4px;
    font-size: 14px;
  }
}
.tlp-simple_gray {
  background: rgba(154, 146, 147, 0.85);
}

.tlp {
  display: block;
  width: 226px;
  padding: 22px 6px 20px 14px;
  background: rgba(255, 255, 255, 0.85);
}
@media (max-width: 767.98px) {
  .tlp {
    width: 196px;
    padding: 10px;
  }
}
.tlp-head {
  position: relative;
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .tlp-head {
    margin-bottom: 8px;
  }
}
.tlp-head:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #92b692;
}
@media (max-width: 767.98px) {
  .tlp-head:before {
    top: 6px;
    width: 12px;
    height: 12px;
  }
}
.tlp-head p {
  margin: 0 0 3px;
  font: 600 16px/1.5 var(--mainfont);
  color: var(--dark);
}
@media (max-width: 767.98px) {
  .tlp-head p {
    font-size: 14px;
  }
}
.tlp-head p:first-child {
  padding-left: 30px;
}
@media (max-width: 767.98px) {
  .tlp-head p:first-child {
    padding-left: 20px;
  }
}
.tlp-scheme {
  padding: 0 21px 0 13px;
}
@media (max-width: 767.98px) {
  .tlp-scheme {
    padding: 0 10px;
  }
}