:root {
  --font-current: "Roboto", sans-serif;
  --font-title: "Advent Pro", sans-serif;
  --padding-side: 20px;
  --current-color: #262222;
  --btn-color: #fff;
  --link-color: #faacac;
  --assent-color: #FF3131;
  --outline-color: #FF3131;
  --old-color: #7D7A7A;
  --background-color: #FFF4F4;
  --border-radius-big: 3em;
  --border-radius-medium: 1.5em;
  --border-radius-small: .25em;
  --yt-color: #D8362A;
  --yt-color-dark: #b12016;
  --border-color: #dadff6;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-current);
  font-size: 20px;
  line-height: 1.5;
  color: var(--current-color);
  overflow-x: hidden;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  position: relative;
}

.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;
}

.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* HEADER */
.header {
  padding-top: 18px;
  padding-bottom: 14px;
}

.header__logo {
  display: block;
  padding-top: 1em;
  padding-bottom: 1em;
}

.header__logo span {
  color: var(--assent-color);
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
  list-style: none;
}

.header__list-link {
  font-family: var(--font-current);
  font-weight: 400;
  font-size: 0.9em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--current-color);
  white-space: nowrap;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.header__list-link:active,
.header__list-link:focus,
.header__list-link:hover {
  color: var(--assent-color);
}

/* block */
.flex-cen {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.marb05 {
  margin-bottom: 0.5em;
}

.block-title {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 2em;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.title-section {
  position: relative;
  font-family: var(--font-title);
  color: var(--current-color);
  font-weight: 700;
  font-size: 2.5em;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin: 0;
}

.title-section span {
  color: var(--assent-color);
}

.position-rel {
  position: relative;
}

.list-block {
  list-style: none;
}

.background-text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 5.5em;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: absolute;
  color: var(--background-color);
  z-index: -1;
  left: -0.6em;
  top: -0.4em;
}

/* HERO */
.hero {
  margin-top: 2.25em;
  margin-bottom: 2.25em;
}

.hero__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.right-block {
  height: 100%;
  position: relative;
  width: 40%;
}

.right-block img {
  border-radius: var(--border-radius-medium);
  mix-blend-mode: multiply;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
}

.animation {
  position: absolute;
  width: 1em;
  height: 1em;
  left: 50%;
  bottom: 26%;
  border-radius: 200px;
  background-color: var(--assent-color);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-animation: shadow 0.8s infinite linear;
          animation: shadow 0.8s infinite linear;
  outline: 2px solid var(--assent-color);
  outline-offset: 0.5em;
}

@-webkit-keyframes shadow {
  0% {
    -webkit-box-shadow: 0 0 10px 0px tomato, 0 0 10px 0px tomato;
            box-shadow: 0 0 10px 0px tomato, 0 0 10px 0px tomato;
  }
  100% {
    -webkit-box-shadow: 0 0 30px 12px rgba(255, 48, 26, 0), 0 0 4px 50px rgba(255, 48, 26, 0);
            box-shadow: 0 0 30px 12px rgba(255, 48, 26, 0), 0 0 4px 50px rgba(255, 48, 26, 0);
  }
}

@keyframes shadow {
  0% {
    -webkit-box-shadow: 0 0 10px 0px tomato, 0 0 10px 0px tomato;
            box-shadow: 0 0 10px 0px tomato, 0 0 10px 0px tomato;
  }
  100% {
    -webkit-box-shadow: 0 0 30px 12px rgba(255, 48, 26, 0), 0 0 4px 50px rgba(255, 48, 26, 0);
            box-shadow: 0 0 30px 12px rgba(255, 48, 26, 0), 0 0 4px 50px rgba(255, 48, 26, 0);
  }
}
.hero__background-text {
  font-family: var(--font-title);
  white-space: nowrap;
  font-weight: 700;
  font-size: 10em;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  position: absolute;
  color: #FEF5F3;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.left-block {
  max-width: 568px;
}

.hero__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  margin-bottom: 0.5em;
}

.hero__course {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  color: var(--assent-color);
  padding: 3px 15px 4px 15px;
  border: 2px solid var(--assent-color);
  border-radius: 3em;
  white-space: nowrap;
}

