@charset "UTF-8";
@import 'https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css';
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  background: #F5F5DC;
}

ul {
  list-style: none;
}

.hero-change__desc ul {
  list-style: initial;
  margin: 1rem 0 0 1.5rem;
}

.schedule__item ul {
    list-style: initial;
    margin-left: 2rem;
	font-size: 0.8rem;
	line-height: 1.2;
}

a,
button {
  cursor: pointer;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.container-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 64px;
}

@media screen and (max-width: 1000px) {
  .container-inner {
    padding: 0 20px;
  }
}
.section {
  padding-bottom: 100px;
}

@media screen and (max-width: 1000px) {
  .section {
    padding-bottom: 20px;
     padding-left: 10px;
        padding-right: 10px;
  }
}

.title p {
  font-size: 1.2rem;
  line-height: 1.2;
}

.title p:first-child:last-child, .title h2 {
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: -0.96px;
  color: #2f2f34;
}


@media screen and (max-width: 1000px) {
 .title, .title h2 {
    font-size: 25px;
    line-height: 36px;
    letter-spacing: -0.56px;
  }
  
}

@media screen and (max-width: 768px) {
.title p:first-child:last-child, .title h2 {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.56px;
  }
  
}

.btn {
  font-size: 16px;
  line-height: 18px;
  font-weight: 700;
  color: #2f2f34;
  padding: 16px 40px;
  background-color: transparent;
  border: 2px solid #2f2f34;
  display: inline-block;
  border-radius: 32px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.btn:hover {
  background-color: #f5f5f5;
}
.btn:focus {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
  box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
}

@media screen and (max-width: 425px) {
  .btn {
    width: 100%;
    text-align: center;
  }
}
.accent {
  font-family: "Atomic Marker Regular";
  font-size: 116px;
  line-height: 116px;
  color: #dbed50;
  font-weight: 400;
}

.headerBtn {
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  color: #2f2f34;
  padding: 17px 45px;
  background-color: transparent;
  border: 2px solid #2f2f34;
  display: inline-block;
  border-radius: 32px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.headerBtn:hover {
  background-color: #f5f5f5;
}
.headerBtn:focus {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
  box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
}

@font-face {
  font-family: "Atomic Marker Regular";
  font-display: swap;
  src: url("../fonts/AtomicMarker.otf") format("opentype");
  font-weight: 400;
  font-style: Regular;
}
.myModal {
  position: fixed;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 20;
  overflow: auto;
}
.myModal.active {
  visibility: visible;
  opacity: 1;
}
.myModal__content {
  margin: auto 15px;
  max-width: 80vw;
  max-height: 50vh;
  background-color: #fff;
}
.myModal__content-close {
  position: absolute;
  top: 60px;
  right: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.myModal__content-close img:hover {
  cursor: pointer;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 924px) {
  .myModal__content-close {
    top: 60px;
    right: 30px;
  }
}
.burger-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: fixed;
  background-color: white;
  top: 48px;
  width: 100%;
  height: calc(100vh - 48px);
  padding: 0;
  z-index: 100;
  overflow-y: auto;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.burger-menu.hide {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}
.burger-menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}
.burger-menu__link {
  font-weight: 600;
  color: #2f2f34;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
}
.burger-menu__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 64px;
  height: 48px;
}
.burger-menu__phone-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.burger-menu__phone-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  font-size: 18px;
  line-height: 32px;
  font-weight: 600;
  color: #8982bc;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.burger-menu__phone {
  width: 20px;
  height: 20px;
}
.burger-menu__logo-link {
  display: inline-block;
  padding: 8px 0;
}
.burger-menu__logo-link img {
  width: 88px;
  height: 32px;
}

.header__dropdown-burger {
  display: block;
  margin-left: 20px;
}

.burger-menu__up {
  padding: 46px 0px 40px;
  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;
  height: calc(100vh - 48px);
}

.burger-menu-close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .burger-menu__container {
    padding: 0 20px;
  }
}
@media screen and (max-height: 558px) {
  .burger-menu__up {
    padding: 40px 0px 40px;
  }
}
.content {
  width: 100%;
}
.content .info {
  width: 100%;
  background-color: #000;
  padding: 40px;
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.8);
}
.content .tabs {
  width: 70%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.content .tabs__item {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}
.content .tabs__item::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background-color: #e5dfe3;
  margin-top: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.content .tabs__item:hover::after {
  width: 60%;
}
.content .tabs__content {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 1px solid #ccc;
}
.content .tabs__content .tabs__description {
  margin-top: 30px;
  color: #fff;
  font-weight: 300;
  padding-right: 20px;
}
.content .tabs__content .tabs__description::after {
  content: "";
  display: block;
  width: 0%;
  height: 3px;
  background-color: #c78030;
  margin-top: 30px;
}
.content .info .hide {
  display: none;
}
.content .info .show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.img-wrap {
  width: 421px;
  height: 417px;
  -webkit-clip-path: url(#myClip);
  clip-path: url(#myClip);
}

.radio {
  background-color: #000;
}
.radio__title {
  color: #aaaaaa;
  font-weight: 500;
  font-size: 3.35em;
}
.radio__list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: auto;
}
.radio__item {
  color: #aaaaaa;
  display: block;
  position: relative;
  float: left;
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #333;
}
.radio__item input[type=radio] {
  position: absolute;
  visibility: hidden;
}
.radio__item .radio__label {
  display: block;
  position: relative;
  font-weight: 300;
  font-size: 1.35em;
  padding: 25px 25px 25px 80px;
  margin: 10px auto;
  height: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.25s linear;
}
.radio__item:hover .radio__label {
  color: #ffffff;
}
.radio__item:hover .check {
  border: 5px solid #ffffff;
}
.radio__item:hover .check::before {
  display: block;
  position: absolute;
  content: "";
  border-radius: 100%;
  height: 15px;
  width: 15px;
  top: 5px;
  left: 5px;
  margin: auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
}
.radio__item .check {
  display: block;
  position: absolute;
  border: 5px solid #aaaaaa;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  top: 30px;
  left: 20px;
  z-index: 5;
  transition: border 0.25s linear;
  -webkit-transition: border 0.25s linear;
}

input[type=radio]:checked ~ .check {
  border: 5px solid #0dff92;
}

input[type=radio]:checked ~ .check::before {
  background: #0dff92;
}

input[type=radio]:checked ~ .radio__label {
  color: #0dff92;
}

.checkbox__title {
  font-size: 36px;
  color: black;
  margin-bottom: 30px;
}
.checkbox__label {
  position: relative;
  cursor: pointer;
}
.checkbox__label::before {
  position: absolute;
  top: 2px;
  left: -44px;
  z-index: 1;
  width: 16px;
  height: 16px;
  content: "";
  border: 2px solid #5a5a5a;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
}

select {
  margin: 50px;
  width: 150px;
  padding: 5px 35px 5px 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  height: 34px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(https://stackoverflow.com/favicon.ico) 96%/15% no-repeat #eee;
}

select::-ms-expand {
  display: none;
}

.swiper-img {
  width: 600px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
}

.credit {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: inherit;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  overflow: hidden;
  min-width: 600px;
  max-width: 900px;
  width: calc(100% - 100px);
  margin-top: 100px;
  height: 400px;
}
.options .option {
  position: relative;
  overflow: hidden;
  min-width: 60px;
  margin: 10px;
  background: var(--optionBackground, var(--defaultBackground, #e6e9ed));
  background-size: auto 120%;
  background-position: center;
  cursor: pointer;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.options .option:nth-child(1) {
  --defaultBackground: #ed5565;
}
.options .option:nth-child(2) {
  --defaultBackground: #fc6e51;
}
.options .option:nth-child(3) {
  --defaultBackground: #ffce54;
}
.options .option:nth-child(4) {
  --defaultBackground: #2ecc71;
}
.options .option:nth-child(5) {
  --defaultBackground: #5d9cec;
}
.options .option:nth-child(6) {
  --defaultBackground: #ac92ec;
}
.options .option.active {
  -webkit-box-flex: 10000;
  -ms-flex-positive: 10000;
  flex-grow: 10000;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  max-width: 600px;
  margin: 0px;
  border-radius: 40px;
  background-size: auto 100%;
  /*&:active {
           transform:scale(0.9);
        }*/
}
.options .option.active .shadow {
  -webkit-box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
  box-shadow: inset 0 -120px 120px -120px black, inset 0 -120px 120px -100px black;
}
.options .option.active .label {
  bottom: 20px;
  left: 20px;
}
.options .option.active .label .info > div {
  left: 0px;
  opacity: 1;
}
.options .option:not(.active) {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 30px;
}
.options .option:not(.active) .shadow {
  bottom: -40px;
  -webkit-box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
  box-shadow: inset 0 -120px 0px -120px black, inset 0 -120px 0px -100px black;
}
.options .option:not(.active) .label {
  bottom: 10px;
  left: 10px;
}
.options .option:not(.active) .label .info > div {
  left: 20px;
  opacity: 0;
}
.options .option .shadow {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 120px;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.options .option .label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0px;
  height: 40px;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}
.options .option .label .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: white;
  color: var(--defaultBackground);
}
.options .option .label .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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: 10px;
  color: white;
  white-space: pre;
}
.options .option .label .info > div {
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
  transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95), opacity 0.5s ease-out;
}
.options .option .label .info .main {
  font-weight: bold;
  font-size: 1.2rem;
}
.options .option .label .info .sub {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.rgb-form {
  width: 600px;
  background-color: #f0f0f0;
}
.rgb-form__label {
  display: block;
  color: black;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: -0.28px;
}
.rgb-form__label.red-border {
  color: red;
}
.rgb-form__label.green-border {
  color: green;
}
.rgb-form__input {
  padding-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
  outline: none;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid black;
  color: black;
  font-size: 16px;
  line-height: 1.625;
  width: 100%;
}
.rgb-form__input::-webkit-input-placeholder {
  color: black;
  opacity: 0.5;
  padding-left: 0;
}
.rgb-form__input::-moz-placeholder {
  color: black;
  opacity: 0.5;
  padding-left: 0;
}
.rgb-form__input:-ms-input-placeholder {
  color: black;
  opacity: 0.5;
  padding-left: 0;
}
.rgb-form__input::-ms-input-placeholder {
  color: black;
  opacity: 0.5;
  padding-left: 0;
}
.rgb-form__input::placeholder {
  color: black;
  opacity: 0.5;
  padding-left: 0;
}
.rgb-form__input:focus .rgb-form__label {
  color: black;
}
.rgb-form__input:invalid + .rgb-form__label {
  color: red;
}
.rgb-form__error-message, .rgb-form__error-message-phone, .rgb-form__error-message-email {
  color: red;
  font-weight: 700;
  text-align: right;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease;
  transition: opacity 0.1s ease;
}
.rgb-form__error-message.visible, .rgb-form__error-message-phone.visible, .rgb-form__error-message-email.visible {
  opacity: 1;
}
.rgb-form__error-message:first-child, .rgb-form__error-message-phone:first-child, .rgb-form__error-message-email:first-child {
  margin-bottom: 24px;
}

.iti {
  display: block !important;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
  position: relative;
  color: black;
  font-size: 16px;
  line-height: 1.625;
  padding-bottom: 10px;
}
.iti--separate-dial-code .iti__selected-flag::-webkit-input-placeholder {
  color: grey;
  font-size: 16px;
  line-height: 1.625;
}
.iti--separate-dial-code .iti__selected-flag::-moz-placeholder {
  color: grey;
  font-size: 16px;
  line-height: 1.625;
}
.iti--separate-dial-code .iti__selected-flag:-ms-input-placeholder {
  color: grey;
  font-size: 16px;
  line-height: 1.625;
}
.iti--separate-dial-code .iti__selected-flag::-ms-input-placeholder {
  color: grey;
  font-size: 16px;
  line-height: 1.625;
}
.iti--separate-dial-code .iti__selected-flag::placeholder {
  color: grey;
  font-size: 16px;
  line-height: 1.625;
}

#map {
  width: 50%;
  height: 400px;
  position: relative;
}

.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 72px;
}
.header__box-mob {
  display: none;
}
.header__logo {
  margin-right: 64px;
}
.header__logo-link {
  padding: 10px 0;
  display: inline-block;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}
.header__link {
  color: #2f2f34;
  font-weight: 500;
  font-style: 14px;
  line-height: 24px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.header__link:hover {
  color: #8982bc;
}
.header__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border: none;
  outline: none;
  color: #2f2f34;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  position: relative;
  z-index: 7;
}
.header__dropdown-toggle-mob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border: none;
  outline: none;
  color: #2f2f34;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  position: relative;
  z-index: 107;
}
.header__flag {
  margin-right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.header__phone-icon {
  width: 16px;
  height: 16px;
}
.header__phone-dropdown-toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: transparent;
  border: none;
  outline: none;
  color: #2f2f34;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  position: relative;
  z-index: 7;
}
.header__phone {
  margin-right: 4px;
}
.header__container-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.header__burger {
  display: none;
}
.header__phone-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__phone-arrow {
  background-color: transparent;
  outline: none;
  border: none;
}
.header__dropdown-menu {
  display: none;
  position: absolute;
  top: -2px;
  left: -4px;
  z-index: 4;
  padding-top: 34px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}
.header__dropdown-menu--visible {
  display: block;
}
.header__dropdown-menu-mob {
  display: none;
  position: absolute;
  top: -2px;
  left: -4px;
  z-index: 104;
  padding-top: 34px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}
.header__dropdown-menu-mob--visible {
  display: block;
}
.header__phone-dropdown-menu {
  display: none;
  position: absolute;
  top: -2px;
  left: -4px;
  z-index: 4;
  padding-top: 34px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}
.header__phone-dropdown-menu--visible {
  display: block;
}
.header__dropdown-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  width: 73px;
  z-index: 20;
}
.header__dropdown-menu-list-mob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  width: 73px;
  z-index: 105;
}
.header__phone-dropdown-menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  width: 180px;
  z-index: 20;
}
.header__dropdown-menu-item {
  padding: 4px;
}
.header__dropdown-menu-item-mob {
  padding: 4px;
}
.header__phone-dropdown-menu-item {
  padding: 6px;
}
.header__dropdown-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: #2f2f34;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.header__dropdown-menu-link:hover {
  color: #8982bc;
}
.header__dropdown-menu-link-mob {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: #2f2f34;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.header__dropdown-menu-link-mob:hover {
  color: #8982bc;
}
.header__phone-dropdown-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: #2f2f34;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  gap: 4px;
}
.header__phone-dropdown-menu-link:hover {
  color: #8982bc;
}
.header__dropdown {
  position: relative;
}
.header__dropdown-mob {
  position: relative;
}
.header__phone-dropdown {
  position: relative;
}

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 10;
}

.icon-rotate.rotate {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-rotate-mob.rotate-mob {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-rotate-phone {
  position: relative;
  z-index: 7;
}

.icon-rotate-phone.rotate-phone {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 1200px) {
  .header__box {
    display: none;
  }
  .header__box-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
  }
  .header__burger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__box {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .header__flag {
    margin-right: 4px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
  }
  .header__logo-link {
    padding: 8px 0;
  }
  .header__logo-link img {
    width: 88px;
    height: 32px;
  }
  .burger {
    background-color: transparent;
    border: none;
    outline: none;
    display: inline-block;
  }
  .burger__menu-icon {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 8px 0;
    -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;
    cursor: pointer;
  }
  .burger__list-title {
    font-size: 14px;
    line-height: 24px;
    color: #48484d;
    margin-bottom: 2px;
    text-align: center;
  }
  .burger__list-title--color {
    color: #2f2f34;
  }
  .burger__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .burger__social-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #2f2f34;
    border-radius: 50%;
    background-color: #e4f650;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .burger__social-link--telega {
    padding-top: 3px;
  }
  .burger__social-link img {
    width: 22px;
    height: 22px;
  }
  .burger__social-link:hover {
    background-color: #f3ff88;
  }
  .burger__social-link:focus {
    background-color: #daec46;
  }
  .burger__social-mob {
    margin-top: 16px;
  }
  .burger__contacts-box {
    text-align: center;
  }
  .burger__link-phone, .burger__contacts-text {
    font-size: 16px;
    line-height: 24px;
    color: #48484d;
    font-weight: 500;
    margin-bottom: 2px;
    text-align: center;
  }
  .burger__list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .burger__menu-line {
    width: 22px;
    height: 2px;
    background-color: #000;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
  }
  .burger__menu-icon.active .burger__menu-line1 {
    -webkit-transform: rotate(-45deg) translate(-5px, 5px);
    -ms-transform: rotate(-45deg) translate(-5px, 5px);
    transform: rotate(-45deg) translate(-5px, 5px);
  }
  .burger__menu-icon.active .burger__menu-line2 {
    opacity: 0;
  }
  .burger__menu-icon.active .burger__menu-line3 {
    -webkit-transform: rotate(45deg) translate(-5px, -5px);
    -ms-transform: rotate(45deg) translate(-5px, -5px);
    transform: rotate(45deg) translate(-5px, -5px);
  }
}
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 780px;
}
.hero__bg {
  min-height: 780px;
  width: 100%;
  height: calc(100vh - 72px);
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero__place-text {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  padding-left: 6px;
  margin-bottom: 21px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 9px;
}
.hero__place-text strong {
  font-weight: 500;
  text-transform: uppercase;
}
.hero__content {
  margin-left: 40px;
  padding-top: 83px;
}
.hero__title {
  color: #fff;
  font-size: 60px;
  font-weight: 600;
  line-height: 56px;
  letter-spacing: -1.4px;
  max-width: 60%;
  margin-bottom: 48px;
  margin-top: 16px;
}
.hero__title p {
  margin-bottom: 16px;
}
.hero__title strong {
  font-family: "Atomic Marker Regular";
  color: #dbed50;
  font-size: 74px;
  font-weight: 400;
  line-height: 80px;
}
.hero__desc {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 58px;
}
.hero__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 35px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.hero__btn {
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #d9ea58;
  padding: 21px;
  color: #2f2f34;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 236px;
	text-align:center;
}
.hero__btn:hover {
  background-color: #f3ff88;
}
.hero__btn:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}
.hero__btn2 {
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #fff;
  padding: 21px 63px;
  color: #2f2f34;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 236px;
}
.hero__btn2:hover {
  background-color: #f5f5f5;
}
.hero__btn2:focus {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
  box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
}
.hero__card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.4);
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(157, 157, 157, 0.4)), to(rgba(157, 157, 157, 0.4))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.32)), to(rgba(255, 255, 255, 0.32)));
  background: linear-gradient(0deg, rgba(157, 157, 157, 0.4), rgba(157, 157, 157, 0.4)), linear-gradient(0deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.32));
  -webkit-backdrop-filter: blur(32px);
  backdrop-filter: blur(32px);
  padding: 20px 20px 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 374px;
}
.hero__card2 {
  min-width: 399px;
}
.hero__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.hero__cards-mob {
  display: none;
}
.hero__card-title {
  color: #fff;
  font-size: 16px;
  margin-bottom: 12px;
}
.hero__card-desc {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}
.hero__card-desc strong {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-left: 30px;
  text-decoration: line-through;
}
.hero__bg-mob {
  display: none;
}

