@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes revealLeft {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes revealRight {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/** Font */
button {
  border: none;
  outline: none;
  background: unset;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: unset;
}
a:hover {
  color: unset;
}

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

input,
textarea {
  outline: none;
  border: none;
}
input:focus-visible,
textarea:focus-visible {
  border: none;
  outline: none;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  background: #ffffff;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  background-color: transparent;
}

html {
  scrollbar-width: none;
}

@supports (-ms-overflow-style: none) {
  html {
    -ms-overflow-style: none;
  }
}
section {
  padding: clamp(40px, 6.25vw, 120px) 0;
}

img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

h1 {
  font-family: "Gilroy";
  font-size: clamp(40px, 3.75vw, 72px);
  line-height: 1.1111111111;
  font-style: normal;
  font-weight: 500;
}

h2 {
  font-family: "Gilroy";
  font-size: clamp(30px, 2.5vw, 48px);
  line-height: 1.1458333333;
  font-style: normal;
  font-weight: 600;
}

h3 {
  font-family: "Gilroy";
  font-size: clamp(24px, 1.6666666667vw, 32px);
  line-height: 1.25;
  font-style: normal;
  font-weight: 600;
}

.lead-text {
  font-family: "Gilroy";
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.3333333333;
  font-style: normal;
  font-weight: 500;
}

.text1 {
  font-family: "Gilroy";
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  color: #595959;
}

.btn {
  font-family: "Gilroy";
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.2222222222;
  font-style: normal;
  font-weight: 600;
  padding: clamp(10px, 0.8854166667vw, 17px) 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
}

.btn-prime {
  gap: 8px;
  background: #fcc345;
  color: #000000;
  transition: all 0.3s ease-in-out;
}
.btn-prime:hover {
  background: #fee1a7;
  color: #000000;
}
.btn-prime:active {
  background: #e9b33c;
  color: #000000;
}

.btn-dark {
  background: #000000;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn-dark:hover {
  background: #000000;
  color: #fcc345;
}
.btn-dark:active {
  background: #000000;
  color: #e9b33c;
}

.btn-go-home {
  font-family: "Gilroy";
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.2222222222;
  font-style: normal;
  font-weight: 600;
  padding: clamp(10px, 0.8333333333vw, 16px) 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 33px;
  border: 1px solid #fcc345;
  background: #fcc345;
  color: #ffffff;
  transition: all 0.3s ease-in-out;
}
.btn-go-home:hover {
  background: #ffffff;
  color: #fcc345;
}

.btn-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 84px;
}
.btn-menu:hover .burger-text {
  color: #ffffff;
}
.btn-menu .svg-hover path {
  transition: all 0.3s ease-in-out;
}
.btn-menu .svg-hover path:hover {
  stroke: #ffffff;
  fill: #ffffff;
}
.btn-menu .burger-text {
  font-family: "Gilroy";
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  color: #fcc345;
  transition: all 0.3s ease-in-out;
  margin-left: 6px;
}

.btn-lang {
  display: none;
}

.wrapper {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .wrapper {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 15px;
  }
}

@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Regular.eot);
  src: local("Gilroy Regular"), local("Gilroy-Regular"), url(../fonts/Gilroy-Regular.eot?#iefix) format("embedded-opentype"), url(../fonts/Gilroy-Regular.woff2) format("woff2"), url(../fonts/Gilroy-Regular.woff) format("woff"), url(../fonts/Gilroy-Regular.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Medium.eot);
  src: local("Gilroy Medium"), local("Gilroy-Medium"), url(../fonts/Gilroy-Medium.eot?#iefix) format("embedded-opentype"), url(../fonts/Gilroy-Medium.woff2) format("woff2"), url(../fonts/Gilroy-Medium.woff) format("woff"), url(../fonts/Gilroy-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url(../fonts/Gilroy-Semibold.eot);
  src: local("Gilroy Semibold"), local("Gilroy-Semibold"), url(../fonts/Gilroy-Semibold.eot?#iefix) format("embedded-opentype"), url(../fonts/Gilroy-Semibold.woff2) format("woff2"), url(../fonts/Gilroy-Semibold.woff) format("woff"), url(../fonts/Gilroy-Semibold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
}
.header {
  position: fixed;
  background: #ffffff;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(90px, 6.25vw, 120px);
  display: flex;
  align-items: center;
  z-index: 99;
  transition: all 0.3s ease-in-out;
}
.header.active {
  box-shadow: 0px 15px 10px -15px #fcc345;
  height: 60px;
}
.header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(10px, 2.6041666667vw, 50px);
}
.header .header__inner .header__logo img {
  max-width: clamp(140px, 10.4166666667vw, 200px);
  width: 100%;
}
.header .header__inner .header__menu .menu__wrapper {
  display: flex;
  justify-content: center;
}
.header .header__inner .header__menu .menu__links {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px clamp(20px, 1.6666666667vw, 32px);
  width: fit-content;
  cursor: pointer;
}
.header .header__inner .header__menu .menu__links li.current-menu-item a {
  cursor: none;
  color: #fcc345;
}
.header .header__inner .header__menu .menu__links li:not(.current-menu-item) a:hover::before {
  width: 100%;
}
.header .header__inner .header__menu .menu__links li:not(.current-menu-item) a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #000000;
  position: absolute;
  bottom: -2px;
  left: 0;
  transition: all 0.3s ease-in-out;
}
.header .header__inner .header__menu .menu__links li a {
  font-family: "Gilroy";
  font-size: clamp(16px, 0.9375vw, 18px);
  line-height: 1.2222222222;
  font-style: normal;
  font-weight: 600;
  color: #000000;
  position: relative;
  white-space: nowrap;
}

