@charset "UTF-8";

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

@font-face {
  font-family: 'Gilroy';
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/Gilroy/Gilroy-Medium.eot');
  src: url('../fonts/Gilroy/Gilroy-Medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy/Gilroy-Medium.woff') format('woff'),
    url('../fonts/Gilroy/Gilroy-Medium.ttf') format('truetype'),
    url('../fonts/Gilroy/Gilroy-Medium.svg#Gilroy') format('svg');
}

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

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

@font-face {
  font-family: 'Gilroy';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/Gilroy/Gilroy-Extrabold.eot');
  src: url('../fonts/Gilroy/Gilroy-Extrabold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy/Gilroy-Extrabold.woff') format('woff'),
    url('../fonts/Gilroy/Gilroy-Extrabold.ttf') format('truetype'),
    url('../fonts/Gilroy/Gilroy-Extrabold.svg#Gilroy') format('svg');
}

@font-face {
  font-family: 'Gilroy';
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/Gilroy/Gilroy-Heavy.eot');
  src: url('../fonts/Gilroy/Gilroy-Heavy.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Gilroy/Gilroy-Heavy.woff') format('woff'), url('../fonts/Gilroy/Gilroy-Heavy.ttf') format('truetype'),
    url('../fonts/Gilroy/Gilroy-Heavy.svg#Gilroy') format('svg');
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
video {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --container-width: 1300px;
  --transition: 0.3s ease;
  --default-font-family: 'Gilroy';
  --heading-font-family: 'Gilroy';
  --sp: 60px;
  --sp-main: 120px;
  --accent: #f8954e;
  --secondary: #dedeff;
  --yellow: #f8f83b;
  --pink: #e081f7;
  --gradient: linear-gradient(181deg, #6c62e7 -2.92%, #483dcc 99.95%);
  --pink-light: #f8d9ff;
  --bg: #fff;
  --bg-secondary: #ffeade;
  --title-decor: #483dcc;
  --text-color: #1d1e20;
  --text-color-secondary: #fff;
  --fz-default: 16px;
  --h1: 60px;
  --h2: 50px;
  --h3: 32px;
  --xl: 24px;
  --l: 22px;
  --m: 20px;
  --s: 14px;
  --xs: 12px;
  --tr: 0.3s ease 0s;
}

body {
  font: 400 var(--fz-default) var(--default-font-family), Helvetica, Arial, sans-serif;
  background: var(--bg);
  min-width: 360px;
  color: var(--text-color);
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.hidden {
  display: none;
  overflow: hidden;
}

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-flow: column;
}

[class*='__container'] {
  margin: 0 auto;
  max-width: var(--container-width);
  padding: 0 10px;
  width: 100%;
}

form input.error {
  box-shadow: inset 0px 0px 20px 1px rgba(255, 0, 0, 0.3);
  border: 2px solid red !important;
}

form input.not_error {
  box-shadow: inset 0px 0px 20px 1px rgba(100, 255, 100, 0.3);
  border: 2px solid #99ff99 !important;
}

.swiper-btn {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="47" height="60" viewBox="0 0 47 60" fill="none"><circle opacity="0.2" cx="30.7928" cy="29.1727" r="16.2069" fill="%23F8954E"/><path d="M25.4302 36.647L30.8354 31.2418H-2.28882e-05V28.7237H30.8354L25.4302 23.3184L27.2105 21.5381L35.6552 29.9827L27.2105 38.4274L25.4302 36.647Z" fill="%23F8954E"/></svg>')
    center/contain no-repeat;
  width: 47px;
  height: 60px;
  cursor: pointer;
}

.messenger__close {
  width: 120px;
  height: 120px;
}

h1,
._h1 {
  font-weight: 800;
  font-size: var(--h1);
  line-height: 117%;
}

h2,
._h2 {
  font-weight: 400;
  font-size: var(--h2);
  line-height: 120%;
  text-transform: uppercase;
}

h2 b,
._h2 b {
  font-weight: 800;
}

h3,
._h3 {
  font-weight: 700;
  font-size: var(--h3);
  line-height: 100%;
}

a {
  color: var(--text-color);
  text-decoration: none;
}

._semibold {
  font-weight: 600;
}

._bold {
  font-weight: 700;
}

._accent {
  color: var(--accent);
}

._s {
  font-size: var(--s);
  line-height: 140%;
}

._m {
  font-size: var(--m);
  line-height: 150%;
}

._l {
  font-size: var(--l);
  line-height: 140%;
}

._line-through {
  text-decoration: line-through;
}

.btn {
  background: var(--accent);
  display: inline-block;
  padding: 20px 40px;
  min-width: 386px;
  text-align: center;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-color-secondary);
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 0 auto;
}

.form {
  width: 100%;
  position: relative;
  text-align: center;
}

.form__subm {
  margin: 24px auto 0;
}

.form__places {
  margin-top: 8px;
  font-size: 12px;
  line-height: 24px;
}

.form__agree {
  margin-top: 20px;
  font-size: 14px;
  line-height: 16px;
  opacity: 0.8;
}

.form__agree a {
  text-decoration: underline;
}

.form .input__wrap:first-of-type {
  margin-top: 32px;
}

.form .input__wrap {
  position: relative;
  display: block;
  margin: 10px auto 0;
  text-align: left;
}

.form .input__label {
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  display: block;
  transform: translate(0, -50%);
  position: absolute;
  left: 25px;
  top: 50%;
  transition: 0.3s ease;
}

.form .wrap__radio {
  padding: 10px 0 5px;
  margin-bottom: 15px;
  background: #f8f8f8;
  border: 1px solid #c6c6c6;
}

.form .input__wrap-radio {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.wrap__radio-title .input__label {
  font-weight: 700;
}

.form .input {
  width: 100%;
  height: 60px;
  background: #fff;
  border: 1px solid #c6c6c6;
  border-radius: 12px;
  padding-left: 25px;
  font-weight: 400;
  font-size: 16px;
  line-height: 60px;
  display: block;
}

.form .input__wrap.focused .input__label {
  transform: translate(0, -25px);
  font-size: 10px;
}

.form .radio {
  position: absolute;
  z-index: -1;
  opacity: 0;
  width: 1em;
  height: 1em;
  margin: 0;
}

.form .radio + span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border: 1px solid #3273fa;
  border-radius: 50%;
}

.form .radio + span::after {
  content: '';
  position: absolute;
  top: 50%;
  left: -23px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: transparent;
  border-radius: 50%;
}

.form .radio:checked + span::after {
  background: #3273fa;
}

.form .input__wrap-radio .input__label {
  transform: translate(0, 0);
  position: relative;
  top: 0;
}

.form .input__wrap-radio.focused .input__label,
.form .input__wrap-radio:hover .input__label {
  transform: translate(0, 0);
  font-size: 14px;
}

.form:before {
  content: '';
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.7) url(../img/loading.svg) 50% no-repeat;
  z-index: 10;
}