@media screen and (min-width: 1920px) {
  .hero {
    height: 920px;
  }
  .hero__bg {
    height: 920px;
  }
}
@media screen and (max-width: 1024px) {
  .hero {
    min-height: 490px;
    height: 610px;
    max-height: 820px;
  }
  .hero__bg {
    height: 610px;
    min-height: 490px;
  }
  .hero__content {
    margin-left: 0px;
    padding-top: 32px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 450px;
    height: 570px;
  }
  .hero__desc {
    font-size: 14px;
    line-height: 15px;
    margin-bottom: 0;
  }
  .hero__place-text {
    font-size: 14px;
    line-height: 16px;
    gap: 4px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 13px;
  }
  .hero__title {
    margin: 0 auto;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.64px;
    margin-bottom: 8px;
    max-width: 320px;
  }
  .hero__title p {
    margin-bottom: 0;
  }
  .hero__title strong {
    font-size: 36px;
    line-height: 40px;
  }
  .hero__btns {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -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;
    margin-bottom: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .hero__btn {
    padding: 18px 65px;
    font-size: 14px;
    line-height: 18px;
    min-width: 239px;
    width: 236px;
  }
  .hero__btn2 {
    padding: 18px 65px;
    font-size: 14px;
    line-height: 18px;
    min-width: 236px;
    width: 236px;
  }
  .hero__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 8px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .hero__card {
    min-width: 231px;
    padding: 12px 16px;
    gap: 8px;
  }
  .hero__card2 {
    min-width: 235px;
  }
  .hero__box-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .hero__card-title {
    font-size: 14px;
    margin-bottom: 2px;
    line-height: 17px;
  }
  .hero__card-desc {
    font-size: 16px;
    line-height: 19px;
  }
  .hero__card-desc strong {
    font-size: 13px;
    line-height: 15px;
    font-weight: 400;
    margin-left: 4px;
  }
  .hero__card-box {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .hero {
    height: calc(100vh - 48px);
    max-height: none;
  }
  .hero__bg {
    display: none;
  }
  .hero__bg-mob {
    display: block;
    width: 100%;
    height: calc(100vh - 48px);
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .hero__content {
    height: calc(100vh - 100px);
  }
  .hero__btn {
    min-width: 100%;
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
  }
  .hero__btn2 {
    min-width: 100%;
    width: 100%;
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
  }
  .hero__cards {
    display: none;
  }
  .hero__cards-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 6px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .hero__card-mob {
    width: calc(50% - 3px);
    min-width: calc(50% - 3px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(157, 157, 157, 0.4)), to(rgba(157, 157, 157, 0.4))), -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, 0.32)), to(rgba(255, 255, 255, 0.32)));
    background: linear-gradient(0deg, rgba(157, 157, 157, 0.4), rgba(157, 157, 157, 0.4)), linear-gradient(0deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.32));
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
    padding: 12px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    gap: 13px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 125px;
            align-items: center;
  }

 
  .hero__card-box-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 7px;
  }
  .hero__card-box-mob img {
    width: 36px;
    height: 36px;
  }
  .hero__card-title {
    font-size: 13px;
    line-height: 16px;
    font-weight: 400;
    text-align: left;
    max-width: 76px;
  }
  .hero__card-desc {
    font-size: 15px;
    line-height: 18px;
    font-weight: 700;
    text-align: left;
  }
  .hero__card-desc--price {
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
  }
  .hero__card-desc--price strong {
    margin-left: 0;
    font-size: 13px;
    line-height: 16px;
  }
}
@media screen and (max-height: 520px) and (max-width: 480px) {
  .hero__bg-mob {
    height: 496px;
  }
}
.journey {
  padding-bottom: 320px;
  overflow: hidden;
}
.journey__title {
  font-size: 156px;
  line-height: 116px;
  text-align: center;
  font-weight: 400;
}
.journey__content {
  position: relative;
  padding-top: 188px;
}
.journey__cloud1 {
  position: absolute;
  left: 16px;
  top: 162px;
  z-index: -1;
}
.journey__cloud2 {
  position: absolute;
  left: 276px;
  top: 88px;
}
.journey__cloud3 {
  position: absolute;
  right: 22px;
  top: 90px;
}
.journey__girl {
  margin: 0 auto;
  margin-bottom: -86px;
  position: relative;
  z-index: 2;
}
.journey__grass {
  width: 100%;
  border-radius: 145px;
}
.journey__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-top: -200px;
}
.journey__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  width: 294px;
  background-color: #fff;
  border: 2px solid #d2d2d2;
  border-radius: 100px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #2f2f34;
}
.journey__item img {
  width: 72px;
  height: 72px;
}
.journey__item:nth-child(1) {
  position: absolute;
  top: -142px;
  left: 105px;
  z-index: 1;
}
.journey__item:nth-child(5) {
  position: absolute;
  top: -142px;
  right: 105px;
  z-index: 1;
}
.journey__item:nth-child(2) {
  position: absolute;
  top: -12px;
  left: 174px;
  z-index: 1;
}
.journey__item:nth-child(4) {
  position: absolute;
  top: -12px;
  right: 174px;
  z-index: 1;
}
.journey__item:nth-child(3) {
  position: absolute;
  top: 40px;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 1400px) {
  .journey__girl {
    width: 400px;
  }
  .journey__item:nth-child(2) {
    left: 144px;
  }
  .journey__item:nth-child(4) {
    right: 144px;
  }
}
@media screen and (max-width: 1300px) {
  .journey__girl {
    width: 240px;
    margin-top: 52px;
    margin-bottom: -49px;
  }
  .journey__item:nth-child(1) {
    top: -104px;
    left: 64px;
  }
  .journey__item:nth-child(5) {
    top: -104px;
    right: 64px;
  }
  .journey__item:nth-child(2) {
    left: 64px;
    top: 40px;
  }
  .journey__item:nth-child(4) {
    right: 64px;
    top: 40px;
  }
}
@media screen and (max-width: 1160px) {
  .journey__item:nth-child(1) {
    top: -104px;
    left: 24px;
  }
  .journey__item:nth-child(5) {
    top: -104px;
    right: 24px;
  }
  .journey__item:nth-child(2) {
    left: 24px;
    top: 40px;
  }
  .journey__item:nth-child(4) {
    right: 24px;
    top: 40px;
  }
}
@media screen and (max-width: 1100px) {
  .journey {
    padding-bottom: 56px;
  }
  .journey__item:nth-child(1), .journey__item:nth-child(2), .journey__item:nth-child(3), .journey__item:nth-child(4), .journey__item:nth-child(5) {
    position: static;
  }
  .journey__item:nth-child(3) {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .journey__list {
    margin: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 16px;
  }
  .journey__cloud1 {
    position: absolute;
    left: 50%;
    top: 56px;
    z-index: -1;
    width: 120px;
    height: 84px;
  }
  .journey__cloud2 {
    position: absolute;
    left: -10px;
    top: 126px;
    width: 96px;
    height: 47px;
  }
  .journey__cloud3 {
    position: absolute;
    right: -22px;
    top: 126px;
    width: 102px;
    height: 67px;
  }
  .journey__title {
    font-size: 80px;
    line-height: 80px;
    text-align: center;
    font-weight: 400;
    max-width: 230px;
    margin: 0 auto;
  }
  .journey__content {
    padding-top: 100px;
  }
  .journey__girl {
    margin-top: 24px;
    margin-bottom: -100px;
  }
}
@media screen and (max-width: 600px) {
  .journey__girl {
    margin-bottom: -80px;
  }
}
@media screen and (max-width: 480px) {
  .journey__item {
    border: 2px solid #ebe1ff;
    -webkit-box-shadow: 0px 4.0059046745px 24.0354270935px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4.0059046745px 24.0354270935px 0px rgba(0, 0, 0, 0.08);
  }
  .journey__girl {
    margin-bottom: -68px;
  }
}
@media screen and (max-width: 425px) {
  .journey__item {
    width: 100%;
    font-size: 14px;
    line-height: 22px;
  }
  .journey__item img {
    width: 56px;
    height: 56px;
  }
  .journey__cloud2 {
    position: absolute;
    left: -48px;
    top: 126px;
    width: 96px;
    height: 47px;
  }
  .journey__cloud3 {
    position: absolute;
    right: -74px;
    top: 126px;
    width: 102px;
    height: 67px;
  }
  .journey__girl {
    margin-bottom: -54px;
  }
}
.changes__notfound {
  text-align: center;
  margin-top: 120px;
  font-size: 26px;
}
.changes__title {
  margin: 0 auto;
  margin-bottom: 40px;
  text-align: center;
  max-width: 100%;
}
.changes__title-page {
  margin-top: 40px;
}
.changes__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.changes__card {
  position: relative;
  overflow: hidden;
  width: 310px;
  border-radius: 16px;
  background-color: #f3f3f3;
  box-shadow: 0px 4px 20px rgb(0 0 0 / 10%);
  min-height: 545px;
}
.changes__card--purple {
  background-color: #eae7ff;
}
.changes__card--purple .changes__card-img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.changes__card--purple .changes__card-date {
  background-color: #d8d2ff;
}
.changes__card--purple .changes__card-sold-out {
  display: none;
}
.changes__card--green {
  background-color: #edfff2;
}
.changes__card--green .changes__card-img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.changes__card--green .changes__card-date {
  background-color: #c6ffd6;
}
.changes__card--green .changes__card-sold-out {
  display: none;
}
.changes__card--orange {
  background-color: #fdf3eb;
}
.changes__card--orange .changes__card-img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.changes__card--orange .changes__card-date {
  background-color: #e9dfd7;
}
.changes__card--orange .changes__card-sold-out {
  display: none;
}
.changes__card--blue {
  background-color: #e3f0ff;
}
.changes__card--blue .changes__card-img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.changes__card--blue .changes__card-date {
  background-color: #b8d9ff;
}
.changes__card--blue .changes__card-sold-out {
  display: none;
}
.changes__card--pink {
  background-color: #ffefff;
}
.changes__card--pink .changes__card-img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.changes__card--pink .changes__card-date {
  background-color: #ffd5ff;
}
.changes__card--pink .changes__card-sold-out {
  display: none;
}
.changes__card--yellow {
  background-color: #fffee4;
}
.changes__card--yellow .changes__card-img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.changes__card--yellow .changes__card-date {
  background-color: #f4efbc;
}
.changes__card--yellow .changes__card-sold-out {
  display: none;
}
.changes__card--cyan {
  background-color: #d8ffff;
}
.changes__card--cyan .changes__card-img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}
.changes__card--cyan .changes__card-date {
  background-color: #c4ffff;
}
.changes__card--cyan .changes__card-sold-out {
  display: none;
}
.changes__card-sold-out {
  display: block;
  position: absolute;
  top: 12px;
  right: -30px;
  background-color: #e94026;
  text-align: center;
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
  text-transform: uppercase;
  width: 138px;
  padding: 4px 8px;
  z-index: 1;
  color: #fff;
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.changes__card-img-box {
  height: 237px;
  border-radius: 16px 16px 0 0;
  margin-bottom: 16px;
}
.changes__card-img {
  width: 100%;
  height: 100%;
  border-radius: 16px 16px 0 0;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
	object-fit: cover;
}
.changes__card-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  text-align: center;
  color: #2f2f34;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.changes__card-date {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 0 auto 16px;
  gap: 4px;
  padding: 6px 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ebebeb;
  border-radius: 8px;
}
.changes__card-date-text {
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
}
.changes__card-title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #2f2f34;
}
.changes__card-desc {
  max-width: 231px;
  text-align: center;
  font-size: 14px;
  line-height: 20px;
}
.changes__card-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 39px;
  padding-bottom: 32px;
  height: calc(100% - 253px);
}
.changes__card-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.changes__btn2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #2f2f34;
  fill: inherit;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.changes__btn2 svg {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 20px;
  height: 20px;
}
.changes__btn2:hover {
  color: #a791f4;
}
.changes__btn2:hover svg {
  fill: #a791f4;
}
.changes__btn2:hover {
  color: #756ea8;
}
.changes__btn2:hover svg {
  fill: #756ea8;
}
.changes__btn1 {
  border-radius: 50px;
  border: 2px solid #2f2f34;
  background-color: #dbed50;
  padding: 13px 70px;
  color: #2f2f34;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.changes__btn1:hover {
  background-color: #f3ff88;
}
.changes__btn1:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}
.changes__btn1.disabled {
  background-color: #d6d6d6;
  cursor: auto;
}