/** Media **/
@media (min-width: 1025px) {
  .header .header__burger {
    display: none;
  }
  .header .header__closer {
    display: none;
  }
}
@media (max-width: 1024px) {
  .header .header__menu {
    position: fixed;
    z-index: 10;
    top: 0;
    left: -100vw;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease-in-out;
  }
  .header .header__menu.active {
    left: 0;
  }
  .header .header__menu .menu__wrapper {
    width: 300px;
    height: 100vh;
    background: #f6f6f6;
  }
  .header .header__menu .menu__links {
    flex-direction: column;
    height: fit-content;
    margin: 50px 0;
  }
  .header .header__closer {
    cursor: pointer;
    display: block;
    position: absolute;
    top: 14px;
    left: 270px;
    font-size: 30px;
    font-weight: 700;
  }
  .header .header__burger {
    cursor: pointer;
    height: 30px;
  }
  .header .header__burger span {
    position: relative;
    display: block;
    width: 40px;
    box-shadow: 0 2px 10px 0 #000000;
    border-radius: 3px;
    height: 3px;
    background: #000000;
  }
  .header .header__burger span::before, .header .header__burger span::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    box-shadow: 0 2px 10px 0 #000000;
    border-radius: 3px;
    height: 3px;
    background: #000000;
  }
  .header .header__burger span::before {
    top: -12px;
  }
  .header .header__burger span::after {
    top: 12px;
  }
}
.footer {
  padding: clamp(60px, 4.1666666667vw, 80px) 0 clamp(20px, 6.25vw, 120px);
  background: #0f101a;
  color: #a7acb8;
}
.footer .footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr 3fr;
  grid-gap: 100px;
}
.footer .footer__logo img {
  max-width: 180px;
}
.footer .lead-text {
  margin: 0 0 24px;
  color: #ffffff;
}
.footer .footer__contacts .items {
  display: grid;
  grid-gap: 24px 0;
  height: fit-content;
}
.footer .footer__contacts .items .item {
  display: grid;
  grid-template-columns: clamp(30px, 2.0833333333vw, 40px) 1fr;
  grid-gap: 0 clamp(12px, 1.25vw, 24px);
  align-items: center;
}
.footer .footer__contacts .items .item[href] {
  transition: all 0.3s ease-in-out;
}
.footer .footer__contacts .items .item[href]:hover {
  color: #fcc345;
}
.footer .footer__contacts .footer__copy {
  margin: 40px 0 0;
  white-space: nowrap;
}
.footer .footer__pay {
  display: flex;
  align-items: center;
  gap: clamp(40px, 3.6458333333vw, 70px);
  margin: 40px 0 0;
}
@media (max-width: 576px) {
  .footer .footer__pay {
    flex-wrap: wrap;
  }
}

