@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");
}

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: 1260px;
  --transition: 0.3s ease;
  --default-font-family: "Gilroy";
  --heading-font-family: "Gilroy";
  --sp: 120px;
  --accent: #0C9;
  --grad: linear-gradient(165.37deg, #FFECE7 -35.26%, #F3F1F6 73.62%);
  --bg: #fff;
  --bg-two: #FEFAEF;
  --yellow: #fc0;
  --text-color: #333237;
  --fz-default: 18px;
  --h1: 50px;
  --h2: 50px;
  --h3: 32px;
  --h4: 22px;
  --l: 24px;
  --m: 20px;
  --s: 16px;
}

body {
  font: 500 var(--fz-default)/140% 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;
}

body::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

body::-webkit-scrollbar-thumb {
  background: var(--accent);
}

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

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

.wrapper {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

[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;
}

h1 {
  font: 800 var(--h1)/120% var(--heading-font-family);
}

h1 span {
  color: var(--accent);
}

h2 {
  font: 800 var(--h2)/120% var(--heading-font-family);
}

h2 span {
  color: var(--accent);
}

h3 {
  font: 700 var(--h3)/140% var(--heading-font-family);
}

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

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 68px;
  border: 1px solid #FFC657;
  transition: var(--transition);
  font-weight: 600;
  color: var(--text-color);
  border-radius: 12px;
  background: #FFC657;
  padding: 0 30px;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn--green {
  background: var(--accent);
  border-color: var(--accent);
  border-radius: 2px;
}

.btn--green:hover {
  background: #FFC657;
  border: 1px solid #FFC657;
}

.subm {
  cursor: pointer;
  border: none;
  display: block;
  margin: 20px auto 12px;
  background: var(--accent);
  color: var(--text-color);
  transition: 0.3s all ease;
  border-radius: 12px;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
}

.subm:hover,
.subm:focus {
  background: var(--yellow);
  color: #fff;
}

.form {
  max-width: 535px;
  width: 100%;
  position: relative;
  background: #FFFFFF;
}

.form__title {
  text-align: center;
  margin-bottom: 26px;
}

.form .input {
  background: #fff;
  width: 100%;
  height: 56px;
  border: 1px solid #E1E1FF;
  border-radius: 6px;
  padding-left: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 56px;
  display: block;
}

.form .input__text {
  font-size: var(--s);
  margin-bottom: 10px;
}

.form .input__wrap {
  display: block;
  text-align: left;
  margin-bottom: 8px;
  position: relative;
}

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

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

.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 .intl-tel-input .selected-flag {
  padding: 0 0 0 15px;
}

.form .intl-tel-input .selected-flag .iti-arrow {
  right: 0;
}

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

.form__btn {
  width: 100%;
}

.form__price {
  text-align: center;
  margin-bottom: 16px;
  font-weight: 500;
  line-height: 120%;
}

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

.form__price .accent {
  color: var(--accent);
  font-weight: 700;
}

.form__privacy {
  max-width: 257px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  opacity: 0.8;
}

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

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

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

.header__logo {
  position: relative;
  background: url(../img/logo-black.svg) 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);
}

.burger.active .header__social {
  transform: translateY(0);
}
.footer {
  background: #001E16!important;
}

.hero {
  padding: 139px 0 60px;
  background: var(--bg-two);
  position: relative;
  overflow: hidden;
}

.hero__img {
  position: absolute;
  z-index: 1;
}

.hero__img.decor {
  width: 619.201px;
  height: 683.546px;
  transform: rotate(-110.344deg);
  top: -270px;
  left: -270px;
}

.hero__img.robot {
  width: 610px;
  height: 752px;
  right: -205px;
  bottom: -97px;
}