.hero__title {
  font-family: var(--font-title);
  font-size: 4.5em;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero__title span {
  color: var(--assent-color);
}

.hero__subtitle {
  font-family: var(--font-title);
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2em;
  margin-bottom: 0.85em;
}

.hero__info {
  border-left: 3px solid var(--assent-color);
  border-radius: 3px;
}

.hero__info-text {
  font-weight: 400;
  font-size: 1em;
  line-height: 1.3;
  color: var(--current-color);
  padding-left: 0.9em;
  margin-bottom: 1.7em;
}

.hero__question {
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.5;
  margin-bottom: 1.8em;
}

.hero__info-text span {
  font-size: 1.2em;
  font-weight: 500;
}

/* button */
.btn-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}

.btn-block__btn {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 0.9em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--btn-color);
  background-color: var(--assent-color);
  border-radius: var(--border-radius-big);
  padding: 15px 30px 15px 30px;
  white-space: nowrap;
  cursor: pointer;
  outline-color: transparent;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.btn-block__btn:hover,
.btn-block__btn:focus,
.btn-block__btn:active {
  outline: 2px solid var(--assent-color);
  outline-offset: 0.25em;
}

.btn-block__time {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 600;
  color: var(--current-color-color);
  margin-bottom: 0.25em;
  margin-left: 0.25em;
  /* padding: 3px 15px 4px 15px; */
  /* border: 2px solid var(--assent-color); */
  /* border-radius: 3em; */
}

.btn-block__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  gap: 0.15em;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 1.2;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  color: var(--assent-color);
}

.btn-block__price-old {
  color: var(--old-color);
  font-weight: 400;
  font-size: 0.75em;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-decoration: line-through;
}

/* num-stat */
.num-stat {
  margin-bottom: 3.5em;
}

.num-stat__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}

.num-stat__item {
  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;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-preferred-size: 250px;
      flex-basis: 250px;
  /* max-width: 270px; */
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 100%;
  padding: 1.5em;
}

.num-stat__title {
  font-weight: 700;
  font-size: 1.8em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.num-stat__text {
  margin: 0;
  font-weight: 400;
  font-size: 0.8em;
  line-height: 1.5;
  color: var(--current-color);
}

/* reflections */
.reflections-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2em;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reflections-block__left {
  border-radius: var(--border-radius-medium);
  max-width: 530px;
  width: 100%;
  height: 395px;
  overflow: hidden;
}

.reflections-block__left img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.reflections-block__right {
  max-width: 580px;
  width: 100%;
}

.block-text__list {
  padding-left: 0;
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.5;
  list-style: none;
  margin-bottom: 0;
}

.block-text__item span {
  font-weight: 700;
}

.block-text__item:not(:first-child) {
  margin-top: 15px;
}

/* intended */
.intended {
  margin-top: 6em;
}

.intended-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4em;
}

.intended-block + .intended-block {
  margin-top: 1em;
}

.intended-block__title {
  display: block;
  position: sticky;
  margin: 0;
  font-weight: 700;
  font-size: 1.2em;
  line-height: 1.3;
  max-width: 370px;
  width: 100%;
}

.intended-block__description {
  max-width: 610px;
  font-weight: 400;
  width: 100%;
  font-size: 1em;
  line-height: 1.5;
}

.intended-title {
  margin-bottom: 0.8em;
}

.intended-list {
  margin-top: 3.5em;
}

.intended-list__title {
  text-align: center;
  margin-bottom: 0.7em;
}

.intended-list__block {
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.5;
  list-style: none;
  max-width: 970px;
  margin: auto;
}

.list-item {
  list-style: url("../icon/arrow.svg");
}

.list-item::marker {
  margin-right: 10px;
}

.intended-list__item + .intended-list__item {
  margin-top: 0.8em;
}

/* author */
.author {
  margin-top: 5.5em;
}

.author-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
  margin-top: 1.5em;
  margin-bottom: 2.8em;
}

.author-text {
  width: 50%;
}

.author-photo__block {
  position: relative;
  width: 446px;
  height: 458px;
  border-radius: var(--border-radius-medium);
}

.author-photo__block img {
  border-radius: var(--border-radius-medium);
}

.author-photo__img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.author-photo__diplom {
  position: absolute;
  width: 130px;
  height: 149px;
  top: 18px;
  right: 40px;
  z-index: 5;
}

.author-photo__info {
  position: absolute;
  background: rgba(255, 244, 244, 0.9);
  padding: 0.25em;
  border-radius: 0 0.5em 0.5em 0;
  bottom: 1em;
  font-size: 0.8em;
  line-height: 1.4;
  color: var(--current-color);
}