@media screen and (max-width: 1105px) {
  .changes__cards {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .changes__notfound {
    margin-top: 64px;
    font-size: 18px;
  }
  .changes__title {
    margin: 0 auto;
    margin-bottom: 24px;
    text-align: center;
  }
  .changes__title-page {
    margin-top: 40px;
  }
}
@media screen and (max-width: 684px) {
  .changes__cards {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 24px;
  }
}
.facts__img-wrap {
  display: none;
  width: 421px;
  height: 424px;
  -webkit-clip-path: url(#myClip);
  clip-path: url(#myClip);
}
.facts__img-wrap.active {
  display: block;
}
.facts__img-wrap img {
  width: 421px;
  height: 424px;
  object-fit: cover;
}
.facts__svg {
  width: 364px;
  height: 205px;
  margin-top: -120px;
  position: relative;
  z-index: 2;
  margin-left: 29px;
}
.facts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 24px;
}
.facts__title {
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
  color: #2f2f34;
}
.facts__list-title {
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  color: #2f2f34;
}
.facts__list-desc {
  font-size: 16px;
  line-height: 24px;
  color: #48484d;
}
.facts__list-count {
  font-weight: 700;
  font-size: 32px;
  line-height: 42px;
  color: #2f2f34;
  position: relative;
}
.facts__list-count::before {
  content: "";
  position: absolute;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-color: #ebe1ff;
  z-index: -1;
  left: -9px;
}
.facts__list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  margin-bottom: 8px;
}
.facts__list-item {
  padding: 24px;
  margin-bottom: 17px;
  cursor: pointer;
  border: 2px solid transparent;
}
.facts__list-item.active {
  border: 2px solid #cdc3fa;
  border-radius: 16px;
}
.facts__slider {
  display: none;
}

@media screen and (max-width: 1220px) {
  .facts__content {
    display: none;
  }
  .facts__slider {
    display: block;
    padding-bottom: 50px;
  }
  .facts__img-wrap-mob {
    width: 290px;
    height: 286px;
    -webkit-clip-path: url(#myClip2);
    clip-path: url(#myClip2);
  }
  .facts__img-wrap-mob.active {
    display: block;
  }
  .facts__img-wrap-mob img {
    width: 290px;
    height: 286px;
  }
  .facts__svg {
    width: 180px;
    height: 101px;
    margin-left: 64px;
    margin-top: -140px;
  }
  .facts__slide {
    width: 290px !important;
  }
  .facts__list-item-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 420px;
  }
  .facts__list-box-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 4px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
	 padding-left: 10px;
  }
  .facts__container-inner {
    padding-right: 0;
    padding-left: 0px;
  }
  .facts__slide:first-child {
    margin-left: 64px;
  }
  .facts__list-title {
    font-size: 22px;
  }
  .facts__title {
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 1000px) {
  .facts__slide:first-child {
    margin-left: 20px;
  }
  .facts__list-title {
    font-size: 18px;
    line-height: 28px;
  }
  .facts__list-desc {
    font-size: 14px;
    line-height: 22px;
  }
}
.program__title-box {
  margin: 0 auto;
  text-align: center;
}
.program__title {
  max-width: 765px;
  margin: 0 auto;
  margin-bottom: 16px;
  color: #2f2f34;
}
.program__subtitle {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  max-width: 734px;
  margin: 0 auto;
  margin-bottom: 16px;
  color: #2f2f34;
}
.program__img {
  width: 100%;
  height: 380px;
  margin-top: -66px;
  margin-bottom: -60px;
  position: relative;
  z-index: -1;
  border-radius: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.program__img-mob {
  display: none;
}
.program__list {
  margin: 0 auto;
  max-width: 1089px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.program__item {
  width: 347px;
  padding: 17px 24px;
  border-radius: 100px;
  border: 2px solid #ebe1ff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.program__item img {
  width: 72px;
  height: 72px;
}
.program__text {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #2f2f34;
}

@media screen and (max-width: 845px) {
  .program__img-mob {
    display: block;
    width: 100%;
    height: 500px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: -88px;
    margin-bottom: 16px;
    border-radius: 24px;
  }
  .program__img {
    display: none;
  }
  .program__accent {
    position: relative;
    z-index: 1;
    font-size: 66px;
    line-height: 66px;
    margin-top: 40px;
  }
  .program__subtitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    max-width: 836px;
    margin: 0 auto;
    margin-bottom: 24px;
    color: #48484d;
  }
  .program__subtitle strong {
    font-weight: 400;
  }
}
@media screen and (max-width: 480px) {
  .program__img-mob {
    display: block;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    margin-top: -84px;
    margin-bottom: 16px;
    height: auto;
  }
  .program__item {
    width: 100%;
    padding: 12px 24px;
  }
  .program__item img {
    width: 56px;
    height: 56px;
  }
  .program__list {
    gap: 8px;
  }
  .program__text {
    font-size: 14px;
    line-height: 22px;
  }
}
.team--purple {
  padding-bottom: 0;
  background-color: #f5f8fa;
}
.team--purple .team__img1::before, .team--purple .team__img2::before, .team--purple .team__img3::before {
  background-color: #ebe1ff;
}
.team--green {
  padding-bottom: 0;
  background-color: #f5f8fa;
}
.team--green .team__img1::before, .team--green .team__img2::before, .team--green .team__img3::before {
  background-color: #edfff2;
}
.team--orange {
  padding-bottom: 0;
  background-color: #f5f8fa;
}
.team--orange .team__img1::before, .team--orange .team__img2::before, .team--orange .team__img3::before {
  background-color: #fdf3eb;
}
.team--blue {
  padding-bottom: 0;
  background-color: #f5f8fa;
}
.team--blue .team__img1::before, .team--blue .team__img2::before, .team--blue .team__img3::before {
  background-color: #e3f0ff;
}
.team--pink {
  padding-bottom: 0;
  background-color: #f5f8fa;
}
.team--pink .team__img1::before, .team--pink .team__img2::before, .team--pink .team__img3::before {
  background-color: #ffefff;
}
.team--yellow {
  padding-bottom: 0;
  background-color: #f5f8fa;
}
.team--yellow .team__img1::before, .team--yellow .team__img2::before, .team--yellow .team__img3::before {
  background-color: #fffee4;
}
.team--cyan {
  padding-bottom: 0;
  background-color: #f5f8fa;
}
.team--cyan .team__img1::before, .team--cyan .team__img2::before, .team--cyan .team__img3::before {
  background-color: #d8ffff;
}
.team__title {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 16px;
}
.team__subtitle {
  font-size: 16px;
  line-height: 24px;
  color: #2f2f34;
  letter-spacing: -0.36px;
  text-align: center;
  margin-bottom: 40px;
}
.team__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team__title-box {
    font-weight: 700;
    font-size: 24px;
    line-height: 31px;
    letter-spacing: normal;
    margin-bottom: 0.5rem;
}
.team__title-box--sm {
  font-size: 24px;
  line-height: 31px;
  letter-spacing: -0.48px;
  color: #2f2f34;
}
.team__title-box--sm-2 {
  margin-bottom: 8px;
}
.team__desc {
  font-size: 16px;
  line-height: 22px;
  letter-spacing: -0.32px;
  color: #48484d;
  position: relative;
  z-index: 2;
}
.team__box1 {
  background-color: #fdf3eb;
  -ms-flex-preferred-size: calc(50% - 12px);
  flex-basis: calc(50% - 12px);
  padding: 24px;
  border: 1px solid #c4baf1;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  position: relative;
}
.team__box2 {
  background-color: #e3ecff;
  -ms-flex-preferred-size: calc(50% - 12px);
  flex-basis: calc(50% - 12px);
  padding: 24px;
  border: 1px solid #c4baf1;
  border-radius: 16px;
}
.team__box3 {
  background-color: #fefcfe;
  -ms-flex-preferred-size: calc(25% - 12px);
  flex-basis: calc(25% - 12px);
  padding: 24px;
  border: 1px solid #c4baf1;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
}
.team__img2 {
    position: relative;
    z-index: 1;
    width: max-content;
    margin: 0 auto 50px;
}
.team__img2::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #8982bc;
  z-index: -1;
  top: -8px;
  left: 0px;
}
.team__img2 img {
  width: 253px;
  height: 185px;
}


.team__img1 {
       margin-top: 15px;
}

.team__img1 img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
}


.team__btn {
  margin: 0 auto;
  text-align: center;
}
.team__accent {
    font-weight: 400;
    font-size: 75px;
    line-height: 75px;
    margin-top: auto;
    position: absolute;
    z-index: 5;
    bottom: 0;
}
.team__slider {
  display: none;
}

@media screen and (max-width: 1376px) {
  .team__accent {
    font-size: 56px;
  }
}
@media screen and (max-width: 1320px) {
  .team__accent {
    font-size: 56px;
  }


}
@media screen and (max-width: 1186px) {
  .team__accent {
    font-size: 42px;
    line-height: 56px;
    margin-top: 190px;
  }

  .team__img1::before {
    content: none;
    position: absolute;
    width: 221px;
    height: 221px;
    border-radius: 50%;
    background-color: #83d58f;
    z-index: -1;
    top: 38px;
    right: 0;
  }
  .team__img1 img {
           width: 100%;
        height: auto;
  }
}
@media screen and (max-width: 1115px) {
  .team__content {
    display: none;
  }
  .team__container-inner {
    padding-right: 0;
    padding-left: 0;
  }
  .team__box1, .team__box2, .team__box3 {
    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;
    height: 100%;
    gap: 6px;
    overflow: hidden;
  }
  .team__title {
    margin-left: auto;
    margin-right: auto;
  }
  .team__slider {
    display: block;
    padding-bottom: 75px;
    height: 465px;
  }
  .team__slide {
    width: 290px !important;
    height: auto;
  }
  .team__slide:first-child {
    margin-left: 64px;
  }
  .team__slide:last-child {
    margin-right: 20px !important;
  }
  .team__title-box {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 8px;
  }
  .team__subtitle {
    line-height: 21px;
    margin-bottom: 20px;
  }
  .team__desc {
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 0px;
  }

  .team__accent {
    position: absolute;
  }
  .team__img2 {
    margin-bottom: 10px;
  }
  .team__btn {
    margin-top: 24px;
    margin-right: 20px;
  }

  .team__title-box p,
.team__desc p{
    text-align: left!important;
}
}

@media screen and (max-width: 1000px) {
  .team__slide:first-child {
    margin-left: 20px;
  }
}
.dreams {
  padding-bottom: 150px;
}
.dreams__bubble {
  position: absolute;
  width: 151px;
  height: 153px;
  border-radius: 50%;
  background-color: #83d58f;
  z-index: -1;
  bottom: -75px;
  left: 233px;
}
.dreams__title {
  max-width: 758px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 16px;
}
.dreams__subtitle {
  max-width: 877px;
  font-size: 16px;
  line-height: 24px;
  color: #2f2f34;
  font-weight: 500;
  letter-spacing: -0.36px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 32px;
}
.dreams__subtitle strong {
  font-weight: 400;
  text-transform: uppercase;
}
.dreams__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.dreams__tab-content img {
  width: 100%;
  height: 492px;
  -o-object-fit: cover;
  object-fit: cover;
}
.dreams__tab-content2 img {
  width: 100%;
  height: 492px;
  -o-object-fit: cover;
  object-fit: cover;
}
.dreams__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  min-width: 530px;
  gap: 16px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #d2d2d2;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}
.dreams__tab:not(:last-child) {
  margin-bottom: 4px;
}
.dreams__tab.active {
  border: 2px solid #c4baf1;
}
.dreams__tab.active .dreams__img::before {
  background-color: #ebe1ff;
}
.dreams__tab2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  min-width: 530px;
  gap: 16px;
  padding: 22px 32px;
  border-radius: 16px;
  border: 1px solid #d2d2d2;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}
.dreams__tab2:not(:last-child) {
  margin-bottom: 8px;
}
.dreams__tab2.active {
  border: 2px solid #c4baf1;
}
.dreams__tab2.active .dreams__img::before {
  background-color: #ebe1ff;
}
.dreams__ellipse {
  position: absolute;
  width: 160px;
  height: 161px;
  border-radius: 50%;
  background-color: #edfff2;
  z-index: -1;
  top: -24px;
  right: -36px;
}
.dreams__text-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #2f2f34;
}
.dreams__text-desc {
  font-size: 16px;
  line-height: 24px;
  color: #48484d;
}
.dreams__tab-box {
  padding: 22px 22px 32px;
  background-color: #e3ecff;
  text-align: center;
  border-radius: 0px 0px 16px 16px;
}
.dreams__tab-box2 {
  padding: 40px 32px;
  background-color: #e3ecff;
  text-align: center;
  border-radius: 0px 0px 24px 24px;
}
.dreams__tab-text {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #2f2f34;
  text-align: center;
}
.dreams__tab-content {
  display: none;
  border: 1px solid #d2d2d2;
  border-radius: 16px;
}
.dreams__tab-content img {
  border-radius: 16px 16px 0 0;
}
.dreams__tab-content.active {
  display: block;
}
.dreams__tab-content2 {
  display: none;
  border: 1px solid #d2d2d2;
  border-radius: 24px;
}
.dreams__tab-content2 img {
  border-radius: 24px 24px 0 0;
  width: 756px;
  height: 453px;
}
.dreams__tab-content2.active {
  display: block;
}
.dreams__tab-content2 .dreams__tab-box {
  padding: 40px 32px;
}
.dreams__img {
  position: relative;
  z-index: 1;
}
.dreams__img::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f0f0f0;
  z-index: -1;
}
.dreams__accent {
  font-weight: 400;
  font-size: 92px;
  line-height: 116px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -40px;
  color: #e4f650;
}
.dreams__right {
  position: relative;
  max-width: 756px;
}
.dreams__accordion {
  display: none;
}

@media screen and (max-width: 1270px) {
  .dreams__accordion {
    display: block;
  }
  .dreams__content {
    display: none;
  }
  .dreams__content2 {
    display: none;
  }
  .ac .ac-trigger {
    font: normal 16px "Inter", sans-serif !important;
    font-size: 16px !important;
    line-height: 24px !important;
    color: #48484d !important;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 18px 16px;
    border-radius: 8px;
    background-color: #fff;
    border-color: transparent;
    -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  }
  .ac .ac-trigger strong {
    font: bold 18px "Inter", sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 27px !important;
    color: #2f2f34 !important;
  }
  .ac .ac-trigger p {
    margin-right: 72px;
  }
  .ac .ac-trigger::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-image: url("../img/dreamsarrow.svg");
    right: 16px;
    top: 50%;
  }
  .ac.is-active > .ac-header .ac-trigger::after {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    background-image: url("../img/dreamsarrow.svg");
    right: 16px;
    top: 32%;
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1);
  }
  .dreams__img {
    position: relative;
    z-index: 1;
  }
  .dreams__img img {
    width: 32px;
    height: 32px;
  }
  .dreams__img::before {
    content: "";
    position: absolute;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background-color: #f0f0f0;
    z-index: -1;
  }
  .ac.is-active .dreams__img::before {
    background-color: #ebe1ff;
  }
  .ac.is-active {
    border: 1px solid rgb(205, 195, 250);
    -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
  }
  .ac.is-active .ac-trigger {
    border-radius: 16px;
  }
  .ac.is-active .ac-panel {
    padding: 16px;
    padding-top: 0px;
  }
  .ac.is-active .ac-panel img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .ac .ac-panel {
    padding: 0 16px;
  }
  .ac .ac-panel img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .ac-panel .dreams__tab-box {
    background-color: #fff;
    text-align: left;
    padding: 0;
    margin-top: 8px;
  }
  .ac-panel .dreams__tab-text {
    text-align: left;
  }
  .ac {
    border: none;
  }
}
@media screen and (max-width: 1000px) {
  .dreams {
    padding-bottom: 30px;
  }
  .dreams__tab-text {
    font-size: 14px;
    line-height: 21px;
    font-weight: 400;
  }
  .dreams__ellipse {
    display: none;
  }
  .dreams__subtitle {
    max-width: 877px;
    font-size: 14px;
    line-height: 21px;
    margin-bottom: 16px;
  }
  .ac .ac-trigger {
    font: normal 14px "Inter", sans-serif !important;
    font-size: 14px !important;
    line-height: 21px !important;
  }
  .ac .ac-trigger strong {
    font: bold 14px "Inter", sans-serif !important;
    font-size: 14px !important;
    line-height: 22px !important;
  }
}
.food__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.food__img {
  border-radius: 16px;
}
.food__img img {
  width: 621px;
  height: 515px;
  border-radius: 16px;
}
.food__title {
  margin-bottom: 16px;
  color: #2f2f34;
}
.food__subtitle {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.32px;
  color: #2f2f34;
  margin-bottom: 24px;
}
.food__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
}
.food__link {
  padding: 21px 40px;
}
.food__item {
  min-width: 307px;
}
.food__item img {
  margin-bottom: 16px;
}
.food__list-title {
  font-size: 24px;
  line-height: 31px;
  font-weight: 700;
  color: #2f2f34;
  margin-bottom: 16px;
  max-width: 196px;
}
.food__list-desc {
  font-size: 14px;
  line-height: 21px;
  color: #48484d;
}
.food__btn {
  margin-top: 33px;
}
.food__content-mob {
  display: none;
}

@media screen and (max-width: 1439px) {
  .food__item {
    max-width: 307px;
    min-width: 100px;
  }
}

