@import url(https://fonts.googleapis.com/css?family=Roboto:regular,600);

.c-primary {
  color: #BB2B9B;
}

@font-face {
  font-family: Days;
  src: url("../fonts/Days.ttf") format("truetype");
  font-weight: 400;
}

* {
  font-family: "Roboto";
  color: #202020;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h1,
.h1-title {
  font-family: "Days";
  font-size: 50px;
  line-height: 1;
}

h2,
.h2-title {
  font-family: "Days";
  font-size: 40px;
  line-height: 1;
}

h3,
.h3-title {
  font-family: "Days";
  font-size: 24px;
}

h4,
.h4-title {
  font-family: "Days";
  font-size: 13px;
}

strong,
small {
  color: inherit;
}

.upc {
  text-transform: uppercase;
}

.tac {
  text-align: center;
}

.fw-demi {
  font-weight: 600;
}

.section__title {
  font-family: "Days";
  font-size: 40px;
  line-height: 1;
}

.section__title--dedicated {
  color: #BB2B9B;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  position: relative;
  z-index: 1;
}

.fz-1 {
  font-size: calc(1px * 2 + 10px) !important;
  line-height: 1;
}

.fz-2 {
  font-size: calc(2px * 2 + 10px) !important;
  line-height: 1;
}

.fz-3 {
  font-size: calc(3px * 2 + 10px) !important;
  line-height: 1;
}

.fz-4 {
  font-size: calc(4px * 2 + 10px) !important;
  line-height: 1;
}

.btn {
  height: 50px;
  padding: 0px 24px;
  background-color: white;
  font-family: "Days";
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 30px;
  border: 0;
  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;
  gap: 20px;
  cursor: pointer;
  -webkit-box-shadow: 0px 5px 15px -5px #2020200D;
  box-shadow: 0px 5px 15px -5px #2020200D;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.btn:hover {
  color: #BB2B9B;
}

.btn--arrow::after {
  content: "";
  display: block;
  background: url("/img/arrow-hz.svg") no-repeat;
  width: 19px;
  height: 16px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.btn--lightning::after {
  content: "";
  display: block;
  background: url("/img/lightning-color.svg");
  width: 18px;
  height: 22px;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.btn--primary {
  background-color: #BB2B9B;
  color: white;
}

.btn--primary::after {
  -webkit-filter: brightness(100);
  filter: brightness(100);
}

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

.btn:disabled {
  color: #CECECE;
  background-color: #F9F9F9;
}

.btn:disabled::after {
  -webkit-filter: saturate(0);
  filter: saturate(0);
}

.link {
  font-size: 16px;
  font-family: "Roboto";
  text-decoration: none;
  font-weight: 400;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
}

.link:hover {
  color: #BB2B9B;
}

.link.is-active {
  color: #BB2B9B;
}

.link--dotted {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.link--dotted::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #BB2B9B;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.link--dotted:hover::before {
  background-color: #BB2B9B;
}

.link--underline {
  color: #C677B4;
}

.link--underline:hover {
  color: #C677B4;
  text-underline-position: under;
  text-decoration: underline;
}

.link--gray {
  color: #CECECE;
}

.link--gray.is-active {
  color: #202020;
}

.btn-play {
  width: 40px;
  height: 40px;
  min-height: 40px;
  min-width: 40px;
  border-radius: 50%;
  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;
  background-color: #BB2B9B;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  border: 0;
  cursor: pointer;
}

.btn-play::after {
  content: "";
  display: block;
  background: url("/img/play.svg") no-repeat;
  width: 15px;
  height: 17px;
}

.btn-play:hover {
  background-color: #BB2B9B;
}

.input__title {
  font-size: 14px;
  margin-bottom: 10px;
}

.input__input {
  font-size: 16px;
  height: 50px;
  width: 100%;
  max-width: 100%;
  padding: 0px 20px;
  border-radius: 5px;
  border: 1px solid #EDEDED;
  outline: none;
}

.input__input:focus {
  border-color: #CAFB02;
}

.input__error {
  font-size: 12px;
  margin-top: 5px;
  color: #FF3D00;
  display: none;
}

.input.is-error .input__input {
  border-color: #FF3D00;
}

.input.is-error .input__error {
  display: block;
}

textarea.input__input {
  padding: 17px 20px;
  min-height: 120px;
  resize: none;
}

.checkbox {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.checkbox__box {
  min-width: 24px;
  max-width: 24px;
  max-height: 24px;
  min-height: 24px;
  border-radius: 5px;
  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;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #BB2B9B;
}

.checkbox__box img {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  opacity: 0;
}

.checkbox.is-error .checkbox__box {
  border-color: #FF3D00;
}

.checkbox__input:checked + .checkbox__box img {
  opacity: 1;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.container {
  max-width: 1300px;
  padding: 0 30px;
  margin: 0 auto;
}

.container--small {
  max-width: 450px;
}

.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: 10px;
  list-style: none;
}

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

.list__item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 15px;
  display: block;
  font-size: 18px;
  background-color: #BB2B9B;
}

.faq-item {
  padding: 40px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 5px 15px -5px #2020200D;
  box-shadow: 0px 5px 15px -5px #2020200D;
  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: white;
}

.faq-item__title {
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}

.faq-item__title::after {
  content: "";
  display: block;
  width: 18px;
  min-width: 18px;
  height: 11px;
  min-height: 11px;
  background: url("/img/arrow.svg");
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.faq-item__text {
  margin-top: 20px;
  margin-right: 48px;
}

.faq-item.is-active .faq-item__title::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

input[type=range].styled-slider {
  height: 32px;
  -webkit-appearance: none;
}

/*progress support*/

input[type=range].styled-slider.slider-progress {
  --range: calc(var(--max) - var(--min));
  --ratio: calc((var(--value) - var(--min)) / var(--range));
  --sx: calc(0.5 * 50px + var(--ratio) * (100% - 50px));
}

input[type=range].styled-slider:focus {
  outline: none;
}

/*webkit*/

input[type=range].styled-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 50px;
  height: 50px;
  border-radius: 100em;
  background: #FFFFFF;
  border: 15px solid #27AE60;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin-top: -23.5px;
}

input[type=range].styled-slider::-webkit-slider-runnable-track {
  height: 3px;
  border: none;
  border-radius: 0;
  background: #C9EBD7;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input[type=range].styled-slider.slider-progress::-webkit-slider-runnable-track {
  background: -webkit-gradient(linear, left top, left bottom, from(#27AE60), to(#27AE60)) 0/var(--sx) 100% no-repeat, #C9EBD7;
  background: linear-gradient(#27AE60, #27AE60) 0/var(--sx) 100% no-repeat, #C9EBD7;
}

/*mozilla*/

input[type=range].styled-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 100em;
  background: #FFFFFF;
  border: 15px solid #27AE60;
  box-shadow: none;
}

input[type=range].styled-slider::-moz-range-track {
  height: 3px;
  border: none;
  border-radius: 0;
  background: #C9EBD7;
  box-shadow: none;
}

input[type=range].styled-slider.slider-progress::-moz-range-track {
  background: linear-gradient(#27AE60, #27AE60) 0/var(--sx) 100% no-repeat, #C9EBD7;
}

/*ms*/

input[type=range].styled-slider::-ms-fill-upper {
  background: transparent;
  border-color: transparent;
}

input[type=range].styled-slider::-ms-fill-lower {
  background: transparent;
  border-color: transparent;
}

input[type=range].styled-slider::-ms-thumb {
  width: 50px;
  height: 50px;
  border-radius: 100em;
  background: #FFFFFF;
  border: 15px solid #27AE60;
  box-shadow: none;
  margin-top: 0;
  box-sizing: border-box;
}

input[type=range].styled-slider::-ms-track {
  height: 3px;
  border-radius: 0;
  background: #C9EBD7;
  border: none;
  box-shadow: none;
  box-sizing: border-box;
}

input[type=range].styled-slider.slider-progress::-ms-fill-lower {
  height: 3px;
  border-radius: 0px 0 0 0px;
  margin: -undefined 0 -undefined -undefined;
  background: #27AE60;
  border: none;
  border-right-width: 0;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 5;
}

.header .container {
  width: 100%;
}

.header__link--dotted {
  margin-left: auto;
}

.header__link img {
  width: 12px;
  height: 7px;
  margin-left: 8px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.header__link--dropdown:hover + .header__dropdown {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.header__logo {
  font-family: "Days";
  text-decoration: none;
  font-size: 22px;
  margin-right: 60px;
  color: #BB2B9B;
}

.header__logo--registration {
  margin: 0 auto;
}

.header__wrapper {
  padding: 20px 0;
  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;
  width: 100%;
}

.header__nav {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
}

.header__nav.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__ico {
  background: url("/img/lightning.svg");
  width: 18px;
  height: 22px;
  display: none;
}

.header__burger {
  display: none;
  width: 24px;
  height: 14px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
  border: 0;
  background: transparent;
  position: relative;
}

.header__burger span {
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #202020;
}

.header__burger.is-active span {
  position: absolute;
  top: 5px;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}

.header__burger.is-active span:nth-child(1) {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__burger.is-active span:nth-child(2) {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header__burger.is-active span:nth-child(3) {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__dropdown {
  margin-left: auto;
  position: relative;
}

.header__dropdown:hover .header__link--dropdown img {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.header__dropdown:hover .header__dropdown-wrapper {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.header__dropdown-wrapper {
  position: absolute;
  padding-top: 15px;
  top: 100%;
  right: -5px;
  -webkit-transition: 0.3s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  -o-transition: 0.3s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transition: 0.3s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
}

.header__dropdown-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 5px 15px -5px rgba(32, 32, 32, 0.05);
  box-shadow: 0px 5px 15px -5px rgba(32, 32, 32, 0.05);
  background-color: white;
  gap: 15px;
}

.header-mobile {
  position: absolute;
  top: 0;
  left: -100%;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
  right: 0;
  bottom: 0;
  z-index: 4;
  background-color: white;
  height: 100vh;
  width: 100%;
  padding: 120px 30px 30px;
}

.header-mobile.is-active {
  left: 0;
}

.header-mobile__description {
  bottom: 40px;
  position: absolute;
  width: calc(100% - 60px);
  color: #CECECE;
  display: none;
}

.header-mobile__description span {
  color: inherit;
  text-decoration: underline;
}

.header-mobile__description.is-visible {
  display: inline;
}

.header-mobile__btn {
  width: calc(100% - 60px);
  position: absolute;
  bottom: 92px;
  left: 30px;
  right: 30px;
  display: none;
}

.header-mobile__btn.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-mobile__nav {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}

.header-mobile__nav.is-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header-mobile__nav--small {
  position: absolute;
  bottom: 40px;
}

.header-mobile__link {
  font-family: "Days";
  font-size: 22px;
  text-decoration: none;
  text-transform: uppercase;
}

.header-mobile__link--small-r {
  display: none;
}

.header-mobile__link--dedicated {
  color: #BB2B9B;
}

.header-mobile__link--small {
  font-size: 20px;
  font-family: "Roboto";
  text-transform: none;
}

.footer {
  padding: 50px 0;
}

.footer--main {
  background: #F9F9F9;
  padding: 75px 0px 50px;
}

.footer--landing {
  background: #202020;
}

.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px 90px;
}

.footer__row--main {
  gap: 10px 50px;
  margin: 40px 0;
}

.footer__row--main .footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
}

.footer__row--main p {
  color: #9f9f9f;
  line-height: 15px;
}

.footer__column {
  width: 100%;
}

.footer__text {
  font-size: 12px;
}

.footer__text a {
  font-size: 12px;
}

.footer__text--landing {
  color: white;
}

.footer__name {
  font-size: 12px;
  margin-top: 20px;
  font-family: "Days";
}

.footer__name--landing {
  color: white;
}

.footer__logo {
  font-family: "Days";
  text-decoration: none;
  font-size: 22px;
  margin-right: 20px;
}

.footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__link:last-child {
  margin-left: auto;
}

.footer__wrapper {
  padding: 20px 0;
  border-bottom: 1px solid #CECECE;
  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;
  width: 100%;
}

.footer__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer__footer {
  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__footer p {
  color: #9f9f9f;
}

.prize {
  padding: 100px 0px 120px;
}

.prize__subtitle {
  margin: 20px 0px 50px;
}

.prize__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}

.prize-card {
  height: 400px;
  background: #f5f5f5;
  border-radius: 30px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.prize-card__title {
  max-width: 238px;
  z-index: 1;
  position: relative;
}

.prize-card__count {
  margin-top: 20px;
  position: relative;
  z-index: 1;
}

.prize-card__icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 30px;
  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: absolute;
  bottom: 40px;
  left: 40px;
}

.prize-card__icon::after {
  content: "";
  display: block;
  width: 18px;
  height: 22px;
  background: url("/img/lightning-color.svg");
}

.prize-card--1::after {
  content: "";
  display: block;
  background: url("/img/prize-bg-1.png");
  width: 465px;
  height: 317px;
  position: absolute;
  right: 0;
  bottom: 30px;
}

.prize-card--2::after {
  content: "";
  display: block;
  background: url("/img/prize-bg-2.png");
  width: 352px;
  height: 320px;
  position: absolute;
  right: 35px;
  bottom: 40px;
}

.prize-card--3::after {
  content: "";
  display: block;
  background: url("/img/prize-bg-3.png");
  width: 258px;
  height: 347px;
  position: absolute;
  right: 73px;
  bottom: 22px;
}

.prize-card--4::after {
  content: "";
  display: block;
  background: url("/img/prize-bg-4.png");
  width: 200px;
  height: 295px;
  position: absolute;
  right: 77px;
  bottom: 52px;
  mix-blend-mode: darken;
  -webkit-transform: rotate(15.87deg);
  -ms-transform: rotate(15.87deg);
  transform: rotate(15.87deg);
}

.prize-card--5::after {
  content: "";
  display: block;
  background: url("/img/prize-bg-5.png");
  width: 269px;
  height: 305px;
  position: absolute;
  right: 24px;
  bottom: 21px;
}

.prize-card--6::after {
  content: "";
  display: block;
  background: url("/img/prize-bg-6.png");
  width: 209px;
  height: 289px;
  position: absolute;
  right: 73px;
  bottom: 52px;
  mix-blend-mode: darken;
}

.prize-money {
  margin: 70px auto 0;
  max-width: 580px;
}

.prize-money__btn {
  margin: 0 auto;
}

.prize-money__description {
  margin: 20px 0px 30px;
}

.terms {
  background-color: #f3f3f3;
  overflow: hidden;
  padding-top: 130px;
  position: relative;
  z-index: 2;
}

.terms__column {
  max-width: 500px;
}

.terms__column--img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -o-object-fit: contain;
  object-fit: contain;
}

.terms__img {
  display: block;
  height: auto;
  width: 100%;
  margin-top: auto;
}

.terms__title {
  margin-bottom: 40px;
}

.terms .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.terms__ribbon {
  position: absolute;
  padding: 19px 30px;
  z-index: -1;
  background: #BB2B9B;
  overflow: hidden;
  top: 140px;
  left: -10px;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: rotate(25deg);
  -ms-transform: rotate(25deg);
  transform: rotate(25deg);
}

.terms__ribbon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-animation: ribbonTerms 15s linear 0s infinite;
  animation: ribbonTerms 15s linear 0s infinite;
}

.terms__ribbon-text {
  font-family: "Days";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
}

.terms__ribbon-text::before {
  content: "";
  background: url("/img/lightning.svg");
  width: 18px;
  height: 22px;
  display: block;
  margin-right: 30px;
}

@-webkit-keyframes ribbonTerms {
  0% {
    -webkit-transform: translate(0%);
    transform: translate(0%);
  }

  100% {
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
}

@keyframes ribbonTerms {
  0% {
    -webkit-transform: translate(0%);
    transform: translate(0%);
  }

  100% {
    -webkit-transform: translate(-50%);
    transform: translate(-50%);
  }
}

.terms-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.terms-item__number {
  min-width: 50px;
  width: 50px;
  height: 50px;
  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;
  background-color: white;
  margin-right: 30px;
  border-radius: 30px;
  color: #BB2B9B;
  font-size: 20px;
  font-family: "Days";
}

.terms-item__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Roboto";
}

.terms-item__title--dedicated {
  position: relative;
  z-index: 1;
}

.terms-item__title--dedicated::after {
  content: "";
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 24px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(202, 251, 2, 0)), to(rgba(202, 251, 2, 0.7)));
  background: -o-linear-gradient(top, rgba(202, 251, 2, 0) 0%, rgba(202, 251, 2, 0.7) 100%);
  background: linear-gradient(180deg, rgba(202, 251, 2, 0) 0%, rgba(202, 251, 2, 0.7) 100%);
  z-index: -1;
  position: absolute;
  border-radius: 30px;
}

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

.programs {
  padding: 100px 0px 120px;
}

.programs__subtitle {
  margin: 20px auto 50px;
  max-width: 580px;
}

.programs__footer {
  margin: 50px auto 0;
  max-width: 310px;
}

.programs__footer a {
  color: #9F9F9F;
  text-decoration: none;
}

.programs-swiper__pagination {
  position: static;
  margin-top: 20px;
}

.programs-swiper__pagination .swiper-pagination-bullet {
  background-color: #EFEFEF;
  opacity: 1;
}

.programs-swiper__pagination .swiper-pagination-bullet-active {
  background-color: #BB2B9B;
}

.programs-swiper-slide {
  height: 455px;
  background-color: #FBF6EC;
  padding: 40px 40px 30px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 30px;
}

.programs-swiper-slide__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 310px;
  height: 100%;
}

.programs-swiper-slide--only {
  background: url("/img/program-bg.png");
  background-position: 60%;
  background-size: cover;
  border-radius: 0;
}

/*.programs-swiper-slide--mobile {
  display: none;
}*/

.programs-swiper-slide--hot {
  background: #BB2B9B;
}

.programs-swiper-slide--hot .list__item {
  color: white;
}

.programs-swiper-slide--hot .list__item::before {
  background-color: white;
}

.programs-swiper-slide__ribbon {
  position: absolute;
  padding: 40px 16px 10px;
  top: 0;
  right: 40px;
  border-radius: 0px 0px 4px 4px;
  background-color: white;
  color: #202020;
}

.programs-swiper-slide__ribbon--primary {
  color: #BB2B9B;
}

.programs-swiper-slide__list {
  margin-top: 30px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.programs-swiper-slide__btn {
  margin: 20px 0px 10px;
  max-width: 100%;
  width: 100%;
}

.programs-swiper-slide__footer {
  color: #202020;
}

.programs-swiper-slide__footer--hot {
  color: white;
}

.programs-swiper-slide__title--hot {
  color: white;
}

.programs-swiper-slide__price {
  margin-top: auto;
  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;
}

.programs-swiper-slide__price--hot {
  color: white;
}

.journey {
  padding: 130px 0px 190px;
  background: url("/img/journey-bg.png") no-repeat;
  background-position: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.journey__column {
  max-width: 500px;
  margin-left: auto;
}

.journey__title {
  margin-bottom: 40px;
}

.journey .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.journey-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
}

.journey-item__number {
  min-width: 50px;
  width: 50px;
  height: 50px;
  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;
  background-color: white;
  margin-right: 30px;
  border-radius: 30px;
  color: #BB2B9B;
  font-size: 20px;
  font-family: "Days";
}

.journey-item__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: "Roboto";
}

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

.nutrition {
  padding: 120px 0;
}

.nutrition__subtitle {
  max-width: 580px;
  margin: 20px auto 50px;
}

.nutrition__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.nutrition-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 390px;
  padding: 40px;
  border-radius: 5px;
  background-color: #f9f9f9;
}

.nutrition-block__title {
  margin-bottom: 30px;
}

.nutrition-block__title--dedicated {
  color: #BB2B9B;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  position: relative;
  z-index: 1;
}

.nutrition-block__text--footer {
  max-width: 310px;
  margin: 60px 0px 20px;
}

.nutrition-footer {
  position: relative;
  margin-top: 30px;
  background: url("/img/nutrition-bg.png");
  background-position: 60%;
  padding: 40px;
  background-size: cover;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.nutrition-footer__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.nutrition-footer__col .programs-swiper-slide__ribbon {
  top: -40px;
  right: 0;
}

.nutrition-footer__col .list {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.faq {
  padding: 120px 0px;
  background: url("/img/faq-bg.png") no-repeat;
  background-position: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.faq__quest {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.faq__column {
  max-width: 620px;
  width: 100%;
}

.faq__title {
  margin-bottom: 40px;
}

.faq .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq .faq-item {
  width: 100%;
  max-width: 100%;
}

.stories {
  padding: 100px 0px 120px;
}

.stories__subtitle {
  margin: 20px auto 50px;
  max-width: 580px;
}

.stories__btn {
  margin: 50px auto 0;
  max-width: 310px;
  width: 100%;
}

.stories-swiper__pagination {
  position: static;
  margin-top: 20px;
}

.stories-swiper__pagination .swiper-pagination-bullet {
  background-color: #EFEFEF;
  opacity: 1;
}

.stories-swiper__pagination .swiper-pagination-bullet-active {
  background-color: #BB2B9B;
}

.stories-swiper-slide {
  background-color: #FBF6EC;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  border-radius: 5px;
}

.stories-swiper-slide__text {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 80px;
  right: 0;
  padding: 40px;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.stories-swiper-slide__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  padding: 30px 40px;
}

.stories-swiper-slide__img {
  display: block;
  -webkit-transition: 0.3s ease;
  -o-transition: 0.3s ease;
  transition: 0.3s ease;
}

.stories-swiper-slide:hover .stories-swiper-slide__img {
  opacity: 0.1;
}

.stories-swiper-slide:hover .stories-swiper-slide__text {
  opacity: 1;
}

.oneblock {
  min-height: 100vh;
  padding-top: 200px;
  padding-bottom: 100px;
}

.oneblock .container > .h3-title {
  margin-top: 20px;
}

.oneblock .container {
  position: relative;
  height: 100%;
}

.oneblock .footer__row--main {
  margin-top: 30px;
}

.oneblock--legal {
  padding-top: 150px;
  background-color: #F9F9F9;
}

.oneblock--success {
  background: url("/img/success-bg.png");
  background-position: top center;
}

.oneblock--failure {
  background: url("/img/failure-bg.png");
  background-position: top center;
}

.oneblock--404 {
  background: url("/img/404-bg.png");
  background-position: top center;
}

.oneblock__footer {
  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;
  position: absolute;
  height: 80px;
  bottom: -100px;
  width: calc(100% - 60px);
  left: 30px;
}

.oneblock__footer-title,
.oneblock__footer-info {
  color: #9F9F9F;
}

.oneblock__title {
  max-width: 600px;
  width: 100%;
}

.oneblock__title--legal {
  max-width: 100%;
}

.oneblock__subtitle {
  max-width: 400px;
  width: 100%;
  margin: 30px 0px 50px;
}

.oneblock__btn {
  max-width: 250px;
  width: 100%;
}

.oneblock__btn--reverse {
  max-width: 180px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.oneblock__btn--reverse::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.operation__block {
  background-color: white;
  width: 100%;
  padding: 40px 40px 50px;
  border-radius: 5px;
}

.operation__block--refund {
  padding: 66px 40px;
}

.operation__block--refund-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.operation__block-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.operation__block-row .input__input {
  max-width: 145px;
}

.operation__block-title {
  font-size: 20px;
  max-width: 245px;
  width: 100%;
  margin: 0 auto;
}

.operation__block-title--refund {
  max-width: 310px;
}

.operation__block-title--refund-title {
  max-width: 100%;
  margin-top: 10px;
}

.operation__btn {
  margin-top: 20px;
  background-color: #220022;
  width: 100%;
  color: white;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.operation__btn:hover {
  color: white;
}

.operation__btn:disabled {
  background: #F9F9F9;
  color: #CECECE;
}

.operation__btn-green {
  margin-top: 20px;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.operation__title--trainers {
  margin-bottom: 40px;
}

.operation__title--signin {
  margin-bottom: 30px;
}

.operation__subtitle {
  margin: 10px 0px 30px;
}

.operation__subtitle--payment {
  margin: 30px 0px 20px;
  width: 100%;
}

.operation__subtitle--gray {
  color: #9f9f9f;
}

.operation__link {
  margin: 30px auto 0;
  display: block;
  text-decoration: none;
  color: #9f9f9f;
}

.operation__link--green {
  color: #BB2B9B;
}

.operation-payment {
  width: 100%;
  border-radius: 5px;
  background-color: white;
  padding: 30px 40px;
  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;
}

.operation-payment--success {
  margin-bottom: 10px;
}

.operation-payment--success p {
  color: #9f9f9f;
}

.operation-lession {
  max-width: 620px;
  margin: 0 auto;
}

.operation-lession__video {
  position: relative;
}

.operation-lession__video img {
  display: block;
  width: 100%;
  border-radius: 5px;
}

.operation-lession__video .btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.operation-lession__info {
  padding: 40px;
  background-color: white;
}

.operation-lession__btn {
  margin: 30px auto 0;
}

.operation-lession__btn::after {
  background: url(/img/check.svg);
  width: 16px;
  height: 12px;
}

.operation-lession__btn:hover::after {
  -webkit-filter: brightness(10);
  filter: brightness(10);
}

.operation-trainers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  background: white;
  padding: 20px 40px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.operation-trainers__btn {
  margin: 40px auto 0;
  width: 150px;
  border: 1px solid #202020;
  background: transparent;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.operation-trainers__btn:hover {
  background: #202020;
  color: white;
}

.operation-trainers__title {
  margin-top: 0 !important;
  position: relative;
  z-index: 1;
}

.operation-trainers__title--dedicated::after {
  content: "";
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 36px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(202, 251, 2, 0)), to(rgba(202, 251, 2, 0.7)));
  background: -o-linear-gradient(top, rgba(202, 251, 2, 0) 0%, rgba(202, 251, 2, 0.7) 100%);
  background: linear-gradient(180deg, rgba(202, 251, 2, 0) 0%, rgba(202, 251, 2, 0.7) 100%);
  z-index: -1;
  position: absolute;
  border-radius: 30px;
}

.operation-trainers__title--upgrade {
  color: #BB2B9B;
}

.operation-trainers__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.operation-plans {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px 30px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.operation-plan-item {
  min-width: 300px;
  width: 100%;
  max-width: 390px;
  background-color: white;
  padding: 40px 40px 120px;
  border-radius: 5px;
  position: relative;
}

.operation-plan-item__title {
  margin-bottom: 30px;
  margin-top: 0 !important;
  max-width: 200px;
}

.operation-plan-item__btn {
  width: calc(100% - 80px);
  position: absolute;
  bottom: 40px;
}

.operation-program {
  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: white;
  padding: 40px 40px 50px;
  border-radius: 5px;
}

.operation-program__status {
  color: #BB2B9B;
  margin-bottom: 5px;
}

.operation-program__status.is-close {
  color: #9f9f9f;
}

.operation-program .input {
  margin-top: 30px;
  position: relative;
}

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

.operation-program .input__input {
  max-width: 100%;
}

.operation-program .input__check {
  position: absolute;
  right: 20px;
  bottom: 18px;
}

.registration__crumbread {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 125px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto 30px;
}

.registration__crumbread span {
  font-size: 20px;
  color: #CECECE;
}

.registration__crumbread span.is-active {
  color: #BB2B9B;
}

.registration__block {
  max-width: 620px;
  padding: 40px;
  background: #F9F9F9;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.registration__block .input {
  max-width: 100%;
  position: relative;
}

.registration__block .input__icon {
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.registration__block .input__input {
  width: 100%;
}

.registration__block .input__input::-webkit-input-placeholder {
  padding-left: 30px;
}

.registration__block .input__input::-moz-placeholder {
  padding-left: 30px;
}

.registration__block .input__input:-ms-input-placeholder {
  padding-left: 30px;
}

.registration__block .input__input::-ms-input-placeholder {
  padding-left: 30px;
}

.registration__block .input__input::placeholder {
  padding-left: 30px;
}

.registration__block .input:focus-within .input__icon {
  display: none;
}

.registration__block .input:focus-within .input__input::-webkit-input-placeholder {
  opacity: 0;
}

.registration__block .input:focus-within .input__input::-moz-placeholder {
  opacity: 0;
}

.registration__block .input:focus-within .input__input:-ms-input-placeholder {
  opacity: 0;
}

.registration__block .input:focus-within .input__input::-ms-input-placeholder {
  opacity: 0;
}

.registration__block .input:focus-within .input__input::placeholder {
  opacity: 0;
}

.registration__block--small {
  max-width: 390px;
}

.registration__block--small-landing {
  max-width: 375px;
  padding: 30px;
}

.registration__block--small-title {
  max-width: 375px;
  padding: 30px;
  background: url("/img/landing-registration-bg.png") no-repeat;
  background-size: cover;
  height: 300px;
}

.registration__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.registration__btn {
  margin: 40px auto 0;
}

.registration__payment {
  width: 100%;
  background-color: white;
}

.registration__ssl {
  height: 22px;
  width: 178px;
  display: block;
  margin: 50px auto 0;
}

.registration__protected {
  width: 305px;
  height: 24px;
  display: block;
  margin: 30px auto 0;
}

.registration__link {
  text-decoration: underline;
  text-underline-position: under;
}

.registration__title {
  font-size: 30px;
  color: white;
}

.registration__subtitle {
  margin: 15px 0px 20px;
  color: #202020;
  padding: 6px 15px;
  font-size: 30px;
  max-width: 133px;
  margin: 0 auto;
  border-radius: 5px;
  background-color: #BB2B9B;
}

.registration__subtitle span {
  font-family: "Roboto";
  font-weight: 900;
}

.registration__description {
  font-family: "Days";
  color: white;
  line-height: 1.3;
}

.intro {
  background-color: #ebebea;
  padding: 20px 0px 0;
  position: relative;
  overflow: hidden;
}

.intro--main {
  padding: 200px 0px 145px;
  background: url("/img/intro-main-bg.png");
  background-position: 40%;
}

.intro .container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.intro__column {
  max-width: 590px;
  width: 100%;
  z-index: 1;
}

.intro__description {
  margin: 30px 0px 60px;
  max-width: 385px;
}

.intro__description strong {
  font-family: "Days";
  line-height: 34px;
}

.intro__title--main {
  max-width: 587px;
}

.intro__title--dedicated {
  position: relative;
  z-index: 1;
  color: #BB2B9B;
}

.intro__img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
}

.intro__ribbon {
  position: absolute;
  padding: 19px 30px;
  z-index: 0;
  background: #BB2B9B;
  overflow: hidden;
  top: -20px;
  right: -20px;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: rotate(-30deg);
  -ms-transform: rotate(-30deg);
  transform: rotate(-30deg);
}

.intro__ribbon-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-animation: ribbon 15s linear 0s infinite;
  animation: ribbon 15s linear 0s infinite;
}

.intro__ribbon-text {
  font-family: "Days";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  white-space: nowrap;
}

.intro__ribbon-text::before {
  content: "";
  background: url("/img/lightning.svg");
  width: 18px;
  height: 22px;
  display: block;
  margin-right: 30px;
}

.intro-list {
  margin: 40px 0px 70px;
}

@-webkit-keyframes ribbon {
  0% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
  }

  100% {
    -webkit-transform: translate(0%);
    transform: translate(0%);
  }
}

@keyframes ribbon {
  0% {
    -webkit-transform: translate(50%);
    transform: translate(50%);
  }

  100% {
    -webkit-transform: translate(0%);
    transform: translate(0%);
  }
}

@media only screen and (max-width: 1024px) {
  .nutrition-block {
    padding: 40px 30px;
  }
}

@media only screen and (max-width: 968px) {
  .footer__link:last-child {
    margin-left: 0;
  }

  .prize__grid {
    grid-template-columns: 1fr;
  }

  .terms {
    padding-top: 50px;
  }

  .terms__title {
    font-size: 30px;
  }

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

  .terms__column--img {
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .terms__ribbon {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    top: auto;
    bottom: 0;
    left: 0;
  }

  .journey {
    padding-top: 50px;
  }

  .journey__title {
    font-size: 30px;
  }

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

  .journey__column--img {
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .nutrition__row {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .faq {
    padding-top: 50px;
  }

  .faq__title {
    font-size: 30px;
  }

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

  .faq__column--img {
    margin: 0 auto;
    margin-bottom: 60px;
  }

  .intro {
    padding-top: 100px;
  }

  .intro--main {
    background-position: 50% 0px;
  }

  .intro__title {
    font-size: 30px;
  }

  .intro__title--dedicated {
    font-size: 30px;
  }

  .intro__title--dedicated::after {
    line-height: 24px;
    bottom: 10px;
  }

  .intro__description {
    margin: 20px 0px 30px;
  }

  .intro .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .intro__img {
    margin: 0 auto;
  }

  .intro__column {
    max-width: 100%;
  }

  .intro__column--img {
    max-width: 540px;
    margin: 0 auto;
  }

  .intro__ribbon {
    position: relative;
    bottom: 0;
    left: -30px;
    top: auto;
    right: auto;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
  }

  .intro__ribbon-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    -webkit-animation: ribbon 15s linear 0s infinite;
    animation: ribbon 15s linear 0s infinite;
  }

@-webkit-keyframes ribbon {
    0% {
      -webkit-transform: translate(0%);
      transform: translate(0%);
    }

    100% {
      -webkit-transform: translate(-80%);
      transform: translate(-80%);
    }
}

@keyframes ribbon {
    0% {
      -webkit-transform: translate(0%);
      transform: translate(0%);
    }

    100% {
      -webkit-transform: translate(-80%);
      transform: translate(-80%);
    }
}
}

@media only screen and (max-width: 768px) {
  .section__title {
    font-family: "Days";
    font-size: 30px;
    line-height: 1;
  }

  .fz-md-1 {
    font-size: calc(1px * 2 + 10px) !important;
    line-height: 1;
  }

  .fz-md-2 {
    font-size: calc(2px * 2 + 10px) !important;
    line-height: 1;
  }

  .fz-md-3 {
    font-size: calc(3px * 2 + 10px) !important;
    line-height: 1;
  }

  .fz-md-4 {
    font-size: calc(4px * 2 + 10px) !important;
    line-height: 1;
  }

  .faq-item {
    padding: 30px;
  }

  .faq-item__title {
    gap: 20px;
  }

  .faq-item__text {
    margin-top: 10px;
    margin-right: 0;
  }

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

  .header__logo {
    margin-right: 0;
  }

  .header__logo--registration {
    margin: 0 auto;
  }

  .header__link--dotted {
    display: none;
  }

  .header__ico {
    display: block;
  }

  .header__nav {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0px 10px;
    margin: 0 auto;
    display: none;
  }

  .header__nav.is-visible {
    display: none;
  }

  .header-mobile__link--small-r {
    display: block;
  }

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

  .footer__name {
    margin-top: 40px;
  }

  .programs {
    padding: 60px 0;
  }

  .programs__pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .programs__footer {
    margin-top: 30px;
  }

  .programs-swiper-slide {
    padding: 40px 30px 30px;
  }

  .programs-swiper-slide__col {
    max-width: unset;
  }

  .programs-swiper-slide__ribbon {
    right: 30px;
  }

  .programs-swiper-slide__ribbon--primary {
    color: #202020;
  }

  .programs-swiper-slide--only {
    border-radius: 0;
    background: #BB2B9B;
  }

  .programs-swiper-slide--only .programs-swiper-slide__price,
  .programs-swiper-slide--only .programs-swiper-slide__footer,
  .programs-swiper-slide--only .programs-swiper-slide__title {
    color: white;
  }

  .programs-swiper-slide--only .list__item {
    color: white;
  }

  .programs-swiper-slide--only .list__item::before {
    background-color: white;
  }

/*  .programs-swiper-slide--pc {
    display: none;
  }*/

/*  .programs-swiper-slide--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
*/
  .nutrition {
    padding: 60px 0;
  }

  .nutrition__title,
  .nutrition__subtitle {
    display: none;
  }

  .nutrition-footer {
    background: transparent;
    padding: 0;
    margin-top: 50px;
  }

  .nutrition-footer__col {
    margin: 0 auto;
  }

  .nutrition-footer__col:first-child {
    display: none;
  }

  .nutrition-footer__btn {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }

  .nutrition-footer .nutrition-block__title {
    text-align: center;
  }

  .nutrition-footer .nutrition-block__text {
    text-align: center;
    margin: 20px auto;
  }

  .stories {
    padding: 60px 0;
  }

  .stories__btn {
    margin-top: 30px;
  }
}

@media only screen and (max-width: 600px) {
  .prize-card__icon {
    display: none;
  }

  .prize-card--1::after {
    top: 140px;
  }

  .prize-card--2::after {
    top: 100px;
  }

  .prize-card--3::after {
    top: 100px;
  }

  .prize-card--4::after {
    top: 120px;
  }

  .prize-card--5::after {
    top: 120px;
  }

  .prize-card--6::after {
    top: 100px;
  }

  .operation-trainers__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}

@media only screen and (max-width: 480px) {
  .header__link {
    display: none;
  }

  .footer__link:not(.footer__link--dotted) {
    display: none;
  }

  .programs-swiper-slide {
    border-radius: 0;
  }

  .programs-swiper-slide--only {
    margin: 0px -30px;
  }

  .programs-swiper {
    margin: 0 -30px;
  }

  .journey {
    background: url("/img/journey-bg-mobile.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-bottom: 650px;
  }

  .journey__btn {
    width: calc(100% - 60px);
    position: absolute;
    z-index: 1;
    bottom: 40px;
  }

  .faq {
    background: url("/img/faq-bg-mobile.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-bottom: 600px;
  }

  .stories-swiper {
    margin: 0 -30px;
  }

  .oneblock {
    padding-top: 100px;
  }

  .oneblock .h3-title {
    margin-top: 10px;
  }

  .oneblock--success {
    background: url("/img/success-bg-mobile.png") no-repeat;
    background-size: cover;
    background-position: top;
  }

  .oneblock--failure {
    background: url("/img/failure-bg-mobile.png") no-repeat;
    background-size: cover;
    background-position: top;
  }

  .oneblock--404 {
    background: url("/img/404-bg-mobile.png") no-repeat;
    background-size: cover;
    background-position: top;
  }

  .oneblock__title {
    font-size: 30px;
  }

  .oneblock__subtitle {
    margin: 20px 0px 30px;
  }

  .intro--main {
    background: url("/img/intro-main-bg-mobile.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0px 40px;
  }

  .intro__btn--main {
    max-width: 100%;
    width: 100%;
    margin-top: 354px;
  }
}

@media only screen and (max-width: 420px) {
  .header__nav.is-visible {
    display: none;
  }

  .prize-money__btn {
    max-width: 100%;
    width: 100%;
  }

  .prize__grid {
    gap: 10px;
    margin-left: -30px;
    width: calc(100% + 60px);
  }

  .prize-card {
    height: 400px;
    padding: 40px 30px;
  }

  .prize-card--1::after {
    top: auto;
    bottom: -40px;
  }

  .prize-card--2::after {
    top: auto;
    bottom: -50px;
    right: 0;
  }

  .prize-card--3::after {
    top: auto;
    bottom: -50px;
    right: 50px;
  }

  .prize-card--4::after {
    top: auto;
    bottom: -50px;
    right: 50px;
  }

  .prize-card--5::after {
    top: auto;
    bottom: -50px;
    right: 50px;
  }

  .prize-card--6::after {
    top: auto;
    bottom: -50px;
    right: 70px;
  }

  .terms__btn {
    width: calc(100% - 60px);
    position: absolute;
    bottom: 100px;
    z-index: 1;
  }

  .terms-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .journey-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }

  .nutrition__row {
    gap: 10px;
    margin: 0px -30px;
  }

  .nutrition-block {
    max-width: 100%;
  }

  .operation-program {
    width: calc(100% + 60px);
    margin: 0 -30px;
  }

  .operation-program .input__input {
    max-width: calc(100% + 30px);
    width: 100%;
  }

  .operation-lession {
    width: calc(100% + 60px);
    margin: 0 -30px 10px;
  }

  .operation-lession__info {
    padding: 40px 30px;
  }

  .operation-trainers {
    width: calc(100% + 60px);
    margin: 0 -30px 10px;
  }

  .operation-payment {
    width: calc(100% + 60px);
    margin: 0 -30px;
  }

  .operation-payment--success {
    margin: 0 -30px 10px;
  }

  .operation-plans {
    margin: 0 -30px;
  }

  .operation-plan-item {
    padding: 40px 30px;
  }

  .operation__block {
    width: calc(100% + 60px);
    margin: 0 -30px;
  }

  .operation__block .input .input__input {
    width: 100%;
    max-width: 100%;
  }

  .registration__block {
    padding: 40px 30px;
    margin: 0 -30px;
  }

  .registration__block--small {
    max-width: calc(100% + 60px);
  }

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

@media only screen and (max-width: 375px) {
  .fz-sm-1 {
    font-size: calc(1px * 2 + 10px) !important;
    line-height: 1;
  }

  .fz-sm-2 {
    font-size: calc(2px * 2 + 10px) !important;
    line-height: 1;
  }

  .fz-sm-3 {
    font-size: calc(3px * 2 + 10px) !important;
    line-height: 1;
  }

  .fz-sm-4 {
    font-size: calc(4px * 2 + 10px) !important;
    line-height: 1;
  }
}