.author-photo__name {
  font-weight: 700;
  padding-left: 1em;
}

.author-photo__description {
  padding-left: 1em;
}

.author__list {
  margin-top: 0;
  list-style: none;
  max-width: 580px;
}

.author__list-item a {
  position: relative;
  color: var(--assent-color);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.author__list-item a:hover,
.author__list-item a:focus,
.author__list-item a:active {
  -webkit-box-shadow: inset 0px -2px 0 0px var(--assent-color);
          box-shadow: inset 0px -2px 0 0px var(--assent-color);
}

.author__list-item span {
  font-size: 1.2em;
  font-weight: 600;
}

.author__list-item + .author__list-item {
  margin-top: 0.8em;
}

.author-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}

.author-description__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;
  margin-top: 1.5em;
}

.author-description__title {
  white-space: nowrap;
  margin: 0;
  font-weight: 700;
  font-size: 1.8em;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.16em;
}

.author-description__info {
  margin: 0;
  font-weight: 400;
  font-size: 0.8em;
  line-height: 1.5;
  text-align: center;
}

/* information */
.information {
  margin-top: 5.5em;
}

.information__list {
  padding-left: 0;
  list-style: none;
  font-weight: 400;
  font-size: 1.2em;
  /* line-height: 150%; */
}

.information__list-item {
  position: relative;
  cursor: pointer;
  padding-left: 1em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.information__list-item::before {
  content: "";
  position: absolute;
  height: 80%;
  width: 3px;
  left: 0;
  top: 10%;
  display: block;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  background-color: var(--assent-color);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.information__list-item + .information__list-item {
  margin-top: 0.8em;
}

.information-info__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5em 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.information-info__item {
  padding-left: 1em;
  margin-left: 1em;
  max-width: 45%;
}

.information-info__item:hover .information-info__title::before,
.information-info__item:focus .information-info__title::before,
.information-info__item:active .information-info__title::before {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}

.information-info__item:hover .information-info__title::after,
.information-info__item:focus .information-info__title::after,
.information-info__item:active .information-info__title::after {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}

.information-info__title {
  position: relative;
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.3;
  margin-bottom: 0.67em;
}

.information-info__title::before {
  content: "";
  position: absolute;
  display: block;
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: var(--assent-color);
  left: -34px;
  top: 14px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.information-info__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 3px;
  height: 20px;
  background-color: var(--assent-color);
  left: -25px;
  top: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.information-info__text {
  font-size: 1em;
}

.information-info__ad {
  border-radius: var(--border-radius-medium);
  font-size: 1.2em;
  background-color: var(--background-color);
  padding: 1.5em 1.75em 1.75em 1.75em;
  margin-top: 2.5em;
}

.information-info__ad p {
  margin: 0;
}

.information-info__ad p span {
  font-weight: 600;
}

.information-info__ad p:not(:first-child) {
  margin-top: 0.667em;
}

.information__video {
  display: grid;
  grid-template: " video1 video2 video3";
  gap: 1.8em;
}

.information__video-preview {
  position: relative;
  outline: none;
  overflow: hidden;
  border-radius: var(--border-radius-medium);
  cursor: pointer;
  padding-top: 63%;
}

.information__video-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-medium);
}

.information__video-descr {
  margin: 0;
  text-align: center;
  color: var(--old-color);
  font-weight: 500;
  font-size: 0.8em;
  line-height: 1.5;
  margin-bottom: 2.875em;
  margin-top: 0.375em;
}

.information__paragraph {
  margin-top: 1.625em;
  margin-bottom: 0.75em;
  text-align: center;
}

/* course-program */
.course-program {
  margin-top: 5.5em;
}

.details__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.details__lesson {
  padding-top: 0.4375em;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.8em;
  line-height: 1.5;
  color: var(--assent-color);
  margin-right: 2.185em;
}

.details__theme {
  font-size: 1.2em;
  color: var(--current-color);
}

.details__description {
  font-size: 0.8em;
  margin-top: 0.9em;
  margin-bottom: 2em;
  margin-left: 5.4em;
  margin-right: 2em;
  color: inherit;
}

details open .details__arrow svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.course-program__descr {
  font-size: 0.9em;
  margin-left: 4.8em;
}

.course-program__title {
  margin-left: 1em;
  margin-bottom: 0.8em;
}

.course-program__list {
  list-style: none;
  max-width: 950px;
  width: 100%;
  padding-left: 0;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.course-program__item {
  cursor: pointer;
}

.course-program__item:not(:last-child) {
  margin-bottom: 0.6em;
}

summary {
  list-style: none;
}

.details__arrow {
  margin-left: auto;
  padding-left: 1em;
}

/* stages */
.stages {
  margin-top: 5.5em;
}

.stages__background-text {
  white-space: nowrap;
}

.stages__steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 2em;
}

.stages__step:hover,
.stages__step:active,
.stages__step:focus {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.stages__title {
  margin-bottom: 0.8em;
}

.stages__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 180px;
  height: 180px;
  border-radius: var(--border-radius-medium);
  background: var(--assent-color);
  color: var(--btn-color);
  padding: 1em;
  text-align: center;
  outline: 1px solid var(--btn-color);
  outline-offset: -0.5em;
}

.stages__list {
  list-style: url(../icon/arrow.svg);
  max-width: 860px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2em;
}

.stages__list-item span {
  font-weight: 600;
}

.stages__list-item:not(:last-child) {
  margin-bottom: 0.8em;
}

/* banner */
.banner__inner {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  background-image: url("../img/banner-bg.jpg");
  background-size: cover;
  outline: 2px solid var(--btn-color);
  outline-offset: -0.5em;
  padding: 0 2em;
}

.banner__inner img {
  -o-object-fit: cover;
     object-fit: cover;
}

.banner__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 2em;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-align: center;
}