@media screen and (max-width: 1220px) {
  .food__content {
    display: none;
  }
  .food__content-mob {
    display: block;
  }
  .food__title {
    text-align: center;
    margin: 0 auto 24px;
  }
  .food__subtitle {
    margin: 0 auto;
    margin-bottom: 67px;
    max-width: 600px;
    text-align: center;
  }
  .food__img-mob {
    width: 100%;
    margin-bottom: 16px;
    height: 300px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .food__btn {
    margin: 0 auto;
    text-align: center;
    margin-top: 24px;
  }
  .food__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .food__item {
    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;
  }
  .food__item img {
    width: 48px;
    height: 48px;
  }
}
@media screen and (max-width: 1000px) {
  .food__title {
    margin-bottom: 16px;
  }
  .food__subtitle {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 21px;
  }
  .food__list-title {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 8px;
    max-width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .food__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .food__item {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }
  .food__btn {
    margin-top: 24px;
  }
}
@media screen and (max-width: 480px) {
  .food__link {
    width: 100%;
  }
  .food__img-mob {
    width: 100%;
    margin-bottom: 16px;
    height: auto;
  }
}
.health__title-box {
  margin: 0 auto;
  text-align: center;
}
.health__title {
  max-width: 765px;
  margin: 0 auto;
  margin-bottom: 16px;
  color: #2f2f34;
}
.health__subtitle {
  font-weight: 500;
  font-size: 20px;
  line-height: 26px;
  max-width: 836px;
  margin: 0 auto;
  margin-bottom: 16px;
  color: #2f2f34;
}
.health__img {
  width: 100%;
  height: 380px;
  margin-top: -58px;
  margin-bottom: -53px;
  position: relative;
  z-index: -1;
  border-radius: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.health__img-mob {
  display: none;
}
.health__list {
  margin: 0 auto;
  max-width: 1215px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.health__item {
  width: 389px;
  padding: 24px 40px;
  border-radius: 100px;
  border: 2px solid #ebe1ff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}
.health__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #2f2f34;
  letter-spacing: -0.32px;
}

@media screen and (max-width: 1000px) {
  .health__title {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 845px) {
  .health__img-mob {
    display: block;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 16px;
    margin-top: -75px;
    border-radius: 24px;
  }
  .health__img {
    display: none;
  }
  .health__accent {
    position: relative;
    margin-top: 44px;
    font-size: 57px;
    line-height: 57px;
  }
  .health__subtitle {
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    max-width: 836px;
    margin: 0 auto;
    margin-bottom: 44px;
    color: #2f2f34;
    display: none;
  }
  .health__item img {
    width: 37px;
    height: 37px;
  }
  .health__text {
    font-size: 14px;
    line-height: 24px;
  }
}
@media screen and (max-width: 480px) {
  .health__img-mob {
    display: block;
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    height: auto;
  }
  .health__item {
    width: 100%;
    padding: 12px 24px;
    height: 95px;
  }
  .health__list {
    gap: 8px;
  }
}
.comfort-item {
  position: relative;
  display: block;
}

.comfort-item:before {
  position: absolute;
  content: "";
  border-radius: 16px;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5) url(../../../../assets/img/search.svg) no-repeat center center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.comfort-item:hover:before {
  opacity: 1;
  visibility: visible;
}

.rooms__title {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 16px;
  color: #2f2f34;
}
.rooms__subtitle {
  line-height: 20px;
  color: #2f2f34;
  font-weight: 500;
  text-align: center;
  margin-bottom: -10px;
}
.rooms__slide {
  height: 282px;
  width: 421px;
  border-radius: 16px;
}
.rooms__img {
  height: 282px;
  width: 421px;
  border-radius: 16px;
}
.rooms__slider {
  padding-bottom: 50px;
  padding-top: 64px;
}
.rooms__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 40px;
  margin-top: 48px;
  margin-left: 28px;
}
.rooms__item {
  width: 220px;
  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;
}
.rooms__item img {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}
.rooms__item p {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.32px;
  color: #2f2f34;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: 1px solid transparent;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #8982bc;
  border: 1px solid black;
  opacity: 1;
}

.swiper-button-prev:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: url("../img/arrow-slide.svg");
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  top: -170px;
}

.swiper-button-next:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: url("../img/arrow-slide.svg");
  top: -170px;
}

.swiper-button-prev {
  left: 93%;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
}

@media screen and (max-width: 1240px) {
  .swiper-button-prev {
    left: 90%;
  }
}
@media screen and (max-width: 1000px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
  .rooms__subtitle {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 24px;
  }
  .rooms__slider {
    padding-top: 0px;
  }
  .rooms__container-inner {
    padding-right: 0;
    padding-left: 0;
  }
  .rooms__slide:first-child {
    margin-left: 20px;
  }
  .rooms__slide:last-child {
    margin-right: 20px !important;
  }
}
@media screen and (max-width: 480px) {
  .rooms__item {
    width: 320px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 16px;
  }
  .rooms__item p {
    font-size: 14px;
    line-height: 22px;
    max-width: 233px;
    text-align: left;
  }
  .rooms__list {
    margin-left: 20px;
    margin-top: 26px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    gap: 24px;
  }
  .rooms__img {
    height: auto;
    width: 290px;
  }
  .rooms__slide {
    width: 290px;
    height: auto;
  }
}
.price {
  position: relative;
  padding-bottom: 0;
}
.price--purple .price__accent {
  display: none;
}
.price--green .price__accent {
  display: none;
}
.price--orange .price__accent {
  display: none;
}
.price--blue .price__accent {
  display: none;
}
.price--pink .price__accent {
  display: none;
}
.price--yellow .price__accent {
  display: none;
}
.price--cyan .price__accent {
  display: none;
}
.price__bg {
  width: 100%;
  height: 612px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.price__bg-mob {
  display: none;
}
.price__content {
  padding-top: 52px;
  padding-bottom: 43px;
  margin-left: 41px;
  position: relative;
}
.price__title {
  font-size: 48px;
  line-height: 63px;
  font-weight: 700;
  color: #fff;
  max-width: 576px;
  margin-bottom: 50px;
}
.price__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}
.price__date-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #fff;
}
.price__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 51px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.price__btn {
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #d9ea58;
  padding: 21px 53px;
  color: #2f2f34;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.price__btn:hover {
  background-color: #f3ff88;
}
.price__btn:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}
.price__btn2 {
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #fff;
  padding: 21px 65px;
  color: #2f2f34;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.price__btn2:hover {
  background-color: #f5f5f5;
}
.price__btn2:focus {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
  box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
}
.price__card {
  border-radius: 24px;
  border: 2.003px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 64px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 17px 54px 17px 29px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.price__card-title {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}
.price__card-box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.price__card-box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.price__accent {
  font-size: 137px;
  line-height: 137px;
  font-weight: 400;
  position: absolute;
  right: 37px;
  bottom: -56px;
}
.price__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.price__item {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 4px;
  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;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: #2f2f34;
  display: flex;
  align-items: center;
}
.price__dt {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  height: 28px;
  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;
}
.price__items-text {
  font-size: 9px;
  line-height: 12px;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-top: 4px;
}
.price__bg-mob-svg {
  display: none;
}
.price__card-title-actual {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}
.price__card-desc-actual {
  text-align: left;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.price__card-desc-actual--throw {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-decoration: line-through;
  margin-bottom: 0;
}
.price__bg-large, .price__bg-large-boy {
  display: none;
}

@media screen and (min-width: 1000px) {
  .price__bg-large {
    display: block;
  }
  .price__bg-large {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
	 object-fit: cover;
  }
  .price__bg-large-boy {
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 0;
        height: 50%;
  }
  .price__bg {
    display: none;
  }
  .price__container-inner {
    position: relative;
  }
}
@media screen and (max-width: 1300px) {
  .price__bg {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media screen and (max-width: 1255px) {
  .price .price__bg-large-boy {
    right: 3px;
  }
}
@media screen and (max-width: 1000px) {
  .price {
    position: relative;
    height: auto;
    overflow: hidden;
  }
  .price--purple {
    padding-bottom: 0px;
  }
  .price--green {
    padding-bottom: 0px;
  }
  .price--orange {
    padding-bottom: 0px;
  }
  .price--blue {
    padding-bottom: 0px;
  }
  .price--pink {
    padding-bottom: 0px;
  }
  .price--yellow {
    padding-bottom: 0px;
  }
  .price--cyan {
    padding-bottom: 0px;
  }
  .price__bg-large {
    display: none;
  }
  .price__bg-mob {
    display: block;
    position: absolute;
    width: 100%;
    height: 824px;
    -o-object-fit: cover;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
  }

  .price__content {
    padding-top: 32px;
    padding-bottom: 36px;
    margin: 0 auto;
    margin-left: 0;
    text-align: center;
    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 {
    margin: 0 auto;
    font-size: 32px;
    line-height: 40px;
  }
  .price__btns {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .price__card {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 19px 26px 19px 27px;
    max-width: 320px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    margin: 0 auto;
    margin-bottom: 24px;
    gap: 8px;
  }
  .price__items {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .price__item {
    font-size: 18px;
    line-height: 22px;
  }
  .price__desc {
    margin-bottom: 0px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .price__desc {
    margin-bottom: 12px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .price__card-title {
    max-width: 100%;
    font-size: 13px;
    line-height: 20px;
    font-weight: 500;
  }
  .price__btns {
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
  .price__accent {
    font-size: 57px;
    line-height: 57px;
    top: 398px;
    position: static;
    margin-top: -32px;
    padding-bottom: 4px;
  }
  .price__card-desc-actual--throw {
    text-align: left;
  }
  .price__card-title-actual {
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .price__btns {
    width: 100%;
  }
  .price__btn, .price__btn2 {
    width: 100%;
    min-width: 100%;
    font-size: 16px;
    line-height: 20px;
  }
  .price__btn {
    background-color: #e4f650;
  }
}
.change-reviews {
  background-color: #f5f8fa;
}

.reviews {
    padding-top: 5rem;
    padding-bottom: 0;
}


.ti-widget.ti-goog .ti-review-content {
    font-family: "Inter", sans-serif!important;
}

.reviews__title {
  max-width: 862px;
  margin: 0 auto;
  margin-bottom: 16px;
  text-align: center;
}
.reviews__subtitle {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #2f2f34;
  text-align: center;
}
.reviews__slider {
  padding-bottom: 50px;
  padding-top: 64px;
}
.reviews__slide {
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  padding: 16px;
  width: 421px;
}
.reviews__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}
.reviews__img {
  margin-right: 8px;
  width: 38px;
  height: 37px;
}
.reviews__name {
  color: #2f2f34;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 18.2px */
}
.reviews__date {
  color: #9a9a9a;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%; /* 15.6px */
}
.reviews__card-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.reviews__desc {
  color: #2f2f34;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; /* 18.2px */
}
.reviews__desc a {
  color: #8982bc;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}

.reviews-button-prev:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: url("../img/arrow-slide.svg");
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  top: -100px !important;
}

.reviews-button-next:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: url("../img/arrow-slide.svg");
  top: -100px !important;
}

@media screen and (max-width: 1000px) {
  .reviews {
    padding-top: 36px;
  }
  .reviews__title {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 480px) {
  .reviews__container-inner {
    padding-right: 0;
    padding-left: 0;
  }
  .reviews__slide:first-child {
    margin-left: 20px;
  }
  .reviews__slide:last-child {
    margin-right: 20px !important;
  }
  .reviews__slide {
    width: 290px;
  }
  .reviews__subtitle {
    font-size: 16px;
    line-height: 21px;
  }
  .reviews__slider {
    padding-top: 0;
  }
  .reviews__name {
    font-size: 12px;
    line-height: 15px;
  }
}
.sbi_item {
  width: 310px;
  height: 310px;
}

.sbi_photo, .sbi_photo_wrap {
  width: 100% !important;
  height: 100% !important;
  border-radius: 16px;
  overflow: hidden;
}

.instagram {
  position: relative;
  padding-bottom: 15px;
}
.instagram__slide {
  width: 310px;
  border-radius: 16px;
}
.instagram__slide img {
  border-radius: 16px;
  width: 310px;
  height: 310px;
}
.instagram__wrapper .instagram__slider {
  padding: 50px 0 100px 0 !important;
}
.instagram__slider {
  padding-bottom: 92px;
  padding-top: 138px;
}
.instagram__title {
  margin: 0 auto;
  margin-bottom: 16px;
  text-align: center;
}
.instagram__subtitle {
  font-size: 18px;
  line-height: 23px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #2f2f34;
  text-align: center;
}
.instagram__accent {
  text-align: center;
  position: absolute;
  bottom: 90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
  white-space: nowrap;
}
.instagram__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 44px;
}
.instagram__link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 8px;
  padding: 20px 48px;
  max-width: 239px;
}
.instagram__slider-mob {
  display: none;
}

.swiper-button-prev.instagram-button-prev:after {
  background-image: url("../img/arrow-slide.svg");
  top: -210px;
}

.swiper-button-next.instagram-button-next:after {
  background-image: url("../img/arrow-slide.svg");
  top: -210px;
}

@media screen and (max-width: 1000px) {
  .instagram__wrapper .sbi_item {
    max-height: 240px;
  }
  .instagram__wrapper .instagram__slider {
    padding: 50px 0 50px 0 !important;
  }
  .instagram__accent {
    font-size: 56px;
    line-height: 56px;
    bottom: 110px;
  }
}
@media screen and (max-width: 725px) {
  .instagram__wrapper {
    margin-left: -20px;
    margin-right: -20px;
  }
  .instagram__wrapper .swiper-slide-active {
    padding-left: 0 !important;
  }
  .instagram__wrapper #sb_instagram #sbi_images .sbi_item.swiper-slide-next {
    padding-right: 15px !important;
  }
  .instagram__wrapper .sbi_item {
    max-height: 200px;
  }
  .instagram__wrapper .instagram__slider {
    padding: 0 0 50px 0 !important;
  }
  .instagram__slide {
    width: 100%;
  }
  .instagram__slide img {
    width: 100%;
    height: auto;
  }
  .instagram__link {
    font-size: 18px;
    line-height: 18px;
  }
  .instagram__accent {
    font-size: 40px;
    bottom: 87px;
    left: 50%;
    position: relative;
  }
  .instagram__subtitle {
    margin-bottom: 24px;
  }
  .instagram__btn {
    margin-top: -34px;
  }
  .swiper-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .swiper-row:not(:last-child) {
    margin-bottom: 8px;
  }
  .swiper-col {
    -ms-flex-preferred-size: calc(50% - 5px);
    flex-basis: calc(50% - 5px);
  }
  .swiper-col img {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .instagram__wrapper .sbi_item {
    max-height: 180px;
  }
}
.info-change {
  padding-top: 56px;
  background-color: #f5f8fa;
}

.info {
  padding-bottom: 0;
}
.info__title {
  max-width: 695px;
  margin: 0 auto 16px;
  text-align: center;
}
.info__desc {
  text-align: center;
  color: #2f2f34;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
}
.info__content {
  width: 100%;
  background-color: #e3ecff;
  border-radius: 24px;
  padding: 56px 22px;
}

.info__list-box {
  margin: 0 auto 36px;
}
.info__list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
  justify-content: center;
}
.info__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 8px;
  background-color: #fff;
  width: 430px;
}
.info__item::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #e4f650;
  border-radius: 2px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  left: 16px;
}
.info__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  color: #2f2f34;
  padding: 18px 16px;
  gap: 14px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-left: 33px;
}
.info__btn-box {
  text-align: center;
}
.info__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #fff;
  padding: 17px 38px;
  color: #2f2f34;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.info__btn:hover {
  background-color: #f5f5f5;
}
.info__btn:focus {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
  box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
}

@media screen and (max-width: 1000px) {
  .info__title {
    margin: 0 auto 16px;
    text-align: center;
  }
  .info__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    font-size: 14px;
    line-height: 22px;
    color: #2f2f34;
    gap: 14px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (max-width: 760px) {
  .info__list {
    max-height: none;
  }
}
@media screen and (max-width: 760px) {
  .info__item {
    width: 276px;
  }
  .info__link {
    padding: 12px 16px;
    gap: 8px;
    padding-left: 33px;
  }
  .info__list-box {
    margin: 0 auto 24px;
  }
  .info__content {
    padding: 16px;
  }
}
@media screen and (max-width: 359px) {
  .info__item {
    padding: 12px;
    width: 100%;
  }
}
.footer {
  position: relative;
}
.footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #cbcbcb;
  bottom: 52px;
  left: 0;
}
.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 64px;
  padding-bottom: 58px;
}
.footer__desc {
  max-width: 281px;
  font-size: 13px;
  line-height: 18px;
  color: #52525b;
  margin-top: 16px;
  margin-bottom: 24px;
}
.footer__list-title {
  color: #2f2f34;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.footer__list-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 18px;
}
.footer__link {
  color: #48484d;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
.footer__link:hover {
  color: #8982bc;
}
.footer__item-work {
  color: #48484d;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  max-width: 151px;
}
.footer__item-work strong {
  font-weight: 600;
}
.footer__contacts-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}
.footer__contacts-text {
  font-size: 14px;
  color: #48484d;
  font-weight: 500;
  line-height: 22px;
}
.footer__link-phone {
  color: #8982bc;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}

.footer__link-phone:hover {
    text-decoration: underline;
    color: #2f2f34;
}

.footer__container-down {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer__privacy-link {
  display: inline-block;
  padding-top: 14px;
  padding-bottom: 16px;
  font-size: 14px;
  color: #52525b;
  line-height: 22px;
}
.footer__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.footer__rights {
  font-size: 15px;
  color: #52525b;
  line-height: 22px;
}
.footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.footer__social-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #2f2f34;
  border-radius: 50%;
  background-color: #e4f650;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.footer__social-link--telega {
  padding-top: 3px;
}
.footer__social-link img {
  width: 20px;
  height: 20px;
}
.footer__social-link:hover {
  background-color: #f3ff88;
}
.footer__social-link:focus {
  background-color: #daec46;
}
.footer__container-mobile {
  display: none;
}

@media screen and (max-width: 820px) {
  .footer::after {
    display: none;
  }
  .footer__container {
    display: none;
  }
  .footer__container-mobile {
    display: block;
  }
  .footer__logo {
    text-align: center;
    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;
    margin-top: 24px;
  }
  .footer__desc {
    margin-top: 14px;
    margin-bottom: 32px;
    max-width: 320px;
  }
  .footer__list-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 214px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px 29px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin: 0 auto 32px;
  }
  .footer__list-info--work {
    margin-bottom: 0;
  }
  .footer__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 16px;
    line-height: 24px;
  }
  .footer__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 16px;
  }
  .footer__item:nth-child(1) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 96px;
  }
  .footer__item:nth-child(2) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 96px;
  }
  .footer__item:nth-child(3) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 89px;
  }
  .footer__item:nth-child(4) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .footer__item::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 9px;
    background-color: #e4f650;
    border-radius: 2px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    left: 0;
  }
  .footer__work {
    text-align: center;
  }
  .footer__contacts {
    text-align: center;
  }
  .footer__list-title {
    color: #2f2f34;
    font-size: 14px;
    margin-bottom: 16px;
  }
  .footer__item-work {
    color: #48484d;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    max-width: 200px;
  }
  .footer__item-work strong {
    color: #48484d;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
  }
  .footer__mob-blue {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    padding: 40px 0px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 47px;
    border-radius: 16px;
    background-color: #f5f4fe;
    margin-bottom: 29px;
  }
  .footer__contacts-text {
    font-size: 16px;
    color: #48484d;
    font-weight: 400;
    line-height: 24px;
  }
  .footer__link-phone {
    color: #48484d;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
  }
  .footer__social-mob {
    text-align: center;
    margin-bottom: 34px;
    margin-top: 0px;
  }
  .footer__social {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 22px;
  }
  .footer__privacy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .footer__container-down {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 34px;
    margin-bottom: 31px;
  }
  .footer__privacy-link {
    padding: 0;
    font-size: 13px;
    line-height: 22px;
  }
  .footer__rights {
    font-size: 13px;
    line-height: 22px;
    padding: 0px;
  }
  .footer__logo-link img {
    width: 154px;
    height: 56px;
  }
  .footer__social-link {
    width: 44px;
    height: 44px;
  }
  .footer__social-link--telega {
    padding-top: 0px;
  }
  .footer__social-link img {
    width: 22px;
    height: 22px;
  }
}
.error404-block h2 {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 128px;
  font-style: normal;
  font-weight: 700;
  line-height: 128px; /* 100% */
  margin-bottom: 16px;
}

.error404-block .pagedescription {
  color: #000;
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 122%; /* 29.28px */
  margin-bottom: 32px;
}

.error404-block {
  padding: 160px 0 212px;
  text-align: center;
}

.tl-center {
  text-align: center;
}

.error404-btn {
  display: inline-block;
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #d9ea58;
  padding: 20px 40px;
  color: #2f2f34;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.error404-btn:hover {
  background-color: #f3ff88;
}
.error404-btn:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}

.total_block {
  text-align: center;
}

.total_item p {
  max-width: 396px;
  margin: 0px auto 24px;
  color: #2f2f34;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 149%; /* 23.84px */
  letter-spacing: -0.304px;
  opacity: 0.8;
}

.total_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.total_block img {
  width: 160px;
  height: 160px;
  margin-bottom: 16px;
}

.page_total_buy h2 {
  font-size: 32px;
  line-height: 45px;
  font-weight: 700;
  color: #2f2f34;
  margin-bottom: 8px;
}

.page_total_buy {
  padding-top: 55px;
  padding-bottom: 140px;
}

.number_request {
  color: #8982bc;
  font-weight: 600;
}

.date_request {
  color: #2f2f34;
  opacity: 1;
  font-weight: 600;
}

.total_item-btn {
  display: inline-block;
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #d9ea58;
  padding: 20px 40px;
  color: #2f2f34;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.total_item-btn:hover {
  background-color: #f3ff88;
}
.total_item-btn:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}

@media screen and (max-width: 480px) {
  .total_item p {
    font-size: 14px;
    line-height: 21px;
  }
}
/***************************
 * Post archive
**************************/
.fz18 {
  font-size: 18px;
  line-height: 160%;
}

.posts__notfound {
  text-align: center;
  margin-top: 120px;
  font-size: 26px;
  width: 100%;
}

.posts-template__heading {
  text-align: center;
}

.posta-template {
  background: #f5f8fa;
  padding-top: 40px;
  padding-bottom: 80px;
}

.posts-template__title {
  color: #2f2f34;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px; /* 116.667% */
  margin: 0 auto 16px;
  max-width: 809px;
}

.posts-template__subtitle {
  color: #48484d;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  margin: 0 auto 40px;
  max-width: 459px;
}

.posts-template-btn {
  text-align: center;
  margin-top: 32px;
}

.posts-template-grid {
  margin-top: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px 24px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}

.posts-template-wrapper {
  position: relative;
}

.secondary-template-wrapper {
  position: relative;
}

.secondary-template__decor {
  position: absolute;
  z-index: -1;
}

.secondary-template__decor--left {
  top: 50px;
  left: 65px;
}

.secondary-template__decor--right {
  top: 25px;
  right: -5px;
}

.post-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  min-height: 377px;
  padding: 24px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 16px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  width: 421px;
  margin-bottom: 0;
}

.post-item--size-sm {
  margin-bottom: 16px;
  height: calc(100% - 16px);
  padding: 15px 27px;
}

.post-template-related-grid .row > div:nth-last-child(-n+2) .post-item--size-sm {
  margin-bottom: 0;
  height: 100%;
}