.form.loading:before {
  display: block;
}

.form .intl-tel-input {
  width: 100%;
}

.form .country-list .country-name {
  color: #333;
}

.form .subm {
  margin-top: 20px;
  width: 100%;
}

.form .form__price {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
}

.form .form__price .accent {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: #607cb1;
}

.form__privacy {
  margin: 16px auto 0;
  font-size: 10px;
  font-weight: 500;
  width: 258px;
  opacity: 0.8;
}

.form__privacy a {
  text-decoration: underline;
}

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: linear 0.3s;
}

.header__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.header__logo {
  position: relative;
  background: url(../img/logo-black.webp) 50% / contain no-repeat;
  flex-shrink: 0;
  aspect-ratio: 96/40;
  width: 96px;
  display: block;
}

.header__menu {
  position: relative;
  display: none;
}

.header__menu li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  transition: color var(--tr);
}

.header__menu li a:hover {
  color: var(--accent);
}

.header__btn {
  height: 50px;
  width: 207px;
  font-size: 14px;
  z-index: 1;
  border: none;
}

.header__btn:before {
  width: 100%;
  height: 100%;
}

.header__social {
  display: none;
}

.burger {
  position: relative;
  z-index: 110;
  display: none;
  height: 17px;
  width: 25px;
  cursor: pointer;
}

.burger._active span {
  background: #fff;
}

.burger span {
  background: var(--text-color);
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
}

.burger span:nth-child(1) {
  top: 0%;
  transform: rotate(0deg);
  transition: transform var(--tr), top var(--trd);
}

.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity var(--trd);
}

.burger span:nth-child(3) {
  top: 100%;
  transform: rotate(0deg) translateY(-100%);
  transition: transform var(--tr), top var(--trd);
}

.burger._active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: top var(--tr), transform var(--trd);
}

.burger._active span:nth-child(2) {
  top: 50%;
  opacity: 0;
  transition: opacity var(--tr);
}

.burger._active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: top var(--tr), transform var(--trd);
}

.header.active .header__social {
  transform: translateY(0);
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(68, 51, 104, 0.15);
}

.footer {
  margin-top: auto;
  background: var(--text-color) !important;
}

.modal-overlay {
  display: none;
  padding-top: 1px;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  overflow: auto;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}

.modal-overlay .modal-content {
  margin-bottom: 0px;
  border-radius: 4px;
}

.modal-overlay .close-button {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  transition: 0.2s linear;
}

.modal-overlay .close-button:before {
  background: #fff;
  content: '';
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(-45deg);
}

.modal-overlay .close-button:after {
  background: #fff;
  content: '';
  margin-top: -50px;
  height: 50px;
  width: 2px;
  display: block;
  transform: translateX(25px) rotate(45deg);
  transition: 0.2s linear;
}

#modal-video .modal-content {
  height: auto;
  width: 100%;
}

#modal-video .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

#modal-video .video iframe,
#modal-video .video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.countdownHolder {
  justify-content: flex-start;
  font: 30px/1 Gilroy, sans-serif;
  color: #01051c;
  font-weight: 600;
  text-align: center;
  letter-spacing: -3px;
  display: flex;
  align-items: flex-start;
  /*Параметры цифр */
  /*Параметры подложки для секций */
  /*Параметры секций разделения (:)*/
  /*Параметры вспомогательного текста (дни, часы, минуты, секунды)*/
}