.banner__text {
  font-size: 1.2em;
  line-height: 1.3;
  margin: 0;
  text-align: center;
}

.banner-center {
  margin-top: 1em;
  -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: 0.5em;
  margin-bottom: 1.8em;
}

/* results */
.results {
  margin-top: 5.5em;
}

.results-block {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.results-block__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 300px;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  background-color: var(--background-color);
  padding: 1.5em;
  outline: 2px solid var(--btn-color);
  outline-offset: -0.5em;
  -webkit-transition: all 0.5s cubic-bezier(1, 0.68, 0.16, 0.9);
  transition: all 0.5s cubic-bezier(1, 0.68, 0.16, 0.9);
}

.results-block__item-last {
  background-color: var(--assent-color);
  /* outline: 1px solid var(--btn-color); */
}

.results-block__text {
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.5;
  text-align: center;
  color: var(--current-color);
  -webkit-transition: all 0.5s cubic-bezier(1, 0.68, 0.16, 0.9);
  transition: all 0.5s cubic-bezier(1, 0.68, 0.16, 0.9);
}

.results-block__item:hover,
.results-block__item:focus,
.results-block__item:active {
  background-color: var(--assent-color);
}

.results-block__item:hover .results-block__text,
.results-block__item:focus .results-block__text,
.results-block__item:active .results-block__text {
  color: var(--btn-color);
}

.results-block__text span {
  font-weight: 600;
}

.results-block__text-last {
  color: var(--btn-color);
}

.results-block__text-last span {
  font-size: 1.667em;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
}

/* advantages */
.advantages {
  margin-top: 5.5em;
}

.advantages__background-text {
  white-space: nowrap;
}

.advantages__list {
  list-style: none;
  counter-reset: advantages__list;
  margin-left: 2em;
  margin-right: 2em;
}

.advantages__item-title {
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 0.625em;
}

.advantages__item-text {
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 1.25em;
}

.advantages__item {
  position: relative;
}

.advantages__item::before {
  position: absolute;
  content: counter(advantages__list);
  counter-increment: advantages__list;
  font-family: var(--font-title);
  font-weight: 500;
  font-size: 2em;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-left: -1em;
  top: 0;
  color: var(--old-color);
}

.advantages__item:hover p,
.advantages__item:focus p,
.advantages__item:active p {
  margin-left: 1em;
}

.advantages__item p {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

/* timer */
.timer-block {
  margin-top: 2.5em;
}

.countdown__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.countdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  margin-bottom: 1.2em;
}

.time {
  display: block;
  text-align: center;
  padding: 0.8em;
  background-color: #FFD6D6;
  border-radius: 15px;
}

.time-title {
  font-weight: 500;
  font-size: 3em;
  line-height: 1.1;
  margin: 0;
}

.separator {
  font-weight: 700;
  font-size: 1.2em;
}

/* faq */
.faq {
  margin-top: 5em;
}

.faq__background-text {
  white-space: nowrap;
}

.faq-program__list {
  list-style: none;
}

.faq-theme {
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.4s ease-in-out;
  transition: border-color 0.4s ease-in-out;
}