.post-item__img {
  position: relative;
  margin-bottom: 16px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.post-item__img:hover {
  opacity: 0.7;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.post-item__img img {
  display: block;
  width: 373px;
  height: 190px;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-item__date {
  color: #666;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 15.4px */
  margin-bottom: 8px;
}

.post-item__title {
  font-family: "Inter", sans-serif;
  color: #2f2f34;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  margin-bottom: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.post-item__title:hover {
  color: rgba(47, 47, 52, 0.7);
}

.post-item__desc {
  font-family: "Inter", sans-serif;
  margin-bottom: 0;
  overflow: hidden;
  color: #48484d;
  text-overflow: ellipsis;
  whitespace: nowrap;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.posts_loadmore {
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}

.secondary-page-template {
  margin-bottom: 120px;
}

/* post single */
.post-template {
  background-image: url(../img/blog//post-single-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 100px;
  margin-bottom: 0;
  padding-bottom: 120px;
}

.container--xs {
  max-width: 866px;
}

.post-template__heading {
  text-align: center;
  padding-top: 1rem;
}

.post-template__title {
  color: #2f2f34;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 56px; /* 116.667% */
  max-width: 809px;
  margin: 0 auto 16px;
}

.post-template__subtitle {
  color: #48484d;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
  max-width: 459px;
  margin: 0 auto 40px;
}

.post-template__thumbnail {
  margin-bottom: 32px;
}

.post-template__thumbnail img {
  width: 100%;
  height: auto;
  max-height: 475px;
  -o-object-fit: cover;
  object-fit: cover;
}

.post-template__date {
  color: #666;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 15.4px */
  margin-bottom: 16px;
}

.content-editor {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
}

.content-editor h1 {
  font-size: 48px;
}

.content-editor h2 {
  font-size: 45px;
}

.content-editor h3 {
  font-size: 32px;
}

.content-editor h4 {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 125% */
  margin-bottom: 8px;
  margin-top: 32px;
}

.content-editor h5 {
  color: #2f2f34;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 133.333% */
  font-family: "Inter", sans-serif;
  margin-bottom: 16px;
}

.content-editor h6 {
  font-size: 18px;
  font-family: "Inter", sans-serif;
}

.content-editor p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 16px;
}

.content-editor p strong {
  font-family: "Inter", sans-serif;
}

.content-editor ul {
  margin-top: 16px;
  margin-bottom: 16px;
  list-style: disc;
  margin-left: 22px;
}

.content-editor ol {
  margin-top: 16px;
  margin-bottom: 16px;
  margin-left: 22px;
}

.content-editor li {
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: #2f2f34;
}

.content-editor li:not(:last-child) {
  margin-bottom: 8px;
}

.content-editor blockquote {
  background: #e3ecff;
  border-radius: 24px;
  padding: 40px;
  margin: 0;
  margin-top: 40px;
  margin-bottom: 32px;
  position: relative;
}

.content-editor blockquote:before {
  content: "";
  display: block;
  position: absolute;
  top: -24px;
  left: 16px;
  width: 48px;
  height: 48px;
  background: url(../img/quotes.svg) no-repeat;
}

.content-editor blockquote p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  margin-bottom: 0;
}

.size-medium {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: 40px;
  margin-bottom: 32px;
}

.youtube-responsive-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 24px;
  margin-top: 32px;
}

.youtube-responsive-container iframe,
.youtube-responsive-container object,
.youtube-responsive-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.post-template-related-section {
  margin-top: 32px;
}

.post-template-related__title {
  color: #2f2f34;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.post-template-related-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.post-template-related-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 16px 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 8px;
  border-radius: 16px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  width: 421px;
}

.post-item-related__title {
  color: #2f2f34;
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px; /* 144.444% */
  margin-bottom: 8px;
}

.post-item-related__date {
  color: #666;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 166.667% */
  margin-bottom: 4px;
}

.post-item-related__desc {
  color: #48484d;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

@media (max-width: 1000px) {
  .posts__notfound {
    margin-top: 64px;
    font-size: 18px;
  }
  .post-template-related__title {
    margin-bottom: 32px;
  }
  .post-item__title {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 16px;
  }
  .container--xs {
    padding: 0 20px;
  }
  .post-template__title {
    font-size: 25px;
    line-height: 32px; /* 128% */
    letter-spacing: -0.5px;
    margin-bottom: 8px;
  }
  .post-template__subtitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px; /* 150% */
    margin-bottom: 24px;
  }
  .post-template__thumbnail {
    margin-bottom: 8px;
  }
  .post-template__date {
    margin-bottom: 16px;
  }
  .size-medium {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-top: 24px;
    margin-bottom: 16px;
  }
  .content-editor h4 {
    font-size: 25px;
    line-height: 32px; /* 125% */
    margin-bottom: 8px;
    margin-top: 32px;
  }
  .content-editor h5 {
    font-size: 18px;
    line-height: 26px; /* 133.333% */
    margin-bottom: 16px;
  }
  .content-editor blockquote {
    margin-top: 56px;
    margin-bottom: 32px;
  }
}
@media (max-width: 480px) {
  .post-item {
    width: 100%;
  }
  .post-item__img {
    width: 100%;
  }
  .post-item__img img {
    width: 100%;
    height: auto;
    max-height: 190px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .posts-template-grid {
    gap: 10px;
  }
  .posts_loadmore {
    max-width: 236px;
  }
}
/* breadcrumb */
.breadcrumb {
  padding-left: 0;
  margin-top: 16px;
  margin-bottom: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb svg {
  margin-left: 9px;
  margin-right: 9px;
}

.breadcrumb li {
  display: inline-block;
  position: relative;
  color: #646464;
  text-decoration: underline;
  font-weight: 400;
  font-size: 12px;
  line-height: 122%;
}

.breadcrumb li:last-child {
  pointer-events: none;
  color: #F86D2E;
}

.breadcrumb li:hover {
  text-decoration: none;
}

/* breadcrumb end */
.contact {
  padding-top: 55px;
  padding-bottom: 110px;
}

.container-contacts {
  padding: 0 20px;
}

.h2 {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 122%; /* 58.56px */
  margin-bottom: 9px;
}

.fs18 {
  color: #48484d;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%; /* 28.8px */
  margin-bottom: 134px;
}

.flex_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1028px;
  margin: 0 auto;
}

.content_social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 48px;
}

.fs14 {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 140%; /* 19.6px */
  margin-bottom: 4px;
}

.fs12 {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 149%; /* 17.88px */
  opacity: 0.6;
  margin-bottom: 8px;
}

.mailto {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 149%; /* 20.86px */
}

.content_social_mob {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 160% */
}

.item_social {
  margin-bottom: 48px;
}

.fs12-1 {
  margin-bottom: 2px;
}

.fs15 {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  margin-bottom: 8px;
}

.fs16 {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
}

.socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
}

.socials-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #2f2f34;
  border-radius: 50%;
  background-color: #e4f650;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.socials-link--telega {
  padding-top: 3px;
}
.socials-link img {
  width: 20px;
  height: 20px;
}
.socials-link:hover {
  background-color: #f3ff88;
}
.socials-link:focus {
  background-color: #daec46;
}

.content_social-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 17px;
}

.item_social-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 19px;
}

.messanger-link {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.messanger-link img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.messanger-link:hover img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.contact_flex_form {
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 68px;
  max-width: 529px;
  width: 529px;
}

.contact .container {
  max-width: 1028px;
}

.form_block form input {
  border: 1px solid #d9d9d9;
  line-height: 48px !important;
  padding: 0 16px !important;
  border-radius: 8px;
  display: block;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 24px;
  font-family: "Inter", sans-serif;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-appearance: none;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #2f2f34;
  line-height: 24px;
}

.form_block form textarea {
  border: 1px solid #d9d9d9;
  padding: 12px 16px;
  line-height: 150%;
  display: block;
  width: 100%;
  border-radius: 8px;
  margin-top: 8px;
  font-family: "Inter", sans-serif;
  resize: none;
}

.form_block h3 {
  text-align: center;
  font-size: 36px;
  font-family: "Inter", sans-serif;
  color: #2f2f34;
  line-height: 44px;
  margin-bottom: 12px;
}

.form_block h3 + p {
  font-size: 16px;
  line-height: 10px;
  margin-bottom: 32px;
  color: #2f2f34;
  font-family: "Inter", sans-serif;
}

.form_block form #check {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  margin: 0 5px 0 0;
  position: relative;
  top: 3px;
  padding: 0 !important;
}

.form_block form #check:checked {
  background: #dbed50;
  border-color: #2f2f34;
}

.form_block form #check:checked:before {
  width: 6px;
  height: 8px;
  border-right: 2px solid #2f2f34;
  border-bottom: 2px solid #2f2f34;
  -webkit-transform: rotate(35deg);
  -ms-transform: rotate(35deg);
  transform: rotate(35deg);
  content: "";
  position: absolute;
  z-index: 1;
  left: 4px;
  top: 2px;
}

.form_block label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 21px;
  font-weight: 700;
  color: #2f2f34;
}

.form_block .flex_chek label {
  font-size: 12px;
  color: rgba(47, 47, 52, 0.8);
  font-family: "Inter", sans-serif;
}

.contact p.flex_chek {
  max-width: 340px;
  margin: auto;
}

.form_block form input.btn-form {
  cursor: pointer;
  display: inline-block;
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #d9ea58;
  padding: 20px 40px;
  color: #2f2f34;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 36px;
  margin-top: 20px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.form_block form input.btn-form:hover {
  background-color: #f3ff88;
}
.form_block form input.btn-form:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}

.btn_adres p {
  font-size: 14px;
}

.btn_adres p {
  color: #828285;
}

.btn_adres p:first-child {
  font-family: "Inter", sans-serif;
  color: #2f2f34;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--white-color);
  display: inline-block;
}

.flex_adres {
  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;
  margin: 100px auto 32px;
  max-width: 1028px;
}

.btn_adres {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.btn_adres img {
  width: 52px;
  height: 52px;
  margin-right: 17px;
}

.container_map {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.container_map iframe {
  width: 100%;
  border: none;
  height: 530px;
  border-radius: 8px;
}

.container_map .container_map-iframe {
  display: none;
}

.container_map .container_map-iframe.active {
  display: block;
}

.address {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
  margin-bottom: 4px;
}

.address-ad {
  color: #2f2f34;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; /* 157.143% */
  margin-bottom: 4px;
  opacity: 0.6;
}

.block_adres h4 {
  font-size: 24px;
  font-family: "Inter", sans-serif;
  line-height: 150%;
}

.btn_adres:hover p:first-child {
  border-bottom: 1px solid #2f2f34;
}

.btn_adres.active p:first-child {
  border-bottom: 1px solid #2f2f34;
}

.form-was-send form {
  display: none;
}

.form-status-message {
  display: none;
  text-align: center;
}

.form-status-message .title--sm {
  font-size: 36px;
  color: var(--green-color);
  font-family: GothamProBold, sans-serif;
}

.form-was-send .form-status-message {
  display: block;
}

@media screen and (max-width: 1024px) {
  .flex_contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0;
  }
  .h2 {
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 20px;
    text-align: center;
  }
  .fs18 {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
  }
  .content_social {
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 56px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
  .item_social-2 {
    gap: 8px;
    -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;
    margin-bottom: 0;
  }
  .fs14 {
    margin-bottom: 8px;
  }
  .socials {
    gap: 14px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .contact_flex_form {
    background-color: #fff;
    -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 48px 40px;
    max-width: 529px;
    width: 529px;
  }
  .block_adres h4 {
    font-family: "Inter", sans-serif;
    color: #2f2f34;
    text-align: center;
    font-size: 25px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: -0.5px;
    margin-bottom: 29px;
  }
  .form_block h3 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 8px;
  }
  .form_block h3 + p {
    line-height: 24px;
    margin-bottom: 23px;
    text-align: center;
  }
  .flex_adres {
    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: 56px;
    margin-bottom: 42px;
  }
  .btn_adres {
    width: 100%;
  }
  .btn_adres:not(:last-child) {
    margin-bottom: 18px;
  }
  .btn_adres p:first-child {
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 584px) {
  .contact_flex_form {
    width: 100%;
  }
}
.checkout .container {
  max-width: 1028px;
  padding: 0 20px;
}

.flex_choose .smena-item {
  border-radius: 8px;
  margin: 1%;
  width: 23%;
  padding: 36px 20px;
}

.checkout {
  margin: 70px 0 100px;
}

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

.smena_old_price {
  margin-left: 12px;
  font-size: 13px;
  line-height: 122%;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: #2f2f34;
  opacity: 0.7;
}

.smena_new_price {
  font-size: 18px;
  line-height: 122%;
  opacity: 0.8;
  font-family: "GothamProBold", sans-serif;
}

.smena_price {
  margin: 12px 0 16px 0;
}

.smena-item--orange .smena_new_price {
  color: #ba3a00;
}

.smena-item--green .smena_new_price {
  color: #2f831a;
}

.smena-item--yellow .smena_new_price {
  color: #d7a306;
}

.smena-item--red .smena_new_price {
  color: #d6344b;
}

.smena-item--purple .smena_new_price {
  color: #461b89;
}

.smena-item--pink .smena_new_price {
  color: #bb13a0;
}

.smena-item--blue .smena_new_price {
  color: #3596b1;
}

.mfp-wrap {
  z-index: 999999;
}

.mfp-wrap:before {
  position: fixed;
  content: "";
  height: 100%;
  width: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.3);
}

.popup-stripe-form {
  background: rgb(255, 255, 255);
  border-radius: 16px;
  max-width: 450px;
  position: relative;
  width: auto;
  margin: 20px auto;
  padding: 28px 35px;
}

.popup-stripe-form .form_block .input-box {
  border: 1px solid #D9D9D9;
  line-height: 48px !important;
  padding: 0 16px !important;
  border-radius: 8px;
  display: block;
  width: 100%;
  margin-top: 8px;
  margin-bottom: 24px;
  font-family: "GothamPro", sans-serif;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-appearance: none;
}

.popup-stripe-form .mfp-close {
  font-size: 32px;
  height: 40px;
  width: 32px;
  border: none;
  cursor: pointer;
  opacity: 1;
  color: #aaa;
  font-family: initial;
  top: 0;
  right: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.popup-stripe-form .mfp-close:hover {
  color: #2F2F34;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.popup-stripe-form .mfp-close:after {
  display: none;
  /* width: 40px;
  height: 40px;
  content: '';
  background: url("../img/close-icon.svg");
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  left: -10px;
  background-position: center; */
}

.stripe-form__title {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

/*****************
Stripe form styles
*****************/
#payment-form {
  width: 100%;
  max-width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.hidden {
  display: none;
}

#payment-message {
  font-weight: 700;
  color: #FF5E5E;
  font-size: 16px;
  line-height: 20px;
  padding-top: 12px;
  text-align: center;
}

#payment-element {
  margin-bottom: 24px;
}

/* Buttons and links */
.stripe-submit-btn {
  background: #5469d4;
  font-family: Arial, sans-serif;
  color: #ffffff;
  border-radius: 4px;
  border: 0;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: block;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  -webkit-box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 4px 5.5px 0px rgba(0, 0, 0, 0.07);
  width: 100%;
}

.stripe-submit-btn:hover {
  -webkit-filter: contrast(115%);
  filter: contrast(115%);
}

.stripe-submit-btn:disabled {
  opacity: 0.5;
  cursor: default;
}

/* spinner/processing state, errors */
.stripe-spinner,
.stripe-spinner:before,
.stripe-spinner:after {
  border-radius: 50%;
}

.stripe-spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-box-shadow: inset 0 0 0 2px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}

.stripe-spinner:before,
.stripe-spinner:after {
  position: absolute;
  content: "";
}

.stripe-spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #5469d4;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  -ms-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}

.stripe-spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #5469d4;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  -ms-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 600px) {
  #payment-form {
    width: 80vw;
    min-width: initial;
  }
}
/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

/* content at start */
.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.popup-stripe-form__price {
  margin-bottom: 30px;
}

.popup-stripe-form__price p {
  margin-bottom: 0;
}

.popup-stripe-form__price__logo-bar {
  max-width: 220px;
  margin: 0 auto 30px;
  text-align: center;
}

.popup-stripe-form__price__logo-bar img {
  margin: 0 auto;
  max-width: 150px;
}

@media (max-width: 767px) {
  .popup-stripe-form__price__logo-bar {
    max-width: 150px;
    margin: 0 auto 15px;
  }
  .popup-stripe-form__price {
    margin-bottom: 15px;
    padding: 10px 20px;
  }
}
@media (min-width: 1022px) {
  .smena-item:hover .smena_new_price,
  .smena-item:hover .smena_old_price {
    color: #fff;
  }
}
.flex_choose {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* justify-content: space-between; */
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.flex_choose .smena-item__head {
  margin-bottom: 0;
}

.checkout h2 img {
  top: 6px;
  position: relative;
}

.checkout h2 {
  margin-bottom: 6px;
}

.total_block {
  text-align: center;
}

.total_item p {
  max-width: 400px;
  margin: 8px auto 36px;
}

.total_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10vh 0;
}

.btn_border {
  background: #f86d2e;
  border-radius: 50px;
  color: #fff;
  font-family: "GothamProBold", sans-serif;
  line-height: 64px;
  font-size: 15px;
  padding: 0 40px;
  cursor: pointer;
}

.poge_total_buy h2 {
  font-size: 36px;
  padding-top: 16px;
}

.btn_border:hover {
  background: #e16126;
}

.red {
  color: #fe516a;
}

/* Mark input boxes that gets an error on validation: */
/* Hide all steps by default: */
.tab {
  display: none;
}

.tab .h2 {
  font-size: 48px;
  line-height: 59px;
  font-weight: 70;
  margin-bottom: 10px;
  color: #2f2f34;
}

.tab .h2 + .fs28 {
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 29px;
  color: #48484d;
}

/* Make circles that indicate the steps of the form: */
.step .step_numb {
  width: 36px;
  height: 36px;
  background: #ebf5ec;
  border-radius: 50%;
  font-size: 20px;
  line-height: 18px;
  text-align: center;
  color: #2f2f34;
  font-weight: 500;
  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;
}

