@font-face {
  font-display: swap;
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/unbounded-v12-cyrillic-regular.woff2') format('woff2'),
  url('../fonts/unbounded-v12-cyrillic-regular.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/unbounded-v12-cyrillic-700.woff2') format('woff2'),
  url('../fonts/unbounded-v12-cyrillic-700.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/unbounded-v12-cyrillic-900.woff2') format('woff2'),
  url('../fonts/unbounded-v12-cyrillic-900.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/jost-v20-cyrillic-regular.woff2') format('woff2'),
  url('../fonts/jost-v20-cyrillic-regular.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/jost-v20-cyrillic-500.woff2') format('woff2'),
  url('../fonts/jost-v20-cyrillic-500.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/jost-v20-cyrillic-700.woff2') format('woff2'),
  url('../fonts/jost-v20-cyrillic-700.ttf') format('truetype');
}
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/inter-v20-cyrillic-700.woff2') format('woff2'),
  url('../fonts/inter-v20-cyrillic-700.ttf') format('truetype');
}

:root {
  --font-family: "Unbounded", sans-serif;
  --second-family: "Jost", sans-serif;
  --third-family: "Inter", sans-serif;
  --141822: #141822;
  --ffffff: #ffffff;
  --ffb800: #ffb800;
  --232b3d: #232b3d;
  --869ccf: #869ccf;
}

html {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  color: var(--ffffff);
}

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