.faq-program__item {
  cursor: pointer;
  -webkit-transition: color 0.4s ease-in-out;
  transition: color 0.4s ease-in-out;
}

.faq-program__item:hover .faq-lesson,
.faq-program__item:focus .faq-lesson,
.faq-program__item:active .faq-lesson {
  color: var(--assent-color);
}

.faq-program__item:hover .faq-theme,
.faq-program__item:focus .faq-theme,
.faq-program__item:active .faq-theme {
  border-color: var(--assent-color);
}

.faq-program__item:not(:first-child) {
  margin-top: 0.625em;
}

.faq__description {
  padding: 0.1em 1.2em;
  background-color: var(--background-color);
  border-radius: 1.5em;
  line-height: 1.6;
}

.faq__description p span {
  font-weight: 500;
}

.faq-lesson {
  padding-top: 0.2em;
  color: var(--old-color);
}

/* footer */
.footer-inner {
  padding: 1.5em 2em;
  border-radius: var(--border-radius-medium);
  background-color: var(--background-color);
}

.footer-inner:last-child {
  margin-top: 2em;
  border-radius: var(--border-radius-medium) var(--border-radius-medium) 0 0;
  padding: 1em 2em 0.8em;
}

.footer-company {
  font-size: 0.8em;
  font-weight: 400;
}

.footer-company span {
  font-weight: 600;
}

.footer-block_link svg {
  color: var(--assent-color);
}

.fooler-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-company__logo {
  font-size: 2em;
  font-weight: 800;
  margin-bottom: 0.4em;
}

.footer-company__logo span {
  color: var(--assent-color);
}

.footer-company__logo a {
  color: currentColor;
  text-decoration: none;
}

.footer-info {
  gap: 3.5em;
}

.footer-block__link {
  font-weight: 600;
  font-size: 0.8em;
  line-height: 1.5;
  color: var(--current-color);
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  white-space: nowrap;
}

.footer-block__link:hover,
.footer-block__link:focus,
.footer-block__link:active {
  color: var(--assent-color);
}

.footer-block__item-social {
  position: relative;
}

.footer-block__item-social a {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}