.step_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 0;
}

.step p {
  margin-bottom: 0;
  margin-left: 12px;
  font-size: 12px;
}

.steps_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.step + .step {
  margin-left: 5px;
}

.step.active .step_numb {
  background: #cdc3fa;
  color: #2f2f34;
}

.step {
  width: 25%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/* Mark the steps that are finished and valid: */
.step.finish .step_numb {
  font-size: 0;
  background: url(../img/check-black.svg) no-repeat center #cdc3fa;
}

.step:before {
  height: 4px;
  width: 100%;
  border-radius: 2px;
  background: #f2f5fa;
  content: "";
  display: inline-block;
}

.step.finish:before,
.step.active:before {
  background: #cdc3fa;
}

.step.finish.active .step_numb {
  background: url(../img/check_white.svg) no-repeat center #cdc3fa;
}

.flex_success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.success_flex_form {
  width: 52%;
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 48px 68px;
}

.form_block form input[type=radio] {
  width: auto;
  display: inline-block;
  margin: 0 2px 0 0;
  border: none;
  color: #cdc3fa;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none !important;
  position: relative;
  width: 16px;
  height: 16px;
  padding: 0;
}

.form_block form input[type=radio]:checked:after {
  width: 8px;
  height: 8px;
  background: #cdc3fa;
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 0;
  right: 0;
  margin: auto;
  border-radius: 50%;
}

.form_block form input[type=radio]:before {
  width: 16px;
  height: 16px;
  content: "";
  border-radius: 50%;
  border: 1px solid #cdc3fa;
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  bottom: 0;
  margin: auto;
}

.flex-pol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 8px;
  margin-bottom: 24px;
}

.flex-pol p + p {
  margin-left: 24px;
}

.success_flex_form p {
  margin-bottom: 0;
}

.form_block label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #2f2f34;
  margin-bottom: 8px;
}

#nextBtn,
.paybtn {
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #d9ea58;
  padding: 12px 25px;
  color: #2f2f34;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#nextBtn:hover,
.paybtn:hover {
  background-color: #f3ff88;
}
#nextBtn:focus,
.paybtn:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}

#prevBtn {
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #fff;
  padding: 12px 45px;
  color: #2f2f34;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
#prevBtn:hover {
  background-color: #f5f5f5;
}
#prevBtn:focus {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
  box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
}

.btns_PrewNext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

#prevBtn.none {
  opacity: 0.35;
}

.form_block form input.invalid {
  border: 1px solid #ff5e5e;
  -webkit-box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.form_block form input:not(.promocode-field.invalid):focus {
  border: 1px solid #6a6a6a;
  -webkit-box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
}

.btns_PrewNext {
  margin-top: 32px;
}

.tab_title {
  font-size: 16px;
  font-family: "GothamProBold", sans-serif;
  color: #2f2f34;
  padding-bottom: 16px;
}

.tab_total li {
  opacity: 0.8;
  font-family: "GothamProMedium", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px dashed #eaeaea;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  color: #2f2f34;
}

.tab_total_child li:last-child {
  display: block;
}

.tab_total li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tab_total li span + span {
  font-family: "GothamPro", sans-serif;
}

.tab_total li p {
  font-family: "GothamPro", sans-serif;
  padding: 12px 16px;
  border: 1px dashed #eaeaea;
  margin-top: 10px;
}

.tab_total + .tab_title {
  padding-top: 16px;
}

.succes_total_smena {
  background: #ffffff;
  padding: 48px 40px;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  max-width: 423px;
  width: 100%;
}

.flex_total_smena {
  width: 40%;
}

.promocode_discount p,
.promocode_topay p {
  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;
}

.promocode_discount span {
  font-size: 14px;
}

.promocode_discount .promocode_discount_price {
  font-size: 18px;
}

.promocode_topay .promocode_topay_price {
  font-size: 20px;
  font-family: "GothamProMedium", sans-serif;
  color: #2f2f34;
}

.promocode_topay {
  background: #eefbff;
  border-radius: 8px;
  margin-top: 8px;
  padding: 13px 20px;
}

.succes_total_smena p {
  margin-bottom: 0;
}

.promocode_discount {
  padding: 0 20px;
}

.name_total_smena {
  font-size: 22px;
  line-height: 31px;
  font-weight: 700;
  color: #2f2f34;
  padding-bottom: 4px;
  text-transform: uppercase;
}

.form_blockItem {
  text-align: center;
}

.smena_readmore {
  font-size: 14px;
  color: #a4a4a4;
  border-bottom: 1px solid #a4a4a4;
}

.total_item_description {
  padding-top: 16px;
  padding-bottom: 24px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}
.total_item_description strong {
  font-style: italic;
  font-weight: 500;
}

.payment_block {
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  padding: 44px 57px;
  margin-top: 20px;
  border-radius: 8px;
}

.payment_block p {
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}
.payment_block p strong {
  font-weight: 400;
}

.payment_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 32px;
}

.payment_icon img + img {
  margin-left: 23px;
}

input[type=date]::-webkit-calendar-picker-indicator {
  width: 20px;
  height: 20px;
  opacity: 0;
}

input[type=date] {
  background: url(../img/calendar-form.svg) no-repeat 95% center;
}

@media (max-width: 1200px) {
  .smena_new_price {
    font-size: 16px;
  }
  .flex_choose .smena-item {
    padding: 30px 20px;
  }
}
@media (max-width: 1028px) {
  .fs28 {
    text-align: center;
  }
}
@media (max-width: 970px) {
  .smena-item__head {
    font-size: 16px;
  }
  .smena-item__content .btn,
  .smena-item__content .link-arrow {
    font-size: 14px;
  }
  .flex_choose .smena-item {
    padding: 30px 13px;
  }
  .smena_price {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .smena_old_price {
    margin-left: 0;
  }
  .poge_total_buy h2 {
    font-size: 30px;
  }
  .total_item {
    font-size: 14px;
  }
  .success_flex_form {
    padding: 38px 46px;
    width: 50%;
  }
  .flex_total_smena {
    width: 48%;
  }
  .sold_camp {
    width: 100%;
    display: block;
    position: static;
    border-radius: 10px;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    margin-bottom: 20px;
    margin-top: -9px;
  }
}
@media (max-width: 820px) {
  .flex_choose .smena-item__head {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .none_767_btn_orange,
  .tablet_promocode {
    display: none;
  }
}
@media (max-width: 767px) {
  .tablet_promocode .total_item_description {
    padding-bottom: 0;
  }
  .tablet_promocode {
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    margin-top: 24px;
  }
  .checkout h2 img {
    top: 10px;
  }
  .tab .h2 {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 8px;
  }
  .tab .h2 + .fs28 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 46px;
  }
  .fs28 {
    font-size: 14px;
    line-height: 20px;
  }
  .checkout {
    margin: 40px 0 70px;
  }
  .flex_choose .smena-item {
    width: 48%;
  }
  .poge_total_buy h2 {
    font-size: 26px;
  }
  .flex_success {
    -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;
    margin-top: 20px;
  }
  .success_flex_form,
  .flex_total_smena {
    width: 100%;
  }
  .flex_total_smena {
    margin-top: 20px;
  }
  .succes_total_smena {
    max-width: 100%;
  }
  .step p {
    display: none;
  }
  .step_flex {
    padding-top: 0;
  }
  .step:before {
    position: relative;
    top: 26px;
    z-index: 0;
  }
  .step:last-child::before {
    background: transparent !important;
  }
  .step_flex {
    position: relative;
    z-index: 1;
  }
  .none_767_btn_orange {
    position: fixed;
    bottom: 0;
    z-index: 10;
    width: 100%;
    left: 0;
    right: 0;
    padding: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .succes_total_smena {
    display: none;
  }
  .none_767_btn_orange {
    background: #cdc3fa;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px 32px;
    width: 100%;
  }
  .none_767_btn_orange p {
    color: #2f2f34;
    margin-bottom: 0;
  }
  .form_blockItem_flex {
    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;
  }
  .total_item_description {
    max-width: 440px;
    text-align: left;
  }
  .none_767_btn_orange .name_total_smena {
    font-size: 18px;
  }
  .icon_click {
    color: #2f2f34;
    border-bottom: 1px solid #2f2f34;
  }
}
@media (max-width: 480px) {
  .success_flex_form,
  .payment_block,
  .succes_total_smena .form_block {
    padding: 30px 20px;
  }
  .checkout .container {
    padding: 0 10px;
  }
  .none_767_btn_orange {
    padding: 12px 20px;
  }
  #paybtn {
    padding: 0 10px;
  }
  .checkout .place_info.flex,
  .smena-item .place_info.flex {
    font-size: 12px;
  }
  .btns_PrewNext {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 16px;
  }
}
@media (max-width: 420px) {
  .smena-item__date {
    font-size: 11px;
    padding: 3px 8px;
    width: calc(100% + 12px);
  }
}
/*popup*/
/* Важная часть */
.popup__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.open-popup.btn--orange,
.open-popup.btn--orange.btn--transparent {
  padding: 22px 30px;
}

.shifts-mobile-btn .btn--orange,
.shifts-mobile-btn .btn--orange.btn--transparent {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}

.popup__bg.active {
  opacity: 1;
  pointer-events: all;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  z-index: 9999;
}

.popup {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  max-width: 600px;
  /*padding: 15px;*/
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  max-height: 100vh;
  overflow-y: auto;
  scrollbar-width: auto;
  scrollbar-color: #f86d2f #ffffff;
  border-radius: 10px;
}

/* Chrome, Edge, and Safari */
.popup::-webkit-scrollbar {
  width: 11px;
}

.popup::-webkit-scrollbar-track {
  background: #ffffff;
}

.popup::-webkit-scrollbar-thumb {
  background-color: #f86d2f;
  border-radius: 14px;
  border: 3px solid #ffffff;
}

.popup-contact-form .contact_flex_form {
  background: #fff;
  padding: 54px 68px;
  border-radius: 0;
  width: auto;
  max-width: none;
}

.popup-contact-form .form_block h3 + p {
  margin-bottom: 25px;
}

.popup.active {
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 27px;
  cursor: pointer;
  font-size: 2rem;
}

.close-popup:hover {
  color: #f86d2e;
}

@media only screen and (max-width: 767px) {
  .popup-contact-form .contact_flex_form {
    padding: 36px;
  }
}
@media only screen and (max-width: 470px) {
  .popup-contact-form .contact_flex_form {
    padding: 24px;
  }
  .close-popup {
    top: 7px;
    right: 17px;
  }
}
.tour {
  padding-bottom: 100px;
  background-color: #f5f8fa;
}
.tour--purple .tour__list-item-bubble::before {
  background-color: #ebe1ff;
}
.tour--green .tour__list-item-bubble::before {
  background-color: #edfff2;
}
.tour--orange .tour__list-item-bubble::before {
  background-color: #fdf3eb;
}
.tour--blue .tour__list-item-bubble::before {
  background-color: #e3f0ff;
}
.tour--pink .tour__list-item-bubble::before {
  background-color: #ffefff;
}
.tour--yellow .tour__list-item-bubble::before {
  background-color: #fffee4;
}
.tour--cyan .tour__list-item-bubble::before {
  background-color: #d8ffff;
}
.tour__title {
  max-width: 788px;
  text-align: center;
  margin: 0 auto 40px;
}
.tour__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  justify-content: center;
}
.tour__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
    flex-basis: 33.333%;
    width: 33.333%;
}
.tour__list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 385px;
  gap: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 22px;
  border-radius: 56px;
  font-size: 16px;
  line-height: 24px;
  color: #2f2f34;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}

.tour__list-item p {
	width: 100%;	
}

.tour__img {
  display: block;
  width: 494px;
  height: 382px;
  border-radius: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.tour__img img {
  border-radius: 24px;
  width: 100%;
  height: auto;
}
.tour__list-item-bubble img {
  position: relative;
  z-index: 1;
}
.tour__list-item-bubble::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: red;
  z-index: 0;
  top: 18px;
  left: 17px;
}
.tour__accent {
  font-size: 123px;
  line-height: 123px;
  color: #e4f650;
  text-align: center;
  margin-top: -46px;
}
.tour__mob {
  display: none;
}