.countdownHolder .position {
  display: inline-block;
  height: 1em;
  overflow: hidden;
  position: relative;
  width: 0.6em;
}

.countdownHolder .digit {
  position: absolute;
  display: block;
  border-radius: 0.2em;
  text-align: center;
  color: #000;
  letter-spacing: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.countdownHolder .countDays,
.countdownHolder .countHours,
.countdownHolder .countMinutes,
.countdownHolder .countSeconds {
  background: var(--secondary);
  border-radius: 5px;
  padding: 10px;
}

.countdownHolder .countDiv {
  display: none;
  width: 10px;
  height: 1em;
  position: relative;
}

.countdownHolder .countDiv:before,
.countdownHolder .countDiv:after {
  background: #444;
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: '';
}

.countdownHolder .countDiv:after {
  top: 0.6em;
}

.countdownHolder .textdigit {
  font-size: 15px;
  letter-spacing: 0px;
}

.timer-light .countdownHolder .countDays,
.timer-light .countdownHolder .countHours,
.timer-light .countdownHolder .countMinutes,
.timer-light .countdownHolder .countSeconds {
  border-radius: 5px;
  padding: 15px;
}

.timer-light .countdownHolder .textdigit {
  font-size: 10px !important;
  letter-spacing: 0px;
  font-weight: 400;
  color: #01051c;
  margin-top: -3px;
}

.timer-light .countdownHolder .countDiv {
  display: inherit;
  width: 10px;
  height: 1em;
  position: relative;
  margin: 0 3px;
}

.timer-light .countdownHolder .countDiv:before,
.timer-light .countdownHolder .countDiv:after {
  background: var(--secondary);
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 50%;
  margin-left: -3px;
  top: 0.2em;
  box-shadow: 1px 1px 1px rgba(4, 4, 4, 0.5);
  content: '';
}

.timer-light .countdownHolder .countDiv:after {
  top: 0.6em;
}

.hero {
  padding: 122px 0 59px;
}

.hero__container {
  position: relative;
  display: flex;
  gap: 56px;
}

.hero__left {
  display: flex;
  flex-direction: column;
      justify-content: center;
  gap: 20px;
  width: 630px;
}

.hero__up-title {
  width: fit-content;
  max-width: 461px;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  border-radius: 9px;
  border: 1px solid #5c83ce;
  background: #dae3fe;
  padding: 8px 16px;
}

.hero__up-title b {
  font-weight: 800;
}

.hero__title {
  text-transform: uppercase;
  line-height: 110%;
  font-weight: 800;
}

.hero__subtitle {
  width: 428px;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
}

.hero__subtitle b {
  font-weight: 700;
}

.hero__right {
  flex-shrink: 0;
}

.hero__form {
  position: relative;
  padding: 40px;
  width: 500px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4.224px 42.243px 0 rgba(68, 51, 104, 0.15);
}

.hero__form-decor-1,
.hero__form-decor-2,
.hero__form-decor-3 {
  position: absolute;
  background: center / contain no-repeat;
  z-index: -1;
}

.hero__form-decor-1 {
  top: -25%;
  left: 52%;
  aspect-ratio: 491 / 519;
  width: 487px;
}
.hero__form-decor-2 {
  top: 36%;
  left: -19%;
  aspect-ratio: 1341 / 671;
  width: 670px;
}
.hero__form-decor-3 {
  top: 70%;
  left: -27%;
  aspect-ratio: 625 / 572;
  width: 312px;
}

.hero__form-title {
  font-weight: 800;
  font-size: 32px;
  line-height: 110%;
  font-weight: 700;
  text-align: center;
}

.hero__form-gift {
  margin-top: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero__form-gift-icon {
  aspect-ratio: 1/1;
  width: 60px;
  background: url(../img/hero/form-gift.webp) center/contain no-repeat;
}

.hero__form-gift-text {
  font-weight: 400;
  text-align: left;
  font-size: 14px;
  line-height: 160%;
}

.hero__form-gift-text b {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.hero__access.access {
  display: none;
  margin-top: 28px;
}

.hero .access {
  position: relative;
  width: 283;
  font-size: 13px;
  gap: 12px;
  line-height: 140%;
  align-self: flex-start;
}

.hero .access ::after {
  content: '';
  display: block;
  position: absolute;
  right: -65px;
  top: -28px;
  width: 60px;
  height: 72px;
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%2260%22%20height%3D%2273%22%20viewBox%3D%220%200%2060%2073%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M16.352%2032.7669C14.4256%2030.0035%2013.8682%2026.1109%2015.5913%2023.119C17.5303%2019.7559%2021.6355%2019.2744%2025.0784%2020.2441C29.4388%2021.4755%2033.2009%2024.7074%2036.0612%2028.1211C37.4757%2029.8071%2038.5502%2031.643%2039.6879%2033.5164C40.1635%2034.2962%2040.774%2035.1971%2041.0873%2036.1342C43.7201%2034.7241%2046.0175%2032.6142%2047.7045%2030.1607C49.6018%2027.3955%2050.4682%2024.3348%2050.6181%2020.9974C50.7681%2017.6601%2050.282%2013.5905%2047.2388%2011.6039C46.1236%2010.8776%2047.1747%209.08545%2048.2898%209.82088C51.4231%2011.8729%2052.532%2015.5277%2052.6884%2019.1076C52.8385%2022.5138%2052.2931%2026.0366%2050.747%2029.0908C49.1536%2032.2448%2046.655%2034.9455%2043.7483%2036.9267C40.9708%2038.8188%2037.8892%2039.7646%2034.5383%2039.8746C28.1652%2040.0817%2020.218%2038.3169%2016.3473%2032.7714L16.352%2032.7669ZM33.139%2037.8142C35.2417%2037.8621%2037.2619%2037.6482%2039.1985%2036.967C39.1123%2036.6549%2038.8943%2036.3087%2038.7882%2036.0968C38.5097%2035.5486%2038.185%2035.0271%2037.8695%2034.5057C36.9806%2033.0475%2036.1696%2031.5677%2035.11%2030.221C32.888%2027.4024%2030.1017%2024.7712%2026.87%2023.1562C24.3219%2021.8766%2020.4088%2020.9221%2018.1178%2023.1966C15.9614%2025.3409%2016.374%2028.8792%2017.8408%2031.2789C20.8323%2036.1658%2027.8343%2037.696%2033.139%2037.8142Z%22%20fill%3D%22%231D1E20%22%2F%3E%0A%3Cpath%20d%3D%22M5.98633%2061.6788C5.80308%2061.4428%205.59231%2061.2155%205.38588%2061.002C4.95507%2060.5563%204.51036%2060.1242%204.11664%2059.6427C3.1995%2058.5175%202.18979%2057.4731%201.24963%2056.3614C1.12876%2056.2178%201.04482%2056.0473%201.00202%2055.873C0.734694%2055.4758%200.853951%2054.8746%201.23378%2054.5244C1.36551%2054.2799%201.58758%2054.0916%201.88579%2053.9914C2.79418%2053.6863%203.84371%2053.1186%204.79649%2052.6087C5.28895%2052.3471%205.7901%2052.1131%206.30022%2051.8884C6.55296%2051.7783%206.80585%2051.659%207.04976%2051.5305C7.36277%2051.362%207.64003%2051.1472%207.99702%2051.0799C8.83917%2050.92%209.39612%2051.7468%209.04193%2052.4858C8.73961%2053.1205%207.89957%2053.4312%207.29284%2053.7046C6.76433%2053.9382%206.25391%2054.1812%205.74305%2054.4516C5.55896%2054.5491%205.3795%2054.6421%205.1954%2054.7396C10.1846%2055.4604%2015.2261%2055.7708%2020.2623%2055.277C23.2375%2054.9827%2026.1597%2054.2992%2028.9946%2053.3676C32.0819%2052.3532%2035.1836%2051.0102%2037.4359%2048.5842C38.4901%2047.4454%2039.3249%2046.0518%2039.6872%2044.5317C40.0202%2043.13%2039.9117%2041.6616%2039.7751%2040.2385C39.6506%2038.9115%2041.7214%2038.9544%2041.8461%2040.2722C42.1106%2043.0909%2041.8849%2045.7554%2040.326%2048.1926C38.3969%2051.2223%2035.2644%2053.0629%2032.0035%2054.3713C25.8675%2056.8392%2019.2548%2057.7552%2012.6652%2057.5247C9.86978%2057.429%207.06815%2057.1504%204.30089%2056.7216C4.78032%2057.264%205.25526%2057.8017%205.7163%2058.3529C6.13261%2058.8485%206.60469%2059.2811%207.04417%2059.7542C7.55531%2060.3108%208.0841%2060.9042%208.15362%2061.682C8.18853%2062.0618%207.85836%2062.4448%207.52785%2062.5673C7.1423%2062.7073%206.78349%2062.6055%206.47744%2062.3446C6.24798%2062.1445%206.10226%2061.8451%205.97706%2061.6877L5.98633%2061.6788Z%22%20fill%3D%22%231D1E20%22%2F%3E%0A%3C%2Fsvg%3E%0A')
    center/contain no-repeat;
}

.hero .access__icon {
  aspect-ratio: 1/1;
  width: 40px;
  background: url('../img/icons/access-icon.webp') center/contain no-repeat;
  flex-shrink: 0;
}

.hero .access__text b {
  font-weight: 800;
}

.for {
  padding: 100px 0 100px;
}

.for__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.for__title {
  text-align: center;
  width: 597px;
}

.for__list {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.for .item {
  background: #eff6ff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-radius: 12px;
  align-items: start;
}

.for .item__icon {
  aspect-ratio: 1/1;
  width: 30px;
  background: center/contain no-repeat;
}

.for .item__title {
  font-size: 32px;
}

.for .item__text {
  font-size: 20px;
  font-weight: 500;
}

.for .item__text b {
  font-weight: 700;
}

.program {
  padding: var(--sp-main) 0;
  padding-top: 100px;
  background: var(--bg-secondary);
}

.program__modules {
  width: 100%;
}

.program__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.program__title {
  line-height: 110%;
  max-width: 746px;
  text-align: center;
}

.module {
  position: relative;
  margin-top: 52px;
}

.module::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 62px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M18 2L2 18M2 18H18M2 18V2' stroke='%2301051C' stroke-width='3'/%3E%3C/svg%3E")
    50% / contain no-repeat;
  z-index: 1;
  transition: 0.3s all;
}

.module.active::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='19' viewBox='0 0 20 19' fill='none'%3E%3Cpath d='M18.1292 1.12939L2.12915 17.1294M2.12915 17.1294H18.1292M2.12915 17.1294L2.12915 1.12939' stroke='white' stroke-width='3'/%3E%3C/svg%3E")
    50% / contain no-repeat;
  transform: rotate(180deg);
}

.module__main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px;
  cursor: pointer;
}

.module__main::before {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(1, 5, 28, 0.2);
}

.module__title {
  max-width: 716px;
}

.module__up-title {
  display: block;
  padding: 16px 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  color: var(--text-color);
  border: solid 1px var(--text-color);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
}

.module__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.module__text h4 {
  color: #01051c;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}

.module__btn {
  width: 100%;
  max-width: 255px;
}

.module__btn_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: var(--accent);
  stroke-width: 1px;
  stroke: #9eb9ff;
  color: var(--text-color-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 120%;
  border-radius: 50%;
  cursor: pointer;
}

.module__detail {
  display: flex;
  align-items: center;
  -moz-column-gap: 80px;
  column-gap: 80px;
  padding: 0 60px;
  visibility: hidden;
  max-height: 0;
  transition: 0.3s all;
  opacity: 0;
}

.module__detail-list {
  list-style: disc;
  margin-top: 16px;
  padding-left: 22px;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}

.module__detail-list .item {
  font-weight: 500;
  line-height: 130%;
  color: rgba(29, 30, 32, 0.8);
}

.module__detail .btn {
  padding: 25px 50px;
  height: auto;
  flex-shrink: 0;
  box-sizing: border-box;
}

.module__detail_lessons {
  width: 100%;
}

.module__detail_lessons h4 {
  color: #01051c;
  font-size: 22px;
  font-weight: 700;
  line-height: 120%;
}

.module.active .module__main {
  border-radius: 20px;
  border-top: 1px solid rgba(1, 5, 28, 0.2);
  background: var(--accent);
  color: var(--text-color-secondary);
}

.module.active .module__text h4 {
  color: var(--text-color-secondary);
}

.module.active .module__up-title {
  background: var(--text-color);
  color: var(--text-color-secondary);
}

.module.active .module__detail {
  visibility: visible;
  max-height: 2000px;
  padding: 40px 60px;
  opacity: 1;
}

.module.active .module__btn_item {
  background: rgba(255, 255, 255, 0.3);
  color: var(--text-color-secondary);
}

.module.active .module__main::before {
  display: none;
}

.module:last-child::after {
  content: '';
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0;
  background: rgba(1, 5, 28, 0.2);
}

/* tablet */

.get-access {
  padding: 136px 0;
}

.get-access__container {
  position: relative;
}

.get-access__title {
  max-width: 495px;
  line-height: 110%;
}

.get-access__subtitle {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  max-width: 390px;
}

.get-access__icon {
  aspect-ratio: 1/1;
  width: 50px;
  background: url('../img/icons/access-icon.webp') center/contain no-repeat;
  flex-shrink: 0;
}

.get-access__text {
  font-size: 20px;
  font-weight: 600;
  line-height: 130%;
}

.get-access__bg {
  position: absolute;
  left: 39%;
  top: -32%;
  aspect-ratio: 771/487;
  width: 674px;
  background: url('../img/get-access/bg.webp') center/contain no-repeat;
  z-index: -1;
}

.get-access__btn {
  margin-top: 20px;
}

.profit {
  padding: 100px 0;
}

.profit__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profit__title {
  max-width: 495px;
  text-align: center;
}

.profit__slider {
  margin-top: 32px;
  position: relative;
  width: 100%;
  margin-top: 24px;
}

.profit__slider-control {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 50px;
}

.profit__slider-pagination {
  align-items: center;
  position: relative;
  width: auto !important;
  flex: 0 0 auto;
  margin: 0 50px;
}

.profit__slider-btn {
  flex: 0 0 auto;
}

.profit__slider-btn_prev {
  transform: rotate(180deg);
}

.profit .item {
  border-radius: 16px;
  padding: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0px 4px 40px rgba(68, 51, 104, 0.15);
}

.profit .item__image {
  aspect-ratio: 361/186;
  width: 100%;
  background-size: contain;
  background-position: top left;
  background-repeat: no-repeat;
  border-radius: 12px;
}

.profit .swiper-pagination-horizontal {
  bottom: 0 !important;
  display: flex;
  align-items: center;
}

.profit .swiper-pagination-bullet {
  border-radius: 1px;
  background: #f8954e;
  transition: 0.3s ease;
}

.profit .swiper-pagination-bullet-active {
  scale: 1.3;
  transform: translateY(-1px);
}

.instructor {
  padding: 100px 0;
}

.instructor__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.instructor__title {
  width: 495px;
  text-align: center;
}

.instructor__content {
  margin-top: 32px;
  display: flex;
  gap: 21px;
}

.instructor__img {
  aspect-ratio: 1/1;
  width: 585px;
  -o-object-fit: contain;
  object-fit: contain;
}

.instructor__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.instructor__name {
  font-size: 36px;
}

.instructor__position {
  margin-top: 5px;
  color: #5b80ca;
  font-weight: 600;
  line-height: 140%;
  font-size: 25px;
}

.instructor__list {
  display: flex;
  flex-direction: column;
  margin-top: 49px;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  gap: 20px;
}

.instructor__list .item {
  position: relative;
  padding-left: 26px;
}

.instructor__list .item::before {
  background: #5b80ca;
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1/1;
  width: 8px;
  border-radius: 2px;
}

.reviews {
  background: var(--bg-secondary);
  padding: 86px 0;
}

.reviews__container {
  display: flex;
  gap: 56px;
}

.reviews__left-side {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  width: 488px;
  flex-shrink: 0;
}

.reviews__title {
  line-height: 110%;
}

.reviews__right-side {
  position: relative;
  flex: 1;
  width: 100%;
}

.reviews__btn--mob {
  display: none;
}

.reviews-slider {
  position: absolute;
  width: 654px;
  top: -160px;
}

.reviews-slider__body {
  overflow: hidden;
  padding: 104px 0;
}

.reviews-slider__slide {
  height: 418px;
  border-radius: 30px;
  padding: 4px;
  opacity: 0.5;
  transition: opacity var(--tr), transform var(--tr);
  overflow: hidden;
}

.reviews-slider__slide::before {
  background: url('data:image/svg+xml;utf8,%3Csvg%20width%3D%22319%22%20height%3D%22641%22%20viewBox%3D%220%200%20319%20641%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M274.547%200.867188H43.953C20.1546%200.867188%200.855713%2020.1575%200.855713%2043.956V597.053C0.855713%20620.851%2020.1546%20640.141%2043.953%20640.141H274.547C298.345%20640.141%20317.644%20620.851%20317.644%20597.053V43.956C317.644%2020.1575%20298.345%200.867188%20274.547%200.867188ZM300.236%20624.88C299.646%20625.428%20299.038%20625.95%20298.414%20626.454C298.2%20626.643%20297.969%20626.822%20297.747%20626.985C297.079%20627.507%20296.395%20628.003%20295.685%20628.482C295.642%20628.516%20295.599%20628.55%20295.557%20628.576C295.12%20628.85%20294.684%20629.132%20294.256%20629.397C293.769%20629.696%20293.273%20629.979%20292.776%20630.261C292.272%20630.526%20291.767%20630.8%20291.254%20631.048C291.006%20631.168%20290.74%20631.296%20290.492%20631.416C290.236%20631.544%20289.971%20631.664%20289.714%20631.775C288.927%20632.126%20288.123%20632.434%20287.31%20632.733C286.771%20632.93%20286.224%20633.118%20285.676%20633.281C285.402%20633.366%20285.12%20633.452%20284.846%20633.529C284.008%20633.751%20283.153%20633.974%20282.297%20634.145C282.023%20634.205%20281.733%20634.265%20281.433%20634.316C281.134%20634.367%20280.852%20634.419%20280.561%20634.461C279.979%20634.555%20279.389%20634.641%20278.798%20634.701C278.379%20634.761%20277.969%20634.786%20277.549%20634.821C277.199%20634.846%20276.857%20634.863%20276.506%20634.88C275.856%20634.915%20275.214%20634.932%20274.555%20634.932H43.9616C43.2944%20634.932%2042.6442%20634.915%2041.9941%20634.88C41.6433%20634.863%2041.3012%20634.846%2040.9504%20634.821C40.2746%20634.769%2039.6074%20634.709%2038.923%20634.632C39.1797%20634.658%2039.4363%20634.675%2039.6929%20634.701C20.7961%20632.571%206.05682%20616.497%206.05682%20597.044V43.956C6.05682%2023.7247%2021.9938%207.14616%2041.9855%206.11107H42.0112C42.6528%206.07685%2043.2944%206.05974%2043.953%206.05974H274.538C275.197%206.05974%20275.83%206.07685%20276.48%206.11107H276.489C276.839%206.12818%20277.182%206.14529%20277.532%206.17095C277.866%206.19661%20278.208%206.23083%20278.55%206.25649C297.558%208.27534%20312.435%2024.409%20312.435%2043.9474V597.044C312.435%20598.986%20312.289%20600.902%20312.007%20602.776C311.93%20603.238%20311.853%20603.708%20311.767%20604.153C311.323%20606.48%20310.664%20608.729%20309.817%20610.885C309.654%20611.33%20309.466%20611.775%20309.278%20612.203C308.08%20614.923%20306.566%20617.481%20304.795%20619.833C304.624%20620.047%20304.445%20620.287%20304.274%20620.5C303.05%20622.066%20301.682%20623.512%20300.236%20624.872V624.88Z%22%20fill%3D%22white%22%20stroke%3D%22%231D1E20%22%20stroke-miterlimit%3D%2210%22%2F%3E%0A%3C%2Fsvg%3E%0A')
    no-repeat 0 0 / contain;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 23px;
}

.reviews-slider__slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1.5);
  z-index: 2;
}

