:root {
  --white: #FFFFFF;
  --white-8: rgba(255, 255, 255, 0.08);
  --white-14: rgba(255, 255, 255, 0.14);
  --white-60: rgba(255, 255, 255, 0.6);
  --black: #1D1A2B;
  --accent: #60FFF5;
  --accent-31: rgba(36, 104, 100, 0.31);
  --pink: #FF187A;
  --dark-blue: #1B1239;
  --blue: #1F4099;
  --purple: #6D56F2;
  --error: var(--pink);
}

@font-face {
  font-family: "Vela Sans";
  src: url("../fonts/velasans-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Vela Sans";
  src: url("../fonts/velasans-medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  min-width: 360px;
  color: var(--white);
  background-color: var(--black);
}

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

a {
  color: var(--accent);
  -webkit-tap-highlight-color: transparent;
}

.visually-hidden:not(:focus):not(:active),
input[type=radio].visually-hidden,
input[type=checkbox].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
  max-width: 540px;
}
@media (min-width: 768px) {
  .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 690px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1110px;
  }
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.is-open-menu {
  overflow: hidden;
}

.indent-reset {
  margin: 0;
  padding: 0;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn-reset {
  padding: 0;
  color: inherit;
  background-color: transparent;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

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

.is-glassmorphed {
  background-color: var(--white-8);
  border: 1px solid var(--white-14);
  box-shadow: 1px 2px 10px var(--accent-31);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.custom-scroll {
  --scrollbar: var(--accent);
  --scrollbar-thumb: transparent;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar);
  scrollbar-width: thin;
}
.custom-scroll::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: var(--scrollbar-thumb);
}
.custom-scroll::-webkit-scrollbar-thumb {
  border-radius: 99em;
  background-color: var(--scrollbar);
}

body {
  font-family: "Vela Sans", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.6px;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong,
.h1,
.h2,
.h3,
.h4 {
  font-weight: 500;
}

.h1 {
  display: block;
  text-transform: uppercase;
  font-size: 32px;
  line-height: 1.2;
}

.h2 {
  display: block;
  font-size: 28px;
  line-height: 1.3;
}

.h3 {
  display: block;
  font-size: 24px;
  line-height: 1.25;
}

.h4 {
  display: block;
  font-size: 20px;
  line-height: 1.5;
}

.small {
  font-size: 14px;
}

@media (min-width: 768px) {
  .h1 {
    font-size: 50px;
  }
  .h2 {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .h1 {
    font-size: 60px;
  }
}
.site__container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: calc(100 * var(--vh, 1vh));
  overflow: hidden;
}
.site__header {
  flex-shrink: 0;
}
.site__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.site__footer {
  margin-top: auto;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  padding: 18px 32px;
  color: var(--blue);
  background-color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 99em;
  text-decoration: none;
  transition-property: color, background-color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
}
.btn:active {
  color: var(--white);
  background-color: transparent;
  border-color: var(--pink);
}
@media (min-width: 992px) {
  .btn {
    position: relative;
    overflow: hidden;
  }
  .btn--js-hover::after {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: var(--pink);
    z-index: 1;
    transition: opacity 0.3s ease-in-out;
    -webkit-mask-image: radial-gradient(circle at var(--x) var(--y), #000000 var(--ga), rgba(0, 0, 0, 0.8) var(--gb), rgba(0, 0, 0, 0.5) var(--gc), rgba(0, 0, 0, 0.2) var(--gc), rgba(0, 0, 0, 0) var(--gd));
    mask-image: radial-gradient(circle at var(--x) var(--y), #000000 var(--ga), rgba(0, 0, 0, 0.8) var(--gb), rgba(0, 0, 0, 0.5) var(--gc), rgba(0, 0, 0, 0.2) var(--gc), rgba(0, 0, 0, 0) var(--gd));
  }
  .btn:hover {
    color: var(--white);
    border-color: var(--pink);
  }
  .btn--nojs:hover {
    background-color: var(--pink);
  }
  .btn:active {
    color: var(--white);
    background-color: transparent;
    border-color: var(--pink);
  }
  .btn:active::after {
    opacity: 0;
  }
  .btn__text {
    position: relative;
    z-index: 2;
  }
}

.form__input {
  font-size: 16px;
  padding: 12px 14px;
  width: 100%;
  border: 1px solid var(--white);
  color: var(--white);
  background-color: transparent;
  border-radius: 99em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
}
.form__input::-webkit-input-placeholder {
  color: var(--white);
}
.form__input::-moz-placeholder {
  color: var(--white);
}
.form__input::-ms-input-placeholder {
  color: var(--white);
}
.form__input::placeholder {
  color: var(--white);
}
.form__input.invalid {
  border-color: var(--error);
}
.form__input:focus-visible:not(.invalid) {
  border-color: var(--accent);
}
.form__textarea {
  resize: none;
  height: 7em;
  border-radius: 16px;
}
.form__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
.form__checkbox + label {
  position: relative;
  padding-left: 28px;
  display: inline-block;
  opacity: 0.6;
  transition: opacity 0.1s ease-in-out;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form__checkbox + label::before, .form__checkbox + label::after {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
}
.form__checkbox + label::before {
  border: 1px solid var(--white);
  border-radius: 4px;
}
.form__checkbox + label::after {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='7' viewBox='0 0 10 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 2.66667L4.2 6L9 1' stroke='%231B1239' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 7px;
  opacity: 0;
}
.form__checkbox:focus-visible + label::before {
  box-shadow: 0 0 0 1px var(--black), 0 0 0 2px var(--accent);
}
.form__checkbox:checked + label {
  opacity: 1;
}
.form__checkbox:checked + label::before {
  background-color: var(--accent);
}
.form__checkbox:checked + label::after {
  opacity: 1;
}

.scroll-top {
  position: fixed;
  bottom: 40px;
  right: max(15px, (100% - 1200px) / 2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}
.scroll-top--show {
  opacity: 1;
  visibility: visible;
}
.scroll-top__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--accent);
  background-color: transparent;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.6;
}
@media (min-width: 1200px) {
  .scroll-top {
    bottom: 60px;
  }
  .scroll-top__link {
    transition: opacity 0.25s ease-in-out;
  }
  .scroll-top__link:hover {
    opacity: 1;
  }
}

.modal {
  position: relative;
  margin: 30px auto;
  padding: 30px;
  width: calc(100% - 30px);
  max-width: 360px;
  color: var(--white);
  background-color: var(--dark-blue);
  border-radius: 16px;
}
.modal--wide {
  max-width: none;
}
.modal__close {
  position: absolute;
  top: 4px;
  right: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  opacity: 0.6;
  cursor: pointer;
}
.modal__title {
  margin-bottom: 30px;
  text-transform: uppercase;
}
.modal__title--error {
  color: var(--error);
}
.modal__centered {
  text-align: center;
}
.modal__text {
  margin-bottom: 24px;
}
.modal__form {
  display: grid;
  row-gap: 16px;
}
.modal__form-confirm {
  margin: 8px 0;
}
@media (min-width: 768px) {
  .modal {
    max-width: 500px;
    padding: 40px;
    margin: 20px auto;
  }
  .modal--wide {
    width: calc(100% - 60px);
    max-width: 768px;
  }
  .modal__submit {
    justify-self: center;
  }
}
@media (min-width: 1200px) {
  .modal {
    max-width: 700px;
    margin: 80px auto;
    padding: 50px 80px;
  }
  .modal--wide {
    max-width: 1110px;
  }
}

.hystmodal__wrap {
  align-items: stretch;
}

.anim-fade-down {
  -webkit-animation-name: fade-down;
  animation-name: fade-down;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

.anim-fade-up {
  -webkit-animation-name: fade-up;
  animation-name: fade-up;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

.anim-fade-left {
  -webkit-animation-name: fade-left;
  animation-name: fade-left;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

.anim-fade-right {
  -webkit-animation-name: fade-right;
  animation-name: fade-right;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

.anim-fade-in {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

@-webkit-keyframes fade-down {
  0% {
    -webkit-transform: translate(0, -33%);
    transform: translate(0, -33%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}

@keyframes fade-down {
  0% {
    -webkit-transform: translate(0, -33%);
    transform: translate(0, -33%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-up {
  0% {
    -webkit-transform: translate(0, 33%);
    transform: translate(0, 33%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    -webkit-transform: translate(0, 33%);
    transform: translate(0, 33%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-left {
  0% {
    -webkit-transform: translate(-33%, 0);
    transform: translate(-33%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fade-left {
  0% {
    -webkit-transform: translate(-33%, 0);
    transform: translate(-33%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-right {
  0% {
    -webkit-transform: translate(33%, 0);
    transform: translate(33%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes fade-right {
  0% {
    -webkit-transform: translate(33%, 0);
    transform: translate(33%, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.rules__title {
  text-transform: uppercase;
}
.rules ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rules li {
  margin: 1em 0;
}
.rules > ol {
  counter-reset: num1;
}
.rules > ol > li {
  font-weight: 500;
  counter-increment: num1;
}
.rules > ol > li::before {
  content: counter(num1) ". ";
}
.rules > ol > li > ol {
  counter-reset: num2;
}
.rules > ol > li > ol > li {
  font-weight: 400;
  counter-increment: num2;
}
.rules > ol > li > ol > li::before {
  content: counter(num1) "." counter(num2) ". ";
}
.rules > ol > li > ol > li > ol {
  counter-reset: num3;
}
.rules > ol > li > ol > li > ol > li {
  counter-increment: num3;
}
.rules > ol > li > ol > li > ol > li::before {
  content: counter(num1) "." counter(num2) "." counter(num3) ". ";
}

.mb-bg-odd {
  background-image: url("../img/bg-covers/mobile-bg-odd.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 101% 101%;
}
@media (min-width: 768px) {
  .mb-bg-odd {
    background-image: none;
  }
}

.mb-bg-even {
  background-image: url("../img/bg-covers/mobile-bg-even.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 101% 101%;
}
@media (min-width: 768px) {
  .mb-bg-even {
    background-image: none;
  }
}

.bg-odd {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 101% 101%;
}
@media (min-width: 768px) {
  .bg-odd {
    background-image: url("../img/bg-covers/bg-odd.jpg");
  }
}

.bg-even {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 101% 101%;
}
@media (min-width: 768px) {
  .bg-even {
    background-image: url("../img/bg-covers/bg-even.jpg");
  }
}

.corners__item {
  position: absolute;
  z-index: -1;
  width: 195px;
  height: 267px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}
.corners__item--left {
  left: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='195' height='268' viewBox='0 0 195 268' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M195 134L3.54414e-06 8.52372e-06L1.52588e-05 268L195 134ZM2.13283 246.94L2.13282 21.0603L25.2449 134L2.13283 246.94ZM3.38002 16.5168L27.4219 134L3.38002 251.483L43.4498 134L3.38002 16.5168ZM61.6211 134L5.90822 17.3227L45.7031 134L5.90822 250.677L61.6211 134ZM8.75824 18.3421L63.9844 134L8.75825 249.658L79.7633 134L8.75824 18.3421ZM97.8809 134L11.9971 19.5417L82.2656 134L11.9971 248.458L97.8809 134ZM15.6752 20.8905L100.547 134L15.6752 247.11L115.978 134L15.6752 20.8905ZM134.059 134L19.8298 22.3616L118.828 134L19.8297 245.638L134.059 134ZM24.4874 23.9321L137.109 134L24.4876 244.068L152.126 134L24.4874 23.9321ZM173.19 134L25.7105 22.1713L155.391 134L25.7105 245.829L173.19 134ZM36.392 27.5948L176.719 134L36.3921 240.405L191.235 134L36.392 27.5948Z' fill='url(%23paint0_linear_465_3391)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_465_3391' x1='2.11709e-05' y1='260.386' x2='109.611' y2='71.5238' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white' stop-opacity='0.29'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E");
}
.corners__item--right {
  right: 0;
  top: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='225' height='308' viewBox='0 0 225 308' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.84526e-06 154L225 308L225 -2.67027e-06L1.84526e-06 154ZM222.539 24.2035L222.539 283.796L195.871 154L222.539 24.2035ZM221.1 289.018L193.359 154L221.1 18.982L174.866 154L221.1 289.018ZM153.899 154L218.183 288.092L172.266 154L218.183 19.9081L153.899 154ZM214.894 286.92L151.172 154L214.894 21.0797L132.965 154L214.894 286.92ZM112.061 154L211.157 285.542L130.078 154L211.157 22.4584L112.061 154ZM206.913 283.992L108.984 154L206.913 24.0084L91.1791 154L206.913 283.992ZM70.3169 154L202.119 282.301L87.8906 154L202.12 25.6991L70.3169 154ZM196.745 280.496L66.7969 154L196.745 27.5042L49.4704 154L196.745 280.496ZM25.1655 154L195.334 282.52L45.7031 154L195.334 25.4804L25.1655 154ZM183.009 276.287L21.0938 154L183.009 31.7135L4.34388 154L183.009 276.287Z' fill='url(%23paint0_linear_459_2950)'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear_459_2950' x1='225' y1='8.75' x2='99.2788' y2='226.236' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='white' stop-opacity='0.29'/%3E%3Cstop offset='1' stop-color='white' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E ");
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
}
@media (min-width: 768px) {
  .corners__item {
    width: 309px;
    height: 422px;
  }
  .corners__item--right {
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@media (min-width: 1200px) {
  .corners__item {
    width: 440px;
    height: 605px;
  }
  .corners__item--right {
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }
}

.ellipse {
  width: 490px;
  height: 490px;
}
.ellipse img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.halftone {
  width: 362px;
  height: 362px;
}
.halftone img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.header {
  position: relative;
  z-index: 3;
}

.header-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  z-index: 2;
}
.header-main--is-open-menu {
  background-color: var(--dark-blue);
  transition: background-color 0.3s ease-in-out;
}
.header-main--is-open-menu .header-main__cb, .header-main--is-open-menu .header-main__logo, .header-main--is-open-menu .header-main__contacts {
  opacity: 1 !important;
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
}
.header-main__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-main__cb {
  position: relative;
  display: flex;
  width: 32px;
  height: 32px;
  overflow: hidden;
  transition: opacity 0.3s ease-in-out;
}
.header-main__cb > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M24.8982 31.7566C22.1376 31.269 19.4114 29.9974 17.0345 28.5417C14.2815 26.8556 11.7145 24.7557 9.43364 22.4748C7.15281 20.194 5.05293 17.6271 3.36681 14.874C1.91116 12.4975 0.639636 9.77084 0.151871 7.01026C0.0391965 6.44228 0.0713201 5.85508 0.245281 5.30279C0.419242 4.7505 0.729442 4.25089 1.14728 3.85002L4.83258 0.164728C4.93938 0.0591869 5.08348 0 5.23363 0C5.38379 0 5.52789 0.0591869 5.6347 0.164728L11.2554 5.78543C11.361 5.8922 11.4202 6.03629 11.4202 6.18643C11.4202 6.33658 11.361 6.48066 11.2554 6.58743L7.73552 10.1074C7.42581 10.415 7.23595 10.8229 7.20007 11.2579C7.16419 11.6929 7.28463 12.1265 7.53975 12.4806C8.91108 14.3786 9.65036 15.9024 12.6966 18.9487C15.7429 21.9949 17.5299 22.9976 19.428 24.3688C19.7821 24.624 20.2157 24.7444 20.6507 24.7085C21.0857 24.6726 21.4936 24.4828 21.8012 24.1731L25.3212 20.6532C25.4279 20.5476 25.572 20.4884 25.7222 20.4884C25.8723 20.4884 26.0164 20.5476 26.1232 20.6532L31.7439 26.2739C31.8494 26.3807 31.9086 26.5248 31.9086 26.6749C31.9086 26.825 31.8494 26.9691 31.7439 27.0759L28.0588 30.7612C27.6579 31.179 27.1583 31.4892 26.606 31.6632C26.0537 31.8371 25.4662 31.8693 24.8982 31.7566Z' fill='%2360FFF5'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  white-space: nowrap;
}
.header-main__logo {
  transition: opacity 0.3s ease-in-out;
}
.header-main__logo img {
  display: block;
  width: 41px;
  height: 46px;
}
.header-main__nav {
  display: none;
}
.header-main__contacts {
  display: none;
  transition: opacity 0.3s ease-in-out;
}
@media (min-width: 768px) {
  .header-main__cb {
    display: none;
  }
  .header-main__logo img {
    display: block;
    width: 314px;
    height: 57px;
  }
  .header-main__contacts {
    display: block;
    margin-left: auto;
    margin-right: 60px;
  }
}
@media (min-width: 1200px) {
  .header-main {
    padding-top: 16px;
    padding-bottom: 16px;
    transition: background-color 0.3s ease-in-out;
  }
  .header-main--is-open-menu {
    background-color: transparent;
  }
  .header-main__burger {
    display: none;
  }
  .header-main__nav {
    display: block;
    margin-left: auto;
    margin-right: 60px;
  }
  .header-main__contacts {
    margin-left: 0;
    margin-right: 0;
  }
}

.just-burger {
  --burger-animation-time: 0.4s;
  --burger-weight: 3px;
  --burger-color: var(--accent);
  position: relative;
  padding: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  transition: -webkit-transform var(--burger-animation-time) ease-in-out;
  transition: transform var(--burger-animation-time) ease-in-out;
  transition: transform var(--burger-animation-time) ease-in-out, -webkit-transform var(--burger-animation-time) ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
.just-burger__line {
  position: absolute;
  left: auto;
  left: 0;
  display: block;
  width: 100%;
  height: var(--burger-weight);
  background-color: var(--burger-color);
  border-radius: 99em;
  transition: all var(--burger-animation-time) ease-in-out;
}
.just-burger__line--top {
  top: 20%;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
.just-burger__line--middle {
  top: calc(50% - var(--burger-weight) / 2);
}
.just-burger__line--bottom {
  bottom: 18%;
  -webkit-transform-origin: bottom left;
  transform-origin: bottom left;
}
.just-burger--open .just-burger__line {
  left: 12%;
}
.just-burger--open .just-burger__line--top {
  -webkit-transform: rotate(45deg) translate(-3%, -120%);
  transform: rotate(45deg) translate(-3%, -120%);
}
.just-burger--open .just-burger__line--middle {
  background-color: transparent;
  pointer-events: none;
  opacity: 0;
}
.just-burger--open .just-burger__line--bottom {
  -webkit-transform: rotate(-45deg) translate(0, 90%);
  transform: rotate(-45deg) translate(0, 90%);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}
.mobile-menu[aria-hidden=false] {
  pointer-events: auto;
}
.mobile-menu[aria-hidden=false] .mobile-menu__content {
  display: block;
}
.mobile-menu__content {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
  width: 100%;
  color: var(--white);
  background-color: var(--dark-blue);
  overflow: auto;
  padding-top: 90px;
  padding-bottom: 60px;
  text-align: center;
  -webkit-animation-name: fade-down;
  animation-name: fade-down;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}
.mobile-menu__title-text {
  margin-bottom: 40px;
}
.mobile-menu__nav {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .mobile-menu__title-text {
    display: none;
  }
  .mobile-menu__contacts {
    display: none;
  }
}
@media (min-width: 1200px) {
  .mobile-menu {
    display: none;
  }
}

.header-contacts__phone {
  margin-bottom: 6px;
}
.header-contacts__phone a {
  font-size: 24px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
}
.header-contacts__cb-trigger {
  color: var(--accent);
}
@media (min-width: 768px) {
  .header-contacts__phone {
    margin-bottom: 0;
  }
  .header-contacts__phone a {
    font-size: 20px;
    line-height: 1.5;
  }
}
@media (min-width: 1200px) {
  .header-contacts__phone a {
    transition: color 0.3s ease-in-out;
  }
  .header-contacts__phone a:hover {
    color: var(--accent);
  }
  .header-contacts__cb-trigger:hover {
    text-decoration: underline;
  }
}

.site-nav li {
  margin-bottom: 24px;
}
.site-nav a {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
}
@media (min-width: 1200px) {
  .site-nav {
    display: flex;
    margin: -5px -15px;
  }
  .site-nav li {
    margin: 5px 15px;
  }
  .site-nav a {
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease-in-out;
  }
  .site-nav a:hover {
    color: var(--accent);
    text-decoration: underline;
  }
}

.header-fixed {
  display: none;
}
@media (min-width: 1200px) {
  .header-fixed {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    padding-top: 6px;
    padding-bottom: 6px;
    width: 100%;
    background-color: var(--dark-blue);
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    z-index: 2;
    visibility: hidden;
  }
  .header-fixed--active {
    visibility: visible;
  }
  .header-fixed__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-fixed__nav {
    margin-left: auto;
    margin-right: 60px;
  }
}

.footer {
  padding-top: 20px;
  padding-bottom: 40px;
  color: var(--white-60);
}
.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__logo {
  margin-bottom: 20px;
}
.footer__logo img {
  display: block;
  width: 49px;
  height: 56px;
}
.footer__copiright {
  margin-bottom: 20px;
}
.footer__links {
  text-align: center;
}
.footer__rules {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4px;
}
.footer__link {
  display: inline-block;
  color: inherit;
  text-decoration: none;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .footer__rules {
    flex-direction: row;
    align-items: center;
    margin-bottom: 4px;
  }
  .footer__rules > a:not(:first-child) {
    margin-left: 24px;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .footer__container {
    flex-direction: row;
    align-items: flex-start;
  }
  .footer__container > * {
    flex-basis: 100%;
  }
  .footer__copiright {
    order: -1;
    margin-bottom: 0;
  }
  .footer__logo {
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    -webkit-transform: translateY(-16px);
    transform: translateY(-16px);
  }
  .footer__links {
    align-self: flex-end;
    text-align: right;
  }
  .footer__link {
    margin-bottom: 0;
    transition: color 0.3s ease-in-out;
  }
  .footer__link:hover {
    color: var(--accent);
    text-decoration: underline;
  }
  .footer__rules {
    margin-bottom: 12px;
  }
  .footer__rules a {
    white-space: nowrap;
  }
}

.hero {
  display: flex;
  align-items: center;
  height: calc(100 * var(--vh, 1vh));
  min-height: 568px;
  position: relative;
}
.hero__bg-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero__bg-layer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='360' height='610' viewBox='0 0 360 610' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7'%3E%3Cg opacity='0.7' filter='url(%23filter0_d_465_3393)'%3E%3Cpath d='M179.589 450L121.455 413C88.9679 392.76 62.157 364.607 43.5369 331.181C24.9168 297.755 15.0976 260.151 15 221.895V141.605C16.7576 141.364 18.5133 141.111 20.2669 140.846C46.5712 136.872 72.41 130.248 97.3871 121.07C126.251 110.523 153.827 96.7451 179.589 80C205.351 96.7451 232.927 110.523 261.791 121.07C288.433 130.859 316.056 137.744 344.178 141.605V213.57C344.178 213.601 344.178 213.632 344.178 213.663V221.895C344.08 260.151 334.261 297.755 315.641 331.181C297.021 364.607 270.21 392.76 237.723 413L179.589 450Z' fill='%23533D9D'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_465_3393' x='-145' y='-80' width='649.178' height='690' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='80'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.380392 0 0 0 0 0.235294 0 0 0 0 0.756863 0 0 0 0.74 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_465_3393'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_465_3393' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  z-index: -1;
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  pointer-events: none;
}
.hero__content a, .hero__content button {
  pointer-events: auto;
}
.hero__title {
  margin-bottom: 24px;
}
.hero__descr {
  margin-bottom: 40px;
}
.hero__shield {
  display: none;
}
@media (min-width: 768px) {
  .hero {
    min-height: 768px;
  }
  .hero__bg-layer::before {
    display: none;
  }
  .hero__shield {
    --shild-width: 890px;
    --shild-height: 958px;
    --left-offset: calc(var(--shild-width) / (-2));
    --top-offset: -435px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: var(--left-offset);
    margin-top: var(--top-offset);
    width: var(--shild-width);
    height: var(--shild-height);
    z-index: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .hero__descr {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}
@media (min-width: 1200px) {
  .hero__shield {
    --shild-width: 1050px;
    --shild-height: 1050px;
    --top-offset: -415px;
  }
  .hero__descr {
    font-size: 18px;
    max-width: 450px;
  }
  .hero__descr_big {
    font-size: 24px;
    max-width: 500px;
  }
}

@media (min-width: 768px) {
  .shield {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("data:image/svg+xml,%3Csvg width='1046' height='1133' viewBox='0 0 1046 1133' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7' filter='url(%23filter0_d_486_1019)'%3E%3Cpath d='M523 972.437L394.786 891.228C323.136 846.804 264.004 785.012 222.938 711.646C181.872 638.28 160.215 555.745 160 471.779V295.554C163.876 295.024 167.749 294.469 171.616 293.888C229.63 285.167 286.617 270.626 341.704 250.483C405.362 227.333 466.181 197.093 523 160.34C579.819 197.093 640.638 227.333 704.296 250.483C763.055 271.969 823.977 287.081 886 295.554V453.507C886 453.575 886 453.643 886 453.71V471.779C885.785 555.745 864.128 638.28 823.062 711.646C781.996 785.012 722.864 846.804 651.214 891.228L523 972.437Z' fill='%23FFFFFF' fill-opacity='0.14'/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_486_1019' x='0' y='0.339844' width='1046' height='1132.1' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='80'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.380392 0 0 0 0 0.235294 0 0 0 0 0.756863 0 0 0 0.74 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_486_1019'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_486_1019' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    --shield-cover-width: 304px;
    --shield-bg-width: 876px;
    --shield-bg-height: 680px;
  }
  .shield::before {
    content: "";
    position: absolute;
    width: var(--shield-bg-width);
    height: var(--shield-bg-height);
    background-image: url("data:image/svg+xml,%3Csvg width='1046' height='1133' viewBox='0 0 1046 1133' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg opacity='0.7' %3E%3Cpath d='M523 972.437L394.786 891.228C323.136 846.804 264.004 785.012 222.938 711.646C181.872 638.28 160.215 555.745 160 471.779V295.554C163.876 295.024 167.749 294.469 171.616 293.888C229.63 285.167 286.617 270.626 341.704 250.483C405.362 227.333 466.181 197.093 523 160.34C579.819 197.093 640.638 227.333 704.296 250.483C763.055 271.969 823.977 287.081 886 295.554V453.507C886 453.575 886 453.643 886 453.71V471.779C885.785 555.745 864.128 638.28 823.062 711.646C781.996 785.012 722.864 846.804 651.214 891.228L523 972.437Z' fill='%231B1239' /%3E%3C/g%3E%3Cdefs%3E%3Cfilter id='filter0_d_486_1019' x='0' y='0.339844' width='1046' height='1132.1' filterUnits='userSpaceOnUse' color-interpolation-filters='sRGB'%3E%3CfeFlood flood-opacity='0' result='BackgroundImageFix'/%3E%3CfeColorMatrix in='SourceAlpha' type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0' result='hardAlpha'/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation='80'/%3E%3CfeComposite in2='hardAlpha' operator='out'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.380392 0 0 0 0 0.235294 0 0 0 0 0.756863 0 0 0 0.74 0'/%3E%3CfeBlend mode='normal' in2='BackgroundImageFix' result='effect1_dropShadow_486_1019'/%3E%3CfeBlend mode='normal' in='SourceGraphic' in2='effect1_dropShadow_486_1019' result='shape'/%3E%3C/filter%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  .shield__cover {
    width: var(--shield-cover-width);
    height: var(--shield-bg-height);
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    transition: opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-filter 0.3s ease-in-out;
  }
  .shield__cover--hide {
    opacity: 0;
  }
  .shield__cover:hover {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
  }
}
@media (min-width: 1200px) {
  .shield {
    --shield-cover-width: 361px;
    --shield-bg-width: 1038px;
    --shield-bg-height: 807px;
  }
}

.get-profit {
  padding-top: 60px;
  padding-bottom: 133px;
  overflow: hidden;
}
.get-profit__container {
  position: relative;
  z-index: 1;
}
.get-profit__title {
  margin-bottom: 36px;
  text-transform: uppercase;
}
.get-profit__descr {
  margin-bottom: 40px;
}
.get-profit__descr p {
  margin: 0.5em 0;
}
.get-profit__ellipse {
  position: absolute;
  bottom: -120px;
  right: max(-200px, (100% - 767px) / 2);
  z-index: -1;
}
.get-profit__halftone {
  position: absolute;
  bottom: -80px;
  right: max(-100px, (100% - 572px) / 2);
  z-index: -1;
}
@media (min-width: 768px) {
  .get-profit {
    padding-bottom: 60px;
  }
  .get-profit__title {
    width: 600px;
  }
  .get-profit__descr {
    margin-bottom: 50px;
  }
  .get-profit__ellipse {
    bottom: -90px;
    right: max(-100px, (100% - 1199px) / 2);
  }
  .get-profit__halftone {
    bottom: -60px;
    right: max(-100px, (100% - 668px) / 2);
  }
}
@media (min-width: 1200px) {
  .get-profit {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .get-profit__descr {
    margin-bottom: 50px;
    width: 640px;
  }
  .get-profit__ellipse {
    bottom: auto;
    top: -55px;
    right: -95px;
  }
  .get-profit__halftone {
    bottom: auto;
    top: 40px;
    right: 14px;
  }
}

.profit-advantages {
  display: grid;
  gap: 20px;
}
.profit-advantages__item {
  padding: 30px;
  border-radius: 16px;
}
.profit-advantages__nums {
  font-size: 34px;
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .profit-advantages {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1200px) {
  .profit-advantages {
    grid-template-columns: repeat(3, 1fr);
  }
}

.for-whom {
  padding-top: 60px;
  padding-bottom: 60px;
}
.for-whom__container {
  display: grid;
  gap: 20px;
}
.for-whom__wrapper {
  padding: 30px;
  border-radius: 16px;
}
.for-whom__wrapper--accent {
  padding-top: 40px;
  background-color: var(--purple);
  text-align: center;
}
.for-whom__title {
  text-transform: uppercase;
}
.for-whom__separate {
  position: relative;
  margin-bottom: 16px;
  padding-bottom: 16px;
}
.for-whom__separate::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white);
  opacity: 0.14;
}
@media (min-width: 768px) {
  .for-whom {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .for-whom__container {
    gap: 30px;
  }
  .for-whom__wrapper {
    display: flex;
  }
  .for-whom__wrapper > * {
    flex-basis: 100%;
  }
  .for-whom__separate {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-right: 16px;
    padding-right: 16px;
  }
  .for-whom__separate::after {
    top: 0;
    right: 0;
    left: auto;
    bottom: auto;
    width: 1px;
    height: 100%;
  }
  .for-whom__title-wrapper {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .for-whom {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .for-whom__container {
    grid-template-columns: repeat(3, 1fr);
  }
  .for-whom__wrapper {
    flex-direction: column;
  }
  .for-whom__wrapper > * {
    flex-basis: auto;
  }
  .for-whom__wrapper--accent {
    justify-content: center;
  }
  .for-whom__separate {
    margin-bottom: 16px;
    padding-bottom: 16px;
    margin-right: 0;
    padding-right: 0;
  }
  .for-whom__separate::after {
    top: auto;
    right: auto;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
}

.whom-item__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  background-image: radial-gradient(50% 50% at 50% 50%, #FF187A 0%, transparent 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.whom-item__title {
  margin-bottom: 0.65em;
}
.whom-item__separate {
  position: relative;
  padding-bottom: 12px;
}
.whom-item__separate::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 58px;
  height: 4px;
  background-color: var(--accent);
}
.whom-item__btn {
  margin-top: 24px;
}

.advantages {
  padding-top: 60px;
  padding-bottom: 60px;
}
.advantages__title {
  margin-bottom: 30px;
  text-transform: uppercase;
}
.advantages__descr {
  margin-bottom: 30px;
}
.advantages__descr p {
  margin: 0.5em 0;
}
.advantages__tagline {
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 16px;
}
.advantages__list {
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}
.advantages__cb-wrapper {
  text-align: center;
}
@media (min-width: 768px) {
  .advantages {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .advantages__title {
    max-width: 540px;
  }
  .advantages__descr-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .advantages__descr {
    margin-right: 90px;
    margin-bottom: 0;
  }
  .advantages__tagline {
    width: 270px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .advantages__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
  .advantages__descr-wrapper {
    display: block;
    margin-bottom: 0;
    max-width: 445px;
  }
  .advantages__descr {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .advantages__tagline {
    width: auto;
  }
  .advantages__list {
    margin-bottom: 0;
  }
  .advantages__cb-wrapper {
    text-align: left;
  }
}

.advantages-item {
  padding: 30px;
  border: 1px solid var(--white-14);
  border-radius: 16px;
}
.advantages-item--accent {
  color: var(--blue);
  background-color: var(--white);
}
.advantages-item__icon {
  display: block;
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
}
.advantages-item__title {
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .advantages-item {
    display: flex;
  }
  .advantages-item__icon {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 30px;
  }
}

.steps {
  padding-top: 60px;
  padding-bottom: 60px;
}
.steps__title {
  margin-bottom: 30px;
  text-transform: uppercase;
}
.steps__descr {
  margin-bottom: 40px;
}
.steps__descr p {
  margin: 0.5em 0;
}
.steps__wrapper {
  display: grid;
  gap: 20px;
  margin-bottom: 50px;
  counter-reset: steps;
}
.steps__content {
  display: grid;
  gap: 33px;
  padding: 30px;
  border-radius: 16px;
}
.steps__content--accent {
  color: var(--blue);
  background-color: var(--accent);
}
.steps__item {
  position: relative;
  counter-increment: steps;
}
.steps__item::before {
  content: "0" counter(steps);
  font-size: 34px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.steps__item--accent::before {
  color: currentColor;
}
.steps__cb-wrapper {
  text-align: center;
}
@media (min-width: 768px) {
  .steps__wrapper {
    margin-bottom: 40px;
  }
  .steps__content {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps__content--accent {
    grid-template-columns: none;
  }
  .steps__item {
    padding-bottom: 24px;
  }
  .steps__item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -16px;
    width: 1px;
    height: 100%;
    background-color: var(--white-14);
  }
}
@media (min-width: 1200px) {
  .steps {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .steps__top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    margin-bottom: 50px;
  }
  .steps__title {
    margin-bottom: 0;
  }
  .steps__descr {
    text-align: right;
    margin-bottom: 0;
  }
  .steps__wrapper {
    grid-template-columns: 3fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
  }
}

.efficiency {
  padding-top: 60px;
  padding-bottom: 60px;
}
.efficiency__title {
  margin-bottom: 30px;
  text-transform: uppercase;
}
.efficiency__descr {
  margin-bottom: 40px;
}
.efficiency__descr p {
  margin: 0.5em 0;
}
.efficiency__descr ul {
  padding-left: 20px;
}
.efficiency__descr li {
  margin: 8px 0;
}
.efficiency__descr li::marker {
  color: var(--accent);
}
.efficiency__list {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.efficiency__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
}
.efficiency__item-value {
  font-size: 34px;
  line-height: 1.5;
  font-weight: 500;
  color: var(--accent);
}
.efficiency__tagline {
  font-weight: 500;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 24px;
  width: 210px;
  height: 210px;
  border-radius: 16px;
  color: var(--blue);
  background-color: var(--accent);
}
@media (min-width: 768px) {
  .efficiency__title {
    margin-bottom: 36px;
  }
  .efficiency__descr {
    margin-bottom: 50px;
  }
  .efficiency__list {
    display: flex;
    justify-content: space-between;
    gap: 0;
  }
  .efficiency__tagline {
    text-align: left;
    width: auto;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .efficiency {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .efficiency__container {
    display: flex;
  }
  .efficiency__advantages {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
    margin-left: 140px;
    margin-right: 95px;
  }
  .efficiency__list {
    display: grid;
    grid-template-columns: repeat(2, 210px);
    justify-content: end;
    gap: 10px;
    margin-bottom: 0;
  }
  .efficiency__tagline {
    position: absolute;
    top: 220px;
    right: 0;
    width: 210px;
    height: 210px;
  }
}

.faq {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
}
.faq__container {
  position: relative;
  z-index: 1;
}
.faq__title {
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.faq__list {
  display: grid;
  gap: 10px;
}
.faq__decor-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .faq__title {
    margin-bottom: 40px;
  }
}
@media (min-width: 1200px) {
  .faq {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .faq__title {
    margin-bottom: 50px;
  }
  .faq__list {
    margin-left: auto;
    margin-right: auto;
    width: 920px;
  }
}

.faq-item {
  border-radius: 16px;
}
.faq-item[open] .faq-item__title::before {
  background-color: var(--accent);
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 9.28174C18 8.9711 17.7484 8.71924 17.4375 8.71924L9.84375 8.71924L9.84375 0.562988C9.84375 0.252349 9.59216 0.000487914 9.28125 0.0004879C8.97034 0.000487887 8.71875 0.252349 8.71875 0.562988L8.71875 8.71924L0.5625 8.71924C0.251587 8.71924 -3.92118e-07 8.9711 -4.05696e-07 9.28174C-4.19275e-07 9.59238 0.251586 9.84424 0.5625 9.84424L8.71875 9.84424L8.71875 17.438C8.71875 17.6354 8.82037 17.8091 8.97418 17.9094C9.06262 17.967 9.16809 18.0005 9.28125 18.0005C9.59216 18.0005 9.84375 17.7486 9.84375 17.438L9.84375 9.84424L17.4375 9.84424C17.7484 9.84424 18 9.59238 18 9.28174Z' fill='%231F4099'/%3E%3C/svg%3E ");
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.faq-item__title {
  position: relative;
  display: block;
  font-weight: 500;
  padding: 16px;
  padding-right: 64px;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}
.faq-item__title::-webkit-details-marker {
  display: none;
}
.faq-item__title::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 36px;
  height: 36px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 9.28174C18 8.9711 17.7484 8.71924 17.4375 8.71924L9.84375 8.71924L9.84375 0.562988C9.84375 0.252349 9.59216 0.000487914 9.28125 0.0004879C8.97034 0.000487887 8.71875 0.252349 8.71875 0.562988L8.71875 8.71924L0.5625 8.71924C0.251587 8.71924 -3.92118e-07 8.9711 -4.05696e-07 9.28174C-4.19275e-07 9.59238 0.251586 9.84424 0.5625 9.84424L8.71875 9.84424L8.71875 17.438C8.71875 17.6354 8.82037 17.8091 8.97418 17.9094C9.06262 17.967 9.16809 18.0005 9.28125 18.0005C9.59216 18.0005 9.84375 17.7486 9.84375 17.438L9.84375 9.84424L17.4375 9.84424C17.7484 9.84424 18 9.59238 18 9.28174Z' fill='%2360FFF5'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  margin-top: -18px;
  transition: background-color 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.faq-item__content {
  padding: 0 16px;
}
.faq-item__content p {
  margin: 0.5em 0;
}
@media (min-width: 1200px) {
  .faq-item {
    transition: border-color 0.3s ease-in-out;
  }
  .faq-item:hover {
    border-color: var(--accent);
  }
}

.contacts {
  padding-top: 60px;
  padding-bottom: 80px;
  overflow: hidden;
}
.contacts__container {
  position: relative;
  z-index: 1;
}
.contacts__title {
  margin-bottom: 24px;
  text-transform: uppercase;
  text-align: center;
}
.contacts__descr {
  margin-bottom: 40px;
  text-align: center;
}
.contacts__descr p {
  margin: 0.5em 0;
}
.contacts__form {
  display: grid;
  row-gap: 16px;
  margin-bottom: 40px;
}
.contacts__form-confirm {
  margin: 8px 0;
}
.contacts__alternative-title {
  text-align: center;
  margin-bottom: 24px;
}
.contacts__list {
  display: grid;
  row-gap: 6px;
  justify-items: center;
}
.contacts__phone a {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 500;
  text-decoration: none;
  color: var(--white);
}
.contacts__email a {
  font-size: 20px;
  color: var(--white);
}
.contacts__socials {
  margin-top: 18px;
}
.contacts__socials-list {
  display: flex;
  margin: -8px;
}
.contacts__social a {
  display: flex;
  width: 42px;
  height: 42px;
  color: var(--pink);
  margin: 8px;
}
.contacts__ellipse {
  position: absolute;
  bottom: 0;
  right: max(-160px, (100% - 767px) / 2);
  z-index: -1;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .contacts {
    padding-bottom: 130px;
  }
  .contacts__container {
    width: 570px;
  }
  .contacts__submit {
    justify-self: center;
  }
  .contacts__ellipse {
    bottom: -90px;
    right: -60px;
  }
}
@media (min-width: 1200px) {
  .contacts {
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .contacts__container {
    width: 100%;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(12, 1fr);
  }
  .contacts__main {
    grid-column: 1/span 5;
  }
  .contacts__alternative {
    grid-column: 8/span 5;
  }
  .contacts__title {
    text-align: left;
  }
  .contacts__descr {
    text-align: left;
  }
  .contacts__form {
    margin-bottom: 0;
  }
  .contacts__submit {
    justify-self: start;
  }
  .contacts__alternative-title {
    text-align: left;
  }
  .contacts__list {
    justify-items: start;
  }
  .contacts__phone a {
    transition: color 0.2s ease-in-out;
  }
  .contacts__phone a:hover {
    color: var(--accent);
  }
  .contacts__email a {
    transition: color 0.2s ease-in-out;
  }
  .contacts__email a:hover {
    color: var(--accent);
  }
  .contacts__social a {
    transition: color 0.2s ease-in-out;
  }
  .contacts__social a:hover {
    color: var(--accent);
  }
  .contacts__ellipse {
    bottom: auto;
    top: 0;
    right: -100px;
  }
}