@media screen and (max-width: 1200px) {
  .tour {
    padding-bottom: 120px;
  }
  .tour__mob {
    display: block;
     overflow: hidden;
     margin-bottom: 10px;
    }
  .tour__accent {
    display: none;
  }
  .tour__img {
    display: none;
  }
  .tour__img-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tour__img-mob img {
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    max-width: 494px;
  }
  .tour__accent-mob {
    font-size: 71px;
    line-height: 71px;
    color: #e4f650;
    text-align: center;
    margin-top: -30px;
    margin-bottom: 16px;
  }
  .tour__content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tour__list-item {
    max-width: 344px;
  }
}
@media screen and (max-width: 1000px) {
  .tour {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 900px) {
  .tour__img-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tour__title {
    max-width: 464px;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 650px) {
  .tour__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .tour__img-mob {
    width: 100%;
  }
  .tour__img-mob img {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .tour__accent-mob {
    font-size: 58px;
    line-height: 58px;
    color: #e4f650;
    text-align: center;
    margin-top: -30px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 550px) {
  .tour__img-mob {
    width: 100%;
  }
  .tour__img-mob img {
    width: 100%;
    height: auto;
  }
  .tour__accent-mob {
    font-size: 48px;
    line-height: 48px;
    color: #e4f650;
    text-align: center;
    margin-top: -97px;
    margin-bottom: 16px;
  }
  .tour__list {
    gap: 8px;
    width: 100%;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .tour__content {
    gap: 8px;
  }
  .tour__list-item {
    font-size: 14px;
    line-height: 22px;
    padding: 16px;
    width: 100%;
  }
  .tour__title {
font-size: 21px;
        line-height: 1.4rem;
  }
}
.hero-change {
  background-color: #f5f8fa;
}
.hero-change .hero-change__time {
  display: none;
}
.hero-change--purple .hero-change__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero-change--purple .hero-change__sold-out {
  display: none;
}
.hero-change--purple .hero-change__right {
  background-color: #ebe1ff;
}
.hero-change--purple .hero-change__right-box::before {
  background-color: #bbb2e9;
}
.hero-change--purple .hero-change__right-box-mob::before {
  background-color: #bbb2e9;
}
.hero-change--purple .tour__list-item-bubble::before {
  background-color: #ebe1ff;
}
.hero-change--purple .hero-change__list-item-bubble::before {
  background-color: #ebe1ff;
}
.hero-change--green .hero-change__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero-change--green .hero-change__sold-out {
  display: none;
}
.hero-change--green .hero-change__right {
  background-color: #edfff2;
}
.hero-change--green .hero-change__right-box::before {
  background-color: #c6ffd6;
}
.hero-change--green .hero-change__right-box-mob::before {
  background-color: #c6ffd6;
}
.hero-change--green .tour__list-item-bubble::before {
  background-color: #edfff2;
}
.hero-change--green .hero-change__list-item-bubble::before {
  background-color: #edfff2;
}
.hero-change--orange .hero-change__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero-change--orange .hero-change__sold-out {
  display: none;
}
.hero-change--orange .hero-change__right {
  background-color: #fdf3eb;
}
.hero-change--orange .hero-change__right-box::before {
  background-color: #e9dfd7;
}
.hero-change--orange .hero-change__right-box-mob::before {
  background-color: #e9dfd7;
}
.hero-change--orange .tour__list-item-bubble::before {
  background-color: #fdf3eb;
}
.hero-change--orange .hero-change__list-item-bubble::before {
  background-color: #fdf3eb;
}
.hero-change--blue .hero-change__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero-change--blue .hero-change__sold-out {
  display: none;
}
.hero-change--blue .hero-change__right {
  background-color: #e3f0ff;
}
.hero-change--blue .hero-change__right-box::before {
  background-color: #b8d9ff;
}
.hero-change--blue .hero-change__right-box-mob::before {
  background-color: #b8d9ff;
}
.hero-change--blue .tour__list-item-bubble::before {
  background-color: #e3f0ff;
}
.hero-change--blue .hero-change__list-item-bubble::before {
  background-color: #e3f0ff;
}
.hero-change--pink .hero-change__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero-change--pink .hero-change__sold-out {
  display: none;
}
.hero-change--pink .hero-change__right {
  background-color: #ffefff;
}
.hero-change--pink .hero-change__right-box::before {
  background-color: #ffd5ff;
}
.hero-change--pink .hero-change__right-box-mob::before {
  background-color: #ffd5ff;
}
.hero-change--pink .tour__list-item-bubble::before {
  background-color: #ffefff;
}
.hero-change--pink .hero-change__list-item-bubble::before {
  background-color: #ffefff;
}
.hero-change--yellow .hero-change__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero-change--yellow .hero-change__sold-out {
  display: none;
}
.hero-change--yellow .hero-change__right {
  background-color: #fffee4;
}
.hero-change--yellow .hero-change__right-box::before {
  background-color: #f4efbc;
}
.hero-change--yellow .hero-change__right-box-mob::before {
  background-color: #f4efbc;
}
.hero-change--yellow .tour__list-item-bubble::before {
  background-color: #fffee4;
}
.hero-change--yellow .hero-change__list-item-bubble::before {
  background-color: #fffee4;
}
.hero-change--cyan .hero-change__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero-change--cyan .hero-change__sold-out {
  display: none;
}
.hero-change--cyan .hero-change__right {
  background-color: #d8ffff;
}
.hero-change--cyan .hero-change__right-box::before {
  background-color: #c4ffff;
}
.hero-change--cyan .hero-change__right-box-mob::before {
  background-color: #c4ffff;
}
.hero-change--cyan .tour__list-item-bubble::before {
  background-color: #d8ffff;
}
.hero-change--cyan .hero-change__list-item-bubble::before {
  background-color: #d8ffff;
}
.hero-change__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.hero-change__container {
  padding-top: 29px;
}
.hero-change__left {
  margin-left: 40px;
  padding-top: 43px;
}
.hero-change__sold-out {
  padding: 4px 24px;
  border-radius: 8px;
  display: inline-block;
  background-color: #e94026;
  color: #fff;
  font-size: 14px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.hero-change__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #636379;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  margin-bottom: 24px;
}
.hero-change__title {
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
  color: #2f2f34;
  margin-bottom: 16px;
  margin-top: 0;
	position: relative;
    z-index: 1;
}
.hero-change__title strong {
  font-size: 70px;
  line-height: 78px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 8px;
  display: inline-block;
}
.hero-change__desc {
  font-size: 16px;
  line-height: 24px;
  color: #2f2f34;
  max-width: 420px;
  margin-bottom: 32px;
}
.hero-change__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 56px;
}
.hero-change__btn {
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #e4f650;
  padding: 20px 38px;
  color: #2f2f34;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  text-align: center;
}
.hero-change__btn:hover {
  background-color: #f3ff88;
}
.hero-change__btn:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}
.hero-change__btn2 {
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #fff;
  padding: 20px 38px;
  color: #2f2f34;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.hero-change__btn2:hover {
  background-color: #f5f5f5;
}
.hero-change__btn2:focus {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
  box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
}
.hero-change__price {
  border-radius: 24px;
  background: #e3ecff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
   align-items: flex-start;
  padding: 16px;
	flex-wrap: wrap;
  justify-content: space-between;
}

.hero-change__card-title {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #2f2f34;
  margin-bottom: 4px;
}
.hero-change__card-box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.hero-change__card-box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.hero-change__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
}
.hero-change__item {
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 4px;
  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;
  font-size: 16px;
  line-height: 19px;
  font-weight: 700;
  color: #2f2f34;
  display: flex;
  align-items: center;
}
.hero-change__dt {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: #2f2f34;
  height: 28px;
  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;
}
.hero-change__items-text {
  font-size: 9px;
  line-height: 12px;
  font-weight: 500;
  color: #2f2f34;
  text-align: center;
  margin-top: 4px;
}
.hero-change__card-title-actual {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #2f2f34;
  margin-bottom: 4px;
}
.hero-change__card-title-actual2 {
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
}
.hero-change__card-desc-actual {
text-align: center;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  color: #2f2f34;
  margin-bottom: 4px;
}
.hero-change__card-desc-actual--throw {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-decoration: line-through;
  margin-bottom: 0;
}
.hero-change__card-desc-actual2 {
  text-align: left;
  font-size: 22px;
  line-height: 27px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.hero-change__card-desc-actual2--throw {
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  text-decoration: line-through;
  margin-bottom: 0;
}
.hero-change__right {
  width: 565px;
  height: 565px;
  border-radius: 50%;
  background-color: transparent;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.hero-change__right img {
  position: relative;
  z-index: 2;
  margin: 0 auto;
      width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-change__right-box {
  position: relative;
  margin-right: 20px;
}
.hero-change__right-box::before {
  content: "";
  position: absolute;
  width: 291px;
  height: 291px;
  border-radius: 50%;
  z-index: 0;
  background-color: #bbb2e9;
  top: 107px;
  left: -97px;
}
.hero-change__list-box {
  margin-top: 40px;
}
.hero-change__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-change__list-item {
  padding: 14px 24px;
  border-radius: 64px;
  background-color: #fff;
  -webkit-box-shadow: 0px 4.0059046745px 24.0354270935px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4.0059046745px 24.0354270935px 0px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 94px;
  width: 30%;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: #2f2f34;
}

.hero-change__list-item > div:first-child:last-child {
  width: 100%;
}
.hero-change__list-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.hero-change__list-item-bubble {
  position: relative;
}
.hero-change__list-item-bubble img {
  position: relative;
  z-index: 1;
}
.hero-change__list-item-bubble::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: red;
  z-index: 0;
  top: 0px;
  left: 0px;
}
.hero-change__right-box-mob {
  display: none;
}

@media screen and (max-width: 1300px) {
  .hero-change__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero-change__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero-change__left {
    margin-left: 0;
  }
  .hero-change__right-box {
    margin-right: 0;
  }
  .hero-change__item {
    width: 256px;
  }
  .hero-change__right {
    width: 465px;
    height: 465px;
  }
  .hero-change__right img {
    -o-object-fit: contain;
    object-fit: contain;
  }
  .hero-change__right-box {
    position: relative;
  }
  .hero-change__right-box::before {
    content: "";
    position: absolute;
    width: 191px;
    height: 191px;
    top: 97px;
    left: -70px;
  }
}
@media screen and (max-width: 1100px) {
  .hero-change__right {
    width: 365px;
    height: 365px;
  }
  .hero-change__right img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 365px;
    height: 365px;
  }
  .hero-change__right-box {
    position: relative;
  }
  .hero-change__right-box::before {
    content: "";
    position: absolute;
    width: 141px;
    height: 141px;
    top: 67px;
    left: -50px;
  }
}
@media screen and (max-width: 1000px) {
  .hero-change__right-box {
    display: none;
  }
  .hero-change__left {
    margin-left: 0px;
    padding-top: 0px;
  }
  .hero-change__bg-mob {
    height: 820px;
  }
  .hero-change__bg-mob-svg {
    margin: 0 auto -24px;
  }
  .hero-change__right-box-mob {
    display: block;
    margin-bottom: 8px;
  }
  .hero-change__time {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero-change__content {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .hero-change__title {
    text-align: center;
  }
  .hero-change__right {
    margin: 0 auto;
  }
  .hero-change__desc {
    margin-bottom: 16px;
  }
  .hero-change__order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .hero-change__price {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 0;
    min-width: 380px;
    gap: 40px;
    padding: 16px 20px;
  }
  .hero-change__price2 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 0;
    min-width: 380px;
    gap: 40px;
    padding: 16px 20px;
    border-radius: 8px;
  }
  .hero-change__card-box1 img {
    display: none;
  }
  .hero-change__btn-box {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-bottom: 0;
  }
  .hero-change__right-box-mob {
    position: relative;
  }
  .hero-change__right-box-mob::before {
    content: "";
    position: absolute;
    width: 94px;
    height: 94px;
    border-radius: 50%;
    z-index: 0;
    background-color: #bbb2e9;
    top: 22px;
    right: 50px;
  }
  .hero-change__list-box {
    margin-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .hero-change__time {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 8px;
  }
  .hero-change__title {
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  .hero-change__title strong {
    margin-top: 4px;
    font-size: 25px;
    line-height: 32px;
  }
  .hero-change__desc {
    font-size: 14px;
    line-height: 22px;
  }
  .hero-change__container {
    padding-top: 24px;
  }
}
@media screen and (max-width: 480px) {
  .hero-change__right {
    width: 228px;
    height: 228px;
  }
  .hero-change__right img {
    width: 228px;
    height: 228px;
  }
  .hero-change__right-box-mob::before {
    top: 22px;
    right: 74px;
  }
  .hero-change__price, .hero-change__price2 {
    min-width: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 9px;
  }
  .hero-change__btn-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
  .hero-change__btn, .hero-change__btn2 {
    width: 100%;
    padding: 18px 38px;
    line-height: 18px;
  }
  .hero-change__list-box {
    gap: 8px;
  }
  .hero-change__list-item {
    width: 100%;
    padding: 18px 24px;
    font-size: 14px;
    line-height: 22px;
    height: auto;
    min-height: 80px;
  }
  .hero-change__card-title-actual, .hero-change__card-title-actual2, .hero-change__card-title {
    font-size: 13px;
    line-height: 16px;
  }
  .hero-change__card-desc-actual {
    font-size: 16px;
    line-height: 20px;
  }
  .hero-change__card-desc-actual--throw {
    font-size: 13px;
    line-height: 16px;
  }
  .hero-change__card-desc-actual2 {
    font-size: 16px;
    line-height: 20px;
  }
  .hero-change__card-desc-actual2--throw {
    font-size: 13px;
    line-height: 16px;
  }
  .hero-change__item-price {
    font-size: 16px;
    line-height: 20px;
  }
}
@media screen and (max-width: 425px) {
  .hero-change__right-box-mob::before {
    top: 22px;
    right: 50px;
  }
}
@media screen and (max-width: 400px) {
  .hero-change__right-box-mob::before {
    top: 22px;
    right: 40px;
  }
}
@media screen and (max-width: 375px) {
  .hero-change__right-box-mob::before {
    top: 22px;
    right: 30px;
  }
}
.steps {
  background-color: #f5f8fa;
}
.steps--purple .steps__card-img::before {
  background-color: #ebe1ff;
}
.steps--green .steps__card-img::before {
  background-color: #edfff2;
}
.steps--orange .steps__card-img::before {
  background-color: #fdf3eb;
}
.steps--blue .steps__card-img::before {
  background-color: #e3f0ff;
}
.steps--pink .steps__card-img::before {
  background-color: #ffefff;
}
.steps--yellow .steps__card-img::before {
  background-color: #fffee4;
}
.steps--cyan .steps__card-img::before {
  background-color: #d8ffff;
}
.steps__title {
  max-width: 550px;
  text-align: center;
  margin: 0 auto 40px;
}
.steps__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.steps__card {
  width: 421px;
  overflow: hidden;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 24px;
  padding-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  min-height: 450px;
}
.steps__card:nth-child(2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  padding-bottom: 24px;
  background-color: #e3ecff;
  padding-top: 0;
}
.steps__card:nth-child(2) .steps__card-img:before {
  top: 0;
  right: 18px;
}
.steps__card:nth-child(3) .steps__img-box img {
  width: 100%;
}
.steps__card--odd {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  padding-bottom: 24px;
  background-color: #e3ecff;
}
.steps__card-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2f2f34;
}
.steps__card-desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #2f2f34;
}
.steps__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 3px;
}
.steps__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2f2f34;
  padding-left: 17px;
}
.steps__item::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background-color: #e4f650;
  left: 0;
  top: 8px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.steps__card-img {
  position: relative;
}
.steps__card-img::before {
  content: "";
  position: absolute;
  width: 227px;
  height: 227px;
  border-radius: 50%;
  background-color: #ebe1ff;
  z-index: 0;
  top: 22px;
  right: 6px;
}
.steps__card-img--odd::before {
  content: "";
  position: absolute;
  width: 227px;
  height: 227px;
  border-radius: 50%;
  background-color: #ebe1ff;
  z-index: 0;
  top: 0px;
  right: 18px;
}
.steps__card-img--even::before {
  content: "";
  position: absolute;
  width: 227px;
  height: 227px;
  border-radius: 50%;
  background-color: #ebe1ff;
  z-index: 0;
  top: 24px;
  left: 24px;
}
.steps__img-box {
  margin-left: -24px;
  margin-right: -24px;
}
.steps__img-box img {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  height: 100%;
}
.steps__img-box--odd {
  margin-left: -24px;
  margin-right: -24px;
}
.steps__img-box--odd img {
  width: 100%;
}

@media screen and (max-width: 1025px) {
  .steps__title {
    max-width: 392px;
  }
}
@media screen and (max-width: 1000px) {
  .steps__card-title {
    font-size: 18px;
    line-height: 26px;
  }
  .steps__card-desc {
    font-size: 14px;
    line-height: 22px;
  }
  .steps__item {
    font-size: 14px;
    line-height: 22px;
  }
}
@media screen and (max-width: 480px) {
  .steps__title {
    max-width: 320px;
    margin: 0 auto 24px;
  }
  .steps__card-img--mob {
    margin-left: -24px;
    margin-right: -24px;
  }
  .steps__img-box img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .steps__card {
    width: 100%;
  }
  .steps__card:nth-child(2) .steps__card-img:before {
    top: 0;
    right: 25px;
  }
  .steps__card-title {
    font-size: 18px;
    line-height: 26px;
  }
  .steps__card-desc {
    font-size: 14px;
    line-height: 22px;
  }
  .steps__item {
    font-size: 14px;
    line-height: 22px;
  }
  .steps__img-box img {
    width: 100%;
    min-height: 230px;
  }
  .steps__img-box--odd {
    margin-left: -24px;
    margin-right: -24px;
  }
  .steps__img-box--odd img {
    width: 100%;
  }
  .steps__img-box-2 {
    width: 100%;
    height: 214px;
  }
  .steps__img-box-2 img {
    width: 100%;
    height: 214px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.schedule {
  background-color: #f5f8fa;
}
.schedule--purple .schedule__img::before {
  background-color: #ebe1ff;
}
.schedule--green .schedule__img::before {
  background-color: #edfff2;
}
.schedule--orange .schedule__img::before {
  background-color: #fdf3eb;
}
.schedule--blue .schedule__img::before {
  background-color: #e3f0ff;
}
.schedule--pink .schedule__img::before {
  background-color: #ffefff;
}
.schedule--yellow .schedule__img::before {
  background-color: #fffee4;
}
.schedule--cyan .schedule__img::before {
  background-color: #d8ffff;
}
.schedule__content {
  background-color: #e3ecff;
  padding: 40px;
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 32px;
}
.schedule__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.schedule__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  max-width: 100%;
  padding-right: 10px;
}
.schedule__item strong {
  font-size: 16px;
  line-height: 26px;
  color: #2f2f34;
}
.schedule__time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 4px 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 26px;
  color: #2f2f34;
  background-color: #fff;
  border: 1px solid #ebe1ff;
  border-radius: 8px;
  width: 125px;
  min-width: 125px;
}
.schedule__time img {
  width: 16px;
  height: 16px;
}
.schedule__box1 {
  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;
  max-width: 278px;
}
.schedule__title {
  margin-bottom: 16px;
}
.schedule__desc {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.32px;
}
.schedule__img {
  position: relative;
}
.schedule__img img {
  position: relative;
  z-index: 1;
}
.schedule__img::before {
  content: "";
  position: absolute;
  width: 363px;
  height: 367px;
  background-color: #ebe1ff;
  border-radius: 50%;
  top: -16px;
  left: -100px;
}
.schedule__btn-box {
  text-align: center;
}
.schedule__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #fff;
  padding: 20px 38px;
  color: #2f2f34;
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.schedule__btn:hover {
  background-color: #f5f5f5;
}
.schedule__btn:focus {
  -webkit-box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
  box-shadow: 0px 0px 0px 2px rgba(205, 195, 250, 0.4);
}
.schedule__content-mob {
  display: none;
}

@media screen and (max-width: 1200px) {
  .schedule__content {
    display: none;
  }
  .schedule__content-mob {
    display: block;
  }
  .schedule__title {
    text-align: center;
    margin-bottom: 16px;
  }
  .schedule__desc {
    text-align: center;
    margin-bottom: 24px;
  }
  .schedule__mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #e3ecff;
    padding: 16px 13px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
  }
  .schedule__box-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
  }
  .schedule .schedule__img {
    position: relative;
    margin: 0 auto;
  }
}
@media screen and (max-width: 775px) {
  .schedule__title {
    text-align: center;
    margin-bottom: 16px;
  }
  .schedule__desc {
    text-align: center;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 22px;
  }
  .schedule__box-mob {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0px;
  }
  .schedule__box2 {
    margin-bottom: 24px;
  }
  .schedule__btn {
    padding: 16px 22px;
  }
  .schedule__img::before {
    top: 26px;
    left: -53px;
  }
  .schedule__item {
    gap: 8px;
  }
  .schedule__item strong {
    font-size: 14px;
    line-height: 22px;
  }
  .schedule__time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 8px 12px;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
  }

  .schedule__item {
    flex-direction: column;
}

.schedule__box2, .schedule__box3 {
    width: 100%;
}

.schedule__item .schedule__time + strong {
    display: none;
}
}


.hero-camp {
  overflow: hidden;
}
.hero-camp__container {
  padding-top: 71px;
  padding-bottom: 70px;
  position: relative;
}
.hero-camp__title {
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  text-align: center;
  max-width: 875px;
  margin: 0 auto 16px;
  color: #2f2f34;
}
.hero-camp__title strong {
  font-family: "Atomic Marker Regular";
  font-weight: 400;
  color: #83d58f;
}
.hero-camp__mob {
  display: none;
}
.hero-camp__desc {
  max-width: 650px;
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  text-align: center;
  color: #2f2f34;
  margin: 0 auto 0;
}