.reviews-slider__slide-image {
  height: 100%;
  width: 100%;
  background: top center/cover no-repeat;
}

.reviews-slider__btn {
  position: absolute;
  top: 32px;
  transform: translateY(-50%);
}

.reviews-slider__btn_prev {
  left: 70px;
  transform: translateY(-50%) rotate(180deg);
}

.reviews-slider__btn_next {
  right: 70px;
}

.reviews-slider__pagination {
  display: none;
}

.swiper-pagination-horizontal {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  margin: 0 2px !important;
  border-radius: 1px;
  background: #f8954e;
  transition: 0.3s ease;
  width: 4px;
  height: 4px;
}

.swiper-pagination-bullet-active {
  scale: 1.3;
  transform: translateY(-1px);
}

.reviews__btn-wrap {
  display: flex;
  justify-content: center;
}

.swiper-btn {
  cursor: pointer;
  z-index: 3;
}

.reviews + .packages {
  margin-top: var(--sp-main);
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --h1: 30px;
    --h2: 30px;
    --h3: 24px;
    --l: 16px;
    --m: 18px;
    --s: 12px;
    --xs: 10px;
    --sp-main: 80px;
    --sp: 30px;
    --fz-default: 15px;
  }

  .form .input__wrap:first-of-type {
    margin-top: 16px;
  }

  .form .input__label {
    font-size: 12px;
    opacity: 0.7;
  }

  .form .input {
    height: 50px;
  }

  .form .subm {
    margin-top: 16px;
    padding: 16px 32px;
    height: 56px;
  }

  .form .form__price {
    font-size: 16px;
    margin-top: 12px;
  }

  .form__privacy {
    margin: 8px auto 0;
    width: 220px;
  }

  .header__logo {
    width: 68px;
  }

  .header__menu {
    gap: 24px;
  }

  .header__btn {
    height: 40px;
    display: inline-flex;
    width: auto;
  }

  .hero {
    padding: 76px 0 50px;
  }

  .hero__container {
    gap: 25px;
    flex-direction: column;
  }

  .hero__left {
    gap: 0;
    margin-top: 0;
    align-items: center;
    width: 100%;
  }

  .hero__up-title {
    text-align: center;
  }

  .hero__title {
    margin-top: 24px;
    max-width: 620px;
    text-align: center;
  }

  .hero__subtitle {
    text-align: center;
    margin-top: 16px;
    font-size: 16px;
  }

  .hero__right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__form {
    padding: 24px 16px;
    width: 420px;
  }

  .hero__form-decor-1 {
    top: -19%;
    left: 68%;
    width: 267px;
  }
  .hero__form-decor-2 {
    top: 22%;
    left: -17%;
    width: 566px;
  }
  .hero__form-decor-3 {
    top: 68%;
    left: -20%;
    width: 192px;
  }

  .hero__form-title {
    font-size: 20px;
  }

  .hero__form-gift {
    margin-top: 12px;
    gap: 10px;
  }

  .hero__form-gift-icon {
    width: 46px;
  }

  .hero__form-gift-text {
    font-size: 10px;
  }

  .hero__form-gift-text b {
    font-size: 12px;
  }

  .hero__access.access {
    display: flex;
    align-self: center;
    transform: translateX(-26px);
  }

  .for {
    padding: 10px 0 86px;
  }

  .for__title {
    width: 343px;
  }

  .for__list {
    margin-top: 32px;
    gap: 8px;
  }

  .for .item {
    gap: 12px;
  }

  .for .item__icon {
    width: 24px;
  }

  .for .item__title {
    font-size: 24px;
  }

  .for .item__text {
    font-size: 16px;
  }

  .program {
    padding: 40px 0;
  }

  .program__modules {
    margin-top: 40px;
  }

  .module {
    margin-top: 0;
    padding-bottom: 20px;
  }

  .module::before {
    top: 25px;
    right: 30px;
  }

  .module.active::before {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M18 2L2 18M2 18H18M2 18V2' stroke='%2301051C' stroke-width='3'/%3E%3C/svg%3E")
      50% / contain no-repeat;
  }

  .module__title {
    font-size: 22px;
    max-width: 480px;
  }

  .module__up-title {
    padding: 10px 16px;
    font-size: 16px;
  }

  .module__text {
    gap: 20px;
  }

  .module__detail-list {
    gap: 10px;
  }

  .module__detail .btn {
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 40px;
  }

  .module.active .module__main {
    background: transparent;
    color: var(--text-color);
    border-radius: 0;
  }

  .module.active .module__up-title {
    color: var(--text-color);
    background-color: transparent;
  }

  .module.active .module__detail {
    margin-top: 20px;
    padding: 0;
  }

  .module.active .module__btn {
    display: none;
  }

  .module__main {
    padding: 40px 20px;
  }

  .module__text h4 {
    font-size: 22px;
  }

  .module__btn {
    max-width: 150px;
  }

  .module__btn_item {
    width: 100px;
    height: 100px;
  }

  .module__detail {
    -moz-column-gap: 20px;
    column-gap: 20px;
  }

  .get-access {
    padding: 56px 0;
  }

  .get-access__title {
    max-width: 300px;
  }

  .get-access__subtitle {
    margin-top: 20px;
    gap: 12px;
  }

  .get-access__icon {
    width: 40px;
  }

  .get-access__text {
    font-size: 16px;
    line-height: 140%;
  }

  .get-access__bg {
    left: 48%;
    top: -6%;
    width: 420px;
  }

  .profit {
    padding: 56px 0 0;
  }

  .profit__slider-control {
    padding-top: 24px;
  }

  .instructor {
    padding: 48px 0;
  }

  .instructor__title {
    width: 294px;
  }

  .instructor__content {
    gap: 24px;
    flex-direction: column;
  }

  .instructor__img {
    margin: 0 auto;
    width: 385px;
  }

  .instructor__name {
    font-size: 24px;
  }

  .instructor__list {
    margin-top: 24px;
    font-size: 16px;
  }

  .instructor__list .item {
    padding-left: 16px;
  }

  .reviews {
    padding: 32px 0;
  }

  .reviews__container {
    flex-direction: column;
    align-items: center;
    gap: 44px;
  }

  .reviews__left-side {
    width: auto;
  }

  .reviews__title {
    text-align: center;
  }

  .reviews__right-side {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .reviews__btn {
    display: none;
  }

  .reviews__btn--mob {
    display: block;
  }

  .reviews-slider {
    margin: 0 auto;
    position: relative;
    left: 0;
    top: 0;
  }
}