/** Media **/
@media (max-width: 1200px) {
  .footer .footer__inner {
    grid-gap: 0 50px;
  }
}
@media (max-width: 1024px) {
  .footer .footer__inner {
    grid-template-columns: 1fr;
    grid-gap: 50px 0;
  }
}
.feedback {
  background: #fcc345;
}
.feedback .feedback__inner {
  max-width: 968px;
  width: 100%;
  margin-inline: auto;
}
.feedback .feedback__inner .feedback__top {
  text-align: center;
}
.feedback .feedback__inner .feedback__top p {
  margin: 20px 0 0;
}
.feedback .feedback__inner form {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "fname lname email" "phone phone button" "form-status form-status form-status";
  grid-gap: 16px;
}
@media (max-width: 768px) {
  .feedback .feedback__inner form {
    grid-template-areas: "fname lname" "email phone" ". button";
  }
}
@media (max-width: 576px) {
  .feedback .feedback__inner form {
    grid-template-areas: "fname" "lname" "email" "phone" "button";
  }
}
.feedback .feedback__inner form input {
  padding: 16px;
  border-radius: 8px;
  font-family: "Gilroy";
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  color: #3e3423;
}
.feedback .feedback__inner form input[name=fname] {
  grid-area: fname;
}
.feedback .feedback__inner form input[name=lname] {
  grid-area: lname;
}
.feedback .feedback__inner form input[name=email] {
  grid-area: email;
}
.feedback .feedback__inner form input[name=phone] {
  grid-area: phone;
}
.feedback .feedback__inner form input::placeholder {
  font-family: "Gilroy";
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  color: #595959;
}
.feedback .feedback__inner form .form__status {
  grid-area: form-status;
  display: none;
  font-family: "Gilroy";
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}
.feedback .feedback__inner form .form__status:not(:empty) {
  display: block;
}
.feedback .feedback__inner form button {
  grid-area: button;
}

#progressCircle {
  display: none;
  position: fixed;
  z-index: 100;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
#progressCircle.visible {
  display: block;
}
#progressCircle:hover {
  transform: scale(1.1);
}
#progressCircle path {
  transform: translate(38%, 38%) scale(1.1);
  fill: #fee1a7;
}
#progressCircle #outerCircle {
  stroke: transparent;
}
#progressCircle #innerCircle {
  stroke: #fee1a7;
}
#progressCircle.done {
  animation: shakeX 1s;
}
#progressCircle.done #innerCircle {
  stroke: rgb(53, 231, 53);
}
#progressCircle.done path {
  fill: rgb(53, 231, 53);
}

.tg-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #ffffff;
  z-index: 101;
  display: none;
  justify-content: center;
  align-items: center;
}
.tg-modal.active {
  display: flex;
}
.tg-modal form {
  position: relative;
  background: #f6f6f6;
  border-radius: clamp(12px, 1.25vw, 24px);
  width: 424px;
  padding: 40px;
  display: grid;
  grid-gap: 16px;
}
@media (max-width: 576px) {
  .tg-modal form {
    width: 300px;
    padding: 40px clamp(10px, 3.4722222222vw, 20px);
  }
}
.tg-modal form input {
  padding: 16px;
  border-radius: 8px;
  font-family: "Gilroy";
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  color: #3e3423;
}
.tg-modal form button {
  width: fit-content;
  margin: 8px 0 0 auto;
}
.tg-modal form .modal__closer {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
}
.tg-modal form .form__status {
  display: none;
  font-family: "Gilroy";
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  text-align: right;
}
.tg-modal form .form__status:not(:empty) {
  display: block;
}