.hero-camp__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.hero-camp__btn {
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #e4f650;
  padding: 20px 39px;
  color: #2f2f34;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.hero-camp__btn:hover {
  background-color: #f3ff88;
}
.hero-camp__btn:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}
.hero-camp__img1 {
  position: absolute;
  top: 83px;
  left: -106px;
}
.hero-camp__img2 {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.hero-camp__img3 {
  position: absolute;
  bottom: 0px;
  right: 25px;
}
.hero-camp__bubble {
  position: absolute;
  width: 160px;
  height: 161px;
  border-radius: 50%;
  background-color: #ebe1ff;
  top: 216px;
  left: -148px;
}

@media screen and (max-width: 1350px) {
  .hero-camp__img1 {
    position: absolute;
    top: 83px;
    left: -190px;
  }
}
@media screen and (max-width: 1200px) {
  .hero-camp__img1 {
    position: absolute;
    top: 83px;
    left: -104px;
    width: 151px;
    height: 60px;
  }
  .hero-camp__img2 {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 236px;
  }
  .hero-camp__img3 {
    position: absolute;
    bottom: 0px;
    right: 25px;
    width: 115px;
    height: auto;
  }
}
@media screen and (max-width: 1000px) {
  .hero-camp {
    padding-bottom: 25px;
  }
  .hero-camp__img1, .hero-camp__img2, .hero-camp__img3 {
    display: none;
  }
  .hero-camp__bubble {
    display: none;
  }
  .hero-camp__container {
    padding-top: 26px;
    padding-bottom: 0px;
    position: relative;
  }
  .hero-camp__mob {
    display: block;
    position: relative;
    width: 258px;
    margin: 0 auto 12px;
  }
  .hero-camp__mob::before {
    content: "";
    width: 258px;
    height: 258px;
    border-radius: 50%;
    background-color: #fdf8c5;
    position: absolute;
    top: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .hero-camp__img-mob {
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .hero-camp__img1mob {
    position: absolute;
    top: 64px;
    left: -60px;
  }
  .hero-camp__img2mob {
    position: absolute;
    top: 21px;
    right: -108px;
  }
  .hero-camp__title {
    font-size: 24px;
    line-height: 32px;
    max-width: 320px;
    margin: 0 auto 24px;
  }
  .hero-camp__title strong {
    font-size: 30px;
    line-height: 32px;
  }
  .hero-camp__desc {
    font-size: 14px;
    line-height: 22px;
  }
}
@media screen and (max-width: 480px) {
  .hero-camp__btn {
    width: 100%;
    text-align: center;
  }
}
.rest {
  padding-bottom: 96px;
}
.rest__mob {
  display: none;
}
.rest__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px 24px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 24px;
  position: relative;
}
.rest__item {
  max-width: 420px;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
}
.rest__item--title {
  background-color: #f5f4fe;
  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;
  min-width: 420px;
}
.rest__item:nth-child(1) {
  border-radius: 24px 0 0 0;
}
.rest__item:nth-child(1) img {
  border-radius: 24px 0 0 0;
}
.rest__item:nth-child(3) {
  border-radius: 0 24px 0 0;
}
.rest__item:nth-child(3) img {
  border-radius: 0 24px 0 0;
}
.rest__item:nth-child(4) {
  border-radius: 0 0 0 24px;
}
.rest__item:nth-child(4) .rest__text {
  border-radius: 0 0 0 24px;
}
.rest__item:nth-child(6) {
  border-radius: 0 0 24px 0;
}
.rest__item:nth-child(6) .rest__text {
  border-radius: 0 0 24px 0;
}
.rest__img img {
  width: 100%;
  object-fit: cover;
}
.rest__text {
  padding: 24px;
  min-height: 160px;
  background-color: #fff;
}
.rest__card-title {
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -0.48px;
  font-weight: 700;
  color: #2f2f34;
}
.rest__card-desc {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #2f2f34;
}
.rest__card-title-box img {
  position: absolute;
  top: 44%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.rest__card-title-box h2 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
  max-width: 325px;
  text-align: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  color: #2f2f34;
}
.rest__card-title-box p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  max-width: 309px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #2f2f34;
}
.rest__bubble1 {
  position: absolute;
  width: 234px;
  height: 237px;
  border-radius: 50%;
  background-color: #ebe1ff;
  z-index: -1;
  bottom: -46px;
  left: -27px;
}
.rest__bubble2 {
  position: absolute;
  width: 151px;
  height: 153px;
  border-radius: 50%;
  background-color: #83d58f;
  z-index: -1;
  bottom: -75px;
  right: 87px;
}

@media screen and (max-width: 1436px) {
  .rest__list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .rest__item {
    max-width: 420px;
    -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    border-radius: 24px;
  }
  .rest__item .rest__text {
    border-radius: 0 0 24px 24px;
  }
  .rest__item img {
    border-radius: 24px 24px 0 0;
  }
  .rest__item--title {
    background-color: #f5f4fe;
    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;
    min-width: 420px;
  }
  .rest__item:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .rest__item:nth-child(1) img {
    border-radius: 24px 24px 0 0;
  }
  .rest__item:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .rest__item:nth-child(3) {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .rest__item:nth-child(3) img {
    border-radius: 24px 24px 0 0;
  }
  .rest__item:nth-child(4) {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .rest__item:nth-child(5) {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .rest__item:nth-child(6) {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
}
@media screen and (max-width: 1000px) {
  .rest {
    padding-bottom: 25px;
  }
  .rest__bubble1, .rest__bubble2 {
    display: none;
  }
}
@media screen and (max-width: 920px) {
  .rest__item--title {
    display: none;
  }
  .rest__mob {
    display: block;
  }
  .rest__title {
    text-align: center;
    margin-bottom: 16px;
  }
  .rest__desc {
    text-align: center;
    margin: 0 auto 24px;
    max-width: 300px;
    font-size: 14px;
    line-height: 22px;
    color: #2f2f34;
  }
  .rest__card-title {
    margin-bottom: 8px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: -0.48px;
  }
  .rest__card-desc {
    font-size: 14px;
    line-height: 22px;
  }
  .rest__text {
    padding: 16px;
    min-height: 132px;
  }
}
@media screen and (max-width: 480px) {
  .rest__list {
    gap: 16px;
  }
}
.happiness {
  padding-bottom: 56px;
}
.happiness__container-inner {
  position: relative;
}
.happiness__title {
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 16px;
  color: #2f2f34;
}
.happiness__subtitle {
  max-width: 566px;
  font-size: 18px;
  line-height: 23px;
  color: #2f2f34;
  font-weight: 500;
  text-align: center;
  margin: 0 auto -50px;
}
.happiness__slide {
  height: 282px;
  width: 421px;
  border-radius: 16px;
}
.happiness__img {
  height: 282px;
  width: 421px;
  border-radius: 16px;
}
.happiness__slider {
  padding-bottom: 86px;
  padding-top: 94px;
  margin-bottom: 24px;
}
.happiness__accent {
  text-align: center;
  position: absolute;
  bottom: 144px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 1;
}
.happiness__btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.happiness__btn {
  border-radius: 32px;
  border: 2px solid #2f2f34;
  background-color: #e4f650;
  padding: 20px 39px;
  color: #2f2f34;
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.happiness__btn:hover {
  background-color: #f3ff88;
}
.happiness__btn:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}
.happiness__bubble1 {
  position: absolute;
  width: 151px;
  height: 153px;
  border-radius: 50%;
  background-color: #ebe1ff;
  z-index: -1;
  top: 361px;
  left: 6px;
}
.happiness__bubble2 {
  position: absolute;
  width: 151px;
  height: 153px;
  border-radius: 50%;
  background-color: #ebe1ff;
  z-index: -1;
  top: 398px;
  right: 194px;
}
.happiness__bubble3 {
  position: absolute;
  width: 151px;
  height: 153px;
  border-radius: 50%;
  background-color: #edfff2;
  z-index: -1;
  top: 398px;
  right: 27px;
}

.swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d9d9d9;
  border: 1px solid transparent;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #8982bc;
  border: 1px solid black;
  opacity: 1;
}

.happiness-button-prev:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: url("../img/arrow-slide.svg");
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  top: -170px;
}

.happiness-button-next:after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  background-image: url("../img/arrow-slide.svg");
  top: -170px;
}

.happiness-button-prev {
  left: 93%;
}

.happiness-button-prev.happiness-button-disabled,
.happiness-button-next.happiness-button-disabled {
  opacity: 0.5;
}

@media screen and (max-width: 1240px) {
  .happiness-button-prev {
    left: 90%;
  }
}
@media screen and (max-width: 1000px) {
  .happiness-button-prev,
  .happiness-button-next {
    display: none;
  }
  .happiness {
    padding-bottom: 10px;
  }
  .happiness__title {
    max-width: 320px;
    margin-bottom: 16px;
  }
  .happiness__subtitle {
    font-size: 14px;
    line-height: 18px;
    max-width: 320px;
    margin-bottom: 24px;
  }
  .happiness__bubble1, .happiness__bubble2, .happiness__bubble3 {
    display: none;
  }
  .happiness__accent {
    font-size: 56px;
    line-height: 56px;
    bottom: 119px;
  }
  .happiness__slider {
    padding-top: 0px;
    padding-bottom: 49px;
  }
  .happiness__container-inner {
    padding-right: 0;
    padding-left: 0;
  }
  .happiness__slide:first-child {
    margin-left: 20px;
  }
  .happiness__slide:last-child {
    margin-right: 20px !important;
  }
}
@media screen and (max-width: 480px) {
  .happiness__img {
    height: auto;
    width: 290px;
  }
  .happiness__slide {
    width: 290px;
    height: auto;
  }
  .happiness__accent {
    font-size: 41px;
    line-height: 56px;
    bottom: 115px;
  }
  .happiness__btn {
    width: 100%;
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
  }

  .steps__title h2 {
    font-size: 24px;
}
}
.choice {
  height: 100vh;
  overflow: hidden;
}
.choice__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.choice__left, .choice__right {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  position: relative;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
}
.choice__left-img, .choice__right-img {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  -o-object-fit: cover;
  object-fit: cover;
}
.choice .choice__left::before,
.choice .choice__right::before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  z-index: 2;
}
.choice__left-text, .choice__right-text {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  min-width: 409px;
}
.choice__left-text img, .choice__right-text img {
  width: 149px;
  height: 48px;
  margin: 0 auto;
}
.choice__left-text h2, .choice__right-text h2 {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 64px; /* 114.286% */
  letter-spacing: -1.12px;
  margin-top: 4px;
  margin-bottom: 8px;
}
.choice__left-text p, .choice__right-text p {
  color: #fff;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 150% */
  letter-spacing: -0.32px;
  max-width: 370px;
  margin: 0 auto 32px;
}
.choice__left-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 20px 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 2px solid #2f2f34;
  color: #2f2f34;
  background-color: #e4f650;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 125% */
}
.choice__left-link--black {
  display: block;
}
.choice__left-link--white {
  display: none;
}
.choice__left-link img {
  width: 20px;
  height: 20px;
}
.choice__left-link.active {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.choice__left-link:hover {
  background-color: #f3ff88;
}
.choice__left-link:focus {
  background-color: #e4f650;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}
.choice__right-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 20px 32px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  border: 2px solid #fff;
  color: #fff;
  background-color: #4986f4;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 125% */
}
.choice__right-link img {
  width: 20px;
  height: 20px;
}
.choice__right-link.active {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}
.choice__right-link:hover {
  background-color: #598ae4;
}
.choice__right-link:focus {
  background-color: #598ae4;
  -webkit-box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
  box-shadow: 0px 0px 0px 2px rgb(205, 195, 250);
}
.choice__left-img-svg, .choice__right-img-svg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.choice__left-img-svg1, .choice__right-img-svg1 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 95%;
  height: auto;
  z-index: 15;
}
.choice__left-img-svg2, .choice__right-img-svg2 {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  z-index: 15;
}
.choice__left-img-svg3, .choice__right-img-svg3 {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 95%;
  height: auto;
  z-index: 15;
}
.choice__left-img-svg4, .choice__right-img-svg4 {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: auto;
  z-index: 15;
}
.choice__container-mob {
  display: none;
}

@media screen and (max-width: 1370px) {
  .choice__left-text h2, .choice__right-text h2 {
    max-width: 250px;
    margin: 4px auto 8px;
  }

  .header__list {
    gap: 10px;
  }  
}
@media screen and (max-width: 1160px) {
  .choice__left-text p, .choice__right-text p {
    max-width: 210px;
  }
}
@media screen and (max-width: 1000px) {
  .choice {
    min-height: 672px;
  }
  .choice__container {
    display: none;
  }
  .choice__container-mob {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100vh;
  }
  .choice__left-mob, .choice__right-mob {
    height: 50%;
    width: 100%;
    position: relative;
    min-height: 336px;
  }
  .choice__left-img-mob, .choice__right-img-mob {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .choice__left-img-svg-mob, .choice__right-img-svg-mob {
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
  }
  .choice__left-text-mob-logo, .choice__right-text-mob-logo {
    width: 149px;
    left: 48px;
    margin: 0 auto;
  }
  .choice__left-text-mob, .choice__right-text-mob {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    min-width: 409px;
  }
  .choice__left-text-mob h2, .choice__right-text-mob h2 {
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px; /* 114.286% */
    letter-spacing: -1.12px;
    margin-top: 4px;
    margin-bottom: 8px;
  }
  .choice__left-text-mob p, .choice__right-text-mob p {
    color: #fff;
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 150% */
    letter-spacing: -0.32px;
    max-width: 370px;
    margin: 0 auto 32px;
  }
}
@media screen and (max-width: 375px) {
  .choice__left-text-mob p, .choice__right-text-mob p {
    max-width: 250px;
  }
}

/* fixes */
.header__logo img {
    max-width: 140px;
}

a.footer__logo-link img {
    max-width: 250px;
}

.tour__results {
  text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.info__list-box__menu {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 2rem;
}

section.section.menu {
    padding: 0;
}

section.section.menu .info__content {
    background: no-repeat;
    border-radius: 0;
}

section.section.menu .info__content .info__list-box__item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

section.section.menu .info__content .info__list-box__item {
    flex: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 24px;
    min-height: 433px;
    border-radius: 10px;
}

section.section.menu .info__content .info__list-box__item h3 {
    margin: 0.75rem 0 1rem;
    font-size: 1.25rem;
}

section.section.menu .info__content .info__list-box__item .choose-item__text {
    line-height: 1.4;
}


section.section.info {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.info__link:hover img {
    background: #e4f650;
    border-radius: 5px;
}

.schedule__title-box {
    margin-bottom: 2rem;
}

.taxonomy-list {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    gap: 1rem;
}

.taxonomy-list .btn.active {
    background: #dbed50;
}

figure.aligncenter, img.aligncenter {
    clear: both;
    margin: 0 auto;
}

section.section.facts {
    padding-top: 25px;
    padding-bottom: 0;
}



.post-template-content.content-editor > ul:first-child {
    margin-left: auto;
    margin-right: 0;
    display: block;
    width: max-content;
    margin-bottom: 2rem;
}

.new_team__box {
    flex-basis: calc(50% - 12px);
}

.team__box2.new_team__box .team__img3 {
      margin-top: 15px;
    width: 100%;
}

.team__box2.new_team__box .team__img3 img {
    width: 100%;
    object-fit: cover;
    height: 280px;
}


.team__box3.new_team__box .team__img3 img{
      object-fit: cover;
    width: 100%;
    margin-top: 15px;
    height: 280px;
}

.new_team__box .team__desc {
    max-width: 100%;
}

.team__box3.new_team__box {
    position: relative;
    overflow: hidden;
    background-color: #fdf3eb;
}
.after_text {padding-top: 100px;}

.after_text h2 {
    font-size: 40px;
    margin-bottom: 0.5rem;
}


.after_text h2 + p{
    font-size: 20px;
   line-height: 26px;
}

.wp-block-group {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.5;
    color: #2f2f34;
}

.wp-block-group h2.wp-block-heading {
    font-size: 40px;
    margin: 1rem 0 0.5rem;
}

.container-inner.facts__container-inner h2 {
    margin: 1rem 0 2rem;
    font-size: 40px;
    color: #2f2f34;
}

.container-inner.facts__container-inner h2 + p, .container-inner.facts__container-inner h2 + p + p {
    font-size: 1.2rem;
}

.container-inner.facts__container-inner h2 + p + p {
    margin-bottom: 2rem;
}

h3.accent.price__accent {
    margin-top: 4rem;
}

.steps__card .steps__card-text {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.section.team.team + section.section.reviews {
    padding-top: 0;
}

.container-inner.facts__container-inner:not(.title-pre) {
    border: 2px solid #cdc3fa;
    border-radius: 16px;
    padding-top: 1rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.container-inner.facts__container-inner.title-pre p {
    line-height: 1.5;
        margin-bottom: 0.5rem;
}

body.single.single-blog h2 {
    font-size: 30px;
    margin-bottom: 0.5rem;
    margin-top: 2rem;
}

body.single.single-blog h3 {
    font-size: 28px;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

body.single.single-blog .post-template-content.content-editor a,
body.single.single-blog a.post-item-related__title {
    color: #8982bc;
    text-decoration: underline;
}

body.single.single-blog .post-template-content.content-editor a:hover,
body.single.single-blog a.post-item-related__title:hover {
  text-decoration: none;
}

.wp-block-group p {
    margin-bottom: 0.5rem;
}

/* faq */
  .block_faq{
	text-align: left;
	max-width: 720px;
	margin: auto;
}
.block_faq_item{
	background: #FFFFFF;
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
	border-radius: 6px;
	margin-bottom: 10px;
	padding: 17px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.block_faq_item p {
	font-family: 'GothamProBold', sans-serif;
	margin-bottom: 0;
	font-size: 18px;
	line-height: 140%;
	color: #242424;
}
.block_faq_hidden{
	padding: 0 25px;
	display: none;
	margin: 27px 0;
	color: #474747;
}
.close_icon{
	width: 24px;
	height: 24px;
	border-radius: 4px;
	background: #e4f650;
	position: relative;
  border: 1px solid #2f2f34;
	transition: all 0.5s ease;
}
.close_icon:after{
	content: '';
    background: url(../img/arrow-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	top:0;
	bottom: 0;
	margin: auto;
	transition: all 0.5s ease;
}
.block_faq_item.active .close_icon:after{
	transform: rotate(-180deg);
}

.block_faq_hidden li {
    margin-bottom: 1rem;
}

.block_faq_hidden ol {
    margin-left: 0.5rem;
}

.block_faq_hidden li b {
    font-size: 1.1rem;
    line-height: 1.3rem;
    margin-bottom: 0.5rem;
    display: block;
}

.block_faq_hidden li b>br {
    display: none;
}

h2.h2.faq-heading__title.info__title {
    margin-bottom: 1.5rem;
}

/*MEDIA*/

@media screen and (max-width: 1439px) {
   .steps__card {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 0;
    padding-bottom: 24px;
  }
}

@media screen and (min-width: 769px) {}


@media screen and (max-width: 768px) {
  .info__list-box__menu {
    flex-direction: column;
  }

  .team__box3.new_team__box .team__img3 img,
  .team__box2.new_team__box .team__img3 img {
    margin-top: 0;
    height: 200px;
  }

  .container-inner.facts__container-inner:not(.title-pre) {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 10px;
  }

  .container-inner.facts__container-inner h2 {
    font-size: 30px;
  }

  body.single.single-blog h2,
  .wp-block-group h2.wp-block-heading {
    font-size: 26px;
  }

  .wp-block-media-text>.wp-block-media-text__content {
    padding: 1rem 0 0;
  }

  .after_text {
    padding-top: 50px;
  }

  .price__card-box2 {
    margin: 0 auto;
  }

  section.section.menu .info__content .info__list-box__item {
    min-height: auto;
  }

  .reviews__subtitle {
    margin-bottom: 16px;
  }

  .after_text h2 {
    font-size: 30px;
    margin-bottom: 0.75rem;
  }

  section.faq {
    padding: 0 10px;
  }

  section.section.info .container-inner {
      padding: 0 5px;
  }

  .ti-footer.ti-footer-grid.source-Google {
    margin-top: 0 !important;
}

} /* max 768*/

.footer__work li.footer__item-work {
    white-space: nowrap;
}