.footer-block__item-social svg {
  -webkit-transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: all 0.25s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.footer-block__item-social:hover svg {
  color: var(--assent-color);
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.fooler-block__list-social {
  margin: 0;
  padding: 0;
  gap: 1em;
}

.footer-copy {
  color: var(--btn-color);
  font-size: 0.8em;
}

.footer-copy span {
  font-weight: 600;
}

.bgcolor {
  background-color: var(--assent-color);
}

.footes-dev__link {
  font-size: 0.6em;
  text-decoration: none;
  color: var(--background-color);
  white-space: nowrap;
}

/* feedback */
.feedback {
  margin-top: 5.5em;
  margin-bottom: 5.5em;
  position: relative;
}

.swiper {
  width: 100%;
  height: auto;
}

.feedback__title {
  margin-bottom: 0.8em;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.8);
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  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;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination {
  bottom: -40px;
}

.feedback__slider {
  padding-left: 20px;
  padding-right: 20px;
}

.feedback__slider-item {
  position: relative;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
}

.slider__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.feedback-gallery__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: visible;
  padding: 0;
  margin: 0;
  border: none;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.feedback-gallery__btn:hover,
.feedback-gallery__btn:focus {
  background-color: rgba(255, 255, 255, 0.95);
}

.feedback-gallery__btn-link {
  width: 20px;
  height: auto;
  display: block;
}

.feedback-gallery__navigation {
  position: absolute;
  pointer-events: none;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 40;
}

.swiper-pagination-current {
  font-size: 18px;
}

.feedback-gallery__pagination {
  text-align: center;
}

.swiper-pagination-total {
  color: currentColor;
  font-weight: 600;
}

.popup {
  display: none;
  visibility: hidden;
  padding: 0.5em 1em;
  z-index: 50;
  position: fixed;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  left: -1em;
  right: -1em;
  margin-left: 1em;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  width: 100%;
  margin-right: 1em;
  border-radius: 1.5em 1.5em 0 0;
  border: 2px solid var(--assent-color);
}

.popupVisible {
  display: block;
  visibility: visible;
}

@media screen and (max-width: 1060px) {
  .information-info__item {
    margin-left: 1em;
  }
}
@media screen and (max-width: 1000px) {
  .container {
    padding-left: 6em;
    padding-right: 6em;
  }
  .background-text {
    left: -0.1em;
  }
  .header__list {
    display: none;
  }
  .hero__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .right-block {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .num-stat__block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .reflections-block {
    -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;
  }
  .reflections-block__right {
    max-width: 100%;
  }
  .reflections-block__title {
    text-align: center;
  }
  .information-info__item {
    min-width: 100%;
  }
  .intended-block {
    gap: 1em;
  }
  .author-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2em;
  }
  .author-photo {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .author-text {
    width: 100%;
  }
  .author-description__title {
    font-size: 2.5em;
  }
  .author-description__item {
    -ms-flex-preferred-size: 300px;
        flex-basis: 300px;
  }
  .information__video {
    grid-template: "video1" "video2" "video3";
  }
}
@media screen and (max-width: 900px) {
  .container {
    padding-left: 4em;
    padding-right: 4em;
  }
  .num-stat__block {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .num-stat__item {
    border: 2px solid var(--assent-color);
    border-radius: 1.5em;
  }
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
}
@media screen and (max-width: 800px) {
  .intended-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .intended-block + .intended-block {
    margin-top: 2em;
  }
  .intended-block__description {
    padding: 1em 1.5em;
    border-radius: 1.5em;
    border: 2px solid var(--assent-color);
  }
  .intended-list__block {
    font-size: 1em;
  }
  .block-text__list {
    font-size: 1em;
  }
  .information__list {
    font-size: 1em;
  }
  .information-info__ad {
    font-size: 1em;
  }
  .results-block__text {
    font-size: 1em;
  }
  .results-block__item {
    width: 250px;
    height: 250px;
  }
  .num-stat__block {
    gap: 0.5em;
  }
  .num-stat__item {
    padding: 1em;
  }
}
@media screen and (max-width: 700px) {
  .container {
    padding-left: 2em;
    padding-right: 2em;
  }
  .hero {
    margin-top: 1.5em;
  }
  .hero__title {
    font-size: 3.5em;
  }
  .hero__question {
    font-weight: 700;
    font-size: 1.5em;
    line-height: 1.2;
    margin-bottom: 1.1em;
    letter-spacing: -0.04em;
  }
  .time--seconds,
  .separator--seconds {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .right-block {
    margin-top: 2em;
  }
  .intended-block__description {
    background: var(--background-color);
    border-radius: var(--border-radius-medium);
    padding: 1em 1.2em;
  }
  .reflections-block__left {
    width: auto;
  }
  .num-stat__text {
    font-size: 1em;
  }
  .num-stat__block {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }
  .author__list {
    padding-left: 0;
  }
  .author-description__item {
    -ms-flex-preferred-size: fit-content;
        flex-basis: fit-content;
  }
  .author-description {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .author-description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .author-description__info {
    font-size: 0.9em;
  }
  .banner__title {
    font-size: 2.5em;
  }
  .results-block__item {
    -ms-flex-preferred-size: 350px;
        flex-basis: 350px;
  }
  .advantages__list {
    margin-left: 1em;
    margin-right: 1em;
  }
}
@media screen and (max-width: 500px) {
  .container {
    padding-left: 1em;
    padding-right: 1em;
  }
  .hero__title {
    font-size: 3.5em;
  }
  .hero__subtitle {
    font-size: 2em;
  }
  .author-description__item {
    max-width: 300px;
  }
  .footer-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2em;
  }
  .footer-block__item {
    font-size: 1.5em;
  }
  .information-info__ad {
    font-size: 1em;
  }
  .reflections-block__left {
    width: auto;
  }
}
@media screen and (max-height: 750px) {
  .hero__title {
    font-size: 3em;
  }
  .hero {
    margin-top: 0.5em;
  }
  .hero__info-text {
    font-size: 0.8em;
  }
  .hero__question {
    font-size: 1em;
  }
  .hero__subtitle {
    font-size: 1.5em;
  }
}
@media screen and (max-width: 550px) {
  .hero__info-text {
    font-size: 0.9em;
  }
  .btn-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .details__lesson {
    margin-right: 1em;
  }
}
@media screen and (max-width: 450px) {
  .advantages__list {
    margin-left: 0;
    margin-right: 0;
  }
  .faq-program__list {
    padding-left: 0;
  }
  .stages__step {
    -ms-flex-preferred-size: 300px;
        flex-basis: 300px;
  }
}/*# sourceMappingURL=style.css.map */