@charset "UTF-8";
@font-face {
  font-family: KyivTypeSerif;
  font-display: swap;
  src: url(../fonts/KyivTypeSerif.woff2) format("woff2"), url(../fonts/KyivTypeSerif.woff) format("woff");
  font-weight: 400;
  font-variation-settings: "wght" 500, "CONT" 700;
  font-style: normal
}

@font-face {
  font-family: KyivTypeSans;
  font-display: swap;
  src: url(../fonts/KyivTypeSans.woff2) format("woff2"), url(../fonts/KyivTypeSans.woff) format("woff");
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: "Miama Nueva";
  font-display: swap;
  src: url(../fonts/miamanueva.woff2) format("woff2"), url(../fonts/miamanueva.woff) format("woff");
  font-weight: 400;
  font-style: normal
}

@font-face {
  font-family: icons;
  font-display: swap;
  src: url(../fonts/icons.woff2) format("woff2"), url(../fonts/icons.woff) format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: block
}

[class*=_icon-]:before {
  font-family: icons;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

[class*=_icon-]:before {
  display: block
}

._icon-arrow:before {
  content: "\e900"
}

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

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

::after, ::before {
  display: inline-block
}

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

body {
  color: #eef2fe;
  line-height: 1;
  font-family: KyivTypeSans;
  font-size: 1rem;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

button, input, textarea {
  font-family: KyivTypeSans;
  font-size: inherit;
  line-height: inherit
}

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

a {
  display: inline-block;
  color: inherit;
  text-decoration: none
}

ul li {
  list-style: none
}

img {
  vertical-align: top
}

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

body {
  font-variation-settings: "wght" 400, "CONT" 1000;
  background-color: #242424;
  -webkit-transition: opacity .3s ease .3s;
  transition: opacity .3s ease .3s
}

.lock body {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -ms-scroll-chaining: none;
  overscroll-behavior: none
}

.loaded body {
  opacity: 1
}

.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
}

@supports (overflow:clip) {
  .wrapper {
    overflow: clip
  }
}

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

.wrapper > * {
  min-width: 0
}

body::after {
  content: "";
  background-color: rgba(0, 0, 0, .5);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity .8s ease 0s;
  transition: opacity .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: 50px 10px;
  -webkit-transition: visibility .8s ease 0s;
  transition: visibility .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 {
  border: 1px solid #ffbe65;
  visibility: hidden;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: -webkit-transform .3s ease 0s;
  transition: -webkit-transform .3s ease 0s;
  transition: transform .3s ease 0s;
  transition: transform .3s ease 0s, -webkit-transform .3s ease 0s;
  background-color: #eee;
  background: #242424;
  color: #eef2fe;
  border-radius: .375rem;
  width: 100%;
  max-width: 900px
}

.lock .popup__content {
  visibility: visible
}

.popup__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid #ffbe65;
  padding: 20px;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem
}

.popup__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem
}

.popup__title img {
  width: 1.25rem;
  height: 1.25rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.25rem;
  flex: 0 0 1.25rem
}

.popup__title span {
  color: #eef2fe;
  font-family: KyivTypeSans;
  font-style: normal;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: 1.4px
}

.popup__body {
  overflow: hidden
}

.popup__list {
  padding: 20px;
  max-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: .75rem;
  overflow-y: auto
}

.popup__list li {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .375rem;
  -moz-column-gap: .375rem;
  column-gap: .375rem;
  letter-spacing: .0375rem
}

.popup__list li div:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.popup__list li div:nth-child(2) span:nth-child(1) {
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.popup__list::-webkit-scrollbar {
  width: .625rem;
  border-radius: .375rem;
  background-color: #242424
}

.popup__list::-webkit-scrollbar-thumb {
  background-color: #ffbe65;
  height: 1.25rem;
  border: .125rem solid #242424;
  border-radius: 1.25rem
}

.popup__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: .9375rem
}

.popup__image-box {
  padding: 0 .9375rem .9375rem .9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.popup__image img {
  max-width: 100%
}

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

.ibg--top {
  -o-object-position: top;
  object-position: top
}

.ibg--bottom {
  -o-object-position: bottom;
  object-position: bottom
}

.ibg--left {
  -o-object-position: left;
  object-position: left
}

.ibg--right {
  -o-object-position: right;
  object-position: right
}

.ibg--contain {
  -o-object-fit: contain;
  object-fit: contain
}

.button {
  font-family: KyivTypeSans;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 4rem;
  padding: .5rem .75rem;
  width: 20rem;
  height: 3rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%)
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #ffbe65;
  border-radius: 4rem;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.button span {
  position: relative;
  z-index: 2;
  font-size: 1rem;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .04rem
}

.button--orange {
  background: -webkit-gradient(linear, left top, right top, from(#ff8845), to(#c83e3e));
  background: linear-gradient(90deg, #ff8845 0, #c83e3e 100%);
  -webkit-transition: all .15s ease 0s;
  transition: all .15s ease 0s
}

.button--orange::before {
  content: "";
  display: none
}

.button-show-more {
  font-family: KyivTypeSans;
  font-size: .875rem;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: .0525rem;
  color: #ffbe65;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-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;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center
}

.button-show-more.active {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse
}

.button-show-more.active span:nth-child(2) {
  display: block
}

.button-show-more.active span:nth-child(1) {
  display: none
}

.button-show-more.active span:nth-child(3) {
  rotate: -90deg
}

.button-show-more span:nth-child(2) {
  display: none
}

.button-show-more span:nth-child(3) {
  display: block;
  rotate: 90deg;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.5rem;
  flex: 0 0 1.5rem;
  -webkit-animation: arrow-down 2s ease infinite;
  animation: arrow-down 2s ease infinite
}

.button-show-more.button-show-more--pc {
  display: none !important
}

.button-show-more.button-show-more--mobile {
  display: none !important
}

.decor {
  pointer-events: none;
  margin-left: -1.5rem;
  width: calc(100% + 3rem);
  aspect-ratio: 1440/152;
  position: relative;
  z-index: 2;
  margin-bottom: 1.875rem
}

.decor img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  position: relative;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.title::after {
  content: "";
  font-size: 1rem;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .04rem
}

.title span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: KyivTypeSerif;
  font-variation-settings: "wght" 500, "CONT" 700;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: .12rem;
  text-transform: uppercase;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.title div {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -ms-flex-item-align: end;
  align-self: flex-end;
  height: .125rem;
  position: relative;
  -webkit-transform: translateY(-1.25rem);
  -ms-transform: translateY(-1.25rem);
  transform: translateY(-1.25rem)
}

.title div img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 80%;
  object-position: 80%
}

.header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%
}

.header__top {
  overflow: hidden;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  width: 45%;
  min-width: 24.365rem;
  position: relative;
  z-index: 5;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.header__top::before {
  content: "";
  position: fixed;
  z-index: -1;
  width: 45%;
  min-width: 24.365rem;
  height: 4.875rem;
  left: -100%;
  top: 0;
  -webkit-transition: left .3s;
  transition: left .3s;
  z-index: 2;
  background: rgba(40, 40, 40, .9);
  -webkit-backdrop-filter: blur(.3125rem);
  backdrop-filter: blur(.3125rem)
}

.menu-open .header__top::before {
  left: 0
}

.header__button-box {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .25rem;
  -moz-column-gap: .25rem;
  column-gap: .25rem;
  cursor: pointer
}

.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 1.25rem;
  -moz-column-gap: 1.25rem;
  column-gap: 1.25rem
}

.header__icon-text span {
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .04rem
}

.header__icon-text span:nth-child(1) {
  display: inline-block
}

.menu-open .header__icon-text span:nth-child(1) {
  display: none
}

.header__icon-text span:nth-child(2) {
  display: none
}

.menu-open .header__icon-text span:nth-child(2) {
  display: inline-block
}

.header__search {
  pointer-events: none;
  position: relative;
  padding: .3125rem 1.5625rem .3125rem .3125rem;
  width: 100%;
  max-width: 12.5rem;
  background-color: transparent
}

.header__search-search {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .25rem;
  -moz-column-gap: .25rem;
  column-gap: .25rem
}

.header__search-input {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 1.875rem;
  width: calc(100% - 30px);
  height: 100%;
  padding-left: 1.875rem;
  background-color: transparent;
  color: #eef2fe
}

.header__languages {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .8125rem;
  -moz-column-gap: .8125rem;
  column-gap: .8125rem
}

.header__language {
  -webkit-transition: all .15s ease 0s;
  transition: all .15s ease 0s;
  position: relative
}

.header__language:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -.375rem;
  width: .0625rem;
  height: .875rem;
  background-color: #eef2fe;
  pointer-events: none
}

.header__language span {
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .04rem;
  text-transform: uppercase;
  opacity: .4
}

.header__language.active span {
  opacity: 1
}

.menu__body {
  position: fixed;
  width: 45%;
  min-width: 24.365rem;
  height: 100%;
  left: -100%;
  top: 0;
  overflow: auto;
  background: rgba(40, 40, 40, .9);
  -webkit-backdrop-filter: blur(.3125rem);
  backdrop-filter: blur(.3125rem);
  padding: 9.6875rem 1.5rem 1.875rem 1.5rem;
  -webkit-transition: left .3s;
  transition: left .3s
}

.menu-open .menu__body {
  left: 0
}

.menu__decor-body {
  position: absolute;
  z-index: 1;
  top: 80%;
  right: 0;
  width: 100%;
  height: 5.5rem;
  pointer-events: none;
  overflow: hidden
}

.menu__decor-body img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center
}

.menu__list {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem;
  margin-bottom: 2.5rem
}

.menu__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .25rem;
  -moz-column-gap: .25rem;
  column-gap: .25rem
}

.menu__link.active span {
  color: #ffbe65
}

.menu__link span:nth-child(1) {
  font-size: 1.125rem;
  rotate: -45deg;
  -webkit-transition: color .15s ease 0s;
  transition: color .15s ease 0s
}

.menu__link span:nth-child(2) {
  font-size: .875rem;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: .0525rem;
  -webkit-transition: color .15s ease 0s;
  transition: color .15s ease 0s
}

.social-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .5rem;
  -moz-column-gap: .5rem;
  column-gap: .5rem
}

.social-menu__item {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.25rem;
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem
}

.social-menu__item svg {
  width: 100%
}

.social-menu__item svg path {
  -webkit-transition: all .15s ease 0s;
  transition: all .15s ease 0s
}

.icon-menu {
  display: block;
  position: relative;
  width: 1.375rem;
  height: .875rem;
  z-index: 5
}

.icon-menu span, .icon-menu::after, .icon-menu::before {
  content: "";
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  right: 0;
  position: absolute;
  width: 100%;
  height: .125rem;
  background-color: #eef2fe
}

.icon-menu::before {
  top: 0
}

.icon-menu::after {
  bottom: 0
}

.icon-menu span {
  top: calc(50% - .0625rem)
}

.menu-open .icon-menu span {
  width: 0
}

.menu-open .icon-menu::before {
  top: calc(50% - .0625rem);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

.menu-open .icon-menu::after {
  bottom: calc(50% - .0625rem);
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.footer {
  position: relative;
  background: rgba(0, 0, 0, .25);
  -webkit-box-shadow: -4px -4px 24px 0 rgba(0, 0, 0, .2);
  box-shadow: -4px -4px 24px 0 rgba(0, 0, 0, .2)
}

.footer__container {
  max-width: 87.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem
}

.footer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: .375rem
}

.footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: .375rem
}

.footer__nav-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .375rem;
  -moz-column-gap: .375rem;
  column-gap: .375rem;
  font-size: .875rem;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: .0525rem;
  -webkit-transition: color .15s ease 0s;
  transition: color .15s ease 0s
}

.footer__nav-link span {
  font-size: 1.25rem;
  rotate: -45deg
}

.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: .375rem
}

.footer__link {
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .0525rem;
  -webkit-transition: color .15s ease 0s;
  transition: color .15s ease 0s
}

.footer__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.footer__decor-circle {
  position: absolute;
  width: 34.7%;
  min-width: 25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.footer__decor-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%
}

.footer__decor-circle img {
  max-width: 100%
}

.footer__decor-circle--1 {
  top: 0;
  left: -10%
}

.footer__decor-circle--2 {
  top: 25%;
  right: 30%
}

.hero {
  position: relative;
  min-height: 100vh
}

.hero__container {
  position: relative;
  z-index: 2;
  min-height: 100vh
}

.hero__content {
  position: relative;
  z-index: 3
}

.hero__image img {
  position: absolute;
  bottom: 0;
  left: 10%;
  height: 95%;
  aspect-ratio: 1534/2452;
  -o-object-fit: cover;
  object-fit: cover
}

.hero__background {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%
}