.home .banner {
  margin: clamp(90px, 6.25vw, 120px) 0 0;
  padding: 16px 0 60px;
}
.home .banner .banner__inner {
  display: grid;
  grid-template-columns: 1.44fr 1fr;
  grid-gap: clamp(40px, 3.6458333333vw, 70px);
  align-items: center;
  background: #f6f6f6;
  border-radius: 24px;
}
@media (max-width: 1024px) {
  .home .banner .banner__inner {
    grid-template-columns: 0.6fr;
    justify-content: center;
    text-align: center;
    padding: 50px 0 0;
  }
}
@media (max-width: 768px) {
  .home .banner .banner__inner {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1025px) {
  .home .banner .banner__inner .banner__info {
    padding: 40px 0 40px clamp(50px, 5.8333333333vw, 112px);
  }
}
.home .banner .banner__inner .banner__info p {
  margin: 20px 0 clamp(30px, 2.5vw, 48px);
}
.home .banner .banner__inner .banner__mockup {
  line-height: 0;
}
@media (min-width: 1025px) {
  .home .banner .banner__inner .banner__mockup {
    padding: 45px 45px 0 0;
  }
}
@media (max-width: 768px) {
  .home .banner .banner__inner .banner__mockup svg {
    width: 100%;
    height: 100%;
    max-width: 445px;
  }
}
.home .statistic .statistic__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 24px;
}
@media (max-width: 768px) {
  .home .statistic .statistic__items {
    grid-template-columns: 0.7fr;
    justify-content: center;
  }
}
@media (max-width: 400px) {
  .home .statistic .statistic__items {
    grid-template-columns: 1fr;
  }
}
.home .statistic .statistic__items .item {
  border-radius: 24px;
  padding: 64px 50px 64px clamp(50px, 4.1666666667vw, 80px);
}
@media (max-width: 1024px) {
  .home .statistic .statistic__items .item {
    padding: clamp(24px, 2.0833333333vw, 40px) 50px clamp(24px, 2.0833333333vw, 40px) clamp(50px, 4.1666666667vw, 80px);
  }
}
.home .statistic .statistic__items .item:nth-child(1), .home .statistic .statistic__items .item:nth-child(3) {
  border: 2px solid #fee1a7;
}
.home .statistic .statistic__items .item:nth-child(2) {
  border: 2px solid #f6f6f6;
}
.home .statistic .statistic__items .item p {
  margin: 24px 0 0;
}
.home .htx .htx__items {
  margin: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 24px;
}
@media (max-width: 768px) {
  .home .htx .htx__items {
    grid-template-columns: 0.7fr;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .home .htx .htx__items {
    grid-template-columns: 1fr;
  }
}
.home .platforms .platforms__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 24px;
}
@media (max-width: 768px) {
  .home .platforms .platforms__items {
    grid-template-columns: repeat(2, 0.4fr);
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .home .platforms .platforms__items {
    grid-template-columns: 0.8fr;
  }
}
@media (max-width: 400px) {
  .home .platforms .platforms__items {
    grid-template-columns: 1fr;
  }
}
.home .platforms .platforms__items .item {
  background: #f6f6f6;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  padding: clamp(20px, 2.0833333333vw, 40px) 40px;
}
.home .platforms .platforms__items .item img {
  max-width: clamp(200px, 15.3125vw, 294px);
  width: 100%;
}

.about .banner {
  margin: clamp(90px, 6.25vw, 120px) 0 0;
  padding: 0 0 60px;
}
.about .banner .banner__inner {
  display: grid;
  grid-template-columns: 1.42fr 1fr;
  grid-gap: clamp(50px, 9.6354166667vw, 185px);
  align-items: center;
}
@media (max-width: 768px) {
  .about .banner .banner__inner {
    grid-template-columns: auto;
    grid-gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
.about .banner .banner__inner .banner__info p {
  margin: 20px 0 48px;
  max-width: clamp(550px, 31.25vw, 600px);
}
@media (max-width: 768px) {
  .about .banner .banner__inner .banner__mockup {
    grid-row: 1/2;
  }
}
.about .banner .banner__inner .banner__mockup img {
  max-width: 424px;
  width: 100%;
}
@media (max-width: 768px) {
  .about .banner .banner__inner .banner__mockup img {
    margin-inline: auto;
  }
}
.about .goal .goal__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-gap: clamp(50px, 7.0833333333vw, 136px);
  align-items: center;
}
@media (max-width: 768px) {
  .about .goal .goal__inner {
    grid-template-columns: 0.7fr;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .about .goal .goal__inner {
    grid-template-columns: auto;
  }
}
.about .goal .goal__inner .goal__items .item {
  background: #f6f6f6;
  border-radius: 24px;
  padding: clamp(14px, 1.25vw, 24px);
  display: flex;
  align-items: center;
  gap: clamp(24px, 1.6666666667vw, 32px);
}
.about .goal .goal__inner .goal__items .item + .item {
  margin: 12px 0 0;
}
.about .goal .goal__inner .goal__items .item .item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(40px, 3.3333333333vw, 64px);
  height: clamp(40px, 3.3333333333vw, 64px);
  background: #ffffff;
  border-radius: 12px;
}
.about .goal .goal__inner .goal__items .item .item__desc p.text1 {
  margin: 8px 0 0;
  max-width: clamp(350px, 20.8333333333vw, 400px);
}
@media (max-width: 768px) {
  .about .goal .goal__inner .goal__info {
    grid-row: 1/2;
    text-align: center;
  }
}
.about .goal .goal__inner .goal__info p {
  margin: 20px 0 0;
}
@media (min-width: 769px) {
  .about .goal .goal__inner .goal__info p {
    max-width: clamp(450px, 26.0416666667vw, 500px);
  }
}

.services .banner {
  margin: clamp(90px, 6.25vw, 120px) 0 0;
  padding: 60px 0;
}
.services .banner .banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: clamp(50px, 7.0833333333vw, 136px);
  align-items: center;
}
@media (max-width: 1024px) {
  .services .banner .banner__inner {
    grid-template-columns: 0.65fr;
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .services .banner .banner__inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .services .banner .banner__inner .banner__info h2 {
    text-align: center;
  }
}
.services .banner .banner__inner .banner__info .banner__subtitle {
  margin: 20px 0 48px;
}
@media (max-width: 1024px) {
  .services .banner .banner__inner .banner__info .banner__subtitle {
    text-align: center;
  }
}
.services .banner .banner__inner .banner__info .banner__list .list__item {
  display: flex;
  gap: 16px;
}
.services .banner .banner__inner .banner__info .banner__list .list__item + .list__item {
  margin: 24px 0 0;
}
.services .banner .banner__inner .banner__info .banner__list .list__item .list__icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 8px;
  background: #fee1a7;
}
.services .banner .banner__inner .banner__info .banner__list .list__item .list__desc p.lead-text {
  margin: 2px 0 8px;
}
@media (max-width: 1024px) {
  .services .banner .banner__inner .banner__mockup {
    grid-row: 1/2;
  }
}
.services .banner .banner__inner .banner__mockup svg {
  width: 100%;
  height: 100%;
  max-width: 536px;
}
.services .signals .signals__inner {
  display: grid;
  grid-template-columns: 1fr 1.36fr;
  grid-gap: clamp(100px, 10.4166666667vw, 200px);
  align-items: center;
}
@media (max-width: 768px) {
  .services .signals .signals__inner {
    grid-template-columns: 0.7fr;
    justify-content: center;
    text-align: center;
    grid-gap: 50px;
  }
}
.services .signals .signals__inner .signals__info p {
  margin: 20px 0 48px;
}
.how-it-works .steps {
  margin: 120px 0 0;
  padding: 60px 0 clamp(48px, 8.57vw, 120px);
}
.how-it-works .steps .steps__top {
  max-width: 520px;
}
@media (max-width: 1024px) {
  .how-it-works .steps .steps__top {
    text-align: center;
    margin-inline: auto;
  }
}
.how-it-works .steps .steps__top p {
  margin: 20px 0 0;
}
.how-it-works .steps .steps__items {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  margin: 56px 0 0;
}
@media (max-width: 1024px) {
  .how-it-works .steps .steps__items {
    grid-template-columns: 0.7fr;
    grid-gap: 20px;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .how-it-works .steps .steps__items {
    grid-template-columns: 0.85fr;
  }
}
@media (max-width: 400px) {
  .how-it-works .steps .steps__items {
    grid-template-columns: 1fr;
  }
}
.how-it-works .steps .steps__items .item {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-gap: 12px;
  padding: 24px;
  border-radius: 24px;
  background: #f6f6f6;
}
.how-it-works .steps .steps__items .item .item__desc p.lead-text {
  margin: 0 0 4px;
}
.how-it-works .steps .steps__items .item-arrow {
  display: flex;
  align-items: center;
}
@media (max-width: 1024px) {
  .how-it-works .steps .steps__items .item-arrow {
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .how-it-works .steps .steps__items .item-arrow svg {
    transform: rotate(90deg);
  }
}

.legal-page .legal {
  margin: 120px 0 0;
  padding: 60px 0 clamp(48px, 8.57vw, 120px);
}
.legal-page .legal .legal__inner {
  display: grid;
  grid-template-areas: "heading heading heading support support" "items items items support support" "items items items support support";
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 32px;
}
@media (max-width: 768px) {
  .legal-page .legal .legal__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "heading heading" "items support";
  }
}
@media (max-width: 576px) {
  .legal-page .legal .legal__inner {
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "support" "items";
  }
}
.legal-page .legal .legal__inner .legal__heading {
  grid-area: heading;
}
.legal-page .legal .legal__inner .legal__heading p {
  margin: 20px 0 0;
  max-width: clamp(350px, 23.4375vw, 450px);
}
.legal-page .legal .legal__inner .legal__items {
  grid-area: items;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  grid-gap: 24px clamp(100px, 10.4166666667vw, 200px);
  background: #f6f6f6;
  border-radius: 24px;
  padding: clamp(20px, 1.6666666667vw, 32px) clamp(20px, 2.0833333333vw, 40px);
}
@media (max-width: 768px) {
  .legal-page .legal .legal__inner .legal__items {
    grid-template-columns: 1fr;
  }
}
.legal-page .legal .legal__inner .legal__items .item p.lead-text {
  margin: 0 0 6px;
}
.legal-page .legal .legal__inner .legal__support {
  grid-area: support;
  position: relative;
  background: #f6f6f6;
  border-radius: 24px;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 576px) {
  .legal-page .legal .legal__inner .legal__support {
    align-items: unset;
    flex-direction: row-reverse;
    gap: 20px;
  }
}
.legal-page .legal .legal__inner .legal__support picture img {
  width: 100%;
}
.legal-page .legal .legal__inner .legal__support .legal__email {
  position: absolute;
  bottom: 40px;
  left: 40px;
  height: fit-content;
  border-radius: 12px;
  background: #fee1a7;
  box-shadow: 4px 4px 40px 0px rgba(0, 0, 0, 0.1);
  padding: 16px 24px;
}
@media (max-width: 1024px) {
  .legal-page .legal .legal__inner .legal__support .legal__email {
    bottom: 20px;
    left: 20px;
  }
}
@media (max-width: 576px) {
  .legal-page .legal .legal__inner .legal__support .legal__email {
    position: static;
    margin: clamp(10px, 3.4722222222vw, 20px) 0 0 clamp(10px, 3.4722222222vw, 20px);
    padding: 10px;
  }
}
.legal-page .legal .legal__inner .legal__support .legal__email .legal__email-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.legal-page .legal .legal__inner .legal__support .legal__email a {
  display: inline-flex;
  margin: clamp(4px, 0.4166666667vw, 8px) 0 0;
  color: #000000;
}

.course-selection .courses {
  margin: 120px 0 0;
  padding: 60px 0 clamp(48px, 8.57vw, 120px);
}
.course-selection .courses .courses__title {
  text-align: center;
  margin-bottom: clamp(40px, 4.1666666667vw, 80px);
}
.course-selection .courses .courses__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) {
  .course-selection .courses .courses__items {
    grid-template-columns: 0.5fr;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .course-selection .courses .courses__items {
    grid-template-columns: 0.8fr;
  }
}
@media (max-width: 480px) {
  .course-selection .courses .courses__items {
    grid-template-columns: 1fr;
  }
}
.course-selection .courses .courses__item {
  background: #f6f6f6;
  padding: clamp(20px, 2.0833333333vw, 40px);
  padding-top: clamp(18px, 1.6666666667vw, 32px);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
}
.course-selection .courses .courses__item ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: clamp(16px, 2.0833333333vw, 40px);
}
.course-selection .courses .courses__item ul li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.course-selection .courses .courses__item ul li::before {
  content: "";
  background: url(../img/general/check.svg) no-repeat center/contain;
  width: 16px;
  aspect-ratio: 1;
  display: block;
}
.course-selection .courses .courses__item .courses__item-btn {
  margin-top: auto;
}
.course-selection .courses .courses__item.recommended {
  border: 2px solid #fcc345;
  position: relative;
}
.course-selection .courses .courses__item.recommended .courses__item-btn {
  background-color: #fcc345;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
}
.course-selection .courses .courses__item.recommended .courses__item-btn svg {
  transition: transform 0.3s ease-in;
}
.course-selection .courses .courses__item.recommended .courses__item-btn:hover svg {
  transform: rotate(-45deg);
}
.course-selection .courses .courses__item.recommended .courses__item-badge {
  position: absolute;
  top: -5.4%;
  left: clamp(20px, 2.0833333333vw, 40px);
  padding: clamp(6px, 0.5208333333vw, 10px) clamp(8px, 0.625vw, 12px);
  width: fit-content;
  background-color: #fee1a7;
  color: #3e3423;
  border-radius: 8px;
}
.course-selection .courses .courses__item-title {
  margin-bottom: 4px;
}
.course-selection .courses .courses__item-price {
  font-family: "Gilroy";
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.3333333333;
  font-style: normal;
  font-weight: 500;
  font-weight: 400;
  display: block;
  margin-bottom: clamp(16px, 1.25vw, 24px);
}

.not-found {
  display: flex;
  height: 100vh;
  /* Beyond mobile */
  /* Animations */
}
.not-found .container-paper {
  display: grid;
  grid-gap: 3em 1.5em;
  margin: auto;
  max-width: 40em;
  padding: 3em 0;
  text-align: center;
  width: calc(100% - 3em);
}
.not-found .paper {
  display: block;
  margin: auto;
  overflow: visible;
  width: 100%;
  max-width: 224px;
  height: auto;
}
.not-found .paper__fill {
  fill: hsl(0deg, 0%, 100%);
}
.not-found .paper__outline, .not-found .paper__lines {
  transition: stroke 0.3s;
}
.not-found .paper__top, .not-found .paper__bottom, .not-found .paper__tear, .not-found .paper__tear-fill {
  animation: paperTop 1.25s cubic-bezier(0.77, 0, 0.18, 1);
}
.not-found .paper__top, .not-found .paper__bottom {
  transform-origin: 0 148px;
  transition: transform 0.3s cubic-bezier(0.77, 0, 0.18, 1);
}
.not-found .paper__top {
  transform: translate(0, 8px);
}
.not-found .paper__bottom {
  animation-name: paperBottom;
  transform: translate(0, 42px);
}
.not-found .paper__tear, .not-found .paper__tear-fill {
  animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
}
.not-found .paper__tear {
  animation-name: paperTear;
  stroke-dashoffset: 0;
}
.not-found .paper__tear-fill {
  animation-name: paperTearFill;
}
.not-found .paper__outline:hover .paper__top, .not-found .paper__outline:hover .paper__bottom {
  transform: translate(0, 25px);
}
@media (min-width: 768px) {
  .not-found .container-paper {
    grid-template-columns: 1fr 2fr;
    align-items: center;
    text-align: left;
  }
  .not-found .paper {
    max-width: 300px;
  }
}
@keyframes paperTop {
  from, 40% {
    animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
    transform: translate(0, 25px) rotate(0);
    transform-origin: 61px 148px;
  }
  70% {
    animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1.5);
    transform: translate(0, 25px) rotate(-5deg);
    transform-origin: 61px 148px;
  }
  to {
    transform: translate(0, 8px) rotate(0);
    transform-origin: 0 148px;
  }
}
@keyframes paperBottom {
  from, 40% {
    animation-timing-function: cubic-bezier(0.32, 0, 0.67, 0);
    transform: translate(0, 25px) rotate(0);
    transform-origin: 61px 148px;
  }
  70% {
    animation-timing-function: cubic-bezier(0.33, 1, 0.67, 1.5);
    transform: translate(0, 25px) rotate(5deg);
    transform-origin: 61px 148px;
  }
  to {
    transform: translate(0, 42px) rotate(0);
    transform-origin: 0 148px;
  }
}
@keyframes paperTear {
  from, 40% {
    stroke-dashoffset: -198;
  }
  70%, to {
    stroke-dashoffset: 0;
  }
}
@keyframes paperTearFill {
  from, 40% {
    width: 187px;
  }
  70%, to {
    width: 0;
  }
}