.hero__img.decor-2 {
  width: 80px;
  height: 104px;
  top: 73%;
  left: 33.3%;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero__left {
  display: flex;
  flex-flow: column;
  gap: 20px;
  max-width: 597px;
  width: 100%;
}

.hero__left-bottom {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero__left-bottom-icon {
  width: 50px;
  height: auto;
  flex-shrink: 0;
}

.hero__left-bottom-text {
  position: relative;
  max-width: 243px;
  font-size: 13px;
  font-weight: 500;
  line-height: 140%;
}

.hero__left-bottom-text:before {
  content: "";
  position: absolute;
  top: -29px;
  right: -67px;
  aspect-ratio: 80/96;
  width: 80px;
  background: url(../img/hero/hero-bottom-decor.svg) center/contain no-repeat;
}

.hero__up-title {
  max-width: 411px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  font-weight: 500;
  line-height: 130%;
  border-radius: 9px;
  border: 1px solid #FFC657;
  padding: 11px;
  margin-bottom: 4px;
}

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

.hero__title {
  text-transform: uppercase;
  line-height: 110%;
  font-weight: 900;
  color: #2A2C31;
}

.hero__subtitle {
  max-width: 551px;
  font-weight: 500;
  line-height: 140%;
}

.hero__subtitle b {
  font-weight: 700;
}

.hero__right {
  flex-shrink: 0;
}

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

.hero__decor-block {
  position: absolute;
  background: center/contain no-repeat;
  z-index: -1;
}

.hero__decor-block:before {
  position: absolute;
  content: "";
  background: rgba(248, 238, 213, 0.3);
  -webkit-backdrop-filter: blur(21.4331893921px);
  backdrop-filter: blur(21.4331893921px);
  z-index: -2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.hero__decor-block:after {
  position: absolute;
  content: "";
  background: #F8EED5;
  -webkit-backdrop-filter: blur(21.4331893921px);
  backdrop-filter: blur(21.4331893921px);
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.hero__decor-block_img {
  background: center/contain no-repeat;
  display: block;
  position: relative;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.hero__decor-block.amazon {
  top: -5px;
  left: 37%;
  width: 74px;
  height: 74px;
}

.hero__decor-block.amazon:after {
  width: 57px;
  height: 57px;
}

.hero__decor-block.amazon .hero__decor-block_img {
  width: 25px;
  height: 26px;
}

.hero__decor-block.ebay {
  top: -64px;
  left: 9%;
  width: 129px;
  height: 129px;
}

.hero__decor-block.ebay:after {
  width: 99px;
  height: 99px;
}

.hero__decor-block.ebay .hero__decor-block_img {
  width: 57px;
  height: 20px;
}

.hero__decor-block.etsy {
  top: 69%;
  left: 48.2%;
  width: 103px;
  height: 103px;
}

.hero__decor-block.etsy:after {
  width: 80px;
  height: 80px;
}

.hero__decor-block.etsy .hero__decor-block_img {
  width: 34px;
  height: 38px;
}

.hero__decor-block.prom {
  top: 24%;
  left: 43%;
  width: 100px;
  height: 100px;
}

.hero__decor-block.prom:after {
  width: 77px;
  height: 77px;
}

.hero__decor-block.prom .hero__decor-block_img {
  width: 45px;
  height: 56px;
  left: 48%;
  top: 53%;
}

.hero__decor-block.rozetka {
  top: 16%;
  left: 25.2%;
  width: 100px;
  height: 100px;
}

.hero__decor-block.rozetka:after {
  width: 77px;
  height: 77px;
}

.hero__decor-block.rozetka .hero__decor-block_img {
  width: 41px;
  height: 39px;
}

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

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

.hero__form-gift-icon {
  aspect-ratio: 1/1;
  width: 97px;
  margin-right: -20px;
  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: 283px;
  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: 90px 0 100px;
  overflow: hidden;
  position: relative;
}

.for:before {
  content: "";
  width: 1551.927px;
  height: 1713.197px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-56.208deg);
  background: url("../img/for/bg.webp") center/cover no-repeat;
  z-index: -1;
  filter: blur(69.9398727417px);
}

.for__title {
  text-align: center;
  max-width: 597px;
  width: 100%;
  margin: 0 auto 42px;
  color: #2A2C31;
}

.for__list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.for .item {
  background: #fff;
  padding: 20px;
  display: flex;
  flex-flow: column;
  gap: 22px;
  border-radius: 12px;
  width: calc((100% - 40px) / 3);
}

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

.for .item__text {
  font-size: var(--h3);
  font-weight: 400;
  line-height: 1.2;
  color: #2A2C31;
}

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

.program {
  padding: var(--sp) 0;
  background: #fff;
}

.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;
  margin-bottom: 52px;
  text-transform: uppercase;
  font-weight: 500;
}

.program__title span {
  font-weight: 900;
}

.program .module {
  position: relative;
}

.program .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;
}

.program .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);
}

.program .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);
}

.program .module.active .module__title {
  color: #fff;
}

.program .module.active .module__text h4 {
  color: #fff;
}

.program .module.active .module__up-title {
  background: #FFFFFF;
  border-color: #ffffff;
}

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

.program .module.active .module__btn_item {
  background: #fff;
  color: var(--text-color);
}

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

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

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

.program .module__title {
  max-width: 716px;
}

.program .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;
}

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

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

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

.program .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;
}