.hero__background img {
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.content-hero {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18.75rem 1.5rem 3.75rem 1.5rem
}

.content-hero__main {
  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%
}

.content-hero__title {
  font-family: KyivTypeSerif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: .14rem;
  max-width: 31.25rem;
  text-align: center
}

.content-hero__button {
  margin-bottom: 1rem
}

.content-hero__text {
  width: 100%;
  margin-bottom: 3.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.content-hero__text span {
  max-width: 18.75rem;
  color: #eef2fe;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .04rem
}

.content-hero__arrow-down {
  rotate: 90deg;
  font-size: 1.5rem;
  -webkit-animation: arrow-down 2s ease infinite;
  animation: arrow-down 2s ease infinite
}

@-webkit-keyframes arrow-down {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  10% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  25% {
    -webkit-transform: translateX(.25rem);
    transform: translateX(.25rem)
  }
  35% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

@keyframes arrow-down {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  10% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  25% {
    -webkit-transform: translateX(.25rem);
    transform: translateX(.25rem)
  }
  35% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
}

.forwho {
  position: relative;
  overflow: hidden
}

.forwho__container {
  max-width: 89.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem
}

.forwho__title::after {
  content: "01"
}

.forwho__lable {
  text-align: right;
  font-family: "Miama Nueva";
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .125rem
}

.forwho__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 2.5rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.forwho__item {
  width: 22.5625rem
}

.forwho__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.forwho__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.forwho__decor-circle {
  position: absolute;
  width: 31.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.forwho__decor-circle img {
  max-width: 100%
}

.forwho__decor-circle--1 {
  top: -20%;
  left: 10%
}

.forwho__decor-circle--2 {
  top: 0;
  right: 17%
}

.forwho__decor-circle--3 {
  top: 40%;
  left: 20%
}

.forwho__decor-circle--4 {
  top: 50%;
  right: 0
}

.item-forwho {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  align-items: center
}

.item-forwho__image {
  border-radius: .375rem;
  border: .5px solid rgba(255, 191, 101, .2);
  background: rgba(0, 0, 0, .3);
  aspect-ratio: 279/382;
  max-width: 77.3%;
  position: relative
}

.item-forwho__image::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(0, 0, 0, .3);
  border-radius: .375rem
}

.item-forwho__image::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  border: .5px solid rgba(255, 191, 101, .2);
  -webkit-transform: translate(.625rem, -.625rem);
  -ms-transform: translate(.625rem, -.625rem);
  transform: translate(.625rem, -.625rem)
}

.item-forwho__image img {
  width: 100%;
  border-radius: .375rem
}

.item-forwho__content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: -3.75rem
}

.item-forwho__title {
  font-family: KyivTypeSerif;
  font-weight: 500;
  font-variation-settings: "wght" 500, "CONT" 500;
  line-height: normal;
  letter-spacing: .1rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -ms-flex-item-align: start;
  align-self: flex-start;
  margin-bottom: 1.25rem
}

.item-forwho__text {
  min-height: 2.699375rem;
  -ms-flex-item-align: end;
  align-self: flex-end;
  text-align: right;
  font-family: KyivTypeSans;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: .04rem
}

.canbe {
  position: relative
}

.canbe__container {
  max-width: 89.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem
}

.canbe__title::after {
  content: "02"
}

.canbe__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.canbe__decor-circle {
  position: absolute;
  width: 31.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.canbe__decor-circle img {
  max-width: 100%
}

.canbe__decor-circle--1 {
  top: -6%;
  left: 10%
}

.canbe__decor-circle--2 {
  top: 0;
  right: 17%
}

.canbe__decor-circle--3 {
  top: 22%;
  left: 20%
}

.canbe__decor-circle--4 {
  top: 20%;
  right: 0
}

.canbe__decor-circle--5 {
  top: 30%;
  left: 5%
}

.canbe__decor-circle--6 {
  top: 35%;
  right: 17%
}

.canbe__decor-circle--7 {
  top: 50%;
  left: 15%
}

.canbe__decor-circle--8 {
  top: 62%;
  right: 17%
}

.canbe__decor-circle--9 {
  top: 80%;
  left: 5%
}

.canbe__decor-circle--10 {
  top: 90%;
  right: 0
}

.main-canbe__title {
  max-width: 43.75rem;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: .05rem
}

.main-canbe__title span {
  font-weight: 500;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

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

.main-canbe__text {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 38%;
  flex: 0 0 38%
}

.main-canbe__text:nth-child(1) {
  -ms-flex-item-align: end;
  align-self: flex-end
}

.main-canbe__text:nth-child(1) p {
  max-width: 28.125rem
}

.main-canbe__text:nth-child(3) {
  text-align: right;
  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
}

.main-canbe__text:nth-child(3) p {
  max-width: 28.125rem
}

.main-canbe__text:nth-child(3) img {
  display: inline-block;
  margin-top: -1.875rem;
  -webkit-filter: drop-shadow(0 0 .03125rem #ffbe65);
  filter: drop-shadow(0 0 .03125rem #ffbe65)
}

.main-canbe__text p {
  font-family: "Miama Nueva";
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .125rem;
  opacity: .55
}

.main-canbe__image {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%
}

.main-canbe__image img {
  max-width: 100%
}

.items-canbe__title {
  max-width: 43.75rem;
  margin: 0 auto;
  text-align: center;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: .05rem;
  font-variation-settings: "wght" 500, "CONT" 700
}

.items-canbe__title span {
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.items-canbe__box-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:(1fr) [ 3 ];
  grid-template-columns:repeat(3, 1fr);
  gap: 1.875rem
}

.item-items-canbe {
  background-clip: padding-box;
  border: .0625rem solid transparent;
  border-radius: .75rem;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #242424;
  padding: 2.5rem 1.5625rem 1.25rem .9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center
}

.item-items-canbe::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  margin: -.0625rem;
  border-radius: inherit;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(rgba(193, 132, 79, .5)));
  background: linear-gradient(to right, #ffbe65, rgba(193, 132, 79, .5))
}

.item-items-canbe__decor {
  position: absolute;
  z-index: 1;
  background-color: #242424;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 4.125rem;
  height: 4.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  border-bottom: .125rem solid #c1844f
}

.item-items-canbe__decor img {
  position: relative;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem
}

.item-items-canbe__title {
  font-family: KyivTypeSerif;
  font-variation-settings: "wght" 500, "CONT" 700;
  font-weight: 400;
  line-height: normal;
  letter-spacing: .06rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem
}

.item-items-canbe__text {
  max-width: 18.75rem;
  font-family: "Miama Nueva";
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .15rem;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto
}

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

.item-bottom-canbe__title {
  font-family: KyivTypeSerif;
  font-style: normal;
  font-weight: 500;
  font-variation-settings: "wght" 500, "CONT" 700;
  line-height: normal;
  letter-spacing: .09rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.item-bottom-canbe:nth-child(3) .item-bottom-canbe__content {
  padding-top: 5rem
}

.item-bottom-canbe__content p {
  max-width: 50rem;
  font-family: KyivTypeSans;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .05rem
}

.content-item-bottom-canbe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 32.875rem
}

.content-item-bottom-canbe__days {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:(1fr) [ 7 ];
  grid-template-columns:repeat(7, 1fr);
  gap: .9375rem
}

.content-item-bottom-canbe__day-item {
  aspect-ratio: 1;
  font-family: KyivTypeSans;
  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;
  position: relative
}

.content-item-bottom-canbe__day-item span {
  font-variation-settings: "wght" 500, "CONT" 700;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .05375rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.content-item-bottom-canbe__day-item:nth-child(1)::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  height: 2.75rem;
  border-right: 2px solid rgba(255, 191, 101, .7);
  border-top: 2px solid rgba(255, 191, 101, .7)
}

.content-item-bottom-canbe__day-item:nth-child(1) div {
  width: 13rem;
  top: -4.25rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

.content-item-bottom-canbe__day-item:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  height: 4.4375rem;
  border-right: 2px solid rgba(255, 191, 101, .7);
  border-bottom: 2px solid rgba(255, 191, 101, .7)
}

.content-item-bottom-canbe__day-item:nth-child(3) div {
  width: 13rem;
  top: 6.5625rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

.content-item-bottom-canbe__day-item:nth-child(5)::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  height: 2.875rem;
  border-left: 2px solid rgba(255, 191, 101, .7);
  border-top: 2px solid rgba(255, 191, 101, .7)
}

.content-item-bottom-canbe__day-item:nth-child(5) div {
  width: 13rem;
  top: -4.25rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.content-item-bottom-canbe__day-item:nth-child(6)::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  height: 4.5625rem;
  height: 4.5rem;
  border-left: 2px solid rgba(255, 191, 101, .7);
  border-bottom: 2px solid rgba(255, 191, 101, .7)
}

.content-item-bottom-canbe__day-item:nth-child(6) div {
  width: 13rem;
  top: 5.9375rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left
}

.content-item-bottom-canbe__day-item div {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.content-item-bottom-canbe__day-item div span:nth-child(1) {
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .05375rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.content-item-bottom-canbe__day-item div span:nth-child(2) {
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: .04rem;
  background: #eef2fe;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.content-item-bottom-canbe__day-item--active {
  border-radius: 50%;
  border: 1.342px solid #ffbe65
}

.content-item-bottom-canbe__numbers {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:(1fr) [ 7 ];
  grid-template-columns:repeat(7, 1fr);
  gap: .9375rem
}

.content-item-bottom-canbe__numbers:nth-child(2) {
  opacity: 1
}

.content-item-bottom-canbe__numbers:nth-child(3) {
  opacity: .4
}

.content-item-bottom-canbe__numbers:nth-child(4) {
  opacity: .1
}

.content-item-bottom-canbe__number-item {
  font-family: KyivTypeSans;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .04rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.everyweek {
  position: relative
}

.everyweek__container {
  max-width: 89.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem
}

.everyweek__title::after {
  content: "03"
}

.everyweek__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:(1fr) [ 3 ];
  grid-template-columns:repeat(3, 1fr)
}

.everyweek__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.everyweek__decor-circle {
  position: absolute;
  width: 31.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.everyweek__decor-circle img {
  max-width: 100%
}

.everyweek__decor-circle--1 {
  top: -12%;
  left: 10%
}

.everyweek__decor-circle--2 {
  top: 0;
  right: 17%
}

.everyweek__decor-circle--3 {
  top: 40%;
  left: 20%
}

.everyweek__decor-circle--4 {
  top: 20%;
  right: 10%
}

.everyweek__decor-circle--5 {
  top: 70%;
  left: 5%
}

.everyweek__decor-circle--6 {
  top: 85%;
  right: 0
}

.item-everyweek {
  border-radius: .25rem;
  border: .0625rem solid #ffbe65;
  background-color: #242424;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  padding: 1rem 1.5rem;
  row-gap: 1rem;
  min-height: 16.875rem;
  position: relative
}

.item-everyweek::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  border: 1px solid rgba(255, 191, 101, .5);
  -webkit-transform: translate(.625rem, -.625rem);
  -ms-transform: translate(.625rem, -.625rem);
  transform: translate(.625rem, -.625rem)
}

.item-everyweek__icon {
  width: 2.5rem;
  height: 2.5rem
}

.item-everyweek__icon img {
  max-width: 100%
}

.item-everyweek__title {
  font-family: KyivTypeSerif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: .0625rem
}

.item-everyweek__text {
  -ms-flex-item-align: start;
  align-self: flex-start;
  text-align: left;
  font-size: .875rem;
  font-style: normal;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: .0525rem
}

.item-everyweek--active {
  background: rgba(255, 190, 101, .05)
}

.item-everyweek--active::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  -webkit-backdrop-filter: blur(.21875rem);
  backdrop-filter: blur(.21875rem)
}

.item-everyweek--active .item-everyweek__title {
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.item-everyweek--active .item-everyweek__text {
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.bottom-everyweek {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.bottom-everyweek__title {
  max-width: 37.5rem;
  margin: 0 auto;
  font-family: KyivTypeSerif;
  font-variation-settings: "wght" 500, "CONT" 700;
  font-weight: 500;
  line-height: normal;
  letter-spacing: .09rem;
  text-align: center;
  background: var(--main-gradient, linear-gradient(90deg, #ffbe65 0, #bc9882 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.bottom-everyweek__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:(1fr) [ 4 ];
  grid-template-columns:repeat(4, 1fr)
}

.bottom-everyweek__button {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center
}

.item-bottom-everyweek {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  row-gap: 1rem
}

.item-bottom-everyweek__icon {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.5rem;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem
}

.item-bottom-everyweek__icon img {
  width: 100%
}

.item-bottom-everyweek__text {
  max-width: 17.5rem;
  font-family: KyivTypeSans;
  font-variation-settings: "wght" 400, "CONT" 500;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: .04rem
}

.listofthemes {
  position: relative
}

.listofthemes__container {
  max-width: 89.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem
}

.listofthemes__title::after {
  content: "04"
}

.listofthemes__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.listofthemes__info {
  margin-left: auto;
  color: #ffbe65;
  text-align: right;
  font-family: KyivTypeSans;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .0525rem;
  max-width: 31.25rem
}

.listofthemes__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.listofthemes__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:(1fr) [ 3 ];
  grid-template-columns:repeat(3, 1fr);
  height: 18.75rem;
  overflow: hidden;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.listofthemes__list.open {
  height: auto
}

.listofthemes__list-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.listofthemes__list-item {
  font-family: KyivTypeSans;
  font-variation-settings: "wght" 400, "CONT" 700;
  font-size: .875rem;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: .0525rem
}

.listofthemes__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.listofthemes__decor-circle {
  position: absolute;
  width: 31.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.listofthemes__decor-circle img {
  max-width: 100%
}

.listofthemes__decor-circle--1 {
  top: -25%;
  left: 10%
}

.listofthemes__decor-circle--2 {
  top: 0;
  right: 17%
}

.listofthemes__decor-circle--3 {
  top: 40%;
  left: 10%
}

.listofthemes__decor-circle--4 {
  top: 60%;
  right: -20%
}

.header-listofthemes__title {
  font-family: KyivTypeSerif;
  font-weight: 500;
  line-height: normal;
  letter-spacing: .09rem;
  text-align: center
}

.bonus {
  position: relative
}

.bonus__container {
  max-width: 89.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.bonus__title {
  margin-bottom: 1.375rem
}

.bonus__title::after {
  content: "05"
}

.bonus__label {
  font-family: "Miama Nueva";
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .125rem;
  max-width: 32.5rem;
  text-align: right;
  -ms-flex-item-align: end;
  align-self: flex-end;
  margin-bottom: 2rem
}

.bonus__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:(1fr) [ 2 ];
  grid-template-columns:repeat(2, 1fr)
}

.bonus__prices-box {
  max-width: 87.5rem;
  width: 100%;
  margin: 0 auto;
  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;
  margin-top: -4.75rem;
  margin-bottom: 2rem
}

.bonus__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right;
  margin-bottom: 1.5rem
}

.bonus__price-old {
  font-family: KyivTypeSerif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: .12rem;
  text-transform: uppercase;
  text-decoration: line-through;
  text-wrap: nowrap;
  opacity: .7
}

.bonus__price-new {
  font-family: KyivTypeSerif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: .12rem;
  text-transform: uppercase;
  background: var(--main-gradient, linear-gradient(90deg, #ffbe65 0, #bc9882 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.bonus__text {
  text-align: right;
  color: #ffbe65;
  font-family: KyivTypeSans;
  font-variation-settings: "wght" 400, "CONT" 700;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .0525rem;
  max-width: 30rem
}

.bonus__button {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center
}

.bonus__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.bonus__decor-circle {
  position: absolute;
  width: 31.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.bonus__decor-circle img {
  max-width: 100%
}

.bonus__decor-circle--1 {
  top: -15%;
  left: 10%
}

.bonus__decor-circle--2 {
  top: 10%;
  right: 17%
}

.bonus__decor-circle--3 {
  top: 32%;
  left: 30%
}

.bonus__decor-circle--4 {
  top: 60%;
  right: 0
}

.bonus__decor-circle--5 {
  top: 50%;
  left: -20%
}

.item-bonus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1rem
}

.item-bonus:nth-child(3) .item-bonus__button {
  display: none
}

.item-bonus__title {
  border-bottom: .0625rem solid #ffbe65;
  background: rgba(255, 190, 101, .15);
  -webkit-box-shadow: -.25rem -.25rem 1.5rem 0 rgba(0, 0, 0, .2);
  box-shadow: -.25rem -.25rem 1.5rem 0 rgba(0, 0, 0, .2);
  padding: 1.5rem 1rem;
  font-family: KyivTypeSans;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: .04rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .75rem;
  -moz-column-gap: .75rem;
  column-gap: .75rem
}

.item-bonus__title::before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.25rem;
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../img/icons/archive-tick.svg);
  background-position: center;
  background-repeat: no-repeat
}

.item-bonus__body {
  border: .0625rem solid #ffbe65;
  background: #242424;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: .75rem
}

.item-bonus__list {
  height: 18.75rem;
  overflow: hidden
}

.item-bonus__list.open {
  height: auto
}

.item-bonus__list-item {
  font-family: KyivTypeSans;
  font-size: .875rem;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .0525rem
}

.item-bonus__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .625rem;
  -moz-column-gap: .625rem;
  column-gap: .625rem;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.item-bonus__item:not(:last-child) {
  margin-bottom: .75rem
}

.item-bonus__item div:nth-child(1) {
  font-family: KyivTypeSans;
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .0525rem
}

.item-bonus__item div:nth-child(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.item-bonus__item div:nth-child(2) span {
  font-family: KyivTypeSans;
  font-size: .875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .0525rem
}

.item-bonus__item div:nth-child(2) span:nth-child(1) {
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700
}

.price {
  position: relative
}

.price__container {
  max-width: 89.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.price__title::after {
  content: "06"
}

.price__items {
  max-width: 62.5rem;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:(1fr) [ 3 ];
  grid-template-columns:repeat(3, 1fr);
  gap: 2rem
}

.price__label {
  margin: 0 -1.5rem;
  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;
  text-align: center;
  border-top: .0625rem solid #ffbe65;
  border-bottom: .0625rem solid #ffbe65;
  background: rgba(255, 190, 101, .05);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem
}

.price__label p {
  max-width: 31.625rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: KyivTypeSans;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: .05rem;
  font-variation-settings: "wght" 500, "CONT" 700
}

.price__label p span {
  font-family: KyivTypeSerif;
  letter-spacing: .1rem
}

.price__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.price__decor-circle {
  position: absolute;
  width: 31.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.price__decor-circle img {
  max-width: 100%
}

.price__decor-circle--1 {
  top: -15%;
  left: 10%
}

.price__decor-circle--2 {
  top: 0;
  right: 17%
}

.price__decor-circle--3 {
  top: 32%;
  left: 30%
}

.price__decor-circle--4 {
  top: 60%;
  right: 0
}

.price__decor-circle--5 {
  top: 50%;
  left: -20%
}

.item-price {
  border-radius: .25rem;
  border: .0625rem solid #ffbe65;
  background: #242424;
  padding: 2.25rem .75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  min-height: 16.875rem;
  position: relative
}

.item-price::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  border: .0625rem solid rgba(255, 191, 101, .5);
  -webkit-transform: translate(.625rem, -.625rem);
  -ms-transform: translate(.625rem, -.625rem);
  transform: translate(.625rem, -.625rem)
}

.item-price__icon {
  rotate: 90deg;
  font-size: 2.25rem;
  color: #ffbe65
}

.item-price__white-text {
  font-family: KyivTypeSans;
  font-weight: 500;
  line-height: normal;
  letter-spacing: .04rem;
  text-decoration: line-through;
  opacity: .7
}

.item-price__gold-text {
  font-family: KyivTypeSans;
  font-variation-settings: "wght" 500, "CONT" 700;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .04rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.themes-price {
  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
}

.themes-price__icon {
  rotate: 90deg;
  font-size: 2.25rem;
  color: #ffbe65;
  margin-bottom: 1.5rem
}

.themes-price__items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns:(1fr) [ 2 ];
  grid-template-columns:repeat(2, 1fr)
}

.item-themes-price {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-column-gap: 1.5rem;
  -moz-column-gap: 1.5rem;
  column-gap: 1.5rem
}

.item-themes-price__text {
  margin-top: .25rem;
  font-family: KyivTypeSans;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .04rem
}

.item-themes-price__duration {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .5rem
}

.item-themes-price__duration span {
  rotate: -45deg;
  font-size: 1.125rem
}

.item-themes-price__duration div {
  font-family: KyivTypeSans;
  font-variation-settings: "wght" 500, "CONT" 700;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: .05rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.form {
  position: relative
}

.form__container {
  max-width: 89.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.form__title::after {
  content: "07"
}

.form__label {
  font-family: KyivTypeSans;
  font-weight: 400;
  font-variation-settings: "wght" 400, "CONT" 1000;
  line-height: 165%;
  letter-spacing: .05rem
}

.form__content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 3.125rem;
  -moz-column-gap: 3.125rem;
  column-gap: 3.125rem
}

.form__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.form__decor-circle {
  position: absolute;
  width: 31.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.form__decor-circle img {
  max-width: 100%
}

.form__decor-circle--1 {
  top: -15%;
  left: 10%
}

.form__decor-circle--2 {
  top: 0;
  right: 17%
}

.form__decor-circle--3 {
  top: 32%;
  left: 30%
}

.form__decor-circle--4 {
  top: 60%;
  right: 0
}

.form__decor-circle--5 {
  top: 50%;
  left: -20%
}

.book-form {
  -ms-flex-item-align: start;
  align-self: flex-start;
  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;
  position: relative
}

.book-form__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  border-radius: 4px
}

.book-form__icon {
  width: 2.5rem;
  height: 2.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.5rem;
  flex: 0 0 2.5rem
}

.book-form__icon img {
  max-width: 100%
}

.book-form__title {
  color: #ffbe65;
  font-family: KyivTypeSerif;
  font-weight: 500;
  letter-spacing: .96px .06rem;
  margin-bottom: 1rem
}

.book-form__text {
  color: #eef2fe;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .84px
}

.book-form__image {
  aspect-ratio: 1991/1674
}

.book-form__image img {
  max-width: 100%
}

.karpform__icons {
  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;
  max-width: 27.125rem
}

.karpform__prices-box {
  -ms-flex-item-align: end;
  align-self: flex-end;
  width: 100%;
  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;
  margin-bottom: 2rem
}

.karpform__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right
}

.karpform__price-old {
  font-family: KyivTypeSerif;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: .12rem;
  text-transform: uppercase;
  text-decoration: line-through;
  text-wrap: nowrap;
  opacity: .7
}

.karpform__price-new {
  font-family: KyivTypeSerif;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: .12rem;
  text-transform: uppercase;
  background: var(--main-gradient, linear-gradient(90deg, #ffbe65 0, #bc9882 100%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.karpform__text {
  text-align: right;
  color: #eef2fe;
  font-family: KyivTypeSans;
  font-weight: 400;
  font-variation-settings: "wght" 400, "CONT" 700;
  line-height: 165%;
  letter-spacing: .0525rem;
  max-width: 30rem
}

.karpform {
  width: 100%;
  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
}

.karpform__field {
  display: block;
  width: 100%;
  max-width: 27.125rem
}

.karpform__field:nth-child(2) .karpform__input {
  border-radius: 0 3.625rem 3.625rem 0
}

.karpform__field:not(:last-of-type) {
  margin: 1.2rem 0
}

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

.karpform__field.error {
  color: red
}

.karpform__field.error .karpform__input::-webkit-input-placeholder {
  color: red
}

.karpform__field.error .karpform__input::-moz-placeholder {
  color: red
}

.karpform__field.error .karpform__input:-ms-input-placeholder {
  color: red
}

.karpform__field.error .karpform__input::-ms-input-placeholder {
  color: red
}

.karpform__field.error .karpform__input::placeholder {
  color: red
}

.karpform__field.error .karpform__error {
  display: block
}

.karpform__select {
  width: 100px
}

.karpform__content {
  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%
}

.karpform__content.disabled {
  display: none
}

.karpform__loading {
  display: none;
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, .7)
}

.karpform__loading-icon {
  max-height: 95%;
  -o-object-fit: contain;
  object-fit: contain
}

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

.karpform__input {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border: none;
  outline: 0;
  border-radius: 3.625rem;
  border: .0625rem solid #ffbe65;
  background: #242424;
  color: #eef2fe;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: .04rem
}

.karpform__error {
  display: none;
  font-size: 12px;
  padding: 5px 0 0 .5em
}

.karpform__phone {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px
}

.karpform__btns {
  text-align: center
}

.karpform__submit {
  margin: 0 auto;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-radius: 4rem;
  padding: .5rem .75rem;
  width: 20rem;
  height: 3rem;
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background: -webkit-gradient(linear, left top, right top, from(#ff8845), to(#c83e3e));
  background: linear-gradient(90deg, #ff8845 0, #c83e3e 100%);
  -webkit-transition: all .15s ease 0s;
  transition: all .15s ease 0s
}

.karpform-result {
  display: none;
  text-align: center
}

.karpform-result.act {
  display: block
}

.karpform-result__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto .5em
}

.karpselect {
  color: #fff;
  border-radius: 6px
}

.karpselect__actual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #eef2fe;
  background: 0 0;
  padding: 10px 15px 10px 20px;
  cursor: pointer;
  border: none;
  border-radius: 3.625rem 0 0 3.625rem;
  border: .0625rem solid #ffbe65;
  border-right: none;
  color: #eef2fe;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: .04rem
}

.karpselect__actual svg {
  width: 20px;
  height: 20px;
  margin-right: 10px
}

.karpselect__actual-arrow {
  border: solid #eef2fe;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
  float: right;
  pointer-events: none;
  margin-left: 10px
}

.karpselect__list {
  position: absolute;
  margin-top: 10px;
  padding: 0;
  display: none;
  border: 2px solid #ffbe65;
  border-radius: 8px;
  z-index: 1;
  max-height: 300px;
  overflow-x: auto;
  background-color: #eef2fe
}

.karpselect__list::-webkit-scrollbar {
  width: 1rem;
  border-radius: 0 1.25rem 1.25rem 0;
  background-color: #eef2fe
}

.karpselect__list::-webkit-scrollbar-thumb {
  background-color: #ffbe65;
  height: 2.5rem;
  border: .125rem solid #eef2fe;
  border-radius: 1.25rem
}

.karpselect__list li {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  list-style: none;
  color: #242424;
  padding: 12px 28px 10px 10px
}

.karpselect__list li:hover {
  background-color: #fff
}

.karpselect__list li svg {
  width: 20px;
  height: 20px;
  margin-right: 10px
}

.karpselect-mobile {
  width: 80% !important;
  position: fixed !important;
  top: 5% !important;
  left: 10% !important;
  border: 0 !important;
  height: 90% !important;
  margin: 0 !important;
  overflow-y: scroll;
  z-index: 10 !important;
  max-height: 100% !important
}

.karpselect-mobile li {
  padding: 20px !important
}

.karpselect-mobile-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, .8);
  z-index: 9
}

.karpselect .up {
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  -webkit-transition: all .2s ease;
  transition: all .2s ease
}

.karpselect .down {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -webkit-transition: all .2s ease;
  transition: all .2s ease
}

.karpselect .stop-scrolling {
  height: 100%;
  overflow: hidden
}

.why {
  position: relative
}

.why__container {
  max-width: 89.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.why__title::after {
  content: "08"
}

.why__slider {
  position: relative;
  z-index: 2
}

.why__buttons {
  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-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  padding-bottom: .625rem
}

.why__button {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.75rem;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: .0625rem solid #ffbe65;
  -webkit-transition: all .15s ease 0s;
  transition: all .15s ease 0s
}

.why__button.swiper-button-disabled {
  opacity: .5
}

.why__button span {
  color: #ffbe65;
  font-size: 1.5rem
}

.why__button--left span {
  scale: -1
}

.why__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.why__decor-circle {
  position: absolute;
  width: 31.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.why__decor-circle img {
  max-width: 100%
}

.why__decor-circle--1 {
  top: -22%;
  left: 10%
}

.why__decor-circle--2 {
  top: 0;
  right: 17%
}

.why__decor-circle--3 {
  top: 25%;
  left: 30%
}

.why__decor-circle--4 {
  top: 60%;
  right: 0
}

.slide-why {
  padding: 1rem 1.5rem;
  border-radius: .25rem;
  border: 1px solid #eef2fe;
  opacity: .5;
  background: #242424;
  scale: .8;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  pointer-events: none;
  height: 312px
}

.slide-why.swiper-slide-active {
  opacity: 1;
  border: .0625rem solid #ffbe65;
  background: #242424;
  scale: 1;
  pointer-events: all;
  height: auto
}

.slide-why.swiper-slide-active .slide-why.swiper-slide-active .slide-why__link span:nth-child(1) {
  background: -webkit-gradient(linear, left top, right top, from(#ffbe65), to(#bc9882));
  background: linear-gradient(90deg, #ffbe65 0, #bc9882 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.slide-why.swiper-slide-active .slide-why__body.open .slide-why__text {
  display: block
}

.slide-why__author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .5rem;
  -moz-column-gap: .5rem;
  column-gap: .5rem;
  margin-bottom: 1rem
}

.slide-why__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(255, 190, 101, .5);
  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;
  overflow: hidden
}

.slide-why__name {
  font-style: normal;
  font-weight: 500;
  line-height: 165%;
  letter-spacing: .0525rem
}

.slide-why__body {
  margin-bottom: 1.5rem
}

.slide-why__text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  font-variation-settings: "wght" 400, "CONT" 700;
  font-style: normal;
  font-weight: 400;
  line-height: 145%;
  margin-bottom: .75rem
}

.slide-why__read {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .125rem;
  -moz-column-gap: .125rem;
  column-gap: .125rem;
  font-weight: 500;
  letter-spacing: .0625rem;
  opacity: .5;
  -webkit-transition: opacity .15s ease 0s;
  transition: opacity .15s ease 0s
}

.slide-why__read span:nth-child(1) {
  display: block
}

.slide-why__read.open span:nth-child(1) {
  display: none
}

.slide-why__read span:nth-child(2) {
  display: none
}

.slide-why__read.open span:nth-child(2) {
  display: block
}

.slide-why__read span:nth-child(3) {
  -webkit-transition: all .15s ease 0s;
  transition: all .15s ease 0s
}

.slide-why__read.open span:nth-child(3) {
  rotate: -90deg
}

.slide-why__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .25rem;
  -moz-column-gap: .25rem;
  column-gap: .25rem;
  text-wrap: nowrap
}

.slide-why__link span:nth-child(1) {
  font-weight: 500;
  line-height: 135%;
  letter-spacing: .075rem;
  -webkit-transition: all .15s ease 0s;
  transition: all .15s ease 0s;
  font-variation-settings: "wght" 500, "CONT" 700
}

.slide-why__link span:nth-child(2) {
  font-size: 1.125rem;
  -webkit-transition: all .15s ease 0s;
  transition: all .15s ease 0s;
  rotate: -45deg
}

.telegram {
  position: relative
}

.telegram__container {
  max-width: 89.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.telegram__title::after {
  content: "09"
}

.telegram__swiper {
  position: relative;
  z-index: 2
}

.telegram__buttons {
  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-column-gap: 3rem;
  -moz-column-gap: 3rem;
  column-gap: 3rem;
  padding-bottom: .625rem
}

.telegram__button {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 2.75rem;
  flex: 0 0 2.75rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: .0625rem solid #ffbe65;
  -webkit-transition: all .15s ease 0s;
  transition: all .15s ease 0s
}

.telegram__button.swiper-button-disabled {
  opacity: .5
}

.telegram__button span {
  color: #ffbe65;
  font-size: 1.5rem
}

.telegram__button--left span {
  scale: -1
}

.telegram__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.telegram__decor-circle {
  position: absolute;
  width: 31.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.telegram__decor-circle img {
  max-width: 100%
}

.telegram__decor-circle--1 {
  top: -17%;
  left: 10%
}

.telegram__decor-circle--2 {
  top: 0;
  right: 17%
}

.telegram__decor-circle--3 {
  top: 40%;
  left: 30%
}

.telegram__decor-circle--4 {
  top: 60%;
  right: 0
}

.slide-telegram {
  padding: 1.25rem;
  opacity: .5;
  scale: .8;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s
}

.slide-telegram.swiper-slide-active {
  opacity: 1;
  scale: 1
}

.slide-telegram__body {
  border-radius: .25rem;
  border: .0625rem solid #ffbe65;
  background: #242424;
  padding: 1.25rem;
  position: relative
}

.slide-telegram__body::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  border: .0625rem solid rgba(255, 191, 101, .5);
  -webkit-transform: translate(.625rem, -.625rem);
  -ms-transform: translate(.625rem, -.625rem);
  transform: translate(.625rem, -.625rem)
}

.slide-telegram__image {
  position: relative;
  border-radius: .75rem;
  overflow: hidden;
  aspect-ratio: 363/543
}

.slide-telegram__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.questions {
  position: relative
}

.questions__container {
  max-width: 89.5rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.questions__title::after {
  content: "10"
}

.questions__spollers {
  max-width: 58.75rem;
  width: 100%;
  margin: 0 auto
}

.questions__decor-circles {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none
}

.questions__decor-circle {
  position: absolute;
  width: 31.25rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden
}

.questions__decor-circle img {
  max-width: 100%
}

.questions__decor-circle--1 {
  top: -25%;
  left: 10%
}

.questions__decor-circle--2 {
  top: 0;
  right: 17%
}

.questions__decor-circle--3 {
  top: 40%;
  left: 30%
}

.questions__decor-circle--4 {
  top: 60%;
  right: 0
}

.spollers__item {
  border-bottom: .0625rem solid rgba(238, 242, 254, .3);
  padding: 1.25rem 0
}

.spollers__title {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 1.875rem;
  -moz-column-gap: 1.875rem;
  column-gap: 1.875rem;
  cursor: pointer
}

.spollers__title-text {
  color: #eef2fe;
  font-weight: 400;
  line-height: 165%;
  letter-spacing: .05rem;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: .5rem;
  -moz-column-gap: .5rem;
  column-gap: .5rem
}

.spollers__title-text::before {
  content: "";
  -webkit-transform: translateY(.25rem);
  -ms-transform: translateY(.25rem);
  transform: translateY(.25rem);
  width: 1.5rem;
  height: 1.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 1.5rem;
  flex: 0 0 1.5rem;
  background-image: url(../img/icons/message-question.svg);
  background-position: center;
  background-repeat: no-repeat
}

.spollers__title-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: .375rem;
  -moz-column-gap: .375rem;
  column-gap: .375rem
}

.spollers__title-button span {
  color: #ffbe65;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: .04rem
}

._spoller-active .spollers__title-button span:nth-child(1) {
  display: none
}

.spollers__title-button span:nth-child(2) {
  display: none
}

._spoller-active .spollers__title-button span:nth-child(2) {
  display: inline-block
}

.spollers__title-button span:nth-child(3) {
  -webkit-transition: rotate .15s ease 0s;
  transition: rotate .15s ease 0s
}

._spoller-active .spollers__title-button span:nth-child(3) {
  rotate: -90deg
}

.spollers__body {
  padding: 1.25rem .75rem 0 .75rem;
  font-weight: 400
}

.spollers__body p {
  color: #eef2fe;
  line-height: 135%;
  letter-spacing: .04rem
}

.spollers__body ul {
  padding-left: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: .625rem
}

.spollers__body ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-column-gap: .5rem;
  -moz-column-gap: .5rem;
  column-gap: .5rem;
  color: #eef2fe;
  line-height: 135%;
  letter-spacing: .04rem
}

.spollers__body ul li::before {
  content: "";
  -webkit-transform: translateY(.375rem);
  -ms-transform: translateY(.375rem);
  transform: translateY(.375rem);
  -webkit-box-flex: 0;
  -ms-flex: 0 0 .5rem;
  flex: 0 0 .5rem;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
  background-color: #eef2fe
}

.swiper {
  overflow: hidden
}

.swiper-initialized {
  -ms-touch-action: pan-y;
  touch-action: pan-y
}

.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(0, 0, 0);
  transform: translate3d(0, 0, 0)
}

.swiper-button-lock {
  display: none !important
}

@media (min-width: 47.99875em) {
  .button-show-more.button-show-more--pc {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
  }

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

  .hero__content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%
  }

  .hero__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65%;
    flex: 0 0 65%;
    position: relative
  }

  .hero__background-span-1 {
    position: absolute;
    top: 0;
    right: 30%;
    z-index: 2;
    width: 26%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, right top, from(#c1844f), color-stop(45.31%, #e5bf97), to(#ffbe65));
    background: linear-gradient(90deg, #c1844f 0, #e5bf97 45.31%, #ffbe65 100%);
    mix-blend-mode: color-dodge;
    -webkit-filter: blur(150px);
    filter: blur(150px);
    opacity: .13
  }

  .hero__background-span-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 26%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: -webkit-gradient(linear, left top, right top, from(#c1844f), color-stop(45.31%, #e5bf97), to(#ffbe65));
    background: linear-gradient(90deg, #c1844f 0, #e5bf97 45.31%, #ffbe65 100%);
    mix-blend-mode: color-dodge;
    -webkit-filter: blur(150px);
    filter: blur(150px);
    opacity: .13
  }

  .hero__background-span-3 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 26%;
    aspect-ratio: 1;
    border-radius: 50%;
    border-radius: 500px;
    opacity: .13;
    background: -webkit-gradient(linear, left top, right top, color-stop(.19%, #b61c42), color-stop(49.15%, #e4345d), color-stop(100.19%, #4c3437));
    background: linear-gradient(90deg, #b61c42 .19%, #e4345d 49.15%, #4c3437 100.19%);
    mix-blend-mode: color-dodge;
    -webkit-filter: blur(150px);
    filter: blur(150px);
    opacity: .13
  }

  .hero__background-span-4 {
    position: absolute;
    bottom: 10%;
    left: 20%;
    z-index: 2;
    width: 26%;
    aspect-ratio: 1;
    border-radius: 50%;
    border-radius: 500px;
    opacity: .13;
    background: -webkit-gradient(linear, left top, right top, from(#c1844f), color-stop(45.31%, #e5bf97), to(#ffbe65));
    background: linear-gradient(90deg, #c1844f 0, #e5bf97 45.31%, #ffbe65 100%);
    mix-blend-mode: color-dodge;
    -webkit-filter: blur(150px);
    filter: blur(150px);
    opacity: .13
  }

  .content-hero {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(47.28%, rgba(0, 0, 0, .25)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, .25) 47.28%, rgba(0, 0, 0, 0) 100%);
    -webkit-backdrop-filter: blur(.6875rem);
    backdrop-filter: blur(.6875rem)
  }

  .item-themes-price:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .item-themes-price:nth-child(even) .item-themes-price__text {
    text-align: start
  }

  .item-themes-price:nth-child(odd) .item-themes-price__duration {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }

  .item-themes-price:nth-child(odd) .item-themes-price__duration span {
    rotate: -135deg
  }

  .item-themes-price:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: .0625rem;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(193, 132, 79, 0)), color-stop(45.31%, #e5bf97), to(#ffbe65));
    background: linear-gradient(0deg, rgba(193, 132, 79, 0) 0, #e5bf97 45.31%, #ffbe65 100%)
  }

  .item-themes-price:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: .0625rem;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(193, 132, 79, 0)), color-stop(45.31%, #e5bf97), to(#ffbe65));
    background: linear-gradient(180deg, rgba(193, 132, 79, 0) 0, #e5bf97 45.31%, #ffbe65 100%)
  }

  .book-form__info {
    max-width: 23.25rem;
    border: 1px solid var(--main-gradient, #ffbe65);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 190, 101, .25)), to(rgba(255, 190, 101, .25))), rgba(0, 0, 0, .24);
    background: linear-gradient(0deg, rgba(255, 190, 101, .25) 0, rgba(255, 190, 101, .25) 100%), rgba(0, 0, 0, .24);
    -webkit-backdrop-filter: blur(45px);
    backdrop-filter: blur(45px);
    padding: 1rem 1.5rem
  }
}

@media (min-width: 61.99875em) {
  .content-item-bottom-canbe {
    row-gap: 2rem
  }

  .content-item-bottom-canbe__day-item span {
    font-size: 1.3125rem
  }

  .content-item-bottom-canbe__number-item {
    font-size: 1rem
  }

  .book-form__info {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
  }
}

@media (min-width: 120em) {
  .popup__title span {
    font-size: 1rem
  }

  .title span {
    font-size: 3rem
  }

  .footer {
    padding-top: 3.75rem
  }

  .footer {
    padding-bottom: 3.75rem
  }

  .footer__top {
    margin-bottom: 3.75rem
  }

  .footer__main {
    -webkit-column-gap: 4.375rem;
    -moz-column-gap: 4.375rem;
    column-gap: 4.375rem
  }

  .footer__link {
    font-size: .875rem
  }

  .page__forwho {
    padding-top: 3.75rem
  }

  .page__forwho {
    padding-bottom: 1.875rem
  }

  .page__canbe {
    padding-top: 3.75rem
  }

  .page__canbe {
    padding-bottom: 1.875rem
  }

  .page__everyweek {
    padding-top: 3.75rem
  }

  .page__everyweek {
    padding-bottom: 1.875rem
  }

  .page__listofthemes {
    padding-top: 3.75rem
  }

  .page__listofthemes {
    padding-bottom: 3.75rem
  }

  .page__bonus {
    padding-top: 3.75rem
  }

  .page__bonus {
    padding-bottom: 3.75rem
  }

  .page__price {
    padding-top: 3.75rem
  }

  .page__price {
    padding-bottom: 1.875rem
  }

  .page__form {
    padding-top: 3.75rem
  }

  .page__form {
    padding-bottom: 1.875rem
  }

  .page__why {
    padding-top: 3.75rem
  }

  .page__why {
    padding-bottom: 3.75rem
  }

  .page__telegram {
    padding-top: 3.75rem
  }

  .page__telegram {
    padding-bottom: 1.875rem
  }

  .page__questions {
    padding-top: 3.75rem
  }

  .page__questions {
    padding-bottom: 1.875rem
  }

  .content-hero__title {
    font-size: 3.5rem
  }

  .content-hero__title {
    margin-bottom: 3.375rem
  }

  .forwho__title {
    margin-bottom: 1.375rem
  }

  .forwho__lable {
    font-size: 1.375rem
  }

  .forwho__lable--1 {
    margin-bottom: 5rem
  }

  .forwho__items {
    -webkit-column-gap: 8.75rem;
    -moz-column-gap: 8.75rem;
    column-gap: 8.75rem
  }

  .forwho__items {
    margin-bottom: 5rem
  }

  .item-forwho__title {
    font-size: 2.5rem
  }

  .canbe__title {
    margin-bottom: 3.75rem
  }

  .main-canbe__title {
    font-size: 1.25rem
  }

  .main-canbe__title {
    margin-bottom: 4rem
  }

  .main-canbe__body {
    margin-bottom: 4rem
  }

  .main-canbe__text:nth-child(3) {
    row-gap: 2.5rem
  }

  .main-canbe__text p {
    font-size: 1.375rem
  }

  .items-canbe__title {
    font-size: 1.25rem
  }

  .items-canbe__title {
    margin-bottom: 3rem
  }

  .items-canbe__box-items {
    margin-bottom: 4.375rem
  }

  .item-items-canbe__title {
    font-size: 1.5rem
  }

  .item-items-canbe__text {
    font-size: 1.5rem
  }

  .bottom-canbe {
    row-gap: 8rem
  }

  .item-bottom-canbe__title {
    font-size: 2.25rem
  }

  .item-bottom-canbe__title {
    margin-bottom: 1.5rem
  }

  .item-bottom-canbe__content p {
    font-size: 1.25rem
  }

  .content-item-bottom-canbe__day-item:nth-child(1)::before {
    width: 4.875rem
  }

  .content-item-bottom-canbe__day-item:nth-child(1) div {
    left: -16.75rem
  }

  .content-item-bottom-canbe__day-item:nth-child(3)::before {
    width: 14.4375rem
  }

  .content-item-bottom-canbe__day-item:nth-child(3) div {
    left: -26.25rem
  }

  .content-item-bottom-canbe__day-item:nth-child(5)::before {
    width: 14.125rem
  }

  .content-item-bottom-canbe__day-item:nth-child(5) div {
    left: 16.75rem
  }

  .content-item-bottom-canbe__day-item:nth-child(6)::before {
    width: 9.3125rem
  }

  .content-item-bottom-canbe__day-item:nth-child(6) div {
    left: 11.9375rem
  }

  .content-item-bottom-canbe__day-item div span:nth-child(1) {
    font-size: 1.3125rem
  }

  .content-item-bottom-canbe__day-item div span:nth-child(2) {
    font-size: 1rem
  }

  .everyweek__title {
    margin-bottom: 2.625rem
  }

  .everyweek__items {
    gap: 2rem
  }

  .everyweek__items {
    margin-bottom: 5.5rem
  }

  .item-everyweek__title {
    font-size: 1.5rem
  }

  .bottom-everyweek__title {
    font-size: 2.25rem
  }

  .bottom-everyweek__title {
    margin-bottom: 2.625rem
  }

  .bottom-everyweek__items {
    gap: 4rem
  }

  .bottom-everyweek__items {
    margin-bottom: 4.625rem
  }

  .bottom-everyweek__button {
    margin-bottom: 2.5rem
  }

  .item-bottom-everyweek__text {
    font-size: 1rem
  }

  .listofthemes__title {
    margin-bottom: 2.875rem
  }

  .listofthemes__info {
    font-size: .875rem
  }

  .listofthemes__info {
    margin-bottom: 2rem
  }

  .listofthemes__list {
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem
  }

  .listofthemes__list {
    margin-bottom: 2.375rem
  }

  .header-listofthemes__title {
    font-size: 2.25rem
  }

  .header-listofthemes {
    margin-bottom: 2rem
  }

  .bonus__label {
    font-size: 1.375rem
  }

  .bonus__items {
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem
  }

  .bonus__items {
    row-gap: 2.625rem
  }

  .bonus__price-old {
    font-size: 3rem
  }

  .bonus__price-new {
    font-size: 3rem
  }

  .bonus__text {
    font-size: .875rem
  }

  .item-bonus__title {
    font-size: 1rem
  }

  .price__title {
    margin-bottom: 5.625rem
  }

  .price__items {
    margin-bottom: 3.75rem
  }

  .price__label p {
    font-size: 1.25rem
  }

  .price__label p span {
    font-size: 2.5rem
  }

  .item-price__icon {
    margin-bottom: 2rem
  }

  .item-price__white-text {
    margin-bottom: 2rem
  }

  .item-price__white-text {
    font-size: 1rem
  }

  .item-price__gold-text {
    font-size: 1rem
  }

  .item-themes-price {
    padding-top: 2rem
  }

  .item-themes-price {
    padding-bottom: 2rem
  }

  .item-themes-price {
    padding-left: 2rem
  }

  .item-themes-price {
    padding-right: 2rem
  }

  .item-themes-price__text {
    font-size: 1rem
  }

  .item-themes-price__duration div {
    font-size: 1.25rem
  }

  .form__title {
    margin-bottom: 2.5rem
  }

  .form__label {
    font-size: 1.25rem
  }

  .form__label {
    margin-bottom: 3.75rem
  }

  .book-form {
    padding-left: 11.875rem
  }

  .book-form__icon {
    margin-bottom: 1rem
  }

  .book-form__title {
    font-size: 1.5rem
  }

  .karpform__icons {
    -webkit-column-gap: 3rem;
    -moz-column-gap: 3rem;
    column-gap: 3rem
  }

  .karpform__icons {
    margin-bottom: 3rem
  }

  .karpform__price {
    margin-bottom: 1.5rem
  }

  .karpform__price-old {
    font-size: 3rem
  }

  .karpform__price-new {
    font-size: 3rem
  }

  .karpform__text {
    font-size: .875rem
  }

  .karpform__input {
    font-size: 1rem
  }

  .karpselect__actual {
    font-size: 1rem
  }

  .why__title {
    margin-bottom: 8.75rem
  }

  .why__wrapper {
    margin-bottom: 3rem
  }

  .slide-why__name {
    font-size: 1rem
  }

  .slide-why__text {
    font-size: 1rem
  }

  .slide-why__read {
    font-size: 1rem
  }

  .slide-why__link span:nth-child(1) {
    font-size: 1rem
  }

  .telegram__title {
    margin-bottom: 5rem
  }

  .telegram__swiper {
    margin-bottom: 2.5rem
  }

  .telegram__wrapper {
    margin-bottom: 3rem
  }

  .questions__title {
    margin-bottom: 7.5rem
  }

  .spollers__title-text {
    font-size: 1.25rem
  }

  .spollers__title-button span {
    font-size: 1rem
  }

  .spollers__body p {
    font-size: 1rem
  }

  .spollers__body p:not(:last-child) {
    margin-bottom: 1.25rem
  }

  .spollers__body ul:not(:last-child) {
    margin-bottom: 1.25rem
  }

  .spollers__body ul li {
    font-size: 1rem
  }
}

@media (max-width: 62em) {
  .forwho__items {
    -webkit-column-gap: 2.5rem;
    -moz-column-gap: 2.5rem;
    column-gap: 2.5rem
  }

  .content-item-bottom-canbe__day-item:nth-child(1)::before {
    width: 1.875rem
  }

  .content-item-bottom-canbe__day-item:nth-child(1) div {
    left: -13.75rem
  }

  .content-item-bottom-canbe__day-item:nth-child(3)::before {
    width: 12.5rem
  }

  .content-item-bottom-canbe__day-item:nth-child(3) div {
    left: -24.3125rem
  }

  .content-item-bottom-canbe__day-item:nth-child(5)::before {
    width: 10.125rem
  }

  .content-item-bottom-canbe__day-item:nth-child(5) div {
    left: 12.5rem
  }

  .content-item-bottom-canbe__day-item:nth-child(6)::before {
    width: 6.625rem
  }

  .content-item-bottom-canbe__day-item:nth-child(6) div {
    left: 9.4375rem
  }
}

@media (max-width: 55em) {
  .hero__image img {
    left: 0
  }
}

@media (max-width: 50em) {
  .hero__image img {
    left: -15%
  }
}

@media (max-width: 48em) {
  .book-form {
    padding-left: .0000000625rem
  }
}

@media (max-width: 35em) {
  .slide-why {
    border-radius: 0
  }
}

@media (max-width: 20em) {
  .popup__title span {
    font-size: .875rem
  }

  .title span {
    font-size: 1.75rem
  }

  .footer {
    padding-top: 1.875rem
  }

  .footer {
    padding-bottom: 1.875rem
  }

  .footer__top {
    margin-bottom: 1.875rem
  }

  .footer__main {
    -webkit-column-gap: 1.875rem;
    -moz-column-gap: 1.875rem;
    column-gap: 1.875rem
  }

  .footer__link {
    font-size: .625rem
  }

  .page__forwho {
    padding-top: 3.125rem
  }

  .page__forwho {
    padding-bottom: .625rem
  }

  .page__canbe {
    padding-top: 1.875rem
  }

  .page__canbe {
    padding-bottom: .625rem
  }

  .page__everyweek {
    padding-top: 1.875rem
  }

  .page__everyweek {
    padding-bottom: .625rem
  }

  .page__listofthemes {
    padding-top: 1.875rem
  }

  .page__listofthemes {
    padding-bottom: 1.875rem
  }

  .page__bonus {
    padding-top: 1.875rem
  }

  .page__bonus {
    padding-bottom: 1.875rem
  }

  .page__price {
    padding-top: 1.875rem
  }

  .page__price {
    padding-bottom: .625rem
  }

  .page__form {
    padding-top: 1.875rem
  }

  .page__form {
    padding-bottom: .625rem
  }

  .page__why {
    padding-top: 1.875rem
  }

  .page__why {
    padding-bottom: 1.875rem
  }

  .page__telegram {
    padding-top: 1.875rem
  }

  .page__telegram {
    padding-bottom: .625rem
  }

  .page__questions {
    padding-top: 1.875rem
  }

  .page__questions {
    padding-bottom: .625rem
  }

  .content-hero__title {
    font-size: 2.375rem
  }

  .content-hero__title {
    margin-bottom: 1.625rem
  }

  .forwho__title {
    margin-bottom: 1rem
  }

  .forwho__lable {
    font-size: 1rem
  }

  .forwho__lable--1 {
    margin-bottom: 2.5rem
  }

  .forwho__items {
    margin-bottom: 3.125rem
  }

  .item-forwho__title {
    font-size: 2.25rem
  }

  .canbe__title {
    margin-bottom: 1.25rem
  }

  .main-canbe__title {
    font-size: .875rem
  }

  .main-canbe__title {
    margin-bottom: 1.25rem
  }

  .main-canbe__body {
    margin-bottom: 1.25rem
  }

  .main-canbe__text:nth-child(3) {
    row-gap: .9375rem
  }

  .main-canbe__text p {
    font-size: 1rem
  }

  .items-canbe__title {
    font-size: .875rem
  }

  .items-canbe__title {
    margin-bottom: 2.625rem
  }

  .items-canbe__box-items {
    margin-bottom: 3.125rem
  }

  .item-items-canbe__title {
    font-size: 1.125rem
  }

  .item-items-canbe__text {
    font-size: 1.125rem
  }

  .bottom-canbe {
    row-gap: 3.375rem
  }

  .item-bottom-canbe__title {
    font-size: 1.125rem
  }

  .item-bottom-canbe__title {
    margin-bottom: 1.25rem
  }

  .item-bottom-canbe__content p {
    font-size: .875rem
  }

  .content-item-bottom-canbe {
    row-gap: 1.5rem
  }

  .content-item-bottom-canbe__day-item span {
    font-size: 1rem
  }

  .content-item-bottom-canbe__day-item div span:nth-child(1) {
    font-size: 1rem
  }

  .content-item-bottom-canbe__day-item div span:nth-child(2) {
    font-size: .875rem
  }

  .content-item-bottom-canbe__number-item {
    font-size: .875rem
  }

  .everyweek__title {
    margin-bottom: 2rem
  }

  .everyweek__items {
    gap: 1rem
  }

  .everyweek__items {
    margin-bottom: 3.25rem
  }

  .item-everyweek__title {
    font-size: 1.375rem
  }

  .bottom-everyweek__title {
    font-size: 1.5rem
  }

  .bottom-everyweek__title {
    margin-bottom: 2rem
  }

  .bottom-everyweek__items {
    gap: 1.25rem
  }

  .bottom-everyweek__items {
    margin-bottom: 3.125rem
  }

  .bottom-everyweek__button {
    margin-bottom: 1.25rem
  }

  .item-bottom-everyweek__text {
    font-size: .875rem
  }

  .listofthemes__title {
    margin-bottom: 1.25rem
  }

  .listofthemes__info {
    font-size: .625rem
  }

  .listofthemes__info {
    margin-bottom: 1.25rem
  }

  .listofthemes__list {
    -webkit-column-gap: 2rem;
    -moz-column-gap: 2rem;
    column-gap: 2rem
  }

  .listofthemes__list {
    margin-bottom: 1.25rem
  }

  .header-listofthemes__title {
    font-size: 1.375rem
  }

  .header-listofthemes {
    margin-bottom: .75rem
  }

  .bonus__label {
    font-size: .875rem
  }

  .bonus__items {
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem
  }

  .bonus__items {
    row-gap: 1.5rem
  }

  .bonus__price-old {
    font-size: 1.5rem
  }

  .bonus__price-new {
    font-size: 1.5rem
  }

  .bonus__text {
    font-size: .625rem
  }

  .item-bonus__title {
    font-size: .875rem
  }

  .price__title {
    margin-bottom: 2.5rem
  }

  .price__items {
    margin-bottom: 2.5rem
  }

  .price__label p {
    font-size: .8125rem
  }

  .price__label p span {
    font-size: 1.375rem
  }

  .item-price__icon {
    margin-bottom: 1rem
  }

  .item-price__white-text {
    margin-bottom: 1rem
  }

  .item-price__white-text {
    font-size: .875rem
  }

  .item-price__gold-text {
    font-size: .875rem
  }

  .item-themes-price {
    padding-top: 1.5rem
  }

  .item-themes-price {
    padding-bottom: 1.5rem
  }

  .item-themes-price {
    padding-left: 1rem
  }

  .item-themes-price {
    padding-right: 1rem
  }

  .item-themes-price__text {
    font-size: .75rem
  }

  .item-themes-price__duration div {
    font-size: .875rem
  }

  .form__title {
    margin-bottom: 1.25rem
  }

  .form__label {
    font-size: .75rem
  }

  .form__label {
    margin-bottom: .625rem
  }

  .book-form__icon {
    margin-bottom: .75rem
  }

  .book-form__title {
    font-size: 1.375rem
  }

  .karpform__icons {
    -webkit-column-gap: 1rem;
    -moz-column-gap: 1rem;
    column-gap: 1rem
  }

  .karpform__icons {
    margin-bottom: 1.5rem
  }

  .karpform__price {
    margin-bottom: .75rem
  }

  .karpform__price-old {
    font-size: 1.5rem
  }

  .karpform__price-new {
    font-size: 1.5rem
  }

  .karpform__text {
    font-size: .625rem
  }

  .karpform__input {
    font-size: .875rem
  }

  .karpselect__actual {
    font-size: .875rem
  }

  .why__title {
    margin-bottom: 2.5rem
  }

  .why__wrapper {
    margin-bottom: 2rem
  }

  .slide-why__name {
    font-size: .875rem
  }

  .slide-why__text {
    font-size: .875rem
  }

  .slide-why__read {
    font-size: .875rem
  }

  .slide-why__link span:nth-child(1) {
    font-size: .75rem
  }

  .telegram__title {
    margin-bottom: 2.5rem
  }

  .telegram__swiper {
    margin-bottom: 1.25rem
  }

  .telegram__wrapper {
    margin-bottom: 2rem
  }

  .questions__title {
    margin-bottom: 2.5rem
  }

  .spollers__title-text {
    font-size: .75rem
  }

  .spollers__title-button span {
    font-size: .875rem
  }

  .spollers__body p {
    font-size: .875rem
  }

  .spollers__body p:not(:last-child) {
    margin-bottom: .9375rem
  }

  .spollers__body ul:not(:last-child) {
    margin-bottom: .9375rem
  }

  .spollers__body ul li {
    font-size: .875rem
  }
}

@media (max-width: 80.625em) {
  .bonus__prices-box {
    margin-top: 1.5rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-column-gap: 1.5rem;
    -moz-column-gap: 1.5rem;
    column-gap: 1.5rem
  }

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

  .bonus__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 39%;
    flex: 0 1 39%
  }
}

@media (max-width: 74.5625em) {
  .bonus__items {
    -ms-grid-columns:(1fr) [ 1 ];
    grid-template-columns:repeat(1, 1fr)
  }
}

@media (max-width: 61.99875em) {
  .button-show-more {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
  }

  .forwho__decor-circle {
    width: 25rem
  }

  .canbe__decor-circle {
    width: 25rem
  }

  .item-bottom-canbe:nth-child(3) .item-bottom-canbe__content {
    padding-top: 8.75rem;
    padding-bottom: 11.25rem
  }

  .content-item-bottom-canbe {
    max-width: 100%;
    width: 100%
  }

  .content-item-bottom-canbe__day-item:nth-child(1)::before {
    border-top: none;
    height: 5.25rem
  }

  .content-item-bottom-canbe__day-item:nth-child(1) div {
    top: -8.25rem;
    left: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .content-item-bottom-canbe__day-item:nth-child(3)::before {
    top: inherit;
    bottom: 100%;
    border-top: none;
    height: 1.5rem;
    border-bottom: none
  }

  .content-item-bottom-canbe__day-item:nth-child(3) div {
    top: -4.5rem;
    left: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .content-item-bottom-canbe__day-item:nth-child(5)::before {
    bottom: inherit;
    top: 100%;
    height: 10.625rem;
    border-top: none
  }

  .content-item-bottom-canbe__day-item:nth-child(5) div {
    top: 13.125rem;
    left: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: right;
    -webkit-transform: translateX(-80%);
    -ms-transform: translateX(-80%);
    transform: translateX(-80%)
  }

  .content-item-bottom-canbe__day-item:nth-child(6)::before {
    border-bottom: none;
    height: 14.375rem
  }

  .content-item-bottom-canbe__day-item:nth-child(6) div {
    top: 16.75rem;
    left: 0;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: right;
    -webkit-transform: translateX(-80%);
    -ms-transform: translateX(-80%);
    transform: translateX(-80%)
  }

  .everyweek__decor-circle {
    width: 25rem
  }

  .bottom-everyweek__items {
    -ms-grid-columns:(1fr) [ 2 ];
    grid-template-columns:repeat(2, 1fr)
  }

  .listofthemes__header {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .listofthemes__info {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
  }

  .listofthemes__main {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .listofthemes__list {
    -ms-grid-columns:(1fr) [ 1 ];
    grid-template-columns:repeat(1, 1fr)
  }

  .listofthemes__decor-circle {
    width: 25rem
  }

  .bonus__decor-circle {
    width: 25rem
  }

  .price__decor-circle {
    width: 25rem
  }

  .form__decor-circle {
    width: 25rem
  }

  .book-form {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: .625rem
  }

  .book-form__image {
    max-width: 80%
  }

  .why__decor-circle {
    width: 25rem
  }

  .telegram__decor-circle {
    width: 25rem
  }

  .questions__decor-circle {
    width: 25rem
  }
}

@media (max-width: 47.99875em) {
  .button {
    width: 16.25rem;
    height: 2.5rem;
    -webkit-box-shadow: -.25rem -.25rem -1.5rem 0 rgba(0, 0, 0, .2);
    box-shadow: -.25rem -.25rem -1.5rem 0 rgba(0, 0, 0, .2)
  }

  .button-show-more.button-show-more--mobile {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
  }

  .decor {
    margin-top: 1.875rem
  }

  .title div {
    display: none
  }

  .header {
    position: fixed
  }

  .header__top {
    padding: .625rem 1rem;
    width: 100%;
    min-width: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    background: rgba(0, 0, 0, .25);
    -webkit-backdrop-filter: blur(.40625rem);
    backdrop-filter: blur(.40625rem)
  }

  .header__top::before {
    width: 100%;
    min-width: 0;
    left: 100%
  }

  .header__button-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }

  .header__languages {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 2.125rem
  }

  .menu__body {
    padding: 5rem 1.5rem 1.875rem 1.5rem;
    width: 100%;
    min-width: 0;
    left: 100%
  }

  .menu__decor-body img {
    width: 200%;
    left: 50%;
    -webkit-transform: translateX(-60%);
    -ms-transform: translateX(-60%);
    transform: translateX(-60%)
  }

  .menu__list {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
  }

  .menu__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }

  .social-menu {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
  }

  .footer__container {
    padding: 0 1rem
  }

  .footer__decor-circle--1 {
    top: -20%;
    left: -10%
  }

  .footer__decor-circle--2 {
    top: 0;
    right: -30%
  }

  .hero {
    min-height: 100svh
  }

  .hero__container {
    min-height: 100svh
  }

  .hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
  }

  .hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, .15)
  }

  .hero__image img {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 92%
  }

  .content-hero {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    min-height: 100svh;
    width: 100%;
    padding: 20.625rem 1rem 1.875rem 1rem
  }

  .content-hero__title {
    max-width: 25rem;
    text-shadow: 0 0 .9375rem rgba(0, 0, 0, .5)
  }

  .content-hero__text {
    width: calc(100% + 3.25rem);
    padding: 1.25rem 0;
    border-top: 1px solid var(--main-gradient, #ffbe65);
    border-bottom: 1px solid var(--main-gradient, #ffbe65);
    background: rgba(255, 190, 101, .25);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px)
  }

  .content-hero__text span {
    color: #ffbe65
  }

  .forwho__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }

  .forwho__decor-circle {
    width: 18.75rem
  }

  .forwho__decor-circle--1 {
    top: -5%;
    left: -5%
  }

  .forwho__decor-circle--2 {
    top: 8%;
    right: -30%
  }

  .forwho__decor-circle--3 {
    top: 30%;
    left: -30%
  }

  .forwho__decor-circle--4 {
    top: 50%;
    right: -30%
  }

  .canbe__decor-circle {
    width: 18.75rem
  }

  .canbe__decor-circle--1 {
    top: -4%;
    left: -5%
  }

  .canbe__decor-circle--2 {
    top: 8%;
    right: -20%
  }

  .canbe__decor-circle--3 {
    top: 15%;
    left: -5%
  }

  .canbe__decor-circle--4 {
    top: 22%;
    right: -50%
  }

  .canbe__decor-circle--5 {
    top: 32%;
    left: -25%
  }

  .canbe__decor-circle--6 {
    top: 44%;
    right: -20%
  }

  .canbe__decor-circle--7 {
    top: 52%;
    left: -5%
  }

  .canbe__decor-circle--8 {
    top: 62%;
    right: -20%
  }

  .canbe__decor-circle--9 {
    top: 80%;
    left: -15%
  }

  .canbe__decor-circle--10 {
    top: 92%;
    right: -20%
  }

  .main-canbe__title {
    text-align: left;
    margin-left: 0;
    margin-right: 0
  }

  .main-canbe__text {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .main-canbe__text:nth-child(2) p:nth-child(1) {
    display: none
  }

  .main-canbe__text:nth-child(2) p:nth-child(2) {
    text-align: right
  }

  .main-canbe__text:nth-child(2) img {
    display: none
  }

  .main-canbe__image {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%
  }

  .items-canbe__box-items {
    -ms-grid-columns:(1fr) [ 1 ];
    grid-template-columns:repeat(1, 1fr);
    row-gap: 2.5rem
  }

  .everyweek__items {
    -ms-grid-columns:(1fr) [ 2 ];
    grid-template-columns:repeat(2, 1fr)
  }

  .everyweek__decor-circle {
    width: 18.75rem
  }

  .everyweek__decor-circle--1 {
    top: -7%;
    left: -5%
  }

  .everyweek__decor-circle--2 {
    top: 10%;
    right: -20%
  }

  .everyweek__decor-circle--3 {
    top: 30%;
    left: -5%
  }

  .everyweek__decor-circle--4 {
    top: 55%;
    right: -50%
  }

  .everyweek__decor-circle--5 {
    top: 70%;
    left: -25%
  }

  .everyweek__decor-circle--6 {
    top: 90%;
    right: -20%
  }

  .listofthemes__info {
    color: #eef2fe
  }

  .listofthemes__decor-circle {
    width: 18.75rem
  }

  .listofthemes__decor-circle--1 {
    top: -20%;
    left: -5%
  }

  .listofthemes__decor-circle--2 {
    top: 0;
    right: -30%
  }

  .listofthemes__decor-circle--3 {
    top: 30%;
    left: -30%
  }

  .listofthemes__decor-circle--4 {
    top: 65%;
    right: -50%
  }

  .bonus__item:nth-child(1) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
  }

  .bonus__item:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
  }

  .bonus__item:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
  }

  .bonus__item:nth-child(4) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
  }

  .bonus__prices-box {
    -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
  }

  .bonus__price {
    margin-bottom: 1rem
  }

  .bonus__text {
    color: #eef2fe
  }

  .bonus__decor-circle {
    width: 18.75rem
  }

  .bonus__decor-circle--1 {
    top: -7%;
    left: -5%
  }

  .bonus__decor-circle--2 {
    top: 0;
    right: -30%
  }

  .bonus__decor-circle--3 {
    top: 30%;
    left: -20%
  }

  .bonus__decor-circle--4 {
    top: 75%;
    right: -20%
  }

  .bonus__decor-circle--5 {
    top: 67%;
    left: -50%
  }

  .item-bonus:nth-child(3) .item-bonus__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
  }

  .item-bonus {
    row-gap: 0
  }

  .item-bonus__title {
    padding: .75rem 1rem
  }

  .item-bonus__body {
    padding: .75rem 1rem
  }

  .item-bonus__list {
    height: 7.5rem;
    opacity: .5
  }

  .item-bonus__list.open {
    opacity: 1
  }

  .item-bonus__item:not(:last-child) {
    margin-bottom: 0
  }

  .price__items {
    -ms-grid-columns:(1fr) [ 1 ];
    grid-template-columns:repeat(1, 1fr)
  }

  .price__label {
    margin: 0 -1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem 1rem
  }

  .price__decor-circle {
    width: 18.75rem
  }

  .price__decor-circle--1 {
    top: -10%;
    left: -5%
  }

  .price__decor-circle--2 {
    top: 0;
    right: -30%
  }

  .price__decor-circle--3 {
    top: 50%;
    left: -10%
  }

  .price__decor-circle--4 {
    top: 75%;
    right: -20%
  }

  .price__decor-circle--5 {
    top: 67%;
    left: -50%
  }

  .item-price {
    min-height: 0;
    padding: 1rem .75rem 1.5rem .75rem
  }

  .themes-price__items {
    -ms-grid-columns:(1fr) [ 1 ];
    grid-template-columns:repeat(1, 1fr)
  }

  .item-themes-price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding: .75rem 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: start;
    -webkit-column-gap: .75rem;
    -moz-column-gap: .75rem;
    column-gap: .75rem
  }

  .item-themes-price__text {
    font-weight: 400;
    margin-top: .125rem
  }

  .item-themes-price__duration {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 7.375rem;
    flex: 0 0 7.375rem
  }

  .form__label {
    font-weight: 400
  }

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

  .form__decor-circle {
    width: 18.75rem
  }

  .form__decor-circle--1 {
    top: -16%;
    left: -5%
  }

  .form__decor-circle--2 {
    top: 0;
    right: -30%
  }

  .form__decor-circle--3 {
    top: 50%;
    left: -10%
  }

  .form__decor-circle--4 {
    top: 75%;
    right: -20%
  }

  .form__decor-circle--5 {
    top: 40%;
    left: 0
  }

  .book-form {
    width: 100%;
    margin-bottom: .625rem
  }

  .book-form__info {
    max-width: 27.5rem
  }

  .book-form__icon {
    width: 1.5rem;
    height: 1.5rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.5rem;
    flex: 0 0 1.5rem
  }

  .book-form__text span {
    color: #ffbe65
  }

  .book-form__image {
    max-width: 22.5rem
  }

  .karpform__prices-box {
    -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
  }

  .karpform__submit {
    width: 16.25rem;
    height: 3.075rem;
    -webkit-box-shadow: -.25rem -.25rem -1.5rem 0 rgba(0, 0, 0, .2);
    box-shadow: -.25rem -.25rem -1.5rem 0 rgba(0, 0, 0, .2)
  }

  .why__decor-circle {
    width: 18.75rem
  }

  .why__decor-circle--1 {
    top: -20%;
    left: -5%
  }

  .why__decor-circle--2 {
    top: 0;
    right: -30%
  }

  .why__decor-circle--3 {
    top: 50%;
    left: -10%
  }

  .why__decor-circle--4 {
    top: 75%;
    right: -20%
  }

  .telegram__decor-circle {
    width: 18.75rem
  }

  .telegram__decor-circle--1 {
    top: -11%;
    left: -5%
  }

  .telegram__decor-circle--2 {
    top: 0;
    right: -30%
  }

  .telegram__decor-circle--3 {
    top: 50%;
    left: -10%
  }

  .telegram__decor-circle--4 {
    top: 75%;
    right: -20%
  }

  .questions__decor-circle {
    width: 18.75rem
  }

  .questions__decor-circle--1 {
    top: -20%;
    left: -5%
  }

  .questions__decor-circle--2 {
    top: 0;
    right: -30%
  }

  .questions__decor-circle--3 {
    top: 50%;
    left: -10%
  }

  .questions__decor-circle--4 {
    top: 75%;
    right: -20%
  }
}

@media (max-width: 32.5em) {
  .everyweek__items {
    -ms-grid-columns:(1fr) [ 1 ];
    grid-template-columns:repeat(1, 1fr)
  }

  .item-everyweek {
    min-height: 0
  }

  .bottom-everyweek__items {
    -ms-grid-columns:(1fr) [ 1 ];
    grid-template-columns:repeat(1, 1fr)
  }

  .item-bottom-everyweek {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
    -webkit-column-gap: .625rem;
    -moz-column-gap: .625rem;
    column-gap: .625rem
  }

  .item-bottom-everyweek__text {
    max-width: 100%
  }
}

@media (max-width: 29.99875em) {
  .main-canbe__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }

  .main-canbe__image {
    max-width: 70%;
    margin: 0 auto;
    margin-top: .625rem
  }

  .content-item-bottom-canbe__days {
    gap: .5rem
  }

  .content-item-bottom-canbe__numbers {
    gap: .5rem
  }

  .item-everyweek__icon {
    width: 1.875rem;
    height: 1.875rem
  }

  .item-everyweek__title {
    margin-top: -.9375rem
  }

  .item-bottom-everyweek__icon {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.25rem;
    flex: 0 0 1.25rem;
    width: 1.25rem;
    height: 1.25rem
  }

  .item-themes-price {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    padding: .5rem 0;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: start;
    -webkit-column-gap: .75rem;
    -moz-column-gap: .75rem;
    column-gap: .75rem
  }

  .item-themes-price__duration {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 6.625rem;
    flex: 0 0 6.625rem
  }

  .item-themes-price__duration span {
    font-size: .875rem
  }

  .book-form {
    row-gap: .3125rem
  }

  .slide-why {
    padding: 1rem
  }

  .spollers__item {
    padding: .75rem 0
  }

  .spollers__title {
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem
  }

  .spollers__title-text {
    -webkit-column-gap: .375rem;
    -moz-column-gap: .375rem;
    column-gap: .375rem
  }

  .spollers__title-text::before {
    width: 1.25rem;
    height: 1.25rem;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 1.25rem;
    flex: 0 0 1.25rem
  }
}

@media (max-width: 23.4375em) {
  .content-hero {
    padding: 18.75rem 1rem 1.875rem 1rem
  }
}

@media (min-width: 20em) and (max-width: 120em) {
  @supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
    .popup__title span {
      font-size: clamp(.875rem, .85rem + .125vw, 1rem)
    }
  }@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .popup__title span {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.75rem ,1.5rem + 1.25vw ,3rem)) {
  .title span {
    font-size: clamp(1.75rem, 1.5rem + 1.25vw, 3rem)
  }
}@supports not (font-size:clamp(1.75rem ,1.5rem + 1.25vw ,3rem)) {
  .title span {
    font-size: calc(1.75rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .footer {
    padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .footer {
    padding-top: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .footer {
    padding-bottom: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-bottom:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .footer {
    padding-bottom: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .footer__top {
    margin-bottom: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (margin-bottom:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .footer__top {
    margin-bottom: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports ((-moz-column-gap:clamp(1.875rem ,1.375rem + 2.5vw ,4.375rem)) or (column-gap:clamp(1.875rem ,1.375rem + 2.5vw ,4.375rem))) {
  .footer__main {
    -webkit-column-gap: clamp(1.875rem, 1.375rem + 2.5vw, 4.375rem);
    -moz-column-gap: clamp(1.875rem, 1.375rem + 2.5vw, 4.375rem);
    column-gap: clamp(1.875rem, 1.375rem + 2.5vw, 4.375rem)
  }
}@supports not ((-moz-column-gap:clamp(1.875rem ,1.375rem + 2.5vw ,4.375rem)) or (column-gap:clamp(1.875rem ,1.375rem + 2.5vw ,4.375rem))) {
  .footer__main {
    -webkit-column-gap: calc(1.875rem + 2.5 * (100vw - 20rem) / 100);
    -moz-column-gap: calc(1.875rem + 2.5 * (100vw - 20rem) / 100);
    column-gap: calc(1.875rem + 2.5 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.625rem ,0.575rem + 0.25vw ,0.875rem)) {
  .footer__link {
    font-size: clamp(.625rem, .575rem + .25vw, .875rem)
  }
}@supports not (font-size:clamp(0.625rem ,0.575rem + 0.25vw ,0.875rem)) {
  .footer__link {
    font-size: calc(.625rem + .25 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(3.125rem ,3rem + 0.625vw ,3.75rem)) {
  .page__forwho {
    padding-top: clamp(3.125rem, 3rem + .625vw, 3.75rem)
  }
}@supports not (padding-top:clamp(3.125rem ,3rem + 0.625vw ,3.75rem)) {
  .page__forwho {
    padding-top: calc(3.125rem + .625 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__forwho {
    padding-bottom: clamp(.625rem, .375rem + 1.25vw, 1.875rem)
  }
}@supports not (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__forwho {
    padding-bottom: calc(.625rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__canbe {
    padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__canbe {
    padding-top: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__canbe {
    padding-bottom: clamp(.625rem, .375rem + 1.25vw, 1.875rem)
  }
}@supports not (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__canbe {
    padding-bottom: calc(.625rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__everyweek {
    padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__everyweek {
    padding-top: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__everyweek {
    padding-bottom: clamp(.625rem, .375rem + 1.25vw, 1.875rem)
  }
}@supports not (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__everyweek {
    padding-bottom: calc(.625rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__listofthemes {
    padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__listofthemes {
    padding-top: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__listofthemes {
    padding-bottom: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-bottom:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__listofthemes {
    padding-bottom: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__bonus {
    padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__bonus {
    padding-top: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__bonus {
    padding-bottom: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-bottom:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__bonus {
    padding-bottom: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__price {
    padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__price {
    padding-top: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__price {
    padding-bottom: clamp(.625rem, .375rem + 1.25vw, 1.875rem)
  }
}@supports not (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__price {
    padding-bottom: calc(.625rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__form {
    padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__form {
    padding-top: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__form {
    padding-bottom: clamp(.625rem, .375rem + 1.25vw, 1.875rem)
  }
}@supports not (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__form {
    padding-bottom: calc(.625rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__why {
    padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__why {
    padding-top: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__why {
    padding-bottom: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-bottom:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__why {
    padding-bottom: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__telegram {
    padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__telegram {
    padding-top: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__telegram {
    padding-bottom: clamp(.625rem, .375rem + 1.25vw, 1.875rem)
  }
}@supports not (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__telegram {
    padding-bottom: calc(.625rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__questions {
    padding-top: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem)
  }
}@supports not (padding-top:clamp(1.875rem ,1.5rem + 1.875vw ,3.75rem)) {
  .page__questions {
    padding-top: calc(1.875rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__questions {
    padding-bottom: clamp(.625rem, .375rem + 1.25vw, 1.875rem)
  }
}@supports not (padding-bottom:clamp(0.625rem ,0.375rem + 1.25vw ,1.875rem)) {
  .page__questions {
    padding-bottom: calc(.625rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(2.375rem ,2.15rem + 1.125vw ,3.5rem)) {
  .content-hero__title {
    font-size: clamp(2.375rem, 2.15rem + 1.125vw, 3.5rem)
  }
}@supports not (font-size:clamp(2.375rem ,2.15rem + 1.125vw ,3.5rem)) {
  .content-hero__title {
    font-size: calc(2.375rem + 1.125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.625rem ,1.275rem + 1.75vw ,3.375rem)) {
  .content-hero__title {
    margin-bottom: clamp(1.625rem, 1.275rem + 1.75vw, 3.375rem)
  }
}@supports not (margin-bottom:clamp(1.625rem ,1.275rem + 1.75vw ,3.375rem)) {
  .content-hero__title {
    margin-bottom: calc(1.625rem + 1.75 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1rem ,0.925rem + 0.375vw ,1.375rem)) {
  .forwho__title {
    margin-bottom: clamp(1rem, .925rem + .375vw, 1.375rem)
  }
}@supports not (margin-bottom:clamp(1rem ,0.925rem + 0.375vw ,1.375rem)) {
  .forwho__title {
    margin-bottom: calc(1rem + .375 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1rem ,0.925rem + 0.375vw ,1.375rem)) {
  .forwho__lable {
    font-size: clamp(1rem, .925rem + .375vw, 1.375rem)
  }
}@supports not (font-size:clamp(1rem ,0.925rem + 0.375vw ,1.375rem)) {
  .forwho__lable {
    font-size: calc(1rem + .375 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2.5rem ,2rem + 2.5vw ,5rem)) {
  .forwho__lable--1 {
    margin-bottom: clamp(2.5rem, 2rem + 2.5vw, 5rem)
  }
}@supports not (margin-bottom:clamp(2.5rem ,2rem + 2.5vw ,5rem)) {
  .forwho__lable--1 {
    margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(3.125rem ,2.75rem + 1.875vw ,5rem)) {
  .forwho__items {
    margin-bottom: clamp(3.125rem, 2.75rem + 1.875vw, 5rem)
  }
}@supports not (margin-bottom:clamp(3.125rem ,2.75rem + 1.875vw ,5rem)) {
  .forwho__items {
    margin-bottom: calc(3.125rem + 1.875 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(2.25rem ,2.2rem + 0.25vw ,2.5rem)) {
  .item-forwho__title {
    font-size: clamp(2.25rem, 2.2rem + .25vw, 2.5rem)
  }
}@supports not (font-size:clamp(2.25rem ,2.2rem + 0.25vw ,2.5rem)) {
  .item-forwho__title {
    font-size: calc(2.25rem + .25 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.25rem ,0.75rem + 2.5vw ,3.75rem)) {
  .canbe__title {
    margin-bottom: clamp(1.25rem, .75rem + 2.5vw, 3.75rem)
  }
}@supports not (margin-bottom:clamp(1.25rem ,0.75rem + 2.5vw ,3.75rem)) {
  .canbe__title {
    margin-bottom: calc(1.25rem + 2.5 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.8rem + 0.375vw ,1.25rem)) {
  .main-canbe__title {
    font-size: clamp(.875rem, .8rem + .375vw, 1.25rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.8rem + 0.375vw ,1.25rem)) {
  .main-canbe__title {
    font-size: calc(.875rem + .375 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.25rem ,0.7rem + 2.75vw ,4rem)) {
  .main-canbe__title {
    margin-bottom: clamp(1.25rem, .7rem + 2.75vw, 4rem)
  }
}@supports not (margin-bottom:clamp(1.25rem ,0.7rem + 2.75vw ,4rem)) {
  .main-canbe__title {
    margin-bottom: calc(1.25rem + 2.75 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.25rem ,0.7rem + 2.75vw ,4rem)) {
  .main-canbe__body {
    margin-bottom: clamp(1.25rem, .7rem + 2.75vw, 4rem)
  }
}@supports not (margin-bottom:clamp(1.25rem ,0.7rem + 2.75vw ,4rem)) {
  .main-canbe__body {
    margin-bottom: calc(1.25rem + 2.75 * (100vw - 20rem) / 100)
  }
}@supports (row-gap:clamp(0.9375rem ,0.625rem + 1.5625vw ,2.5rem)) {
  .main-canbe__text:nth-child(3) {
    row-gap: clamp(.9375rem, .625rem + 1.5625vw, 2.5rem)
  }
}@supports not (row-gap:clamp(0.9375rem ,0.625rem + 1.5625vw ,2.5rem)) {
  .main-canbe__text:nth-child(3) {
    row-gap: calc(.9375rem + 1.5625 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1rem ,0.925rem + 0.375vw ,1.375rem)) {
  .main-canbe__text p {
    font-size: clamp(1rem, .925rem + .375vw, 1.375rem)
  }
}@supports not (font-size:clamp(1rem ,0.925rem + 0.375vw ,1.375rem)) {
  .main-canbe__text p {
    font-size: calc(1rem + .375 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.8rem + 0.375vw ,1.25rem)) {
  .items-canbe__title {
    font-size: clamp(.875rem, .8rem + .375vw, 1.25rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.8rem + 0.375vw ,1.25rem)) {
  .items-canbe__title {
    font-size: calc(.875rem + .375 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2.625rem ,2.55rem + 0.375vw ,3rem)) {
  .items-canbe__title {
    margin-bottom: clamp(2.625rem, 2.55rem + .375vw, 3rem)
  }
}@supports not (margin-bottom:clamp(2.625rem ,2.55rem + 0.375vw ,3rem)) {
  .items-canbe__title {
    margin-bottom: calc(2.625rem + .375 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(3.125rem ,2.875rem + 1.25vw ,4.375rem)) {
  .items-canbe__box-items {
    margin-bottom: clamp(3.125rem, 2.875rem + 1.25vw, 4.375rem)
  }
}@supports not (margin-bottom:clamp(3.125rem ,2.875rem + 1.25vw ,4.375rem)) {
  .items-canbe__box-items {
    margin-bottom: calc(3.125rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.125rem ,1.05rem + 0.375vw ,1.5rem)) {
  .item-items-canbe__title {
    font-size: clamp(1.125rem, 1.05rem + .375vw, 1.5rem)
  }
}@supports not (font-size:clamp(1.125rem ,1.05rem + 0.375vw ,1.5rem)) {
  .item-items-canbe__title {
    font-size: calc(1.125rem + .375 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.125rem ,1.05rem + 0.375vw ,1.5rem)) {
  .item-items-canbe__text {
    font-size: clamp(1.125rem, 1.05rem + .375vw, 1.5rem)
  }
}@supports not (font-size:clamp(1.125rem ,1.05rem + 0.375vw ,1.5rem)) {
  .item-items-canbe__text {
    font-size: calc(1.125rem + .375 * (100vw - 20rem) / 100)
  }
}@supports (row-gap:clamp(3.375rem ,2.45rem + 4.625vw ,8rem)) {
  .bottom-canbe {
    row-gap: clamp(3.375rem, 2.45rem + 4.625vw, 8rem)
  }
}@supports not (row-gap:clamp(3.375rem ,2.45rem + 4.625vw ,8rem)) {
  .bottom-canbe {
    row-gap: calc(3.375rem + 4.625 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.125rem ,0.9rem + 1.125vw ,2.25rem)) {
  .item-bottom-canbe__title {
    font-size: clamp(1.125rem, .9rem + 1.125vw, 2.25rem)
  }
}@supports not (font-size:clamp(1.125rem ,0.9rem + 1.125vw ,2.25rem)) {
  .item-bottom-canbe__title {
    font-size: calc(1.125rem + 1.125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.25rem ,1.2rem + 0.25vw ,1.5rem)) {
  .item-bottom-canbe__title {
    margin-bottom: clamp(1.25rem, 1.2rem + .25vw, 1.5rem)
  }
}@supports not (margin-bottom:clamp(1.25rem ,1.2rem + 0.25vw ,1.5rem)) {
  .item-bottom-canbe__title {
    margin-bottom: calc(1.25rem + .25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.8rem + 0.375vw ,1.25rem)) {
  .item-bottom-canbe__content p {
    font-size: clamp(.875rem, .8rem + .375vw, 1.25rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.8rem + 0.375vw ,1.25rem)) {
  .item-bottom-canbe__content p {
    font-size: calc(.875rem + .375 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1rem ,0.9375rem + 0.3125vw ,1.3125rem)) {
  .content-item-bottom-canbe__day-item div span:nth-child(1) {
    font-size: clamp(1rem, .9375rem + .3125vw, 1.3125rem)
  }
}@supports not (font-size:clamp(1rem ,0.9375rem + 0.3125vw ,1.3125rem)) {
  .content-item-bottom-canbe__day-item div span:nth-child(1) {
    font-size: calc(1rem + .3125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .content-item-bottom-canbe__day-item div span:nth-child(2) {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .content-item-bottom-canbe__day-item div span:nth-child(2) {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2rem ,1.875rem + 0.625vw ,2.625rem)) {
  .everyweek__title {
    margin-bottom: clamp(2rem, 1.875rem + .625vw, 2.625rem)
  }
}@supports not (margin-bottom:clamp(2rem ,1.875rem + 0.625vw ,2.625rem)) {
  .everyweek__title {
    margin-bottom: calc(2rem + .625 * (100vw - 20rem) / 100)
  }
}@supports (gap:clamp(1rem ,0.8rem + 1vw ,2rem)) {
  .everyweek__items {
    gap: clamp(1rem, .8rem + 1vw, 2rem)
  }
}@supports not (gap:clamp(1rem ,0.8rem + 1vw ,2rem)) {
  .everyweek__items {
    gap: calc(1rem + 1 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(3.25rem ,2.8rem + 2.25vw ,5.5rem)) {
  .everyweek__items {
    margin-bottom: clamp(3.25rem, 2.8rem + 2.25vw, 5.5rem)
  }
}@supports not (margin-bottom:clamp(3.25rem ,2.8rem + 2.25vw ,5.5rem)) {
  .everyweek__items {
    margin-bottom: calc(3.25rem + 2.25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.375rem ,1.35rem + 0.125vw ,1.5rem)) {
  .item-everyweek__title {
    font-size: clamp(1.375rem, 1.35rem + .125vw, 1.5rem)
  }
}@supports not (font-size:clamp(1.375rem ,1.35rem + 0.125vw ,1.5rem)) {
  .item-everyweek__title {
    font-size: calc(1.375rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.5rem ,1.35rem + 0.75vw ,2.25rem)) {
  .bottom-everyweek__title {
    font-size: clamp(1.5rem, 1.35rem + .75vw, 2.25rem)
  }
}@supports not (font-size:clamp(1.5rem ,1.35rem + 0.75vw ,2.25rem)) {
  .bottom-everyweek__title {
    font-size: calc(1.5rem + .75 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2rem ,1.875rem + 0.625vw ,2.625rem)) {
  .bottom-everyweek__title {
    margin-bottom: clamp(2rem, 1.875rem + .625vw, 2.625rem)
  }
}@supports not (margin-bottom:clamp(2rem ,1.875rem + 0.625vw ,2.625rem)) {
  .bottom-everyweek__title {
    margin-bottom: calc(2rem + .625 * (100vw - 20rem) / 100)
  }
}@supports (gap:clamp(1.25rem ,0.7rem + 2.75vw ,4rem)) {
  .bottom-everyweek__items {
    gap: clamp(1.25rem, .7rem + 2.75vw, 4rem)
  }
}@supports not (gap:clamp(1.25rem ,0.7rem + 2.75vw ,4rem)) {
  .bottom-everyweek__items {
    gap: calc(1.25rem + 2.75 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(3.125rem ,2.825rem + 1.5vw ,4.625rem)) {
  .bottom-everyweek__items {
    margin-bottom: clamp(3.125rem, 2.825rem + 1.5vw, 4.625rem)
  }
}@supports not (margin-bottom:clamp(3.125rem ,2.825rem + 1.5vw ,4.625rem)) {
  .bottom-everyweek__items {
    margin-bottom: calc(3.125rem + 1.5 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.25rem ,1rem + 1.25vw ,2.5rem)) {
  .bottom-everyweek__button {
    margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem)
  }
}@supports not (margin-bottom:clamp(1.25rem ,1rem + 1.25vw ,2.5rem)) {
  .bottom-everyweek__button {
    margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .item-bottom-everyweek__text {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .item-bottom-everyweek__text {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.25rem ,0.925rem + 1.625vw ,2.875rem)) {
  .listofthemes__title {
    margin-bottom: clamp(1.25rem, .925rem + 1.625vw, 2.875rem)
  }
}@supports not (margin-bottom:clamp(1.25rem ,0.925rem + 1.625vw ,2.875rem)) {
  .listofthemes__title {
    margin-bottom: calc(1.25rem + 1.625 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.625rem ,0.575rem + 0.25vw ,0.875rem)) {
  .listofthemes__info {
    font-size: clamp(.625rem, .575rem + .25vw, .875rem)
  }
}@supports not (font-size:clamp(0.625rem ,0.575rem + 0.25vw ,0.875rem)) {
  .listofthemes__info {
    font-size: calc(.625rem + .25 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.25rem ,1.1rem + 0.75vw ,2rem)) {
  .listofthemes__info {
    margin-bottom: clamp(1.25rem, 1.1rem + .75vw, 2rem)
  }
}@supports not (margin-bottom:clamp(1.25rem ,1.1rem + 0.75vw ,2rem)) {
  .listofthemes__info {
    margin-bottom: calc(1.25rem + .75 * (100vw - 20rem) / 100)
  }
}@supports ((-moz-column-gap:clamp(2rem ,1.6rem + 2vw ,4rem)) or (column-gap:clamp(2rem ,1.6rem + 2vw ,4rem))) {
  .listofthemes__list {
    -webkit-column-gap: clamp(2rem, 1.6rem + 2vw, 4rem);
    -moz-column-gap: clamp(2rem, 1.6rem + 2vw, 4rem);
    column-gap: clamp(2rem, 1.6rem + 2vw, 4rem)
  }
}@supports not ((-moz-column-gap:clamp(2rem ,1.6rem + 2vw ,4rem)) or (column-gap:clamp(2rem ,1.6rem + 2vw ,4rem))) {
  .listofthemes__list {
    -webkit-column-gap: calc(2rem + 2 * (100vw - 20rem) / 100);
    -moz-column-gap: calc(2rem + 2 * (100vw - 20rem) / 100);
    column-gap: calc(2rem + 2 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.25rem ,1.025rem + 1.125vw ,2.375rem)) {
  .listofthemes__list {
    margin-bottom: clamp(1.25rem, 1.025rem + 1.125vw, 2.375rem)
  }
}@supports not (margin-bottom:clamp(1.25rem ,1.025rem + 1.125vw ,2.375rem)) {
  .listofthemes__list {
    margin-bottom: calc(1.25rem + 1.125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.375rem ,1.2rem + 0.875vw ,2.25rem)) {
  .header-listofthemes__title {
    font-size: clamp(1.375rem, 1.2rem + .875vw, 2.25rem)
  }
}@supports not (font-size:clamp(1.375rem ,1.2rem + 0.875vw ,2.25rem)) {
  .header-listofthemes__title {
    font-size: calc(1.375rem + .875 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(0.75rem ,0.5rem + 1.25vw ,2rem)) {
  .header-listofthemes {
    margin-bottom: clamp(.75rem, .5rem + 1.25vw, 2rem)
  }
}@supports not (margin-bottom:clamp(0.75rem ,0.5rem + 1.25vw ,2rem)) {
  .header-listofthemes {
    margin-bottom: calc(.75rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.775rem + 0.5vw ,1.375rem)) {
  .bonus__label {
    font-size: clamp(.875rem, .775rem + .5vw, 1.375rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.775rem + 0.5vw ,1.375rem)) {
  .bonus__label {
    font-size: calc(.875rem + .5 * (100vw - 20rem) / 100)
  }
}@supports ((-moz-column-gap:clamp(1.5rem ,1rem + 2.5vw ,4rem)) or (column-gap:clamp(1.5rem ,1rem + 2.5vw ,4rem))) {
  .bonus__items {
    -webkit-column-gap: clamp(1.5rem, 1rem + 2.5vw, 4rem);
    -moz-column-gap: clamp(1.5rem, 1rem + 2.5vw, 4rem);
    column-gap: clamp(1.5rem, 1rem + 2.5vw, 4rem)
  }
}@supports not ((-moz-column-gap:clamp(1.5rem ,1rem + 2.5vw ,4rem)) or (column-gap:clamp(1.5rem ,1rem + 2.5vw ,4rem))) {
  .bonus__items {
    -webkit-column-gap: calc(1.5rem + 2.5 * (100vw - 20rem) / 100);
    -moz-column-gap: calc(1.5rem + 2.5 * (100vw - 20rem) / 100);
    column-gap: calc(1.5rem + 2.5 * (100vw - 20rem) / 100)
  }
}@supports (row-gap:clamp(1.5rem ,1.275rem + 1.125vw ,2.625rem)) {
  .bonus__items {
    row-gap: clamp(1.5rem, 1.275rem + 1.125vw, 2.625rem)
  }
}@supports not (row-gap:clamp(1.5rem ,1.275rem + 1.125vw ,2.625rem)) {
  .bonus__items {
    row-gap: calc(1.5rem + 1.125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.5rem ,1.2rem + 1.5vw ,3rem)) {
  .bonus__price-old {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem)
  }
}@supports not (font-size:clamp(1.5rem ,1.2rem + 1.5vw ,3rem)) {
  .bonus__price-old {
    font-size: calc(1.5rem + 1.5 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.5rem ,1.2rem + 1.5vw ,3rem)) {
  .bonus__price-new {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem)
  }
}@supports not (font-size:clamp(1.5rem ,1.2rem + 1.5vw ,3rem)) {
  .bonus__price-new {
    font-size: calc(1.5rem + 1.5 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.625rem ,0.575rem + 0.25vw ,0.875rem)) {
  .bonus__text {
    font-size: clamp(.625rem, .575rem + .25vw, .875rem)
  }
}@supports not (font-size:clamp(0.625rem ,0.575rem + 0.25vw ,0.875rem)) {
  .bonus__text {
    font-size: calc(.625rem + .25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .item-bonus__title {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .item-bonus__title {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2.5rem ,1.875rem + 3.125vw ,5.625rem)) {
  .price__title {
    margin-bottom: clamp(2.5rem, 1.875rem + 3.125vw, 5.625rem)
  }
}@supports not (margin-bottom:clamp(2.5rem ,1.875rem + 3.125vw ,5.625rem)) {
  .price__title {
    margin-bottom: calc(2.5rem + 3.125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2.5rem ,2.25rem + 1.25vw ,3.75rem)) {
  .price__items {
    margin-bottom: clamp(2.5rem, 2.25rem + 1.25vw, 3.75rem)
  }
}@supports not (margin-bottom:clamp(2.5rem ,2.25rem + 1.25vw ,3.75rem)) {
  .price__items {
    margin-bottom: calc(2.5rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.8125rem ,0.725rem + 0.4375vw ,1.25rem)) {
  .price__label p {
    font-size: clamp(.8125rem, .725rem + .4375vw, 1.25rem)
  }
}@supports not (font-size:clamp(0.8125rem ,0.725rem + 0.4375vw ,1.25rem)) {
  .price__label p {
    font-size: calc(.8125rem + .4375 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.375rem ,1.15rem + 1.125vw ,2.5rem)) {
  .price__label p span {
    font-size: clamp(1.375rem, 1.15rem + 1.125vw, 2.5rem)
  }
}@supports not (font-size:clamp(1.375rem ,1.15rem + 1.125vw ,2.5rem)) {
  .price__label p span {
    font-size: calc(1.375rem + 1.125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1rem ,0.8rem + 1vw ,2rem)) {
  .item-price__icon {
    margin-bottom: clamp(1rem, .8rem + 1vw, 2rem)
  }
}@supports not (margin-bottom:clamp(1rem ,0.8rem + 1vw ,2rem)) {
  .item-price__icon {
    margin-bottom: calc(1rem + 1 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1rem ,0.8rem + 1vw ,2rem)) {
  .item-price__white-text {
    margin-bottom: clamp(1rem, .8rem + 1vw, 2rem)
  }
}@supports not (margin-bottom:clamp(1rem ,0.8rem + 1vw ,2rem)) {
  .item-price__white-text {
    margin-bottom: calc(1rem + 1 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .item-price__white-text {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .item-price__white-text {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .item-price__gold-text {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .item-price__gold-text {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (padding-top:clamp(1.5rem ,1.4rem + 0.5vw ,2rem)) {
  .item-themes-price {
    padding-top: clamp(1.5rem, 1.4rem + .5vw, 2rem)
  }
}@supports not (padding-top:clamp(1.5rem ,1.4rem + 0.5vw ,2rem)) {
  .item-themes-price {
    padding-top: calc(1.5rem + .5 * (100vw - 20rem) / 100)
  }
}@supports (padding-bottom:clamp(1.5rem ,1.4rem + 0.5vw ,2rem)) {
  .item-themes-price {
    padding-bottom: clamp(1.5rem, 1.4rem + .5vw, 2rem)
  }
}@supports not (padding-bottom:clamp(1.5rem ,1.4rem + 0.5vw ,2rem)) {
  .item-themes-price {
    padding-bottom: calc(1.5rem + .5 * (100vw - 20rem) / 100)
  }
}@supports (padding-left:clamp(1rem ,0.8rem + 1vw ,2rem)) {
  .item-themes-price {
    padding-left: clamp(1rem, .8rem + 1vw, 2rem)
  }
}@supports not (padding-left:clamp(1rem ,0.8rem + 1vw ,2rem)) {
  .item-themes-price {
    padding-left: calc(1rem + 1 * (100vw - 20rem) / 100)
  }
}@supports (padding-right:clamp(1rem ,0.8rem + 1vw ,2rem)) {
  .item-themes-price {
    padding-right: clamp(1rem, .8rem + 1vw, 2rem)
  }
}@supports not (padding-right:clamp(1rem ,0.8rem + 1vw ,2rem)) {
  .item-themes-price {
    padding-right: calc(1rem + 1 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.75rem ,0.7rem + 0.25vw ,1rem)) {
  .item-themes-price__text {
    font-size: clamp(.75rem, .7rem + .25vw, 1rem)
  }
}@supports not (font-size:clamp(0.75rem ,0.7rem + 0.25vw ,1rem)) {
  .item-themes-price__text {
    font-size: calc(.75rem + .25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.8rem + 0.375vw ,1.25rem)) {
  .item-themes-price__duration div {
    font-size: clamp(.875rem, .8rem + .375vw, 1.25rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.8rem + 0.375vw ,1.25rem)) {
  .item-themes-price__duration div {
    font-size: calc(.875rem + .375 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.25rem ,1rem + 1.25vw ,2.5rem)) {
  .form__title {
    margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem)
  }
}@supports not (margin-bottom:clamp(1.25rem ,1rem + 1.25vw ,2.5rem)) {
  .form__title {
    margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.75rem ,0.65rem + 0.5vw ,1.25rem)) {
  .form__label {
    font-size: clamp(.75rem, .65rem + .5vw, 1.25rem)
  }
}@supports not (font-size:clamp(0.75rem ,0.65rem + 0.5vw ,1.25rem)) {
  .form__label {
    font-size: calc(.75rem + .5 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(0.625rem ,0.0000000625rem + 3.125vw ,3.75rem)) {
  .form__label {
    margin-bottom: clamp(.625rem, .0000000625rem + 3.125vw, 3.75rem)
  }
}@supports not (margin-bottom:clamp(0.625rem ,0.0000000625rem + 3.125vw ,3.75rem)) {
  .form__label {
    margin-bottom: calc(.625rem + 3.125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(0.75rem ,0.7rem + 0.25vw ,1rem)) {
  .book-form__icon {
    margin-bottom: clamp(.75rem, .7rem + .25vw, 1rem)
  }
}@supports not (margin-bottom:clamp(0.75rem ,0.7rem + 0.25vw ,1rem)) {
  .book-form__icon {
    margin-bottom: calc(.75rem + .25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.375rem ,1.35rem + 0.125vw ,1.5rem)) {
  .book-form__title {
    font-size: clamp(1.375rem, 1.35rem + .125vw, 1.5rem)
  }
}@supports not (font-size:clamp(1.375rem ,1.35rem + 0.125vw ,1.5rem)) {
  .book-form__title {
    font-size: calc(1.375rem + .125 * (100vw - 20rem) / 100)
  }
}@supports ((-moz-column-gap:clamp(1rem ,0.6rem + 2vw ,3rem)) or (column-gap:clamp(1rem ,0.6rem + 2vw ,3rem))) {
  .karpform__icons {
    -webkit-column-gap: clamp(1rem, .6rem + 2vw, 3rem);
    -moz-column-gap: clamp(1rem, .6rem + 2vw, 3rem);
    column-gap: clamp(1rem, .6rem + 2vw, 3rem)
  }
}@supports not ((-moz-column-gap:clamp(1rem ,0.6rem + 2vw ,3rem)) or (column-gap:clamp(1rem ,0.6rem + 2vw ,3rem))) {
  .karpform__icons {
    -webkit-column-gap: calc(1rem + 2 * (100vw - 20rem) / 100);
    -moz-column-gap: calc(1rem + 2 * (100vw - 20rem) / 100);
    column-gap: calc(1rem + 2 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.5rem ,1.2rem + 1.5vw ,3rem)) {
  .karpform__icons {
    margin-bottom: clamp(1.5rem, 1.2rem + 1.5vw, 3rem)
  }
}@supports not (margin-bottom:clamp(1.5rem ,1.2rem + 1.5vw ,3rem)) {
  .karpform__icons {
    margin-bottom: calc(1.5rem + 1.5 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(0.75rem ,0.6rem + 0.75vw ,1.5rem)) {
  .karpform__price {
    margin-bottom: clamp(.75rem, .6rem + .75vw, 1.5rem)
  }
}@supports not (margin-bottom:clamp(0.75rem ,0.6rem + 0.75vw ,1.5rem)) {
  .karpform__price {
    margin-bottom: calc(.75rem + .75 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.5rem ,1.2rem + 1.5vw ,3rem)) {
  .karpform__price-old {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem)
  }
}@supports not (font-size:clamp(1.5rem ,1.2rem + 1.5vw ,3rem)) {
  .karpform__price-old {
    font-size: calc(1.5rem + 1.5 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(1.5rem ,1.2rem + 1.5vw ,3rem)) {
  .karpform__price-new {
    font-size: clamp(2rem, 1.2rem + 1.5vw, 3rem)
  }
}@supports not (font-size:clamp(1.5rem ,1.2rem + 1.5vw ,3rem)) {
  .karpform__price-new {
    font-size: calc(1.5rem + 1.5 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.625rem ,0.575rem + 0.25vw ,0.875rem)) {
  .karpform__text {
    font-size: clamp(.625rem, .575rem + .25vw, .875rem)
  }
}@supports not (font-size:clamp(0.625rem ,0.575rem + 0.25vw ,0.875rem)) {
  .karpform__text {
    font-size: calc(.625rem + .25 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .karpform__input {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .karpform__input {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .karpselect__actual {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .karpselect__actual {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2.5rem ,1.25rem + 6.25vw ,8.75rem)) {
  .why__title {
    margin-bottom: clamp(2.5rem, 1.25rem + 6.25vw, 8.75rem)
  }
}@supports not (margin-bottom:clamp(2.5rem ,1.25rem + 6.25vw ,8.75rem)) {
  .why__title {
    margin-bottom: calc(2.5rem + 6.25 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2rem ,1.8rem + 1vw ,3rem)) {
  .why__wrapper {
    margin-bottom: clamp(2rem, 1.8rem + 1vw, 3rem)
  }
}@supports not (margin-bottom:clamp(2rem ,1.8rem + 1vw ,3rem)) {
  .why__wrapper {
    margin-bottom: calc(2rem + 1 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .slide-why__name {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .slide-why__name {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .slide-why__text {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .slide-why__text {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .slide-why__read {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .slide-why__read {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.75rem ,0.7rem + 0.25vw ,1rem)) {
  .slide-why__link span:nth-child(1) {
    font-size: clamp(.75rem, .7rem + .25vw, 1rem)
  }
}@supports not (font-size:clamp(0.75rem ,0.7rem + 0.25vw ,1rem)) {
  .slide-why__link span:nth-child(1) {
    font-size: calc(.75rem + .25 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2.5rem ,2rem + 2.5vw ,5rem)) {
  .telegram__title {
    margin-bottom: clamp(2.5rem, 2rem + 2.5vw, 5rem)
  }
}@supports not (margin-bottom:clamp(2.5rem ,2rem + 2.5vw ,5rem)) {
  .telegram__title {
    margin-bottom: calc(2.5rem + 2.5 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(1.25rem ,1rem + 1.25vw ,2.5rem)) {
  .telegram__swiper {
    margin-bottom: clamp(1.25rem, 1rem + 1.25vw, 2.5rem)
  }
}@supports not (margin-bottom:clamp(1.25rem ,1rem + 1.25vw ,2.5rem)) {
  .telegram__swiper {
    margin-bottom: calc(1.25rem + 1.25 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2rem ,1.8rem + 1vw ,3rem)) {
  .telegram__wrapper {
    margin-bottom: clamp(2rem, 1.8rem + 1vw, 3rem)
  }
}@supports not (margin-bottom:clamp(2rem ,1.8rem + 1vw ,3rem)) {
  .telegram__wrapper {
    margin-bottom: calc(2rem + 1 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(2.5rem ,1.5rem + 5vw ,7.5rem)) {
  .questions__title {
    margin-bottom: clamp(2.5rem, 1.5rem + 5vw, 7.5rem)
  }
}@supports not (margin-bottom:clamp(2.5rem ,1.5rem + 5vw ,7.5rem)) {
  .questions__title {
    margin-bottom: calc(2.5rem + 5 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.75rem ,0.65rem + 0.5vw ,1.25rem)) {
  .spollers__title-text {
    font-size: clamp(.75rem, .65rem + .5vw, 1.25rem)
  }
}@supports not (font-size:clamp(0.75rem ,0.65rem + 0.5vw ,1.25rem)) {
  .spollers__title-text {
    font-size: calc(.75rem + .5 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .spollers__title-button span {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .spollers__title-button span {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .spollers__body p {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .spollers__body p {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(0.9375rem ,0.875rem + 0.3125vw ,1.25rem)) {
  .spollers__body p:not(:last-child) {
    margin-bottom: clamp(.9375rem, .875rem + .3125vw, 1.25rem)
  }
}@supports not (margin-bottom:clamp(0.9375rem ,0.875rem + 0.3125vw ,1.25rem)) {
  .spollers__body p:not(:last-child) {
    margin-bottom: calc(.9375rem + .3125 * (100vw - 20rem) / 100)
  }
}@supports (margin-bottom:clamp(0.9375rem ,0.875rem + 0.3125vw ,1.25rem)) {
  .spollers__body ul:not(:last-child) {
    margin-bottom: clamp(.9375rem, .875rem + .3125vw, 1.25rem)
  }
}@supports not (margin-bottom:clamp(0.9375rem ,0.875rem + 0.3125vw ,1.25rem)) {
  .spollers__body ul:not(:last-child) {
    margin-bottom: calc(.9375rem + .3125 * (100vw - 20rem) / 100)
  }
}@supports (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .spollers__body ul li {
    font-size: clamp(.875rem, .85rem + .125vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.85rem + 0.125vw ,1rem)) {
  .spollers__body ul li {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 100)
  }
}
}

@media (min-width: 62em) and (max-width: 120em) {
  @supports ((-moz-column-gap:clamp(2.5rem ,-4.1810344828rem + 10.775862069vw ,8.75rem)) or (column-gap:clamp(2.5rem ,-4.1810344828rem + 10.775862069vw ,8.75rem))) {
    .forwho__items {
      -webkit-column-gap: clamp(2.5rem, -4.1810344828rem + 10.775862069vw, 8.75rem);
      -moz-column-gap: clamp(2.5rem, -4.1810344828rem + 10.775862069vw, 8.75rem);
      column-gap: clamp(2.5rem, -4.1810344828rem + 10.775862069vw, 8.75rem)
    }
  }@supports not ((-moz-column-gap:clamp(2.5rem ,-4.1810344828rem + 10.775862069vw ,8.75rem)) or (column-gap:clamp(2.5rem ,-4.1810344828rem + 10.775862069vw ,8.75rem))) {
  .forwho__items {
    -webkit-column-gap: calc(2.5rem + 6.25 * (100vw - 62rem) / 58);
    -moz-column-gap: calc(2.5rem + 6.25 * (100vw - 62rem) / 58);
    column-gap: calc(2.5rem + 6.25 * (100vw - 62rem) / 58)
  }
}@supports (width:clamp(18rem ,13.1228448276rem + 7.8663793103vw ,22.5625rem)) {
  .forwho__item {
    width: clamp(18rem, 13.1228448276rem + 7.8663793103vw, 22.5625rem)
  }
}@supports not (width:clamp(18rem ,13.1228448276rem + 7.8663793103vw ,22.5625rem)) {
  .forwho__item {
    width: calc(18rem + 4.5625 * (100vw - 62rem) / 58)
  }
}@supports (width:clamp(1.875rem ,-1.3318965517rem + 5.1724137931vw ,4.875rem)) {
  .content-item-bottom-canbe__day-item:nth-child(1)::before {
    width: clamp(1.875rem, -1.3318965517rem + 5.1724137931vw, 4.875rem)
  }
}@supports not (width:clamp(1.875rem ,-1.3318965517rem + 5.1724137931vw ,4.875rem)) {
  .content-item-bottom-canbe__day-item:nth-child(1)::before {
    width: calc(1.875rem + 3 * (100vw - 62rem) / 58)
  }
}@supports (left:clamp(-16.75rem ,-10.5431034483rem + -5.1724137931vw ,-13.75rem)) {
  .content-item-bottom-canbe__day-item:nth-child(1) div {
    left: clamp(-16.75rem, -10.5431034483rem + -5.1724137931vw, -13.75rem)
  }
}@supports not (left:clamp(-16.75rem ,-10.5431034483rem + -5.1724137931vw ,-13.75rem)) {
  .content-item-bottom-canbe__day-item:nth-child(1) div {
    left: calc(-13.75rem + -3 * (100vw - 62rem) / 58)
  }
}@supports (width:clamp(12.5rem ,10.4288793103rem + 3.3405172414vw ,14.4375rem)) {
  .content-item-bottom-canbe__day-item:nth-child(3)::before {
    width: clamp(12.5rem, 10.4288793103rem + 3.3405172414vw, 14.4375rem)
  }
}@supports not (width:clamp(12.5rem ,10.4288793103rem + 3.3405172414vw ,14.4375rem)) {
  .content-item-bottom-canbe__day-item:nth-child(3)::before {
    width: calc(12.5rem + 1.9375 * (100vw - 62rem) / 58)
  }
}@supports (left:clamp(-26.25rem ,-22.2413793103rem + -3.3405172414vw ,-24.3125rem)) {
  .content-item-bottom-canbe__day-item:nth-child(3) div {
    left: clamp(-26.25rem, -22.2413793103rem + -3.3405172414vw, -24.3125rem)
  }
}@supports not (left:clamp(-26.25rem ,-22.2413793103rem + -3.3405172414vw ,-24.3125rem)) {
  .content-item-bottom-canbe__day-item:nth-child(3) div {
    left: calc(-24.3125rem + -1.9375 * (100vw - 62rem) / 58)
  }
}@supports (width:clamp(10.125rem ,5.849137931rem + 6.8965517241vw ,14.125rem)) {
  .content-item-bottom-canbe__day-item:nth-child(5)::before {
    width: clamp(10.125rem, 5.849137931rem + 6.8965517241vw, 14.125rem)
  }
}@supports not (width:clamp(10.125rem ,5.849137931rem + 6.8965517241vw ,14.125rem)) {
  .content-item-bottom-canbe__day-item:nth-child(5)::before {
    width: calc(10.125rem + 4 * (100vw - 62rem) / 58)
  }
}@supports (left:clamp(12.5rem ,7.9568965517rem + 7.3275862069vw ,16.75rem)) {
  .content-item-bottom-canbe__day-item:nth-child(5) div {
    left: clamp(12.5rem, 7.9568965517rem + 7.3275862069vw, 16.75rem)
  }
}@supports not (left:clamp(12.5rem ,7.9568965517rem + 7.3275862069vw ,16.75rem)) {
  .content-item-bottom-canbe__day-item:nth-child(5) div {
    left: calc(12.5rem + 4.25 * (100vw - 62rem) / 58)
  }
}@supports (width:clamp(6.625rem ,3.7521551724rem + 4.6336206897vw ,9.3125rem)) {
  .content-item-bottom-canbe__day-item:nth-child(6)::before {
    width: clamp(6.625rem, 3.7521551724rem + 4.6336206897vw, 9.3125rem)
  }
}@supports not (width:clamp(6.625rem ,3.7521551724rem + 4.6336206897vw ,9.3125rem)) {
  .content-item-bottom-canbe__day-item:nth-child(6)::before {
    width: calc(6.625rem + 2.6875 * (100vw - 62rem) / 58)
  }
}@supports (left:clamp(9.4375rem ,6.7650862069rem + 4.3103448276vw ,11.9375rem)) {
  .content-item-bottom-canbe__day-item:nth-child(6) div {
    left: clamp(9.4375rem, 6.7650862069rem + 4.3103448276vw, 11.9375rem)
  }
}@supports not (left:clamp(9.4375rem ,6.7650862069rem + 4.3103448276vw ,11.9375rem)) {
  .content-item-bottom-canbe__day-item:nth-child(6) div {
    left: calc(9.4375rem + 2.5 * (100vw - 62rem) / 58)
  }
}
}

@media (min-width: 43.75em) and (max-width: 61.99875em) {
  @supports (width:clamp(18rem ,7.0617508048rem + 25.0017124461vw ,22.5625rem)) {
    .forwho__item {
      width: clamp(18rem, 7.0617508048rem + 25.0017124461vw, 22.5625rem)
    }
  }@supports not (width:clamp(18rem ,7.0617508048rem + 25.0017124461vw ,22.5625rem)) {
  .forwho__item {
    width: calc(18rem + 4.5625 * (100vw - 43.75rem) / 18.24875)
  }
}
}

@media (min-width: 20em) and (max-width: 61.99875em) {
  @supports (row-gap:clamp(1.5rem ,1.2618976755rem + 1.1905116224vw ,2rem)) {
    .content-item-bottom-canbe {
      row-gap: clamp(1.5rem, 1.2618976755rem + 1.1905116224vw, 2rem)
    }
  }@supports not (row-gap:clamp(1.5rem ,1.2618976755rem + 1.1905116224vw ,2rem)) {
  .content-item-bottom-canbe {
    row-gap: calc(1.5rem + .5 * (100vw - 20rem) / 41.99875)
  }
}@supports (font-size:clamp(1rem ,0.8511860472rem + 0.744069764vw ,1.3125rem)) {
  .content-item-bottom-canbe__day-item span {
    font-size: clamp(1rem, .8511860472rem + .744069764vw, 1.3125rem)
  }
}@supports not (font-size:clamp(1rem ,0.8511860472rem + 0.744069764vw ,1.3125rem)) {
  .content-item-bottom-canbe__day-item span {
    font-size: calc(1rem + .3125 * (100vw - 20rem) / 41.99875)
  }
}@supports (font-size:clamp(0.875rem ,0.8154744189rem + 0.2976279056vw ,1rem)) {
  .content-item-bottom-canbe__number-item {
    font-size: clamp(.875rem, .8154744189rem + .2976279056vw, 1rem)
  }
}@supports not (font-size:clamp(0.875rem ,0.8154744189rem + 0.2976279056vw ,1rem)) {
  .content-item-bottom-canbe__number-item {
    font-size: calc(.875rem + .125 * (100vw - 20rem) / 41.99875)
  }
}
}

@media (min-width: 48em) and (max-width: 120em) {
  @supports (padding-left:clamp(0.0000000625rem ,-7.9166665625rem + 16.4930554688vw ,11.875rem)) {
    .book-form {
      padding-left: clamp(.0000000625rem, -7.9166665625rem + 16.4930554688vw, 11.875rem)
    }
  }@supports not (padding-left:clamp(0.0000000625rem ,-7.9166665625rem + 16.4930554688vw ,11.875rem)) {
  .book-form {
    padding-left: calc(.0000000625rem + 11.8749999375 * (100vw - 48rem) / 72)
  }
}
}

@media (any-hover: hover) {
  .button:hover::before {
    width: 100%
  }

  .button--orange:hover {
    -webkit-box-shadow: 0 0 .1875rem #ff8845, 0 0 .5625rem #ff8845, 0 0 1.6875rem #ff8845;
    box-shadow: 0 0 .1875rem #ff8845, 0 0 .5625rem #ff8845, 0 0 1.6875rem #ff8845
  }

  .menu__link:hover span {
    color: #ffbe65
  }

  .social-menu__item:hover svg path {
    fill: #ffbe65
  }

  .footer__nav-link:hover {
    color: #ffbe65
  }

  .footer__link:hover {
    color: #ffbe65
  }

  .karpform__submit:hover {
    -webkit-box-shadow: 0 0 .1875rem #ff8845, 0 0 .5625rem #ff8845, 0 0 1.6875rem #ff8845;
    box-shadow: 0 0 .1875rem #ff8845, 0 0 .5625rem #ff8845, 0 0 1.6875rem #ff8845
  }

  .why__button:hover {
    scale: 1.1
  }

  .slide-why__read:hover {
    opacity: 1
  }

  .slide-why__link:hover span:nth-child(1) {
    color: #ffbe65
  }

  .slide-why__link:hover span:nth-child(2) {
    rotate: 0deg;
    color: #ffbe65
  }

  .telegram__button:hover {
    scale: 1.1
  }
}

@media (any-hover: none) {
  .icon-menu {
    cursor: default
  }
}