@media (max-width: 900px) {
  .messenger__close {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 760px) {
  :root {
    --container-width: 363;
    --sp-main: 60px;
  }

  [class*='__container'] {
    flex-wrap: wrap;
  }

  h1,
  ._h1 {
    line-height: 100%;
  }

  .btn {
    min-width: auto;
  }

  .header {
    padding: 10px 0;
  }

  .header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    gap: 24px;
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(18, 18, 18, 0.5647058824);
    backdrop-filter: blur(10px);
    transform: translateY(-100%);
    z-index: 104;
    transition: transform var(--tr);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }

  .header__menu ._active {
    transform: translateY(0%);
  }

  .header__menu ul {
    padding: 100px 0 50px;
    height: 100%;
    flex-direction: column;
    align-items: center;
  }

  .header__menu ul li {
    padding: 10px 0;
    text-align: center;
  }

  .header__menu li a {
    color: #fff;
    font-weight: 700;
    font-size: 20px;
  }

  .header__menu._active {
    transform: translateY(0%);
  }

  .header__social {
    display: flex;
    position: fixed;
    bottom: 50px;
    left: 0;
    justify-content: center;
    align-items: center;
    z-index: 100;
    width: 100%;
    opacity: 1;
    transition: 0.3s ease;
    transform: translateX(-100%);
    z-index: 111;
  }

  .header__social_link {
    margin: 0 10px;
  }

  .burger {
    display: block;
  }

  .countdownHolder {
    font: 23px/1 Gilroy, sans-serif;
  }

  .hero__title {
    font-size: 29px;
    max-width: 343px;
  }

  .hero__subtitle {
    max-width: 298px;
  }

  .hero__form {
    width: 343px;
  }

  .hero__form-decor-1 {
    top: -19%;
    left: 55%;
  }
  .hero__form-decor-2 {
    top: 23%;
    left: -20%;
    width: 480px;
  }
  .hero__form-decor-3 {
    top: 70%;
    left: -19%;
  }

  .for__list {
    grid-template-columns: repeat(1, 1fr);
  }

  .module::before {
    top: 80px;
    right: 0px;
  }

  .module__main {
    padding: 20px 0 0;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .module__title {
    width: 314px;
  }

  .module__detail {
    margin-top: 0;
  }

  .module__detail .btn {
    width: 100%;
  }

  .module__detail {
    flex-direction: column;
    row-gap: 15px;
    width: 100%;
  }

  .module__btn {
    max-width: -moz-max-content;
    max-width: max-content;
  }

  .get-access {
    padding: 56px 0 0;
  }

  .get-access__bg {
    aspect-ratio: 343/283;
    left: auto;
    top: auto;
    bottom: 86px;
    width: 343px;
    background: url('../img/get-access/bg-mob.webp') center/contain no-repeat;
  }

  .get-access__btn {
    margin-top: 330px;
    width: 100%;
  }

  .reviews__right-side {
    gap: 70px;
  }

  .instructor__img {
    width: 100%;
  }

  .reviews-slider {
    width: 100%;
  }

  .reviews-slider__body {
    padding: 85px 0;
    overflow: visible;
  }

  .reviews-slider__slide {
    height: 338px;
    border-radius: 24px;
  }

  .reviews-slider__slide.swiper-slide-active {
    transform: scale(1.5);
  }

  .reviews-slider__btn {
    top: auto;
    bottom: -95px;
    width: 30px;
  }

  .reviews-slider__pagination {
    position: absolute;
    top: auto;
    bottom: -37px !important;
    display: flex;
  }
}