.program .module__detail {
  display: flex;
  gap: 50px;
  padding: 0 60px;
  visibility: hidden;
  max-height: 0;
  transition: 0.3s all;
  opacity: 0;
}

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

.program .module__detail-list .item {
  font-weight: 500;
  line-height: 130%;
  color: rgba(51, 50, 55, 0.8);
}

.program .module__detail .btn {
  padding: 25px 30px;
  flex-shrink: 0;
  box-sizing: border-box;
  align-self: center;
}

.program .module__detail_lessons,
.program .module__detail_results {
  width: 100%;
}

.program .module__detail_lessons h4,
.program .module__detail_results h4 {
  color: #01051c;
  font-weight: 700;
  line-height: 120%;
}

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

.speaker {
  background: #FEFAEF;
  padding: var(--sp) 0;
}

.speaker__container {
  display: flex;
  flex-flow: wrap;
  gap: 50px;
}

.speaker__title {
  text-align: center;
  width: 100%;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 110%;
}

.speaker__title span {
  font-weight: 900;
}

.speaker__photo {
  width: 100%;
  max-width: 578px;
}

.speaker__photo img {
  width: 100%;
}

.speaker__content {
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 30px;
}

.speaker__name {
  font-size: 36px;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: -0.72px;
}

.speaker__bio {
  display: flex;
  flex-flow: column;
  gap: 10px;
}

.speaker__bio li {
  color: rgba(0, 30, 22, 0.8);
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.4;
}

.speaker__bio li:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 1px;
}

.speaker__bio b {
  font-weight: 600;
}

.speaker__target {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(0, 30, 22, 0.8);
}

.speaker__target b {
  font-weight: 700;
}

.speaker__target-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: #fc0 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34' fill='none'%3E%3Ccircle cx='17' cy='17' r='16.5' stroke='%23001E16'/%3E%3Ccircle cx='17' cy='17' r='11' stroke='%23001E16' stroke-width='2'/%3E%3Ccircle cx='17' cy='17' r='4.5' fill='%23001E16' stroke='%23001E16'/%3E%3Cline x1='16.6464' y1='16.6464' x2='28.6464' y2='4.64645' stroke='%23001E16'/%3E%3C/svg%3E") 50% no-repeat;
  border-radius: 50%;
}

.speaker__target-text {
  max-width: 370px;
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.speaker__bonus {
  padding: 30px;
  display: flex;
  flex-flow: column;
  gap: 30px;
  border-radius: 6px;
  background: #fff;
  position: relative;
}

.speaker__bonus-decor {
  width: 115px;
  position: absolute;
  top: -32px;
  right: -2px;
  transform: rotate(-25.688deg);
}

.speaker__bonus-text {
  color: rgba(0, 30, 22, 0.8);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.speaker__bonus-text b {
  font-weight: 700;
}

.speaker__bonus-button {
  margin-right: auto;
}

.how {
  padding: 72px 0;
}

.how__title {
  margin-bottom: 33px;
  text-align: center;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 110%;
}

.how__title b {
  font-weight: 900;
}

.how__items {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.how__items .item {
  flex: 0 1 185px;
  width: 100%;
}

.how__items .item__image {
  height: 185px;
  margin-bottom: 25px;
}

.how__items .item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.how__items .item__content {
  text-align: center;
  max-width: 173px;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.2;
}

.how__items .item__content b {
  font-weight: 700;
}

.how__items .item.plus {
  flex: 0 1 60px;
  width: 60px;
  margin-top: 73px;
}

.how__items .item.plus img {
  width: 100%;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

.start {
  background: #FEFAEF;
  padding: 120px 0;
}

.start__title {
  text-align: center;
}

.start__items {
  margin-top: 42px;
  display: flex;
  gap: 11px;
}

.start__items .item {
  width: 100%;
  border-radius: 6px;
  background: #fff;
  padding: 30px;
}

.start__items .item__icon {
  height: 90px;
  width: auto;
}

.start__items .item__title {
  margin: 30px 0 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.48px;
}

.start__items .item__title b {
  font-weight: 700;
}

.start__items .item__text {
  color: rgba(0, 30, 22, 0.8);
  line-height: 140%;
}

.start__items .item__text b {
  color: #001e16;
  font-weight: 600;
}

.reviews {
  padding: 212px 0 86px;
}

.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%;
  text-transform: uppercase;
  font-weight: 400;
}

.reviews__title b {
  font-weight: 900;
}

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

.reviews__btn--mob {
  display: none;
}

.reviews .btn--green {
  min-width: 326px;
  border-radius: 12px;
}

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

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

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

.reviews .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 .reviews-slider__slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1.5);
  z-index: 2;
}

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

.reviews .reviews-slider__btn {
  position: absolute;
  top: 32px;
  transform: translateY(-50%);
  width: 47px;
  height: 60px;
  cursor: pointer;
}

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

.reviews .reviews-slider__btn_next {
  left: unset;
  right: 70px;
}

.reviews .reviews-slider__pagination {
  display: none;
}

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

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

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

.reviews .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="%2300CC99"/><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="%2300CC99"/></svg>') center/contain no-repeat;
  cursor: pointer;
  z-index: 3;
}

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