.offer-contract .offer {
  padding-top: clamp(110px, 9.375vw, 180px);
  padding-bottom: clamp(50px, 6.25vw, 120px);
}
.offer-contract .offer .offer__head {
  margin-bottom: clamp(40px, 4.6875vw, 90px);
}
.offer-contract .offer .offer__head h2 {
  margin-bottom: clamp(16px, 1.0416666667vw, 20px);
  font-size: clamp(20px, 2.5vw, 48px);
}
.offer-contract .offer .offer__block {
  margin-bottom: clamp(18px, 1.25vw, 24px);
}
.offer-contract .offer .offer__block-title {
  font-family: "Gilroy";
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.3333333333;
  font-style: normal;
  font-weight: 500;
  margin-bottom: clamp(16px, 1.0416666667vw, 20px);
}
.offer-contract .offer .offer__block-content {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 0.9375vw, 18px);
}
.offer-contract .offer .offer__block-content a {
  color: #007AFF;
}
.offer-contract .offer .offer__block-list ul {
  list-style-type: disc;
  margin-left: clamp(18px, 1.1458333333vw, 22px);
}
.offer-contract .offer .offer__block-list ul li {
  list-style-type: disc;
}
.offer-contract .offer .offer__block-list ul li::marker {
  color: #595959;
  font-size: 12px;
}
