@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Regular.eot');
  src: url('../fonts/OpenSans-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Regular.woff2') format('woff2'), url('../fonts/OpenSans-Regular.woff') format('woff'), url('../fonts/OpenSans-Regular.ttf') format('truetype'), url('../fonts/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Bold.eot');
  src: url('../fonts/OpenSans-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-Bold.woff2') format('woff2'), url('../fonts/OpenSans-Bold.woff') format('woff'), url('../fonts/OpenSans-Bold.ttf') format('truetype'), url('../fonts/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-SemiBold.eot');
  src: url('../fonts/OpenSans-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/OpenSans-SemiBold.woff2') format('woff2'), url('../fonts/OpenSans-SemiBold.woff') format('woff'), url('../fonts/OpenSans-SemiBold.ttf') format('truetype'), url('../fonts/OpenSans-SemiBold.svg#OpenSans-SemiBold') format('svg');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  background-color: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  resize: none;
}

select {
  /* for Firefox */
  -moz-appearance: none;
  /* for Chrome */
  -webkit-appearance: none;
}

select::-ms-expand {
  /* IE */
  display: none;
}

body {
  font-family: 'Open Sans';
  font-weight: 400;
  min-height: 100vh;
  position: relative;
  font-size: 20rem;
  color: #000;
  background-color: #FFFCF7;
  line-height: 1.7;
}

html {
    /* font-size: 0.04208vw; */
    font-size: 0.05208vw;
    overflow-x: hidden;
}

.problem__text{
    line-height: 40rem;
    font-size: 23rem;
    letter-spacing: -0.055em;
}

.spec__col{
    text-align: center;
}

.spec__col strong{
    display: block;
    text-align: center;
}

body {
    background-color: #fff;
}