html,
body,
h1, h2, h3, h4, h5, h6,
p,
blockquote,
figure,
dl, dd,
ul, ol,
pre {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  background: var(--141822) url("/img/main_bg.webp") center top no-repeat;
  background-size: cover;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

svg, path, rect {
  transition: all 0.3s ease-in-out;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  transition: all 0.3s ease-in-out;
}

button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
._container {
  max-width: 1500px;
  margin: 0 auto;
}
@media (max-width: 1400px) {
  ._container {
    padding: 0 16px;
  }
}
@media (max-width: 650px) {
  ._container {
    padding: 0 16px;
  }
}
.animate {
  transition: all 0.3s ease-in-out;
}
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(20px);
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  padding-top: 60px;
  max-width: 1300px;
  padding-bottom: 20px;
}
.header__nav ul,
.footer__nav ul {
  display: flex;
  gap: 10px;
}
.header__nav ul li a,
.footer__nav ul li a {
  padding: 10px 20px;
  background: transparent;
  border-radius: 100px;
  display: block;
  font-size: 16px;
  font-weight: 400;
}
.header__nav ul li a.nav__link--active,
.footer__nav ul li a.nav__link--active,
.header__nav ul li a:hover,
.footer__nav ul li a:hover {
  background: var(--ffb800);
  color: var(--141822);
  backdrop-filter: blur(4px);
}
.header__social {
  display: flex;
  gap: 20px
}
.header__social a:hover rect {
  fill: var(--ffffff);
}
main {
  padding: 140px 0 0 0;
}
.hero {
  padding: 0 0 100px 0;
}
.hero__container {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.hero__container:before {
  position: absolute;
  content: '';
  background: url("/icon/hero-bg-2.svg") 0 0 no-repeat;
  width: 135px;
  height: 21px;
  bottom: 100px;
  left: -100px;
}
.hero__container:after {
  position: absolute;
  content: '';
  background: url("/icon/hero-bg-2.svg") 0 0 no-repeat;
  width: 135px;
  height: 21px;
  bottom: 100px;
  right: -100px;
}
.hero__content {
  padding: 40px 0 0 100px;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
.hero__container h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  color: var(--ffffff);
  position: relative;
}
.hero__container h1:after {
  position: absolute;
  content: '';
  background: url("/icon/hero-bg-1.svg") 0 0 no-repeat;
  width: 340px;
  height: 1px;
  bottom: -20px;
  left: -125px;
}
.hero__container h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  color: var(--ffb800);
  position: relative;
}
.hero__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero__text p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  color: var(--ffffff);
}
.button {
  border-radius: 100px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--232b3d);
}
.button--orange {
  background: var(--ffb800);
}
.button--orange:hover {
  background: var(--ffffff);
}
.reviews__container {
  padding: 60px 100px;
  backdrop-filter: blur(20px);
  background: rgba(68, 79, 105, 0.2);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.reviews__container:after {
  position: absolute;
  content: '';
  background: url("/icon/reviews-bg-1.svg") 0 0 no-repeat;
  width: 231px;
  height: 23px;
  top: 70px;
  left: -150px;
}
.reviews__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
}
.reviews__top{
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.reviews-card{
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: linear-gradient(0deg, rgba(134, 156, 207, 0.2) 0%, rgba(134, 156, 207, 0.2) 100%);
  width: calc((100% - 60px) / 4);
}
.reviews-card__header{
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.reviews-card__avatar{
  width:48px;
  height:48px;
  border-radius:50%;
}
.reviews-card__name{
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--ffb800);
}
.reviews-card__text{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 111%;
  color: var(--ffffff);
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:4;
  overflow:hidden;
}
.reviews-card__text--open{
  -webkit-line-clamp:unset;
}
.reviews-card__button {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  color: var(--ffffff);
  border-radius: 20px;
  padding: 10px 20px;
  margin: 30px 0 0 0;
  backdrop-filter: blur(20px);
  background: rgba(68, 79, 105, 0.4);
}
.button--grey:hover {
  color: var(--141822);
  background: var(--ffb800);
}
.reviews__bottom {
  margin: 20px 0 0 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.reviews__bottom .reviews__bottom {
  margin: 0;
}
.reviews {
  width: 100%;
}
.video-card {
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: linear-gradient(0deg, rgba(134, 156, 207, 0.2) 0%, rgba(134, 156, 207, 0.2) 100%);
  width: calc((100% - 40px) / 3);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  cursor: pointer;
}
.video-card__avatar {
  position: absolute;
  right: 0;
  bottom: 0;
}
.video-card__left {
  height: 100%;
  max-width: 200px;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
}
.video-card__name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: var(--ffb800);
  margin: 0 0 30px 0;
}
.video-card__text {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 111%;
  color: var(--ffffff);
  margin: 0 0 20px 0;
}
.video-card__button:hover path:nth-of-type(2) {
  fill: var(--ffb800);
}
.reviews__more {
  margin: 40px 0 0 0;
  display: flex;
  justify-content: center;
}
.reviews__more--button {
  backdrop-filter: blur(20px);
  background: linear-gradient(0deg, rgba(134, 156, 207, 0.2) 0%, rgba(134, 156, 207, 0.2) 100%);
  color: var(--ffffff);
}
.reviews__more--button:hover {
  background: var(--ffffff);
}
.methods {
  padding: 40px 0 0 0;
  position: relative;
  z-index: 9;
}
.methods__container {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.methods__container:after {
  position: absolute;
  content: '';
  background: url("/icon/methods-bg-1.svg") 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 70px;
  left: -150px;
}
.methods__container:before {
  position: absolute;
  content: '';
  background: url("/img/methods-coin.webp") 0 0 no-repeat;
  width: 273px;
  height: 273px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.methods__content {
  padding: 40px 0 0 100px;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.methods__content h2 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: #fff;
}
.methods__content h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: #ffb800;
}
.methods__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 200px 0 0;
}
.methods__text p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  color: var(--ffffff);
}
.who {
  margin: -80px 0 0 0;
  position: relative;
}
.who__container:before{
  position: absolute;
  content: '';
  background: url(/img/who-bg-1.webp) 0 0 no-repeat;
  width: 247px;
  height: 247px;
  bottom: -50px;
  left: -150px;
  z-index: 9;
}
.who:after{
  position: absolute;
  content: '';
  background: url(/img/who-bg-2.webp) 0 0 no-repeat;
  width: 631px;
  height: 682px;
  bottom: -100px;
  right: -250px;
  z-index: -1;
}
.who__container {
  padding: 60px 100px;
  backdrop-filter: blur(20px);
  background: rgba(68, 79, 105, 0.2);
  border-radius: 20px;
  position: relative;
}
.who__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
  position: relative;
}
.who__container h3:before {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 10px;
  left: -240px;
}
.who__container h3:after{
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 10px;
  right: -240px;
}
.who__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.who__block {
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: linear-gradient(0deg, rgba(134, 156, 207, 0.2) 0%, rgba(134, 156, 207, 0.2) 100%);
  width: calc((100% - 20px) / 2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.who__block--title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--ffb800);
}
.who__block--description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 111%;
  color: #fff;
}
.why {
  padding: 100px 0;
  position: relative;
}
.why__container {
  padding: 0 100px;
  position: relative;
}
.why__container:before {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  bottom: -40px;
  right: -75px;
}
.why__container:after {
  position: absolute;
  content: '';
  background: url(/img/why-bg-3.webp) 0 0 no-repeat;
  width: 188px;
  height: 188px;
  bottom: 0;
  right: -20px;
  z-index: 9;
}
.why__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
  position: relative;
}
.why__container h3:before {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 10px;
  left: -250px;
}
.why__container h3:after {
  position: absolute;
  content: '';
  background: url(/icon/hero-bg-1.svg) 0 0 no-repeat;
  width: 340px;
  height: 1px;
  top: 0;
  right: 350px;
}
.why:after{
  position: absolute;
  content: '';
  background: url(/img/why-bg-2.webp) 0 0 no-repeat;
  width: 389px;
  height: 389px;
  top: 200px;
  right: -100px;
  z-index: -1;
}
.why:before {
  position: absolute;
  content: '';
  background: url(/img/why-bg-1.webp) 0 0 no-repeat;
  width: 273px;
  height: 273px;
  bottom: -30px;
  left: -70px;
  z-index: 9;
}
.why__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.why__block {
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: linear-gradient(0deg, rgba(134, 156, 207, 0.2) 0%, rgba(134, 156, 207, 0.2) 100%);
  width: calc((100% - 20px) / 2);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why__header {
  display: flex;
  align-items: center;
  gap: 30px;
}
.why__header--title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--ffb800);
}
.why__block--description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 111%;
  color: #fff;
}
.benefits {
  position: relative;
}
.benefits:after {
  position: absolute;
  content: '';
  background: url(/img/benefits-bg-1.webp) 0 0 no-repeat;
  width: 254px;
  height: 254px;
  top: 63%;
  right: 75px;
  z-index: -1;
}
.benefits:before {
  position: absolute;
  content: '';
  background: url(/img/benefits-bg-1.webp) 0 0 no-repeat;
  width: 254px;
  height: 254px;
  top: 33%;
  left: 50px;
  z-index: -1;
}
.benefits__container {
  padding: 60px 100px;
  backdrop-filter: blur(20px);
  background: rgba(68, 79, 105, 0.2);
  border-radius: 20px;
  position: relative;
}
.benefits__container:after {
  position: absolute;
  content: '';
  background: url(/img/benefits-bg-2.webp) 0 0 no-repeat;
  width: 152px;
  height: 152px;
  top: 25%;
  right: -50px;
}
.benefits__container:before {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 65%;
  left: -150px;
}
.benefits__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
}
.benefits__content {
  display: flex;
  flex-direction: column;
  margin: 20px 0 0 0;
  gap: 20px;
}
.benefits__content--top,
.benefits__content--bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.benefits__block {
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(20px);
  background: linear-gradient(0deg, rgba(134, 156, 207, 0.2) 0%, rgba(134, 156, 207, 0.2) 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefits__content--top .benefits__block {
  width: calc((100% - 40px) / 3);
}
.benefits__content--bottom .benefits__block {
  width: calc((100% - 20px) / 2);
}
.benefits__block--header {
  display: flex;
  align-items: center;
  gap: 30px;
}
.benefits__block--header span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  color: var(--ffb800);
}
.benefits__block--description {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 111%;
  color: #fff;
}
.benefits__video video {
  width: 100%;
  border-radius: 20px;
  cursor: pointer;
}
.cases {
  padding: 60px 0;
}
.cases__container {
  padding: 0 100px;
  position: relative;
}
.cases__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
  position: relative;
}
.cases__container h3:after {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 10px;
  left: 150px;
}
.cases__container:before {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  bottom: 0;
  right: 150px;
}
.cases__content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  position: relative;
}
.cases__content a {
  z-index: 9;
}
.cases__content:before {
  position: absolute;
  content: '';
  background: url(/img/case-bg-1.webp) 0 0 no-repeat;
  width: 304px;
  height: 304px;
  top: -50px;
  left: -160px;
}
.cases__content:after {
  position: absolute;
  content: '';
  background: url(/img/case-bg-2.webp) 0 0 no-repeat;
  width: 404px;
  height: 404px;
  bottom: -40px;
  right: -250px;
}
.cases__more {
  margin: 40px 0 0 0;
  display: flex;
  justify-content: center;
}
.cases__more--button {
  backdrop-filter: blur(20px);
  background: linear-gradient(0deg, rgba(134, 156, 207, 0.2) 0%, rgba(134, 156, 207, 0.2) 100%);
  color: var(--ffffff);
}
.cases__more--button:hover {
  background: var(--ffffff);
}
.authors__container {
  padding: 60px 100px;
  backdrop-filter: blur(20px);
  background: rgba(68, 79, 105, 0.2);
  border-radius: 20px;
  position: relative;
}
.authors__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
  position: relative;
}
.authors__container h3:after {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 50px;
  left: -100px;
}
.authors__container:before {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 50%;
  right: 0;
}
.authors__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.authors__single {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient( 90deg, rgba(134,156,207,0) 0%, rgba(134,156,207,0.05) 60%,  rgba(134,156,207,0.2) 100% );
  border-radius: 20px;
  gap: 60px;
}
.authors__info {
  display: flex;
  flex-direction: column;
  padding: 50px 30px 50px 0;
  gap: 30px;
  width: calc(100% - 480px);
}
.authors__info li a {
  border-bottom: 1px solid var(--ffb800);
}
.authors__info--header {
  display: flex;
  justify-content: space-between;
}
.authors__info--name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffffff);
}
.authors__info--tg {
  backdrop-filter: blur(20px);
  background: linear-gradient(0deg, rgba(134, 156, 207, 0.2) 0%, rgba(134, 156, 207, 0.2) 100%);
  color: var(--ffffff);
}
.authors__info--tg:hover {
  background: var(--ffffff);
}
.authors__info--tg:hover svg path {
  fill: var(--869ccf);
}
.authors__info--note {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}
.authors__info--note div {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 13px;
  color: var(--141822);
  backdrop-filter: blur(4px);
  background: var(--ffb800);
  border-radius: 100px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.authors__info--description ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.authors__info--description ul li {
  display: flex;
  align-items: start;
  gap: 10px;
}
.authors__info--description ul li > span {
  width: calc(100% - 30px);
}
.authors__info--description ul li svg {
  margin: 3px 0 0 0;
}
.li--yellow {
  color: var(--ffb800);
  font-weight: 700;
}
.li--blue {
  color: var(--869ccf)
}
.authors__info--description {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.program {
  padding: 60px 0;
}
.program__container {
  padding: 0 100px;
  position: relative;
}
.program__container h3 {
  position: relative;
}
.program__container h3:after {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 10px;
  left: -230px;
}
.program__container:after {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  bottom: 100px;
  left: -130px;
}
.program__container:before {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 50%;
  right: 0;
}
.program__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
}
.program__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.program__single {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background: linear-gradient(90deg, rgba(134, 156, 207, 0) 0%, rgba(134, 156, 207, 0.05) 60%, rgba(134, 156, 207, 0.2) 100%);
  border-radius: 20px;
  gap: 60px;
}
.program__info {
  display: flex;
  flex-direction: column;
  padding: 50px 30px 50px 0;
  gap: 30px;
  width: calc(100% - 480px);
}
.program__info--description {
  display: flex;
  flex-direction: column;
}
.program__info--description ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.program__info--description ul li {
  display: flex;
  align-items: start;
  gap: 10px;
}
.program__info--description ul li svg {
  margin: 3px 0 0 0;
}
.program__info--description ul li > span {
  width: calc(100% - 30px);
}
.program__image {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.program__image span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 36px;
  color: var(--ffb800);
}
.program__info--bonus {
  backdrop-filter: blur(20px);
  background: #ffb800;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.program__info--bonus > span {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--141822);
}
.program__info--bonus ul {
  padding: 0 0 0 20px;
}
.program__info--bonus ul li {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  color: var(--141822);
  list-style: disc;
}
.program__info--last ul {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}
.pricing{
  padding: 60px 0;
}
.pricing__container {
  padding: 0 100px;
}
.pricing__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
  position: relative;
}
.pricing__container h3:after {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 10px;
  right: 100px;
}
.pricing__intro {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing__intro span:first-of-type {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  color: var(--ffffff);
}
.pricing__intro span:last-of-type {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: var(--ffffff);
}
.pricing__content {
  display: flex;
  margin: 40px 0;
  justify-content: space-between;
  gap: 20px;
}
.pricing__option {
  width: calc((100% - 40px)/3);
  backdrop-filter: blur(20px);
  background: var(--ffb800);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 30px;
}
.pricing__option.pricing__option--disabled {
  backdrop-filter: blur(20px);
  background: rgba(68, 79, 105, 0.2);
}
.pricing__option.pricing__option--disabled .pricing__option--content span  {
  text-decoration: line-through;
  color: rgba(255, 255, 255, 0.2);
}
.pricing__option.pricing__option--disabled svg path {
  opacity: 0.2;
}
.pricing__option--content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pricing__option--name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 26px;
  color: var(--141822);
}
.pricing__option--date {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: var(--ffffff);
}
.pricing__timer {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.pricing__timer--title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
}
.timer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.timer__item {
  width: calc((100% - 60px) / 4);
  border: 1px solid var(--ffb800);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 15px;
  align-items: center;
}
.timer__num {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 100px;
  text-align: center;
  color: var(--ffb800);
}
.timer__label {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  color: var(--ffffff);
}
.pricing__more {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 40px 0 0 0;
}
.pricing__more--pay {
  position: absolute;
  right: 0;
}
.tariffs__container {
  padding: 60px 100px;
  backdrop-filter: blur(20px);
  background: rgba(68, 79, 105, 0.2);
  border-radius: 20px;
  position: relative;
}
.tariffs__container:before {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 50%;
  right: 0;
}
.tariffs__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
}
.taiffs__content {
  display: flex;
  justify-content: space-between;
}
.tariffs__single {
  width: calc((100% - 40px)/3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(0deg, rgba(134, 156, 207, 0) 0%, rgba(134, 156, 207, 0.05) 60%, rgba(134, 156, 207, 0.2) 100%);
  border-radius: 20px;
}
.tariffs__single--header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.tariffs__single--header img {
  margin: 0 auto;
  display: block;
}
.tariffs__single--header span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 28px;
  color: var(--ffb800);
}
.tariffs__single--bottom a {
  justify-content: center;
}
.tariffs__single--center {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.tariffs__single--center > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tariffs__single--price span:last-of-type {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--ffb800);
}
.tariffs__single--term span:last-of-type  {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--ffffff);
}
.tariffs__single--term span:last-of-type span {
  font-size: 18px;
}
.tariffs__single--includes {
  width: 100%;
  min-height: 125px;
}
.tariffs__single--includes span:last-of-type  {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  text-transform: uppercase;
  color: var(--ffffff);
}
.faq {
  padding: 60px 0;
}
.faq__container {
  padding: 0 100px;
}
.faq__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
  position: relative;
}
.faq__container h3:before {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 10px;
  left: -250px;
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__head {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 30px;
}
.faq__body {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}
.faq__body div {
  padding: 10px 30px 20px 30px;
}
.faq__item {
  backdrop-filter: blur(20px);
  background: rgba(68, 79, 105, 0.2);
  border-radius: 20px;
}
.faq__item.active .faq__head {
  color: var(--ffb800);
}
.faq__item.active .faq__head svg {
  transform: rotateX(180deg);
}
.decide {
  padding: 0 0 60px 0;
}
.decide__container {
  padding: 0 100px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}
.decide__container h3 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 30px;
  color: var(--ffb800);
  margin: 0 0 60px 0;
}
.decide__content {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.decide__text > span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: var(--ffb800);
}
.decide__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.decide__text > p:first-of-type {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: var(--ffffff);
}
.decide__text ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.decide__text ul li {
  display: flex;
  align-items: start;
  gap: 10px;
}
.decide__text ul li > span {
  width: calc(100% - 30px);
}
.decide__content .button {
  margin: 60px 0 0 0;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1300px;
}
.footer__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 60px;
}
.footer__top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
}
.decide__container:before {
  position: absolute;
  content: '';
  background: url(/icon/methods-bg-1.svg) 0 0 no-repeat;
  width: 212px;
  height: 21px;
  top: 50px;
  right: 50px;
}
.decide__container:after {
  position: absolute;
  content: '';
  background: url(/icon/hero-bg-2.svg) 0 0 no-repeat;
  width: 135px;
  height: 21px;
  top: -200px;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.video-popup{
  position:fixed;
  inset:0;
  display:flex;
  justify-content:center;
  align-items:center;
  background:rgba(0,0,0,.7);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999;
}
.video-popup.active{
  opacity:1;
  visibility:visible;
}
.video-popup__content{
  position:relative;
  width:900px;
  max-width:90%;
}
.video-popup__video{
  position:relative;
  padding-top:56.25%;
}
.video-popup__video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.video-popup__close{
  position:absolute;
  top:-40px;
  right:0;
  font-size:24px;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
}
.mobile {
  display: none;
}
main {
  scroll-margin-top: 100px;
}
@media (max-width: 1440px) {

}

@media (min-width: 768px) and (max-width: 1024px) {
  .mobile {
    display: block;
  }
  .header__nav {
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    backdrop-filter: blur(20px);
    background: var(--141822);
  }
  .nav--open {
    max-height:500px;
  }
  .nav__list {
    flex-direction:column;
    padding:20px;
    gap:16px;
  }
  .header__container {
    padding: 15px;
    align-items: center;
    gap: 20px;
  }
  .footer__top {
    align-items: center;
  }
  .footer__nav ul {
    column-count: 2;
    column-gap: 20px;
    display: block;
    padding: 40px 0;
    width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    padding: 0 0 20px 0;
  }
  .footer__content {
    gap: 20px;
    padding-bottom: 0;
  }
  main {
    padding: 90px 0 0 0;
  }
  .hero {
    padding: 0 0 20px 0;
  }
  .hero__content {
    padding: 0;
    gap: 20px;
    width: 80%;
  }
  .hero__container h1 {
    font-size: 32px;
  }
  .hero__container h1:after {
    bottom: -10px;
  }
  .hero__container h2 {
    font-size: 24px;
  }
  .hero__container {
    gap: 20px;
  }
  .hero__image {
    display: flex;
    align-items: center;
  }
  .hero__image img {
    margin: 0 auto;
  }
  .button {
    width: auto;
    justify-content: center;
  }
  .reviews__container {
    padding: 15px;
  }
  .reviews__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .reviews-card {
    padding: 20px;
    width: calc(50% - 10px);
    padding: 20px;
  }
  .reviews__top {
    flex-wrap: wrap;
  }
  .hero__content {
    gap: 20px;
  }
  .reviews__bottom {
    flex-wrap: wrap;
  }
  .video-card {
    width: calc((100% - 40px)/3);
    padding: 20px;
  }
  .reviews__more {
    margin: 30px 0 0 0;
  }
  .reviews {
    width: auto;
  }
  .reviews-card__avatar {
    width: 60px;
    height: 60px;
  }
  .video-card__left {
    padding: 0 0 150px 0;
  }
  .methods__content {
    padding: 0;
    gap: 20px;
    width: 80%;
  }
  .methods__image {
    display: flex;
    align-items: center;
  }
  .methods__content h2 {
    font-size: 30px;
  }
  .methods__content h3 {
    font-size: 24px;
  }
  .methods__text {
    padding: 0;
  }
  .methods__container:before {
    z-index: -1;
  }
  .who {
    margin: 0;
  }
  .who__container {
    padding: 20px 16px;
    background: transparent;
  }
  .who__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .who__block {
    padding: 20px;
  }
  .why {
    padding: 20px 0;
  }
  .why__container {
    padding: 0 16px;
  }
  .why__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .why__block {
    padding: 20px;
  }
  .why:before {
    z-index: -1;
  }
  .why__container:after {
    z-index: -1;
  }
  .who__container:before {
    z-index: -1;
  }
  .benefits__container {
    padding: 16px;
  }
  .benefits__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .benefits__content--top .benefits__block {
    width: 100%;
    padding: 20px;
  }
  .benefits__content--top, .benefits__content--bottom {
    flex-direction: column;
  }
  .benefits__content--bottom .benefits__block {
    width: 100%;
    padding: 20px;
  }
  .benefits__container:after {
    z-index: -1;
  }
  .cases {
    padding: 20px 0;
  }
  .cases__container {
    padding: 0 16px;
  }
  .cases__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .cases__content {
    flex-wrap: wrap;
  }
  .cases__content a {
    width: calc((100% - 20px)/2);
  }
  .cases__more {
    margin: 20px 0 0 0;
  }
  .authors__container {
    padding: 20px 16px;
  }
  .authors__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .authors__content {
    gap: 20px;
  }
  .authors__single {
    gap: 20px;
    align-items: center;
  }
  .authors__info {
    padding: 20px;
    gap: 20px;
    width: 100%;
  }
  .authors__info--name {
    font-size: 24px;
    width: calc(100% - 61px);
  }
  .authors__info--header {
    flex-direction: column;
    gap: 20px;
  }
  .program {
    padding: 20px 0;
  }
  .program__container {
    padding: 0 16px;
  }
  .program__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .program__content {
    gap: 20px;
  }
  .program__single {
    gap: 20px;
    flex-direction: column;
  }
  .program__info {
    padding: 20px 0 20px 0;
    gap: 20px;
    width: 100%;
  }
  .program__image span {
    font-size: 24px;
  }
  .program__image {
    gap: 20px;
    align-items: center;
    flex-direction: row;
  }
  .pricing {
    padding: 20px 0;
  }
  .pricing__container {
    padding: 0 16px;
  }
  .pricing__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .pricing__content {
    margin: 20px 0;
  }
  .pricing__option {
    gap: 20px;
    padding: 20px;
  }
  .pricing__timer--title {
    font-size: 16px;
  }
  .timer__num {
    font-size: 60px;
  }
  .timer__label {
    font-size: 18px;
  }
  .timer__item {
    gap: 0;
  }
  .pricing__option--name {
    font-size: 16px;
  }
  .pricing__timer {
    gap: 20px;
  }
  .pricing__more {
    margin: 20px 0 0 0;
    flex-direction: column;
    gap: 10px;
  }
  .pricing__more--pay {
    position: static;
  }
  .tariffs__container {
    padding: 20px 16px;
  }
  .tariffs__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .taiffs__content {
    flex-direction: column;
  }
  .tariffs__single {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .tariffs__single--includes {
    max-height: unset;
  }
  .tariffs__single--header,
  .tariffs__single--center {
    width: calc(50% - 10px);
  }
  .tariffs__single--bottom {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    margin: 10px 0 0 0;
  }
  .tariffs__single--center {
    gap: 20px;
    flex-direction: column;
  }
  .tariffs__single--header span {
    font-size: 24px;
  }
  .faq {
    padding: 20px 0;
  }
  .faq__container {
    padding: 0 16px;
  }
  .faq__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .faq__head {
    padding: 20px;
    text-align: left;
  }
  .faq__head span {
    width: calc(100% - 20px);
  }
  .faq__body div {
    padding: 10px 20px 20px 20px;
  }
  .decide__container {
    padding: 0 16px;
    gap: 20px;
  }
  .decide__content {
    width: 80%;
  }
  .decide__container h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
  }
  .decide__content .button {
    margin: 20px 0 0 0;
  }
  .decide {
    padding: 0 0 20px 0;
  }
  main section {
    overflow: hidden;
  }
  .mobile--readmore {
    display: none !important;
  }

}

@media (max-width: 767px) {
  .mobile {
    display: block;
  }
  .header__nav {
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease;
    backdrop-filter: blur(20px);
    background: var(--141822);
  }
  .nav--open {
    max-height:500px;
  }
  .nav__list {
    flex-direction:column;
    padding:20px;
    gap:16px;
  }
  .header__container {
    padding: 15px;
    align-items: center;
    gap: 20px;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
  }
  .footer__nav ul {
    column-count: 2;
    column-gap: 20px;
    display: block;
    padding: 40px 0;
    width: 100%;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    padding: 0 0 20px 0;
  }
  .footer__content {
    gap: 20px;
    padding-bottom: 0;
  }
  main {
    padding: 90px 0 0 0;
  }
  .hero {
    padding: 0 0 20px 0;
  }
  .hero__content {
    padding: 0;
    width: auto;
  }
  .hero__container h1 {
    font-size: 16px;
  }
  .hero__container h1:after {
    bottom: -10px;
  }
  .hero__container h2 {
    font-size: 16px;
  }
  .hero__container {
    flex-direction: column;
    gap: 20px;
  }
  .hero__image img {
    margin: 0 auto;
  }
  .button {
    width: 100%;
    justify-content: center;
  }
  .reviews__container {
    padding: 15px;
  }
  .reviews__container h3 {
    font-size: 16px;
    margin: 0 0 20px 0;
    width: calc(100% - 30px);
  }
  .reviews-card {
    flex: 0 0 calc(100vw - 32px);
    scroll-snap-align: start;
    padding: 20px;
  }
  .reviews__top {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .reviews__top::-webkit-scrollbar {
    display: none;
  }
  .hero__content {
    gap: 20px;
  }
  .reviews__bottom {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .reviews__bottom::-webkit-scrollbar {
    display: none;
  }
  .video-card {
    flex: 0 0 calc(100vw - 32px);
    scroll-snap-align: start;
    padding: 20px;
  }
  .reviews {
    width: auto;
  }
  .reviews__more {
    margin: 20px 0 0 0;
  }
  .reviews-card__avatar {
    width: 60px;
    height: 60px;
  }
  .video-card__left {
    padding: 0 0 150px 0;
  }
  .methods__content {
    padding: 0;
    gap: 20px;
  }
  .methods__content h2 {
    font-size: 16px;
  }
  .methods__content h3 {
    font-size: 16px;
  }
  .methods__text {
    padding: 0;
  }
  .methods__container {
    flex-direction: column;
  }
  .methods__container:before {
    z-index: -1;
  }
  .who {
    margin: 0;
  }
  .who__container {
    padding: 20px 16px;
    background: transparent;
  }
  .who__container h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .who__block {
    width: 100%;
    padding: 20px;
  }
  .why {
    padding: 20px 0;
  }
  .why__container {
    padding: 0 16px;
  }
  .why__container h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .why__block {
    width: 100%;
    padding: 20px;
  }
  .why:before {
    z-index: -1;
  }
  .why__container:after {
    z-index: -1;
  }
  .who__container:before {
    z-index: -1;
  }
  .benefits__container {
    padding: 16px;
  }
  .benefits__container h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .benefits__content--top .benefits__block {
    width: 100%;
    padding: 20px;
  }
  .benefits__content--top, .benefits__content--bottom {
    flex-direction: column;
  }
  .benefits__content--bottom .benefits__block {
    width: 100%;
    padding: 20px;
  }
  .benefits__container:after {
    z-index: -1;
  }
  .cases {
    padding: 20px 0;
  }
  .cases__container {
    padding: 0 16px;
  }
  .cases__container h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .cases__content {
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
  }
  .cases__content::-webkit-scrollbar {
    display: none;
  }
  .cases__content a {
    flex: 0 0 calc(100vw - 32px);
    scroll-snap-align: start;
  }
  .cases__more {
    margin: 20px 0 0 0;
  }
  .authors__container {
    padding: 20px 16px;
  }
  .authors__container h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .authors__content {
    gap: 20px;
    flex-direction: column;
  }
  .authors__single {
    gap: 20px;
    flex-direction: column;
    background: transparent;
  }
  .authors__info {
    padding: 20px 0 20px 0;
    gap: 20px;
    width: 100%;
  }
  .authors__info--name {
    font-size: 24px;
    width: calc(100% - 100px);
  }
  .authors__info--tg span {
    display: none;
  }
  .authors__info--tg {
    padding: 0;
    gap: 0;
    width: 61px;
    height: 61px;
  }
  .authors__info--note {
    align-items: flex-start;
  }
  .authors__info--header {
    display: flex;
    align-items: center;
  }
  .program {
    padding: 20px 0;
  }
  .program__container {
    padding: 0 16px;
  }
  .program__container h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .program__content {
    gap: 20px;
  }
  .program__single {
    gap: 20px;
    flex-direction: column;
  }
  .program__info {
    padding: 20px 0 20px 0;
    gap: 20px;
    width: 100%;
  }
  .program__image span {
    font-size: 16px;
  }
  .pricing {
    padding: 20px 0;
  }
  .pricing__container {
    padding: 0 16px;
  }
  .pricing__container h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .pricing__container h3:after {
    display: none;
  }
  .pricing__content {
    margin: 20px 0;
    flex-direction: column;
  }
  .pricing__option {
    gap: 20px;
    width: 100%;
    padding: 20px;
  }
  .pricing__timer--title {
    font-size: 16px;
  }
  .timer__num {
    font-size: 16px;
  }
  .timer__label {
    font-size: 13px;
  }
  .timer__item {
    gap: 0;
  }
  .pricing__option--name {
    font-size: 16px;
  }
  .pricing__timer {
    gap: 20px;
  }
  .pricing__more {
    margin: 20px 0 0 0;
    flex-direction: column;
    gap: 10px;
  }
  .pricing__more--pay {
    position: static;
  }
  .tariffs__container {
    padding: 20px 16px;
  }
  .tariffs__container h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .taiffs__content {
    flex-direction: column;
  }
  .tariffs__single {
    width: 100%;
    padding: 20px;
  }
  .tariffs__single--includes {
    max-height: unset;
  }
  .tariffs__single--center {
    gap: 20px;
  }
  .tariffs__single--header span {
    font-size: 24px;
  }
  .faq {
    padding: 20px 0;
  }
  .faq__container {
    padding: 0 16px;
  }
  .faq__container h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .faq__head {
    padding: 20px;
    text-align: left;
  }
  .faq__head span {
    width: calc(100% - 20px);
  }
  .faq__body div {
    padding: 10px 20px 20px 20px;
  }
  .decide__container {
    padding: 0 16px;
    gap: 20px;
    flex-direction: column;
  }
  .decide__container h3 {
    margin: 0 0 20px 0;
    font-size: 16px;
  }
  .decide__content .button {
    margin: 20px 0 0 0;
  }
  .decide {
    padding: 0 0 20px 0;
  }
  main section {
    overflow: hidden;
  }
  .mobile--readmore {
    display: flex;
    align-items: center;
    backdrop-filter: blur(20px);
    background: linear-gradient(0deg, rgba(134, 156, 207, 0.2) 0%, rgba(134, 156, 207, 0.2) 100%);
    padding: 20px;
    gap: 20px;
    color: var(--ffffff);
    font-size: 14px;
    border-radius: 100px;
  }
  .mobile--readmore + div {
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.35s;
    padding: 0;
  }
  .mobile--readmore.is-open svg{
    transform: rotateX(180deg);
  }
  .slide-finger {
    position: absolute;
    right: 16px;
    top: 25px;
  }
  .reviews__top + .slide-finger {
    position: relative;
    left: calc(100% - 21px);
    top: 12px;
    right: unset;
  }
  .cases__container h3 + .slide-finger {
    top: 0;
  }
}