.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 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

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

.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: #fff;
  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;
}

@media (max-width: 1260px) {
  :root {
    --container-width: 760px;
    --sp: 80px;
    --fz-default: 16px;
    --h1: 32px;
    --h2: 28px;
    --h3: 20px;
    --l: 18px;
    --m: 16px;
    --s: 13px;
  }

  .btn {
    height: 49px;
  }

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

  .hero__img.decor-2 {
    top: 18%;
    left: 68.3%;
  }

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

  .hero__left {
    text-align: center;
  }

  .hero__up-title {
    margin: 0 auto 4px;
  }

  .hero__subtitle {
    margin: 0 auto;
  }

  .hero__form {
    padding: 24px 16px;
  }

  .hero__decor-block.amazon {
    left: 71%;
  }

  .hero__decor-block.etsy {
    left: 10.2%;
  }

  .hero__decor-block.prom {
    top: 28%;
    left: 78%;
  }

  .hero__decor-block.rozetka {
    top: 14%;
    left: 14.2%;
  }

  .program {
    padding: 40px 0;
  }

  .program__title {
    margin-bottom: 40px;
  }

  .program .module:before {
    right: 20px;
  }

  .program .module.active .module__detail {
    padding: 20px;
  }

  .program .module__main {
    padding: 20px;
  }

  .program .module__btn {
    max-width: 150px;
  }

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

  .program .module__detail {
    padding: 0 20px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .speaker__container {
    gap: 30px;
  }

  .speaker__photo {
    max-width: 360px;
  }

  .speaker__content {
    gap: 20px;
  }

  .speaker__name {
    font-size: 28px;
  }

  .speaker__bonus {
    padding: 16px;
    gap: 16px;
  }

  .speaker__bonus-decor {
    width: 70px;
    top: 40px;
    right: -25px;
  }

  .speaker__bonus-text br {
    display: none;
  }

  .speaker__bonus-button {
    width: 100%;
  }

  .start {
    padding: 52px 0;
  }

  .start__items {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .start__items .item {
    width: calc(50% - 5px);
    padding: 16px;
  }

  .start__items .item__icon {
    height: 40px;
  }

  .start__items .item__title {
    margin: 20px 0 0;
  }

  .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 .reviews__btn {
    display: none;
  }

  .reviews .reviews__btn--mob {
    display: flex;
  }

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

@media (max-width: 760px) {
  :root {
    --h1: 29px;
    --container-width: 360px;
    --sp: 52px;
  }

  .btn {
    padding: 0 10px;
  }

  .hero__img.decor {
    width: 400px;
    height: 400px;
    top: -170px;
    left: -170px;
  }

  .hero__decor-block.amazon {
    left: 78%;
    top: 4%;
  }

  .hero__decor-block.ebay {
    top: -75px;
    left: 2%;
  }

  .hero__decor-block.etsy {
    top: 34%;
    left: -3%;
  }

  .hero__decor-block.prom {
    top: 33%;
  }

  .hero__decor-block.rozetka {
    left: 0;
  }

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

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

  .for {
    padding: 60px 0;
  }

  .for .item {
    width: 100%;
  }

  .program .module:before {
    top: 107px;
  }

  .program .module__main {
    gap: 20px;
    flex-wrap: wrap;
  }

  .program .module__title br {
    display: none;
  }

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

  .program .module__detail .btn {
    width: 100%;
  }

  .speaker__bonus-decor {
    width: 56px;
    top: 10px;
    right: -5px;
  }

  .speaker__bonus-text {
    font-size: 20px;
    padding-right: 30px;
  }

  .how {
    padding: 52px 0;
  }

  .how__items {
    flex-direction: column;
  }

  .how__items .item.plus {
    margin: 0 auto;
  }

  .start__items .item {
    width: 100%;
  }

  .start__items .item__title {
    font-size: 20px;
  }

  .reviews__right-side {
    gap: 70px;
  }

  .reviews .reviews-slider {
    width: 100%;
  }

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

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

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

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