.body-block {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.wrapper {
  max-width: 1450rem;
  padding: 0 15rem;
  margin: 0 auto;
}

.section-title {
  font-size: 48rem;
  line-height: 65rem;
  font-weight: 700;
  text-align: center;
}

.section-title span {
  color: #ED720A;
}

.section-title span.mob-sm {
  color: inherit;
}

.primary-btn {
  background-color: #ED720A;
  cursor: pointer;
  display: block;
  width: 100%;
  
  max-width: 500rem;
  height: 100rem;
  font-size: 22rem;
  
  color: #fff;
  padding: 27rem 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 15rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.primary-btn:hover {
  background-color: #d56609;
}

/* Попап */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 60rem;
  z-index: 100;
  background: rgba(109, 80, 133, 0.5);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup {
  width: 100%;
  max-width: 500rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding: 25rem;
  background: #FFFCF7;
  box-shadow: 17rem 4rem 26rem rgba(58, 26, 85, 0.4);
  border-radius: 20rem;
  position: relative;
}

.popup__close {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  width: 40rem;
  height: 40rem;
  z-index: 2;
  background-color: #8A56B7;
  border-radius: 50rem;
  cursor: pointer;
}

.popup__close img {
  width: 20rem;
}

.popup__title {
  text-transform: uppercase;
  font-size: 26rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.29;
  margin-bottom: 25rem;
}

.popup__title span {
  color: #ED720A;
}

.popup__inp {
  display: block;
  width: 100%;
  padding: 10rem 30rem;
  box-sizing: border-box;
  border: 2rem solid #000000;
  border-radius: 10rem;
  margin-bottom: 20rem;
  font-size: 17rem;
}

.popup__submit {
  width: 100%;
  /* max-width: 200rem; */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20rem;
  padding: 16rem 0;
  font-size: 18rem;
}

.popup__time {
  text-align: center;
  color: #777779;
  font-size: 16rem;
  line-height: 1.36;
}

/* / Попап */

/* Шапка */

.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding-top: 50rem;
  z-index: 10;
}

.header .wrapper{
    /* max-width: 1500rem; */
}

.wrapper{
    max-width: 1530rem;
}

.free__text{
    font-size: 25rem;
    /* line-height: 40rem; */
    line-height: 36rem;
    letter-spacing: 0.005em;
}

.header__logo {
  max-width: 320rem;
}

.header__logo img {
  display: block;
}

.header__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.header__phone {
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.header__phone img {
  margin-right: 14rem;
}

/* / Шапка */

/* Hero */

.hero {
  /* padding-top: 145rem; */
  padding-top: 235rem;
  padding-bottom: 190rem;
  position: relative;
}

.hero__decoration{
    position: absolute;
}

.hero__decoration--left{
    top: 0;
    left: 0;
    width: 381.97rem;
    height: 1050rem;
}

.hero__decoration--right{
    top: 0;
    right: 0;
    
    width: 897.5rem;
    height: 884rem;
}

.hero__decoration--wrapped{
    top: -81rem;
    right: -119rem;
/*     top: -45rem;
right: -333rem; */
    width: 705.31rem;
    height: 904.02rem;
}

.hero__decoration--right-mobile{
    display: none;
    width: 269rem;
    height: 351rem;
    top: 0;
    right: 0;
}
.hero__decoration--wrapped-mobile{
    display: none;
    width: 586.06rem;
    height: 440.55rem;
    top: -42rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero .wrapper{
    position: relative;
    max-width: 1500rem;
}

.hero__bg-mob {
  display: none;
}

.hero__bg {
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  width: 806rem;
}

.hero__title {
  /* font-size: 50rem; */
  font-size: 63rem;
  line-height: 76rem;
  /* line-height: 1.2; */
  margin-bottom: 30rem;
}

.hero__text {
  /* max-width: 720rem; */
  max-width: 895rem;
}

.hero__descr {
  max-width: 850rem;
  /* font-size: 20rem; */
  font-size: 28rem;
  line-height: 35rem;
  margin-bottom: 63rem;
}

.hero .timer {
  margin-bottom: 80rem;
}

.timer {
  color: #9E6DC8;
  display: inline-block;
  text-align: center;
}

.timer__title {
  font-weight: 600;
  font-size: 18rem;
  margin-bottom: 32rem;
}

.timer__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
}

.timer__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.timer__item:not(:last-child) {
  margin-right: 20rem;
}

.timer__item:not(:last-child) .timer__val {
  position: relative;
}

.timer__item:not(:last-child) .timer__val::before {
  content: ':';
  position: absolute;
  left: calc(100% + 12rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.timer__item:not(:first-child) {
  margin-left: 20rem;
}

.timer__val {
  font-size: 60rem;
  line-height: 1;
  margin-bottom: 13rem;
}

.timer__descr {
  font-size: 15rem;
  text-align: center;
}

/* / Hero */

/* Нужен */

.need {
  padding-bottom: 280rem;
  padding-top: 40rem;
  position: relative;
}

.need-swiper {
  overflow: unset;
}

.need__slider .swiper-wrapper {
  margin-bottom: 40rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.need__title {
  margin-bottom: 150rem;
}

.need__item {
  position: relative;
  padding-left: 85rem;
  box-sizing: border-box;
}

.need__item:not(:last-child) {
  margin-bottom: 50rem;
}

.need__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 60rem;
  height: 60rem;
  border-radius: 50rem;
  background-color: #ED720A;
  z-index: -1;
}

.need__item::after {
  content: '';
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20rem;
  width: 22rem;
  height: 14rem;
  background-image: url('../img/icons/need-arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}

.need__img {
  position: absolute;
  right: 0;
  top: 60%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 60vw;
}

.need-pagination.swiper-pagination-bullets {
  position: absolute;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  bottom: -40rem;
  display: none;
}

.need-btn-prev,
.need-btn-next {
  display: none;
}

.need-pagination-bullet {
  display: inline-block;
  width: 8rem;
  height: 8rem;
  border: 1rem solid #ED720A;
  border-radius: 50rem;
  margin-left: 2rem;
  margin-right: 2rem;
  cursor: pointer;
}

.need-pagination-bullet-active {
  background-color: #ED720A;
}

/* / Нужен */

/* Важно */

.imp {
  position: relative;
  padding-top: 90rem;
  padding-bottom: 20rem;
}

.imp__slider {
  position: relative;
}

.imp__design {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -140rem;
  width: 1920rem;
  max-width: unset;
}
.imp__design{
    /* width: 100%; */
    /* bottom: -205rem; */
}


.imp__girl {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0rem;
  width: calc(100% / 12 * 3.8);
}

.imp__title {
  max-width: 870rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20rem;
}

.imp__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 40rem;
}

.imp__item:nth-child(2n) {
  -webkit-box-pack: end;
  -webkit-justify-content: end;
          justify-content: end;
}

.imp__name {
  font-size: 33rem;
  line-height: 45rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 13rem;
  text-align: center;
}

.imp-swiper {
  padding-bottom: 2rem;
}

.imp-swiper .swiper-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.imp__item {
  /* width: calc(100% / 12 * 4.01); */
  width: 511rem;
}

.imp__in {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.imp__in p{
    font-size: 21rem;
    line-height: 33rem;
}

.imp__in img {
  height: 140rem;
  margin-bottom: 30rem;
  opacity: 0.8;
  height: 100rem;
}

.imp-btn-next {
  display: none;
}

.imp-pagination.swiper-pagination-fraction {
  position: absolute;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  bottom: 0;
  display: none;
}

.imp-pagination-bullet {
  display: inline-block;
  width: 8rem;
  height: 8rem;
  border: 1rem solid #ED720A;
  border-radius: 50rem;
  margin-left: 2rem;
  margin-right: 2rem;
  cursor: pointer;
}

.imp-pagination-bullet-active {
  background-color: #ED720A;
}

.imp-pagination .swiper-pagination-current {
  font-weight: 700;
  color: #ED720A;
}

.imp__num {
  position: absolute;
  left: 20rem;
  top: 20rem;
  font-size: 20rem;
  color: #ED720A;
  display: none;
}

/* / Важно */

/* Проблемы */

.problem {
  padding-top: 250rem;
  margin-bottom: 100rem;
  position: relative;
}

.problem__title {
  /* max-width: 900rem; */
  max-width: 1150rem;
  margin-left: auto;
  margin-right: auto;
  /* margin-bottom: 65rem; */
  margin-bottom: 85rem;
}

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

.problem__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 37rem;
}

.problem__slider {
  box-sizing: border-box;
  padding-left: 70rem;
  width: 50%;
  max-width: 722rem;
  margin-left: auto;
}

.problem__img {
  position: absolute;
  right: calc(50% - 66rem);
  bottom: 0;
  width: 1000rem;
  max-width: 70vw;
  
/*   bottom: -61rem; */
}

.problem__content {
  position: relative;
}

.problem__descr {
  position: absolute;
  top: -30rem;
  left: 24%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 377rem;
  z-index: 2;
  text-align: center;
  
    top: -10rem;
    font-size: 23rem;
    line-height: 40rem;
    max-width: 450rem;
}

.problem__num {
  width: 70rem;
  height: 70rem;
  border-radius: 50rem;
  box-sizing: border-box;
  border: 4rem solid #ED720A;
  color: #ED720A;
  -webkit-flex-shrink: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  font-size: 55rem;
  font-weight: 600;
  margin-right: 16rem;
}

.problem-pagination.swiper-pagination-bullets {
  position: absolute;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  bottom: -25rem;
  display: none;
}

.problem-btn-prev,
.problem-btn-next {
  display: none;
}

.problem-pagination-bullet {
  display: inline-block;
  width: 8rem;
  height: 8rem;
  border: 1rem solid #ED720A;
  border-radius: 50rem;
  margin-left: 2rem;
  margin-right: 2rem;
  cursor: pointer;
}

.problem-pagination-bullet-active {
  background-color: #ED720A;
}

/* / Проблемы */

/* Бесплатный */

.free {
    position: relative;
  margin-bottom: 70rem;
}

.free__title {
  max-width: 1200rem;
  margin-left: auto;
  margin-right: auto;
  /* margin-bottom: 85rem; */
  margin-bottom: 100rem;
}

.free__content {
  /* position: relative; */
  /* max-width: 50%; */
  max-width: 810rem;
}

.free__img {
  position: absolute;
  /* left: calc(100% + 60rem);
  top: 0;
  height: 100%;
  width: 800rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center; */
     
    right: 0;
    top: 300rem;
    width: 838rem;
    height: 559rem;
}

/* / Бесплатный */

/* Места */

.place {
  margin-bottom: 70rem;
}

.place .wrapper{
    max-width: 1560rem;
}

.place__content {
  position: relative;
}

.place__content::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 50rem;
  /* width: calc(((100% - 950rem) / 2) - 40rem); */
  
  width: 276rem;
  height: 238rem;
  bottom: 100rem;
  
  /* height: 383rem; */
  background-image: url('../img/icons/place-icon-2.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  
  
}

.place__content::after {
  content: '';
  position: absolute;
  left: calc(((100% - (100% - 950rem)) / 2) + 770rem);
  top: 20rem;
  width: calc(((100% - 950rem) / 2) - 40rem);
  height: 383rem;
  
  top: 10rem;
  left: unset;
  right: 0;
  /* width: 128rem; */
  width: 265rem;
  height: 360rem;
  
  background-image: url('../img/icons/place-icon-1.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.place__main {
  /* width: 740rem; */
  width: 950rem;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: -webkit-linear-gradient(0.02deg, #E6BFFF 0.02%, rgba(235, 208, 253, 0) 144.67%);
  background: linear-gradient(89.98deg, #E6BFFF 0.02%, rgba(235, 208, 253, 0) 144.67%);
  border-radius: 49rem;
  box-sizing: border-box;
  padding: 55rem 45rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.place__title {
  max-width: 580rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight: 400;
  margin-bottom: 26rem;
  line-height: 1.3;
  
    max-width: 681rem;
    font-size: 48rem;
    line-height: 66rem;
    margin-bottom: 40rem;
}

.place__text {
  text-align: center;
  margin-bottom: 30rem;
  
    font-size: 23rem;
    line-height: 40rem;
    margin-bottom: 70px;
}

/* / Места */

/* Дни */

.step {
  margin-bottom: 40rem;
}

.step__title {
  /* max-width: 1020rem; */
  max-width: 1150rem;
  margin-left: auto;
  margin-right: auto;
  /* margin-bottom: 40rem; */
  margin-bottom: 60rem;
  position: relative;
}

.step__title::after {
  content: '';
  position: absolute;
  right: calc(50% + 210rem);
  top: 96%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50rem;
  height: 52rem;
  background-image: url('../img/icons/step-arrow-left.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.step__title::before {
  content: '';
  position: absolute;
  left: calc(50% + 210rem);
  top: 96%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50rem;
  height: 52rem;
  background-image: url('../img/icons/step-arrow-right.svg');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.step__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.step__day {
  font-size: 40rem;
  font-weight: 700;
  margin-bottom: 10rem;
}

.step__topic {
  font-weight: 600;
  line-height: 1.2;
  max-width: 468rem;
  margin-bottom: 30rem;
}

.step__subtitle {
  text-align: left;
  width: 100%;
  max-width: 560rem;
  font-weight: 600;
  margin-bottom: 10rem;
}

.step__col {
  width: calc(50% - 60rem);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.step__col:first-child .step__in {
  border: 5rem solid #ED720A;
}

.step__col:last-child .step__in {
  border: 5rem solid #9E6DC8;
}

.step__text {
  /* font-size: 21rem; */
  font-size: 23rem;
  line-height: 33rem;
}

.step__in {
  padding: 33rem;
  box-sizing: border-box;
  border-radius: 49rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  margin-bottom: 40rem;
}

.step-btn-next {
  display: none;
}

.step__list {
  text-align: left;
  width: 100%;
  max-width: 560rem;
  font-size: 20rem;
  line-height: 1.3;
}

.step__list li {
  position: relative;
  padding-left: 45rem;
}

.step__list li:not(:last-child) {
  margin-bottom: 20rem;
}

.step__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.step__col.swiper-slide {
  height: unset;
}

.step__col:first-child .step__text {
  text-align: left;
  max-width: 665rem;
}

.step__col:last-child .step__text {
    text-align: right;
    max-width: 679rem;
}

.step__col:first-child .step__in {
  position: relative;
}

.step__col:first-child .step__in::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 230rem;
  height: 100%;
  background-image: url('../img/how-day-1.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.step__col:last-child .step__in {
  position: relative;
}

.step__col:last-child .step__in::after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20rem;
  width: calc(100% - 50rem);
  height: 198rem;
  background-image: url('../img/how-day-2.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}

.step__col:first-child .step__list li::before {
  border-left: 14rem solid transparent;
  border-right: 14rem solid transparent;
  border-bottom: 24rem solid #ED720A;
}

.step__col:last-child .step__list li::before {
  width: 25rem;
  height: 25rem;
  border-radius: 50rem;
  background-color: #9E6DC8;
}

.step-pagination.swiper-pagination-fraction {
  position: absolute;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  bottom: 0;
  display: none;
}

.step-pagination .swiper-pagination-current {
  font-weight: 700;
  color: #ED720A;
}

/* / Дни */

/* Научитесь */

.learn {
  position: relative;
  padding: 178rem 0;
}

.learn__cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  margin-bottom: 52rem;
}

.learn__title {
  margin-bottom: 40rem;
  max-width: 1050rem;
  
    margin-bottom: 20rem;
    max-width: 1150rem;
  
  margin-left: auto;
  margin-right: auto;
}

.learn__col {
  width: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.learn__col img {
  margin-bottom: 20rem;
  width: auto;
  height: 100rem;
}

.learn__btn {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50rem;
}

.learn__txt * {
  font-weight: 700;
  text-transform: uppercase;
}

.learn__txt{
    font-size: 27rem;
    line-height: 43rem;
}

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

.learn__row2 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

/* / Научитесь */

/* Преподы */

.spec {
  padding-top: 45rem;
}

.spec__title {
  margin-bottom: 50rem;
  max-width: 1080rem;
  
  max-width: 1450rem;
  
  margin-left: auto;
  margin-right: auto;
}

.spec__cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  max-width: 1300rem;
  margin-left: auto;
  margin-right: auto;
}

.spec__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  width: calc(100% / 12 * 4);
  max-width: 380rem;
}

.spec__col img {
  margin-bottom: 20rem;
  height: 75rem;
}

.spec__text {
  text-align: center;
  line-height: 1.4;
  
    font-size: 21rem;
    line-height: 32rem;
}

.spec__text * {
  display: block;
}

.spec__img {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
}

/* / Преподы */

/* Миссия */

.mission {
  position: relative;
  padding-top: 30rem;
  padding-bottom: 150rem;
  margin-bottom: 20rem;
}

.mission__title {
  max-width: 1250rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50rem;
}

.mission__cols {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
          justify-content: space-between;
}

.mission__col {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
  max-width: 340rem;
  text-align: center;
}

.mission__percent {
  font-size: 32rem;
  color: #ED720A;
  font-weight: 700;
  line-height: 1;
}

.mission__name {
  font-size: 32rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 25rem;
}

.mission__txt {
  line-height: 1.2;
  
    font-size: 23rem;
    line-height: 29rem;
}

.mission__row {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.mission-pagination.swiper-pagination-bullets {
  position: absolute;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  bottom: -25rem;
  display: none;
}

.mission-btn-prev,
.mission-btn-next {
  display: none;
}

.mission-pagination-bullet {
  display: inline-block;
  width: 8rem;
  height: 8rem;
  border: 1rem solid #ED720A;
  border-radius: 50rem;
  margin-left: 2rem;
  margin-right: 2rem;
  cursor: pointer;
}

.mission-pagination-bullet-active {
  background-color: #ED720A;
}

/* / Миссия */

/* Карта */

.map__content {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.map__map {
  width: 50%;
}

.map__map img {
  width: calc(100% - 20rem);
}

.map__text {
  width: 50%;
}

.map__title {
  font-size: 36rem;
  font-weight: 700;
  margin-bottom: 40rem;
}

.map__descr {
  margin-bottom: 30rem;
}

/* / Карта */

/* Записаться */

.enroll {
  position: relative;
  padding-top: 80rem;
  padding-bottom: 70rem;
}

.enroll__recall {
  display: none;
}

.enroll__title span {
  display: block;
}

.enroll__girl {
  position: absolute;
  left: -5rem;
/*   top: 50%;
-webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
        transform: translateY(-50%); */
  /* max-width: 33vw; */
  
  top: 50rem;
  width: 728rem;
  height: 761rem;
  object-fit: contain;
}

.enroll__timer {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
          align-items: center;
}

.enroll__timer img {
  margin-bottom: 30rem;
}

.enroll__content {
  position: relative;
}

.enroll__title {
  text-transform: uppercase;
  max-width: 800rem;
  margin-bottom: 80rem;
  margin-left: auto;
  margin-right: auto;
  
  margin-bottom: 100rem;
}

.enroll__form {
  width: 100%;
  max-width: 500rem;
  margin-left: auto;
  margin-right: auto;
}

.enroll__inp {
  font-size: 22rem;
  padding: 20rem 50rem;
  border: 2rem solid #000000;
  background-color: #fff;
  border-radius: 10rem;
  margin-bottom: 30rem;
  box-sizing: border-box;
  width: 100%;
}

.enroll__submit {
  max-width: unset;
  margin-top: 15rem;
  width: 100%;
}

/* / Записаться */

.hero__title br{
 display: none;   
}

.free__more{
    display: none;
}

@media screen and (max-width: 1400px) {
    html {
        font-size: 0.05208vw;
        overflow-x: hidden;
    }
    
    .free__img{
        top: 231rem;
    }

  body {
    font-size: 20rem;
  }

  .section-title {
    font-size: 35rem;
  }

  .header {
    padding-top: 30rem;
  }

  .header__logo {
    max-width: 220rem;
  }

  .timer__title {
    font-size: 16rem;
  }

  .timer__val {
    font-size: 45rem;
  }

  .timer__descr {
    font-size: 14rem;
  }

  .hero__bg {
    max-width: 60%;
  }

  .hero__text {
    max-width: 650rem;
  }

  .hero__title {
    font-size: 45rem;
  }

  .hero__descr {
    font-size: 20rem;
    max-width: 620rem;
  }

  .primary-btn {
    max-width: 400rem;
    font-size: 20rem;
    padding: 25rem 0;
  }

  .popup__submit {
    padding: 16rem 0;
    max-width: 200rem;
  }

  .need__ttile {
    margin-bottom: 100rem;
  }

  .need__item {
    padding-left: 75rem;
  }

  .need__item:not(:last-child) {
    margin-bottom: 50rem;
  }

  .need__item::before {
    width: 55rem;
    height: 55rem;
  }

  .need__item::after {
    width: 25rem;
    height: 15rem;
    left: 28rem;
    -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }

  .imp {
    padding-top: 0;
  }

  .imp__name {
    font-size: 24rem;
  }

  .place__content::after {
    /* left: calc(((100% - (100% - 700rem)) / 2) + 770rem); */
    /* width: calc(((100% - 800rem) / 2) - 40rem); */
  }

  .place__content::before {
    /* width: calc(((100% - 800rem) / 2) - 40rem); */
  }

  .place__main {
    /* width: 700rem; */
  }

  .step__col {
    /* width: calc(50% - 15rem); */
  }

  .problem {
    /* padding-top: 100rem; */
  }
  
  .step__col:last-child .step__text{
      margin-left: auto;
  }
  
  .learn__title{
      margin-bottom: 60rem;
  }
  .learn__cols{
    max-width: 1000rem;
    margin: 0 auto;
    margin-bottom: 60rem;
  }
  .learn__txt{
      max-width: 473rem;
      text-align: center;
  }
  .mission{
    padding-top: 90rem;
    padding-bottom: 210rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 1150px) {
    html {
        font-size: 0.06208vw;
    }
    
    .hero .wrapper{
        max-width: 1150rem;
    }
    .wrapper{
        max-width: 1150rem;
    }
    
  body {
    font-size: 18rem;
  }

  .imp__design {
    display: none;
  }

  .imp__in img {
    height: 80rem;
  }

  .imp__name {
    font-size: 22rem;
  }

  .imp-swiper .swiper-wrapper {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }

  .imp__item {
    /* width: calc(50% - 15rem); */
  }
  
  .problem{
      padding-top: 60rem;
  }

  .imp__girl {
    display: none;
  }
  
  .imp__name{
      font-weight: 600;
  }
  .imp__in p{
      text-align: center;
  }
  .imp__item{
      margin-bottom: 80rem;
  }
  .section-title{
      margin-bottom: 60rem;
  }

  .problem__title {
    margin-bottom: 35rem;
  }

  .problem__descr {
    position: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30rem;
  }

  .problem__img {
    position: unset;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    margin-top: -180rem;
  }

  .problem__slider {
    margin-right: auto;
  }

  .place__content::after {
    display: none;
  }

  .place__content::before {
    display: none;
  }

  .place__main {
    padding: 50rem 65rem;
    width: 100%;
    max-width: 700rem;
  }

  .place__text {
    margin-bottom: 35rem;
  }

  .step {
    overflow: hidden;
  }

  .step__text {
    text-align: center !important;
    font-size: inherit;
  }

  .step__slider {
    position: relative;
  }

  .step-swiper {
    overflow: visible;
    width: calc(100% - 20rem);
  }

  .step-swiper .swiper-wrapper {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
            justify-content: unset;
  }

  .step__item {
    background-color: #FFF8EC;
    box-sizing: border-box;
  }

  .step__slider {
    padding-bottom: 80rem;
  }

  .step__in {
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
    position: relative;
  }

  .step-pagination.swiper-pagination-fraction {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }

  .step-btn-next {
    display: block;
    position: absolute;
    left: calc(50% + 20rem);
    bottom: 5rem;
  }

  .step-btn-next img {
    width: 20rem;
  }

  .step__num {
    display: block;
  }

  .step__col:first-child .step__in::after {
    top: -45rem;
    width: 100%;
    height: 180rem;
    background-image: url('../img/icons/how-day-1-mob.svg');
  }

  .step__col:last-child .step__in::after {
    top: -10rem;
    width: calc(100% - 66rem);
    height: 180rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background-image: url('../img/icons/how-day-2-mob.svg');
  }

  .learn__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .learn__col {
    width: 100%;
    text-align: center;
    margin-bottom: 30rem;
  }

  .learn__cols {
    margin-bottom: 0;
  }

  .spec__cols {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }

  .spec__col {
    width: calc(100% / 12 * 4 - 30rem);
  }

  .spec__col img {
    height: 85rem;
  }

  .mission {
    padding-bottom: 100rem;
  }

  .mission__cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .mission__col {
    margin-bottom: 40rem;
  }

  .enroll__girl {
    display: none;
  }

  .enroll__form {
    margin-bottom: 30rem;
  }

  .enroll__submit {
    margin-left: auto;
    margin-right: auto;
  }

  .enroll__timer {
    position: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
  }

  .enroll__timer img {
    max-width: 170rem;
  }
  
  .problem__descr{
      max-width: 850rem;
      margin-bottom: 60rem;
  }
  
  .problem__slider{
    margin-right: auto;
    width: 100%;
    padding: 0;
    max-width: unset;
  }
  
  .problem-swiper .swiper-wrapper{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .problem__item{
      width: 48%;
  }
  
  .free__img{
      display: none;
  }
  
  .free__content{
      max-width: unset;
  }
  
  .place__main{
      max-width: 1100rem;
  }
  .step__col .step__text{
      max-width: 900rem;
      margin: 0 auto;
      text-align: center;
  }
  .step__in{
      min-height: 600rem;
  }
  
  .step__col:last-child .step__in::after{
      top: 10rem;
      height: 140rem;
  }
  .step__day{
      margin-bottom: 40rem;
  }
  
  .learn__cols{
      flex-direction: row;
      justify-content: space-between;
  }
  .learn__col{
      width: 48%;
      margin-bottom: 60rem;
  }
  
  .learn{
      padding-top: 140rem;
      padding-bottom: 140rem;
  }
  
  .mission__cols{
      flex-direction: row;
  }
  .mission{
      padding-bottom: 160rem;
  }
  .section-title{
      margin-bottom: 80rem;
  }
}

@media screen and (max-width: 850px) {
    .hero__decoration--left,
    .hero__decoration--right,
    .hero__decoration--wrapped{
        display: none;
    }
    
    html {
        /* font-size: 0.11908vw; */
        /* font-size: 0.21908vw; */
        font-size: 0.20808vw;
    }
    
    .hero .wrapper{
        /* max-width: 450rem; */
    }
    
    .wrapper{
        /* max-width: 450rem; */
        
        max-width: 485rem;
        box-sizing: border-box;
        padding-left: 50rem;
        padding-right: 50rem;
    }
    
    .header .wrapper{
        max-width: 480rem;
        padding-left: 20rem;
        padding-right: 20rem;
    }
    

  body {
    font-size: 16rem;
  }

  .header {
    padding-top: 15rem;
  }

  .popup {
    width: calc(100% - 30rem);
  }

  .hero {
    text-align: center;
    padding-top: 180rem;
    padding-bottom: 100rem;
  }

  .hero__text {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__title {
    font-size: 30rem;
  }

  .hero__descr {
    font-size: 16rem;
    margin-bottom: 35rem;
  }

  .hero .timer {
    margin-bottom: 30rem;
  }

  .hero__btn {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__bg {
    display: none;
  }

  .hero__bg-mob {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
  }

  .imp {
    overflow: hidden;
  }

  .imp-swiper {
    overflow: visible;
  }

  .imp-swiper .swiper-wrapper {
    -webkit-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
            justify-content: unset;
  }

  .imp__item {
    background-color: #FFF8EC;
    box-sizing: border-box;
  }

  .imp__slider {
    padding-bottom: 80rem;
  }

  .imp__in {
    max-width: 100%;
    box-sizing: border-box;
    width: 100%;
    border: 1rem solid #ED720A;
    border-radius: 10rem;
    padding: 20rem;
  }

  .imp-pagination.swiper-pagination-fraction {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }

  .imp-btn-next {
    display: block;
    position: absolute;
    left: calc(50% + 20rem);
    bottom: 5rem;
  }

  .imp-btn-next img {
    width: 20rem;
  }

  .imp__num {
    display: block;
  }

  .problem__title {
    margin-bottom: 35rem;
  }

  .problem__descr {
    position: unset;
    -webkit-transform: unset;
        -ms-transform: unset;
            transform: unset;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30rem;
  }

  .problem__item {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .problem__img {
    position: unset;
    max-width: 100%;
  }

  .problem__slider {
    max-width: unset;
    position: relative;
    padding-left: 30rem;
    padding-right: 30rem;
    width: unset;
  }

  .problem-swiper .swiper-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
            flex-direction: row;
  }

  .problem-pagination.swiper-pagination-bullets {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
  }

  .problem-btn-prev,
  .problem-btn-next {
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 12rem;
    z-index: 10;
    cursor: pointer;
    background-color: #fff;
  }

  .problem-btn-prev {
    left: 0;
  }

  .problem-btn-next {
    right: 0;
  }

  .problem__num {
    width: 72rem;
    height: 72rem;
    font-size: 72rem;
    margin-bottom: 10rem;
  }

  .free__title {
    margin-bottom: 40rem;
  }

  .free__content {
    width: 100%;
    max-width: 100%;
  }

  .free__text {
    margin-bottom: 40rem;
  }

  .free__img {
    position: unset;
  }

  .spec__cols {
    -webkit-box-pack: unset;
    -webkit-justify-content: unset;
            justify-content: unset;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
            align-items: center;
  }

  .spec__col {
    width: 100%;
    margin-bottom: 30rem;
  }

  .map__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }

  .map__map,
  .map__text {
    max-width: unset;
    width: unset;
  }

  .map__text {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
            order: -1;
    margin-bottom: 30rem;
    padding-top: 25rem;
  }

  .map__title {
    font-size: 22rem;
    margin-bottom: 20rem;
    line-height: 1.2;
  }

  .map__descr {
    margin-bottom: 15rem;
  }

  .step__title::before,
  .step__title::after {
    display: none;
  }
  
  .hero__title{
      font-size: 39rem;
      line-height: 48rem;
      max-width: 383rem;
      margin: 0 auto;
      margin-bottom: 120rem;
  }
  
    .hero__title br{
        display: inline-block;
    }
  
  .hero__descr{
      font-size: 20rem;
      line-height: 30rem;
      max-width: 351rem;
      margin: 0 auto;
      margin-bottom: 33rem;
  }
  .timer__title{
      font-size: 18rem;
      margin-bottom: 25rem;
  }
  
  .hero .timer{
      margin-bottom: 50rem;
  }
  
    .hero__decoration--right-mobile{
        display: block;
        z-index: -1;
    }
    .hero__decoration--wrapped-mobile{
        display: block;
        z-index: -1;
    }
    
    .header__logo{
        max-width: unset;
        width: 135rem;
        height: 31.32rem;
    }
    .header__phone{
        font-size: 18rem;
    }
    .header__phone img{
        width: 16rem;
        height: 16rem;
    }
    
    .hero{
        padding-top: 100rem;
    }
    
    .section-title{
        /* font-size: 30rem; */
        font-size: 26rem;
        line-height: 34rem;
        margin-bottom: 0;
    }
    .problem .section-title{
        margin-bottom: 25rem;
    }
    .problem{
        padding-top: 40rem;
    }
    .imp__slider{
        margin-top: 80rem;
        padding-bottom: 40rem;
    }
    .imp{
        padding-bottom: 0rem;
    }
    .imp__in{
        min-height: 465rem;
    }
    .imp__name{
        line-height: 35rem;
    }
    
    .problem__descr{
        font-size: 18rem;
        max-width: unset;
        line-height: 23rem;
        margin-bottom: 20rem;
    }
    
    .problem-swiper .swiper-wrapper{
        flex-wrap: nowrap;
    }
    .problem__slider{
        height: 250rem;
        display: flex;
        align-items: center;
    }
    .problem__text{
        font-size: 17rem;
        line-height: 25rem;
        text-align: center;
        letter-spacing: auto;
    }
    .problem__img{
        margin-top: 0;            
    }
    
    .free .section-title{
        margin-bottom: 20rem;
    }
    
    .free__text{
        font-size: 18rem;
        line-height: 25rem;
    }
    
    .place__main{
        max-width: unset;
        padding: 30rem;
    }
    
    .place__title{
        font-size: 26rem;
        line-height: 40rem;
        margin-bottom: 30rem;
    }
    .place__title br{
        display: none;
    }
    
    .place__text{
        font-size: 18rem;
        line-height: 25rem;
        margin-bottom: 40rem;
    }
    
    .primary-btn{
        font-size: 18rem;
        line-height: 22rem;
        height: 76rem;
    }
    
    .place .wrapper{
        max-width: 485rem;
        padding-left: 20rem;
        padding-right: 20rem;
    }
    
    .step__title{
        margin-bottom: 30rem;
    }
    
    .step .wrapper{
        padding-left: 15rem;
        padding-right: 15rem;
    }
    
    .learn{
        padding-bottom: 61rem;
    }
    
    .learn__title{
        margin-bottom: 40rem;
    }
    
    .learn .wrapper{
        padding-left: 15rem;
        padding-right: 15rem;
    }
    
    .learn__cols{
        flex-wrap: wrap;
    }
    
    .learn__col{
        width: 100%;
    }
    
    .mission__title{
        margin-bottom: 40rem;
    }
    
    .mission .wrapper{
        padding-left: 15rem;
        padding-right: 15rem;       
    }
    
    .mission__col{
        max-width: unset;
    }
    .mission{
        padding-bottom: 50rem;
    }
    
    .enroll__title{
        margin-bottom: 30rem;
    }
    
    .popup .primary-btn{
        max-width: unset;
        width: 100%;
        height: 70rem;
    }
    
    .popup{
        width: 380rem;
    }
    
    .popup__time{
        /* margin-top: 80rem; */
    }

}