@charset "UTF-8";
/*$$__$$__$$$$__$$$$$__$$___$__$$$$__$$_____$$$$$$_$$$$$$_$$$$$
  $$$_$$_$$__$$_$$__$$_$$$_$$_$$__$$_$$_______$$______$$__$$___
  $$_$$$_$$__$$_$$$$$__$$_$_$_$$$$$$_$$_______$$_____$$___$$$$_
  $$__$$_$$__$$_$$__$$_$$___$_$$__$$_$$_______$$____$$____$$___
  $$__$$__$$$$__$$__$$_$$___$_$$__$$_$$$$$$_$$$$$$_$$$$$$_$$$$$*/

* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

strong {
  font-weight: normal;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

:root {
  --HEADER__COLOR: #1e2428;
  --MAIN__BACKGROUND: #151b1f;
  --FOOTER__BACKGROUND: #191f23;
  --MAIN__WIDTH: 1200px;
  --ANIMATION__TIME: 1000ms;
  --HEADER__HEIGHT: 95px;
}

@media screen and (max-width: 1000px) {
  :root {
    --HEADER__HEIGHT: 68px;
  }
}

@media screen and (max-width: 600px) {
  :root {
    --HEADER__HEIGHT: 56px;
  }
}

html,
body {
  font-family:
    San Francisco,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  min-height: 100%;
  height: unset;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: var(--FOOTER__BACKGROUND);
}

body {
  min-height: 100%;
}

@media screen and (max-width: 1080px) {

  html,
  body {
    background-color: var(--HEADER__COLOR);
  }
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--MAIN__BACKGROUND);
}

.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: var(--MAIN__BACKGROUND);
  z-index: 999;
  overflow: hidden;
}

.loader__logo {
  max-width: 147px;
  padding: 0 0 40px;
}

.loader__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  position: relative;
  padding: 0 16px;
}

.loader__progress-bar {
  max-width: 540px;
  width: 100%;
  height: 5px;
  border-radius: 10px;
  background: #262c2f;
}

.loader__progress-bar__line {
  height: 5px;
  max-width: 0%;
  transition: max-width 300ms ease;
  border-radius: 10px;
  background: #ff3888;
}

.loader__progress-percentage {
  padding: 24px 0 0 0;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  opacity: 0.8;
  color: white;
}

.loader__first-line,
.loader__second-line,
.loader__third-line {
  position: absolute;
  left: 0;
  width: 1920px;
  height: 100%;
  top: 50%;
  transform: translate(0, -60%);
}

@media screen and (min-width: 1921px) {

  .loader__first-line,
  .loader__second-line,
  .loader__third-line {
    width: 100%;
  }
}

@media screen and (max-width: 1919px) {

  .loader__first-line,
  .loader__second-line,
  .loader__third-line {
    left: 50%;
    transform: translate(-50%, -60%);
  }
}

@media screen and (max-width: 660px) {
  .loader__progress-percentage {
    font-size: 16px;
  }

  .loader__first-line,
  .loader__second-line,
  .loader__third-line {
    left: 50%;
    transform: translate(calc(-50% - 100px), -60%);
  }
}

/* $$__$$_$$$$$__$$$$__$$$$$__$$$$$_$$$$$_
   $$__$$_$$____$$__$$_$$__$$_$$____$$__$$
   $$$$$$_$$$$__$$$$$$_$$__$$_$$$$__$$$$$_
   $$__$$_$$____$$__$$_$$__$$_$$____$$__$$
   $$__$$_$$$$$_$$__$$_$$$$$__$$$$$_$$__$$*/
.header {
  background-color: var(--HEADER__COLOR);
  width: 100%;
  display: grid;
  place-items: center;
  position: sticky;
  align-self: start;
  top: 0;
  z-index: 50;
}

.header__burger {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
}

.header__burger>svg {
  cursor: pointer;
}

.header__logo {
  cursor: pointer;
}

.header__logo>svg {
  max-width: 143px;
  height: 100%;
  width: 100%;
}

.header__logo>svg>g path {
  transition-property: fill, opacity;
  transition: 300ms ease;
  opacity: 1;
}

.header__logo:hover>svg>g path {
  fill: #ff3888;
}

.header__burger__content {
  display: grid;
  grid-template-rows: 0fr;
  transition-property: grid-template-rows, padding, border-top;
  transition: 300ms ease;
  position: fixed;
  height: -moz-fit-content;
  height: fit-content;
  right: calc(50% - 1450px / 2);
  top: 20px;
  max-width: 700px;
  width: 100%;
  background: #23272d;
  padding: 0;
  z-index: 50;
  border-radius: 20px;
}

.header__burger__content__background {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 39, 45, 0.7);
  z-index: 49;
  opacity: 0;
  transition: opacity 300ms ease;
  visibility: hidden;
}

.header__burger__content__background_active {
  visibility: visible;
  opacity: 1;
}

.header__burger__content__background_disabled {
  opacity: 0;
}

.header__burger__content_active {
  padding: 32px;
  border-top: rgba(255, 255, 255, 0.05) 1px solid;
  grid-template-rows: 1fr;
}

.header__burger__content__wrapper {
  display: grid;
  grid-template: repeat(7, auto) / auto 1fr;
  column-gap: 50px;
  row-gap: 16px;
  overflow: hidden;
}

.header__burger__content__wrapper>.header__nav__item__mobile {
  font-size: 32px;
}

.header__burger__content__wrapper .header__button_send-question>p {
  display: flex;
  width: fit-content;
}

.header__burger__content__wrapper .header__change-active {
  font-size: 24px;
  font-weight: 400;
}

.header__burger__content__wrapper .header__button_send-question svg {
  width: 46px;
  height: 46px;
}

.header__burger__content__wrapper>.header__button_start-work {
  display: flex;
  max-width: 330px;
  width: 100%;
}

.header__wrapper {
  max-width: 1450px;
  width: 100%;
  display: grid;
  grid-template: 1fr / 1fr repeat(5, auto);
  -moz-column-gap: 12px;
  column-gap: 16px;
  transition: grid-template 300ms ease;
  align-items: center;
  justify-content: space-between;
  padding: 21px;
  position: relative;
}

.header__change-lang {
  position: relative;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  opacity: 0.8;
  line-height: normal;
  user-select: none;
}

.header__change-active {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  justify-content: center;
}

.header__chang-lang__wrapper {
  padding: 0 0 0 25px;
  position: absolute;
  left: -26px;
  top: 45px;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
}

.header__change-lang__arrow {
  transition: transform 300ms ease;
}

.header__change-lang__arrow_active {
  transform: rotate(180deg);
}

.header__chang-lang__wrapper_active {
  grid-template-rows: 1fr;
}

.header__button-wrapper {
  display: grid;
  grid-area: 7 / 1 / 7 / span 2;
  column-gap: 16px;
  grid-template: 1fr / repeat(2, 1fr);
}

.header__burger__content__wrapper .header__button_sign-in,
.header__burger__content__wrapper .header__button_sign-up {
  display: flex;
  justify-content: center;
  padding: 20px 40px;
  font-size: 24px;
}

.header__burger__content__wrapper .header__button_send-question {
  grid-area: 6 / 1 / 6 / span 2;
  font-size: 32px;
  justify-content: flex-start;
  padding: 60px 0;
}

.header__change-lang__content {
  width: 150px;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  background-color: #282e32;
}


.header__burger__close {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 44px;
  grid-area: 1 / 1 / 1 / span 2;
}

.header__burger__close>svg {
  cursor: pointer;
}

.header__change-lang__content__item {
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  cursor: pointer;
  background-color: #282e32;
  transition: background-color 300ms ease;
  color: inherit;

}

.header__burger__content__wrapper .header__change-lang__content__item {
  font-size: 24px;
}

.header__change-lang__content>.header__change-lang__content__item:nth-child(1) {
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.header__change-lang__content>.header__change-lang__content__item:nth-child(2) {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.header__change-lang__content__item:hover {
  background-color: #2c3236;
}

.header__nav {
  display: flex;
  color: rgba(255, 255, 255, 0.8);
  transition: all 300ms ease;
  gap: 20px;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
}

.header__nav__item,
.header__nav__item__mobile {
  cursor: pointer;
  transition: all ease 300ms;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.header__nav__item:visited,
.header__nav__item__mobile:visited {
  color: rgba(255, 255, 255, 0.8);
}

.header__nav__item:hover,
.header__nav__item__mobile:hover {
  color: rgb(255, 68, 143);
}

.header__button_send-question {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all ease 300ms;
  position: relative;
  z-index: 2;
}

.header__button_send-question svg path {
  fill: rgba(255, 255, 255, 0.8);
  transition: fill ease 300ms;
}

.header__button_send-question:hover {
  color: #ff448f;
}

.header__button_send-question:hover svg path {
  fill: #ff448f;
}

.header__button_send-question:active {
  color: #df1466;
}

.header__button_send-question:active svg path {
  fill: #df1466;
}

.header__button_sign-in {
  color: rgba(255, 255, 255, 0.8);
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid #fff;
  transition: 300ms all ease;
}

.header__button_sign-in:visited {
  color: rgba(255, 255, 255, 0.8);
}

.header__button_sign-in:hover {
  color: #ff448f;
  border: 1px solid #ff448f;
}

.header__button_sign-in:active {
  color: #df1466;
  border: 1px solid #df1466;
}

.header__button_sign-up {
  padding: 16px 24px;
  background-color: #fff;
  border-radius: 15px;
  font-weight: 600;
  color: #151b1f;
  transition: 300ms all ease;
}

.header__button_sign-up:visited {
  color: #151b1f;
}

.header__button_sign-up:hover {
  color: #fff;
  background-color: #ff448f;
}

.header__button_sign-up:active {
  background-color: #df1466;
}

.header__advertisement {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 0;
  gap: 45px;
  position: relative;
  overflow: hidden;
  background: #1a1633;
  width: 100%;
}

.header__advertisement__line {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.header__advertisement__title {
  color: white;
  font-size: 24px;
  line-height: normal;
  font-weight: 500;
  z-index: 2;
}

.header__advertisement__text {
  max-width: 580px;
  width: 100%;
  color: white;
  font-size: 16px;
  font-weight: 400;
  z-index: 2;
}

.header__advertisement__button {
  padding: 16px 24px;
  border-radius: 15px;
  background: transparent;
  font-size: 16px;
  color: white;
  font-weight: 600;
  z-index: 2;
  position: relative;
  cursor: pointer;
}

.header__advertisement__button::after {
  transition: all ease 300ms;
  content: "Submit the application";
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #ff3888;
  z-index: 1;
  left: 0;
  top: 0;
}

.header__advertisement__button:hover::after {
  background: #ff448f;
  box-shadow: 0px 0px 20px 0px rgba(255, 56, 136, 0.5);
}

.header__advertisement__button:active::after {
  background: #df1466;
}

.header__nav__item_in-view {
  color: rgb(255, 68, 143);
}

.header__nav__item_in-view:visited {
  color: rgb(255, 68, 143);
}

@media screen and (max-width: 1500px) {
  .header__burger__content {
    right: 20px;
    max-width: 650px;
  }
}

@media screen and (max-width: 1280px) {
  .header__nav {
    gap: 10px;
  }

  .header__nav__item,
  .header__button_send-question {
    font-size: 14px;
  }
}

@media screen and (max-width: 1080px) {
  .header__change-lang_mobile {
    display: flex;
    z-index: 99;
  }

  .header__burger__content {
    display: grid;
  }
}

@media screen and (max-width: 960px) {

  .header__burger__content__wrapper>.header__nav__item__mobile,
  .header__burger__content__wrapper>.header__button_send-question {
    font-size: 24px;
  }

  .header__wrapper {
    grid-template: 1fr / 1fr auto auto;
    column-gap: 35px;
  }

  .header__wrapper>.header__button_sign-in {
    display: none;
  }

  .header__wrapper>.header__button_sign-up {
    display: none;
  }

  .header__wrapper>.header__button_send-question {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .header__burger__content {
    right: 50%;
    transform: translate(50%);
    top: 0;
  }

  .header__burger__content__wrapper>.header__nav__item__mobile,
  .header__burger__content__wrapper>.header__button_send-question {
    font-size: 24px;
  }
}

@media screen and (max-width: 650px) {
  .header__burger__content__wrapper>.header__button_send-question {
    display: flex;
    justify-content: center;
    grid-area: 6 / 1 / 6 / span 2;
    padding: 62px 0 0px;
  }

  .header__burger__content__wrapper>.header__button_send-question>p {
    width: fit-content;
  }

  .header__button-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media screen and (max-width: 600px) {
  .header__logo {
    width: 91px;
    height: 14px;
  }

  .header__wrapper {
    padding: 16px 15px;
  }
}

@media screen and (max-width: 460px) {

  .header__burger__content__wrapper>.header__button_send-question,
  .header__burger__content__wrapper .header__button_sign-in,
  .header__burger__content__wrapper .header__button_sign-up {
    font-size: 16px;
  }

  .header__burger__content__wrapper .header__button_sign-in {
    padding: 16px 24px;
  }

  .header__burger__content__wrapper .header__button_sign-up {
    padding: 16px 24px;
  }

  .header__burger__content__wrapper>.header__button_send-question>svg {
    width: 32px;
    height: 32px;
  }

  .header__burger__content_active {
    padding: 16px;
  }

  .header__burger__content__wrapper .header__change-active {
    font-size: 16px;
  }

  .header__burger__content__wrapper .header__change-lang__content__item {
    font-size: 16px;
  }

  .header__burger__content__wrapper>.header__nav__item__mobile {
    font-size: 16px;
  }
}

/*$$______$$$$__$$__$$_$$$$$__$$$$$$_$$__$$__$$$$_____$$$$$__$$______$$$$___$$$$__$$__$$
  $$_____$$__$$_$$$_$$_$$__$$___$$___$$$_$$_$$________$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$_____$$$$$$_$$_$$$_$$__$$___$$___$$_$$$_$$_$$$____$$$$$__$$_____$$__$$_$$_____$$$$__
  $$_____$$__$$_$$__$$_$$__$$___$$___$$__$$_$$__$$____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$$$$$_$$__$$_$$__$$_$$$$$__$$$$$$_$$__$$__$$$$_____$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
.landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 70px 16px 0;
  width: 100%;
  overflow-x: clip;
  position: relative;
  height: 100vh;
}

.landing__title {
  font-size: 82px;
  font-weight: 600;
  text-align: center;
  color: white;
  display: grid;
  grid-template: repeat(2, auto) / 1fr auto;
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 16px;
  position: relative;
  z-index: 4;
}

.landing__title>h1 {
  grid-area: 1/1/1 / span 2;
}

.landing__title>img {
  height: -moz-fit-content;
  height: fit-content;
  align-self: center;
}

.landing__description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 750px;
  width: 100%;
  text-align: center;
  padding: 20px 0 35px 0;
  position: relative;
  z-index: 4;
}

.landing__button {
  position: relative;
  z-index: 6;
  background: linear-gradient(180deg, #ff3888 0%, #d80358 100%);
  font-size: 18px;
  width: 143px;
  height: 143px;
  border-radius: 50%;
  font-weight: 600;
  color: white;
  transition-property: border, filter;
  transition: ease 500ms;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.landing__button>span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.landing__button:hover~.landing__button__circle_second::after {
  opacity: 1;
}

.landing__button:hover~.landing__button__circle_fourth {
  opacity: 1;
}

.landing__button__video {
  position: absolute;
  mix-blend-mode: lighten;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.landing__button__circle_first {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  width: 190px;
  height: 190px;
  z-index: 4;
}

.landing__button__circle_second {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.02) 85.51%, rgba(255, 255, 255, 0) 100%);
  transition: opacity 1000ms ease;
  opacity: 1;
  width: 265px;
  height: 265px;
  z-index: 3;
}

.landing__button__circle_second::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 290px;
  max-height: 290px;
  width: 100%;
  height: 100%;
  transition: opacity 1000ms ease;
  display: block;
  opacity: 0;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.04) 85.51%, rgba(255, 255, 255, 0) 100%);
}

.landing__button__circle_third {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 561px;
  height: 451px;
  background: linear-gradient(180deg, rgba(190, 33, 255, 0.15) 0%, rgba(255, 68, 124, 0.15) 100%);
  filter: blur(150px);
  z-index: 2;
}

.landing__button__circle_fourth {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: opacity ease 1000ms;
  transform: translate(calc(-50% - 0.5px), calc(-50% - 0.5px));
  filter: drop-shadow(0px 0px 20px rgba(249, 48, 128, 0.8));
  background: rgba(255, 112, 169, 0.5);
}

.landing__button-wrapper {
  position: relative;
}

.landing__background-video {
  max-width: 1920px;
  -o-object-fit: cover;
  object-fit: cover;
}

.landing__background-video__content {
  position: relative;
  max-width: 1920px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.landing__background-video__content div:last-of-type {
  left: 0;
  right: unset;
  transform: rotate(180deg);
  background: linear-gradient(transform 270deg, #151b1f 0%, rgba(21, 27, 31, 0.93) 39.58%, rgba(21, 27, 31, 0) 100%);
}

.landing__background-video__wrapper {
  z-index: 0;
  height: 100vh;
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
}

.landing__background-video__grad {
  display: none;
  position: absolute;
  width: 150px;
  top: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(270deg,
      #151b1f 0%,
      rgba(21, 27, 31, 0.97) 25%,
      rgba(21, 27, 31, 0.8) 48.96%,
      rgba(21, 27, 31, 0) 100%);
}

@media screen and (min-width: 1920px) {
  .landing__background-video__grad {
    display: block;
  }

  .landing__background-video__wrapper {
    height: unset;
  }
}

@media screen and (max-width: 1400px) {
  .landing__background-video {
    max-width: 1400px;
  }
}

@media screen and (max-width: 1024px) {
  .landing__background-video {
    max-width: 1024px;
  }
}

@media screen and (max-width: 915px) {
  .landing {
    padding: 40px 16px 0;
    height: 115vh;
  }

  .landing__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .landing__title>img {
    padding: 12px 0 0;
  }
}

@media screen and (max-width: 660px) {
  .landing__background-video {
    max-width: 800px;
  }

  .landing__title {
    font-size: 38px;
  }

  .landing__title>img {
    width: 108px;
  }

  .landing__description {
    font-size: 14px;
  }

  .landing {
    height: 100vh;
  }
}

/*$$__$$__$$$$__$$___$____$$$$$$_$$$$$$____$$___$__$$$$__$$$$$__$$__$$____$$$$$__$$______$$$$___$$$$__$$__$$
  $$__$$_$$__$$_$$___$______$$_____$$______$$___$_$$__$$_$$__$$_$$_$$_____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$$$$$_$$__$$_$$_$_$______$$_____$$______$$_$_$_$$__$$_$$$$$__$$$$______$$$$$__$$_____$$__$$_$$_____$$$$__
  $$__$$_$$__$$_$$$$$$______$$_____$$______$$$$$$_$$__$$_$$__$$_$$_$$_____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$__$$__$$$$___$$_$$____$$$$$$___$$_______$$_$$__$$$$__$$__$$_$$__$$____$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
.how-it-work {
  display: grid;
  place-items: center;
  padding: 70px 16px;
  height: 100vh;
  scroll-margin-top: 40px;
}

.how-it-work__glass {
  position: relative;
  z-index: 3;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  width: var(--MAIN__WIDTH);
  display: grid;
  grid-template: 1fr / minmax(auto, 600px) 1fr;
  height: 100%;
  padding: 0 0 0 80px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.how-it-work__glass__title {
  color: white;
  font-size: 56px;
  font-weight: 600;
  opacity: 0.8;
  padding: 0 0 20px 0;
}

.how-it-work__glass__title_small {
  color: white;
  font-size: 32px;
  font-weight: 600;
  opacity: 0.8;
  padding: 0 0 20px 0;
}

.how-it-work__glass__button {
  width: -moz-fit-content;
  width: fit-content;
  background: transparent;
  border-radius: 11px;
  padding: 16px 32px;
  color: transparent;
  font-size: 18.5px;
  font-weight: 600;
  transition: all ease 300ms;
  cursor: pointer;
  position: relative;
  z-index: 1;
  border-radius: 15px;
  background: #ff3888;
  color: white;
}

.how-it-work__glass__button:hover::after {
  background: #ff448f;
  box-shadow: 0px 0px 20px 0px rgba(255, 56, 136, 0.5);
}

.how-it-work__glass__button:active::after {
  background: #df1466;
}

.how-it-work__glass__text {
  color: white;
  opacity: 0.8;
  font-size: 20px;
  font-weight: 400;
  padding: 0 0 32px 0;
}

.how-it-work__glass__text__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

@media screen and (max-width: 900px) {
  .how-it-work__glass__text__wrapper {
    padding-right: 0px;
  }
}

.how-it-work__glass-wrapper {
  position: relative;
  display: grid;
  grid-template: minmax(auto, 600px) / 1fr;
  overflow-y: hidden;
}

.how-it-work__glass__big-circle {
  position: absolute;
  z-index: 2;
  opacity: 0.2;
  display: block;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  top: 80px;
  left: 185px;
  background: #ff3888;
}

.how-it-work__glass__small-circle {
  position: absolute;
  z-index: 2;
  opacity: 0.2;
  display: block;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  top: 50%;
  right: 95px;
  background: #bf38ff;
  transform: translate(0, -50%);
}

.how-it-work__glass__phone {
  background: url(../assets/img/howItWorkPhone.svg) no-repeat;
  max-width: 328px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 80px;
  display: flex;
  flex-direction: column;
  padding: 16px 14px 0 16px;
  pointer-events: none;
}

.how-it-work__glass__phone__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #223242;
  gap: 5px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  height: -moz-fit-content;
  height: fit-content;
}

.how-it-work__glass__phone__header>div {
  font-size: 14px;
  font-weight: 500;
  color: white;
  padding: 0 0 8px;
}

.how-it-work__glass__phone__main {
  background: #152534;
  padding: 50px 8px 90px 8px;
  display: grid;
  grid-template: repeat(3, auto) / 1fr;
  gap: 10px;
  position: relative;
}

.how-it-work__glass__phone__main__bot-message {
  display: grid;
  grid-template: 1fr / auto 1fr;
  padding: 0 36px 0 0;
  gap: 4px;
  height: -moz-fit-content;
  height: fit-content;
}

.how-it-work__glass__phone__main__bot-message>img {
  align-self: flex-end;
}

.how-it-work__glass__phone__main__bot-message__wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: 16px;
  background: #1e2e3e;
  position: relative;
}

.how-it-work__glass__phone__main__bot-message__wrapper::before {
  content: url(../assets/img/howItWorksBotMessage.svg);
  left: -4.5px;
  bottom: -4.5px;
  z-index: 1;
  position: absolute;
}

.how-it-work__glass__phone__main__bot-message__title {
  color: #ff5694;
  font-size: 10px;
  font-weight: 500;
}

.how-it-work__glass__phone__main__bot-message__text {
  color: white;
  font-size: 10px;
  font-weight: 400;
}

.how-it-work__glass__phone__main__user-message {
  width: -moz-fit-content;
  width: fit-content;
  padding: 11px 37px 11px 11px;
  border-radius: 16px;
  background: #416f98;
  display: grid;
  grid-template: repeat(2, auto) / repeat(2, auto);
  align-items: center;
  -moz-column-gap: 7px;
  column-gap: 7px;
  row-gap: 2px;
  position: relative;
  justify-self: flex-end;
  height: -moz-fit-content;
  height: fit-content;
}

.how-it-work__glass__phone__main__user-message::after {
  content: url(../assets/img/howItWorkUserMessage.svg);
  position: absolute;
  right: -4.5px;
  bottom: -4.5px;
}

.how-it-work__glass__phone__main__user-message__background {
  position: absolute;
}

.how-it-work__glass__phone__main__user-message__play {
  grid-area: 1/1 / span 2/1;
}

.how-it-work__glass__phone__main__user-message__height {
  align-self: flex-end;
}

.how-it-work__glass__phone__main__user-message__time {
  position: absolute;
  display: flex;
  gap: 2px;
  align-items: center;
  right: 8px;
  bottom: 5px;
  color: #fcffff;
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
}

.how-it-work__glass__phone__main__user-message__lenght {
  display: flex;
  align-items: center;
  gap: 4px;
  align-self: flex-start;
  color: #fcffff;
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
}

.how-it-work__glass__phone__main__user-message__lenght::after {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: white;
  opacity: 1;
}

.how-it-work__glass__phone__main__voice-message {
  position: absolute;
  padding: 6px 36px 6px 11px;
  gap: 10px;
  display: flex;
  align-items: center;
  border-radius: 20.641px;
  border: 0.86px solid rgba(255, 255, 255, 0.05);
  background: #f3287a;
  -webkit-backdrop-filter: blur(8.1935482025px);
  backdrop-filter: blur(8.1935482025px);
  bottom: 20px;
  right: -50%;
  transform: translate(-10%, 0);
}

.how-it-work__glass__phone__footer {
  display: flex;
  gap: 10px;
  background: #223242;
  padding: 6px 10px 20px;
}

.how-it-work__glass__phone__footer__message {
  width: 100%;
  border-radius: 16px;
  background: #141e27;
  color: #6c767f;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.7;
  padding: 4px 10px;
}

.how-it-work__glass__phone__wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
}

#how-it-work__lottie {
  max-width: 330px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-end;
}

@media screen and (max-width: 1250px) {
  .how-it-work__glass {
    padding: 0 50px;
    width: -moz-fit-content;
    width: fit-content;
    grid-template: 1fr/1fr auto;
  }
}

@media screen and (max-width: 830px) {
  .how-it-work__glass {
    padding: 35px 16px 0;
    grid-template: auto auto/1fr;
  }

  .how-it-work__glass__text__wrapper {
    align-items: center;
    text-align: center;
  }

  .how-it-work__glass__text__wrapper br {
    display: none;
  }

  #how-it-work__lottie {
    justify-self: center;
  }

  .how-it-work__glass-wrapper {
    grid-template: 1fr/1fr;
    place-items: center;
  }

  .how-it-work__glass-wrapper {
    overflow: hidden;
  }

  .how-it-work__glass__button,
  .how-it-work__glass__button::after {
    max-width: 300px;
    width: 100%;
    font-size: 14px;
  }
}

@media screen and (max-width: 660px) {
  .how-it-work__glass__title {
    font-size: 24px;
    padding: 0 0 16px;
  }

  .how-it-work__glass__title_small {
    font-size: 16px;
    padding: 0 0 12px;
  }

  .how-it-work__glass__text {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {

  .how-it-work__glass__button,
  .how-it-work__glass__button::after {
    max-width: unset;
  }
}

@media screen and (max-width: 400px) {
  #how-it-work__lottie {
    max-width: 200px;
  }
}

/*$$$$$_$$__$$__$$$$__$$___$_$$$$$__$$_____$$$$$____$$$$$__$$______$$$$___$$$$__$$__$$
  $$_____$$$$__$$__$$_$$$_$$_$$__$$_$$_____$$_______$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$$$____$$___$$$$$$_$$_$_$_$$$$$__$$_____$$$$_____$$$$$__$$_____$$__$$_$$_____$$$$__
  $$_____$$$$__$$__$$_$$___$_$$_____$$_____$$_______$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$$$$_$$__$$_$$__$$_$$___$_$$_____$$$$$$_$$$$$____$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
noscript:has(.example-noscript)+.example .example__content__item__text__wrapper {
  grid-template-rows: 1fr;
}

noscript:has(.example-noscript)+.example .example__content__item__button,
noscript:has(.example-noscript)+.example .example__voice__wrapper {
  display: none;
}

noscript:has(.example-noscript)+.example .example__change-voice__item:nth-child(2) {
  display: none;
}

noscript:has(.example-noscript)+.example .example__content__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

noscript:has(.example-noscript)+.example .example__content {
  display: grid;
}

noscript:has(.example-noscript)+.example .example__change-voice__noscript {
  display: flex;
  padding: 20px 0 42px;
}

noscript:has(.example-noscript)+.example .example__change-voice__noscript>button {
  padding: 12px 16px;
  border-radius: 14px;
  background: transparent;
  font-size: 14px;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
}

noscript:has(.example-noscript)+.example .example__change-voice__noscript>button::after {
  transition: all ease 300ms;
  content: "Literary speech";
  color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #ff448f;
  z-index: 3;
  left: 0;
  top: 0;
}

noscript:has(.example-noscript)+.example .example__change-voice__noscript>button:hover::after {
  background: #ff448f;
  box-shadow: 0px 0px 20px 0px rgba(255, 56, 136, 0.5);
}

noscript:has(.example-noscript)+.example .example__change-voice__noscript>button:active::after {
  background: #df1466;
}

.example {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 0 0px;
  overflow: hidden;
  width: 100%;
}

.example__title {
  font-size: 56px;
  font-weight: 600;
  color: white;
  opacity: 0.8;
  padding: 0 0 12px;
}

.example>audio {
  display: none;
}

.example__change-voice {
  display: flex;
  gap: 12px;
  justify-content: center;
  padding: 20px;
}

.example__change-voice__noscript {
  display: none;
}

.example__change-voice__item {
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 400;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all ease 300ms;
  color: white;
  background: rgba(255, 255, 255, 0.03);
  overflow: auto;
}

/* .example__change-voice__item:nth-child(1)::after {
  content: "Conversation with operators";
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.03);
  z-index: 3;
  left: 0;
  top: 0;
} */
.example__change-voice__item:hover {
  background: #ff448f;
  box-shadow: 0px 0px 20px 0px rgba(255, 56, 136, 0.5);
}

.example__change-voice__item:active {
  background: #df1466;
}

/* 
.example__change-voice__item:nth-child(2)::after {
  transition: all ease 300ms;
  content: "Literary speech";
  color: white;
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  z-index: 3;
  left: 0;
  top: 0;
} */

.example__change-voice_active {
  background: #ff3888;
  position: relative;
  z-index: 2;
}

.example__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  opacity: 0.7;
  max-width: 450px;
  text-align: center;
}

.example__voice {
  max-width: var(--MAIN__WIDTH);
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template: 1fr / repeat(3, auto);
  align-items: center;
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 8px 12px 8px 14px;
  position: relative;
  z-index: 2;
}

.example__voice__wrapper {
  position: relative;
  padding: 30px 0 42px;
  width: 100vw;
  display: flex;
  justify-content: center;
}

.example__voice__wrapper>img {
  z-index: 1;
  position: absolute;
  width: 100%;
  transform: translate(0, 5px);
}

.example__voice__button {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 23px;
  background-color: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: background-color 300ms ease;
}

.example__voice__button>img:first-of-type {
  display: block;
}

.example__voice__button>img:last-of-type {
  display: none;
}

.example__voice__button:hover {
  background-color: #ff4490;
}

.example__voice__button:active {
  background-color: #f3287a;
}

.example__voice__heights {
  width: 180px;
  padding: 0 8px 0 13px;
}

.example__voice__heights>div {
  width: 100%;
}

.example__voice__time {
  font-size: 9px;
  color: #fcffff;
  font-weight: 400;
  opacity: 0.7;
  align-self: flex-end;
  padding: 0 0 4px;
}

.example__content {
  position: relative;
  display: none;
  grid-template: auto auto/repeat(4, 1fr);
  transition: grid-template 500ms;
  row-gap: 15px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  column-gap: 20px;
  z-index: 2;
}

.example__content_active {
  display: grid;
}

.example__content__wrapper {
  width: 100%;
  max-width: var(--MAIN__WIDTH);
  display: flex;
  align-items: flex-end;
  gap: 4px;
  padding: 42px 0 0 0;
}

.example__content__item {
  grid-row: 2/2;
  font-size: 14px;
  color: white;
  font-weight: 400;
  line-height: normal;
  border-radius: 17.097px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 290px;
}

.example__content__item__text>strong {
  background: rgba(255, 65, 65, 0.2);
  opacity: 0.8;
}

.example__content__item__text__wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 500ms;
}

.example__content__item__text__wrapper_shown {
  grid-template-rows: 1fr;
}

.example__content__item__text__wrapper>div {
  overflow: hidden;
}

.example__content__item>strong {
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 65, 65, 0.2);
  opacity: 0.8;
}

.example__content__item__button {
  color: #ff3888;
  font-size: 14px;
  opacity: 0.8;
  height: 100%;
  padding: 9px 0 0 0;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
  transition-property: opacity, color;
  transition: 300ms ease;
  z-index: 0;
}

.example__content__item__button:hover {
  color: #ff3586;
  opacity: 1;
}

.example__content__item__title {
  font-size: 20px;
  color: white;
  font-weight: 500;
  line-height: normal;
}

.example__content__item__title_colored {
  color: #ff3586;
}

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

.example__content__mobile_active {
  display: none;
}

.example__content__mobile__title {
  color: white;
  font-size: 20px;
  font-weight: 500;
}

.example__content__mobile__title_colored {
  color: #ff3586;
}

.example__content__mobile__carousel-wrapper {
  display: grid;
  place-items: center;
  position: relative;
  overflow-x: clip;
  overflow-y: hidden;
  padding: 0 0 20px 0;
}

.example__content__mobile__carousel {
  display: flex;
  position: relative;
  gap: 20px;
  max-width: 400px;
}

.example__content__mobile__carousel__item {
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.example__content__mobile__carousel__item_hidden {
  display: none;
}

.example__content__mobile__carousel__item__card {
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 400;
  color: white;
  max-height: 310px;
  transition: max-height 400ms ease;
  flex: 1 0 100%;
}

.example__content__mobile__carousel__item__card__expand {
  max-height: 480px;
}

.example__content__mobile__carousel__item__card__expand_small {
  max-height: 330px;
}

.example__content__mobile__carousel__item__card>strong {
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 65, 65, 0.2);
  opacity: 0.8;
}

.example__content__mobile__carousel__item__card__text>strong {
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 65, 65, 0.2);
  opacity: 0.8;
}

.example__content__mobile__carousel__item__card__button {
  padding: 9px 0 0 0;
  color: #ff3888;
  font-weight: 400;
  font-size: 14px;
  opacity: 1;
}

.example__content__mobile__carousel__item__card__text-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows ease 400ms;
}

.example__content__mobile__carousel__item__card__text-wrapper>.example__content__mobile__carousel__item__card__text {
  overflow: hidden;
}

.example__content__mobile__carousel__control-button {
  position: absolute;
  right: -20px;
  transform-origin: center;
  top: 155px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background-color: #3b3f45;
  z-index: 20;
  transform: translate(0, calc(-50% + 30px));
  border-radius: 16px;
}

.example__content__mobile__carousel__control-button>svg {
  transition: opacity ease 300ms;
}

.example__content__mobile__carousel__control-button_disabled {
  pointer-events: none;
}

.example__content__mobile__carousel__control-button_disabled>svg {
  opacity: 0.5;
}

.example__content__mobile__carousel__control-button_left {
  right: unset;
  left: -20px;
  transform: translate(0, calc(-50% + 30px)) rotate(180deg);
}

.example__paused>img:first-of-type {
  display: none;
}

.example__paused>img:last-of-type {
  display: block;
}

.example__content__item__text__wrapper_shown {
  grid-template-rows: 1fr;
}

@media screen and (max-width: 1300px) {
  .example__content__wrapper {
    padding: 42px 16px 0;
  }
}

@media screen and (max-width: 1024px) {
  .example__content__wrapper {
    display: none;
  }

  .example__content__mobile_active {
    display: grid;
    place-items: center;
  }
}

@media screen and (max-width: 770px) {
  .example__title {
    text-align: center;
  }

  .example__voice__wrapper {
    padding: 30px 0 40px;
  }
}

@media screen and (max-width: 660px) {
  .example__title {
    font-size: 32px;
    padding: 0;
  }

  .example__text {
    padding: 16px 16px 0;
  }

  .example__change-voice {
    padding: 16px 0 0 0;
  }

  .example {
    padding: 0 0 0px;
  }
}

@media screen and (max-width: 420px) {
  .example__content__mobile__carousel {
    max-width: 320px;
  }
}

/*_$$$$__$$__$$__$$$$__$$_____$$__$$_$$$$$$_$$$$$____$$$$$__$$______$$$$___$$$$__$$__$$
  $$__$$_$$$_$$_$$__$$_$$______$$$$_____$$__$$_______$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$$$$$_$$_$$$_$$$$$$_$$_______$$_____$$___$$$$_____$$$$$__$$_____$$__$$_$$_____$$$$__
  $$__$$_$$__$$_$$__$$_$$_______$$____$$____$$_______$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$__$$_$$__$$_$$__$$_$$$$$$___$$___$$$$$$_$$$$$____$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
.analyze {
  position: relative;
  max-width: var(--MAIN__WIDTH);
  width: 100%;
  padding: 0px 0 70px;
  overflow: clip;
  transition: padding 300ms ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  scroll-margin-top: 30px;
}

.analyze__title {
  padding: 100px 0 0 0;
  font-size: 56px;
  font-weight: 600;
  color: white;
  opacity: 0.8;
}

.analyze__grid {
  position: absolute;
  padding: 100px 0 0 0;
  left: 0;
  top: 0;
}

.analyze__text {
  font-size: 24px;
  font-weight: 600;
  color: white;
  opacity: 0.8;
}

.analyze__components {
  padding: 80px 0 0 0px;
  display: grid;
  grid-template: repeat(3, auto) / repeat(3, auto);
  justify-content: space-between;
  row-gap: 60px;
  white-space: nowrap;
  transition:
    padding,
    column-gap 300ms ease;
  transition:
    padding,
    column-gap 300ms ease,
    -moz-column-gap 300ms ease;
}

.analyze__components__item {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.analyze__components__item>img {
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 1270px) {
  .analyze {
    padding: 0 16px 50px;
  }

  .analyze__components {
    padding: 80px 16px 0;
  }
}

@media screen and (max-width: 1080px) {
  .analyze__components {
    -moz-column-gap: 80px;
    column-gap: 80px;
  }
}

@media screen and (max-width: 1024px) {
  .analyze__title {
    text-align: center;
  }

  .analyze__title>br {
    display: none;
  }

  .analyze__components {
    padding: 60px 0 0;
    justify-items: center;
    -moz-column-gap: 55px;
    column-gap: 55px;
    row-gap: 40px;
  }

  .analyze__components__item {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media screen and (max-width: 830px) {
  .analyze__title {
    font-size: 40px;
  }

  .analyze__text {
    font-size: 26px;
  }

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

@media screen and (max-width: 720px) {
  .analyze__text {
    font-size: 22px;
  }
}

@media screen and (max-width: 660px) {
  .analyze__text {
    font-size: 16px;
    font-weight: 600;
    max-width: 100px;
    text-align: center;
    width: 100%;
    white-space: normal;
  }

  .analyze__text>br {
    display: none;
  }

  .analyze__title {
    font-size: 32px;
    padding: 50px 0 0 0;
  }

  .analyze__grid {
    padding: 170px 0 0 0;
    width: 200vw;
    left: 50%;
    transform: translate(-50%, 0);
  }

  .analyze__components {
    grid-template: repeat(4, auto) / repeat(2, auto);
    justify-content: space-around;
    -moz-column-gap: 0;
    column-gap: 0;
  }

  .analyze {
    padding: 50px 16px 70px;
  }
}

/*$$$$$$__$$$$___$$$$__$$__$$__$$$$_____$$$$$__$$______$$$$___$$$$__$$__$$
  __$$___$$__$$_$$_____$$_$$__$$________$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  __$$___$$$$$$__$$$$__$$$$____$$$$_____$$$$$__$$_____$$__$$_$$_____$$$$__
  __$$___$$__$$_____$$_$$_$$______$$____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  __$$___$$__$$__$$$$__$$__$$__$$$$_____$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
.tasks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 50px 0;
  gap: 40px;
  scroll-margin-top: var(--HEADER__HEIGHT);
}

.tasks__line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 100%;
}

.tasks__line>svg>path {
  width: 100%;
}

.tasks__wrapper {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow-x: hidden;
}

.tasks__title {
  max-width: var(--MAIN__WIDTH);
  width: 100%;
  font-size: 56px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.tasks__components {
  max-width: var(--MAIN__WIDTH);
  width: 100%;
  display: grid;
  grid-template: repeat(2, auto) / repeat(3, auto);
  gap: 16px;
}

.tasks__components__mobile {
  display: grid;
  grid-template: 1fr / repeat(3, auto);
  gap: 16px;
}

.tasks__components__mobile-wrapper {
  grid-area: 2/1/2 / span 3;
  display: flex;
  justify-content: center;
}

.tasks__components__button {
  display: none;
}

.tasks__components__item {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  overflow: hidden;
  height: 415px;
  background: rgba(255, 255, 255, 0.03);
  padding: 50px 20px 50px;
}

.tasks__components__item__grid {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}

.tasks__components__item__title {
  padding: 20px 0 0 0;
  font-size: 32px;
  font-weight: 600;
  color: white;
  opacity: 0.8;
  white-space: nowrap;
}

.tasks__components__item__text {
  padding: 24px 0 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  font-weight: 400;
}

@media screen and (max-width: 1250px) {
  .tasks {
    padding: 50px 16px;
  }

  .tasks__components__item {
    padding: 100px 20px 20px;
  }

  .tasks__components__item__title {
    white-space: normal;
  }
}

@media screen and (max-width: 1024px) {
  .tasks__title {
    text-align: center;
  }

  .tasks__components {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    gap: 30px;
  }

  .tasks__components__item {
    border: none;
    background: transparent;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
    overflow: auto;
    height: unset;
    padding: 0;
    justify-content: center;
    align-items: center;
    max-width: 500px;
    text-align: center;
    overflow: hidden;
  }

  .tasks__components__item__grid {
    display: none;
  }

  .tasks__components__item__text {
    padding: 8px 0 0 0;
  }

  .tasks__components__item__title {
    padding: 24px 0 0 0;
  }

  .tasks__components__item__title>br {
    display: none;
  }

  .tasks__line {
    display: none;
  }

  .tasks__components__button {
    display: block;
    max-width: 330px;
    width: 100%;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    padding: 16px 0;
    display: flex;
    justify-content: center;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .tasks__components__mobile {
    display: flex;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
  }

  .tasks__components__mobile-wrapper {
    display: grid;
    transition: grid-template-rows 500ms ease;
    grid-template-rows: 0fr;
  }

  .tasks__components__mobile-wrapper_active {
    grid-template-rows: 1fr;
  }
}

@media screen and (max-width: 660px) {
  .tasks__title {
    font-size: 32px;
  }

  .tasks__components__item__icon {
    width: 64px;
    height: 64px;
    border-radius: 23px;
  }

  .tasks {
    gap: 32px;
    padding: 0 16px;
  }

  .tasks__components__item__title {
    font-size: 20px;
    font-weight: 600;
  }

  .tasks__components__item__text {
    font-size: 14px;
    font-weight: 400;
    max-width: 300px;
  }
}

/*_$$$$__$$__$$__$$$$__$$$$$$_$$$$$___$$$$__$$$$$$____$$$$$__$$______$$$$___$$$$__$$__$$
  $$__$$_$$__$$_$$__$$___$$___$$__$$_$$__$$___$$______$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$_____$$$$$$_$$$$$$___$$___$$$$$__$$__$$___$$______$$$$$__$$_____$$__$$_$$_____$$$$__
  $$__$$_$$__$$_$$__$$___$$___$$__$$_$$__$$___$$______$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  _$$$$__$$__$$_$$__$$___$$___$$$$$___$$$$____$$______$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
.chatbot {
  max-width: var(--MAIN__WIDTH);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px 0 0;
  gap: 50px;
  scroll-margin-top: var(--HEADER__HEIGHT);
}

.chatbot__title {
  font-size: 56px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.chatbot__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.chatbot__cards__item {
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  overflow: clip;
  display: grid;
  grid-template: auto 1fr auto/ auto 1fr;
  padding: 36px 24px;
  column-gap: 24px;
}

.chatbot__cards__item__icon {
  grid-area: 1 / 1 / span 3 / 1;
  width: 90px;
  position: relative;
  z-index: 2;
  height: 90px;
  object-fit: contain;
}

.chatbot__cards__item__grid {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
}

.chatbot__cards__item__title {
  font-size: 28px;
  font-weight: 600;
  color: white;
  opacity: 0.8;
  position: relative;
  z-index: 2;
  padding: 0 0 16px;
}

.chatbot__cards__item__list {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  display: flex;
  flex-direction: column;
  justify-self: flex-start;
  list-style: none;
  gap: 12px;
  position: relative;
  z-index: 2;
  padding: 0 0 35px 0;
}

.chatbot__cards__item__link {
  padding: 16px 40px;
  color: #151b1f;
  width: fit-content;
  font-size: 18.5px;
  font-weight: 600;
  background-color: white;
  border-radius: 11px;
  position: relative;
  z-index: 2;
  transition: all ease 300ms;
  cursor: pointer;
}

.chatbot__cards__item__link:hover {
  background-color: #f3287a;
  color: white;
}

.chatbot__cards__item__link:active {
  background-color: #df1466;
}

@media screen and (max-width: 1300px) {
  .chatbot {
    padding: 50px 16px;
  }

  .chatbot__title {
    text-align: center;
  }
}

@media screen and (max-width: 850px) {
  .chatbot__cards {
    grid-template: repeat(4, auto) / 1fr;
  }

  .chatbot__cards__item {
    max-width: 600px;
    width: 100%;
  }

  .chatbot__cards__item__list {
    justify-self: center;
  }
}

@media screen and (max-width: 660px) {
  .chatbot__title {
    font-size: 32px;
    max-width: 330px;
  }

  .chatbot {
    gap: 30px;
    padding: 70px 16px 0px;
  }

  .chatbot__cards__item__title {
    font-size: 20px;
  }

  .chatbot__cards__item__list {
    font-size: 14px;
  }

  .chatbot__cards__item__link {
    font-size: 14px;
  }
}

@media screen and (max-width: 500px) {
  .chatbot__cards__item {
    grid-template: auto auto 1fr auto / 1fr;
    justify-items: center;
  }

  .chatbot__cards__item__title {
    padding: 23px 0 16px;
  }

  .chatbot__cards__item__link {
    max-width: 300px;
    text-align: center;
    width: 100%;
  }
}

/*$$__$$_$$__$$_$$___$_$$$$$__$$$$$_$$$$$___$$$$_____$$$$$__$$______$$$$___$$$$__$$__$$
  $$$_$$_$$__$$_$$$_$$_$$__$$_$$____$$__$$_$$________$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$_$$$_$$__$$_$$_$_$_$$$$$__$$$$__$$$$$___$$$$_____$$$$$__$$_____$$__$$_$$_____$$$$__
  $$__$$_$$__$$_$$___$_$$__$$_$$____$$__$$_____$$____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$__$$__$$$$__$$___$_$$$$$__$$$$$_$$__$$__$$$$_____$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
noscript:has(.numbers-noscript)+.numbers>.numbers__title {
  font-size: 16px;
}

.numbers {
  display: flex;
  flex-direction: column;
  max-width: var(--MAIN__WIDTH);
  width: 100%;
  gap: 50px;
  padding: 50px 0;
  scroll-margin-top: var(--HEADER__HEIGHT);
}

.numbers__title {
  font-size: 56px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.numbers__button {
  background-color: transparent;
  border-radius: 11px;
  padding: 16px 40px;
  font-size: 18.5px;
  font-weight: normal;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  justify-self: center;
  grid-area: 3/1/3 / span 2;
  transition: all ease 300ms;
  position: relative;
  margin: 40px 0 0 0;
  transition: all ease 300ms;
  background: #ff3888;
}

.numbers__button:hover {
  background: #ff448f;
  box-shadow: 0px 0px 20px 0px rgba(255, 56, 136, 0.5);
}

.numbers__button:active::after {
  background: #df1466;
}

.numbers__content {
  display: grid;
  grid-template: repeat(3, auto) / repeat(2, 1fr);
  gap: 16px;
}

.numbers__content__item {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  padding: 50px 25px;
}

.numbers__content__item__title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 24px;
  font-weight: 400;
  padding: 0 0 24px;
}

.numbers__content__item__text-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 20px;
  border-bottom: 1px solid #383c3f;
}

.numbers__content__item__text-wrapper>span {
  font-size: 56px;
  font-weight: 600;
}

.numbers__content__item__text-wrapper>p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  opacity: 0.7;
  font-weight: 400;
}

.numbers__content__item__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
  padding: 20px 0 0 0;
}

.numbers__content__item__text>span {
  color: rgb(255, 255, 255);
  opacity: 1;
}

.numbers__content__item__green {
  color: #77df5c;
}

.numbers__content__item__pink {
  color: #ff3586;
}

.numbers__content__item__purple {
  color: #ad7cff;
}

@media screen and (max-width: 1300px) {
  .numbers {
    padding: 50px 16px;
  }
}

@media screen and (max-width: 1130px) {
  .numbers__content__item__text-wrapper>span {
    font-size: 46px;
  }
}

@media screen and (max-width: 1024px) {
  .numbers__content {
    grid-template: repeat(5, auto) / 1fr;
  }

  .numbers__button {
    grid-area: 5/1/5/1;
  }

  .numbers__title {
    text-align: center;
  }
}

@media screen and (max-width: 660px) {
  .numbers__title {
    font-size: 32px;
  }

  .numbers__content__item__title {
    font-size: 16px;
  }

  .numbers__content__item__text-wrapper>span {
    font-size: 32px;
  }

  .numbers__content__item__text-wrapper>p {
    font-size: 14px;
  }

  .numbers__content__item__text {
    font-size: 14px;
  }

  .numbers__button,
  .numbers__button::after {
    max-width: unset;
    width: 100%;
  }

  .numbers {
    padding: 70px 16px;
    gap: 30px;
  }
}

@media screen and (max-width: 500px) {
  .numbers__content__item {
    padding: 30px 16px;
  }

  .numbers__content__item__text-wrapper {
    gap: 9px;
  }
}

/*_$$$$___$$$$___$$$$__$$$$$__$$$$_____$$$$$__$$______$$$$___$$$$__$$__$$
  $$__$$_$$__$$_$$_____$$____$$________$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$_____$$$$$$__$$$$__$$$$___$$$$_____$$$$$__$$_____$$__$$_$$_____$$$$__
  $$__$$_$$__$$_____$$_$$________$$____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  _$$$$__$$__$$__$$$$__$$$$$__$$$$_____$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
noscript:has(.cases-noscript)+.cases .cases__carousel {
  display: flex;
  flex-direction: column;
  height: unset;
  overflow-x: visible;
  gap: 160px;
}

noscript:has(.cases-noscript)+.cases .cases__carousel__button {
  display: none;
}

noscript:has(.cases-noscript)+.cases .cases__carousel__item__script-enabled {
  display: flex;
}

.cases {
  padding: 110px 0 50px;
  width: 100%;
  position: relative;
  overflow: hidden auto;
  display: flex;
  justify-content: center;
  scroll-margin-top: var(--HEADER__HEIGHT);
}

.cases__animation-point {
  height: 1px;
  width: 100%;
  background-color: transparent;
}

.cases__line {
  position: absolute;
  top: calc(50% - 60px);
  width: 100vw;
  left: 0;
  transform: translate(0, -50%);
}

.cases__line_purple {
  transform: translate(0, calc(-50% - 10px));
}

.cases__wrapper {
  display: flex;
  flex-direction: column;
  max-width: var(--MAIN__WIDTH);
  width: 100%;
  gap: 24px;
}

.cases__title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 56px;
  font-weight: 700;
}

.cases__carousel {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: flex;
  gap: var(--CASES_CAROUSEL_GAP);
  /* Переменная добавляется в slider.js */
  flex-direction: row;
  height: 720px;
  position: relative;
}

.cases__carousel__wrapper {
  position: relative;
}

.cases__carousel__slider {
  width: 100%;
  opacity: 0;
  overflow-x: hidden;
}

.cases__carousel__button {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #3b3f45;
  border-radius: 22px;
  top: 40%;
  z-index: 10;
  left: -30px;
  cursor: pointer;
  transform: translate(0, -50%);
  transition: background-color ease 300ms;
}

.cases__carousel__button:hover {
  background-color: rgb(243, 40, 122);
}

.cases__carousel__button:active {
  background-color: rgb(223, 20, 102);
}

.cases__carousel__button_right {
  position: absolute;
  top: 40%;
  right: -30px;
  left: unset;
  transform: translate(0, -50%) rotate(180deg);
}

.cases__carousel__item {
  padding: 0 21px;
  border-radius: 31px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 100px 20px 0;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
  height: 560px;
  flex: 1 0 100%;
  transform-style: preserve-3d;
  background-color: var(--MAIN__BACKGROUND);
}

.cases__carousel__item::before {
  content: "";
  width: 100%;
  background: rgba(255, 255, 255, 0.02);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 31px;
  transform: translateZ(-1px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cases__carousel__item__title {
  font-size: 32px;
  font-weight: 600;
  color: white;
  position: relative;
  padding: 40px 0 16px;
}

.cases__carousel__item__title>img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cases__carousel__item__script-enabled {
  display: none;
}

.cases__carousel__item__text {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  font-size: 16px;
  max-width: 520px;
  width: 100%;
  text-align: center;
}

.cases__carousel__item__grid {
  position: absolute;
  top: 12px;
  fill: radial-gradient(61.08% 58.83% at 46.89% 32.34%, #d0d0d0 16.67%, rgba(255, 255, 255, 0) 81.77%);
}

.cases__carousel__item__card {
  text-align: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: var(--MAIN__BACKGROUND);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  padding: 30px 25px 50px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  height: 325px;
}

.cases__carousel__item__card::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
}

.cases__carousel__item__card__numbers {
  font-size: 42px;
  color: white;
  font-weight: 700;
}

.cases__carousel__item__card__background {
  background-color: var(--MAIN__BACKGROUND);
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
}

.cases__carousel__item__card__background__wrapper {
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0 20px;
  display: grid;
  grid-template: 1fr / repeat(3, 1fr);
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.cases__carousel__item__card__title {
  color: white;
  opacity: 0.8;
  font-size: 28px;
  font-weight: 600;
}

.cases__carousel__item__card__title_green {
  color: #6cff4a;
  opacity: 1;
}

.cases__carousel__item__card__title_yellow {
  color: #ffec35;
  opacity: 1;
}

.cases__carousel__item__card__wrapper {
  display: grid;
  padding: 0 20px;
  grid-template: 1fr / repeat(3, 1fr);
  -moz-column-gap: 16px;
  column-gap: 16px;
  bottom: 0;
  left: 0;
  transform: translate(0, 100px);
  position: absolute;
}

.buttons__unactive {
  pointer-events: none;
}

.card__makeHigh {
  animation: __getUpper 200ms ease forwards;
}

@keyframes __getUpper {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(0, -20%);
  }
}

.shifting {
  transition: left 0.2s ease-out;
}

@media screen and (max-width: 1300px) {
  .cases__title {
    padding: 0 16px;
  }

  .cases__carousel__wrapper {
    padding: 0 16px;
  }

  .cases__carousel__button_right {
    right: 5px;
  }

  .cases__carousel__button_left {
    left: 5px;
  }
}

@media screen and (max-width: 1050px) {
  .cases__carousel__item__card {
    height: 335px;
  }
}

@media screen and (max-width: 1024px) {
  .cases__carousel__item__card__background__wrapper {
    display: none;
  }

  .cases__carousel__item__card__wrapper {
    position: static;
    display: flex;
    flex-direction: column;
    transform: translate(0);
    gap: 12px;
    padding: 45px 0 0 0;
  }

  .cases__carousel__item {
    height: -moz-fit-content;
    height: fit-content;
    padding: 65px 16px 30px;
    overflow: hidden;
  }

  .cases__carousel__item__card {
    height: -moz-fit-content;
    height: fit-content;
    padding: 24px 16px;
  }

  .cases__carousel {
    height: -moz-fit-content;
    height: fit-content;
  }

  .cases__carousel__item {
    width: -moz-fit-content;
    width: fit-content;
  }

  .cases__title {
    text-align: center;
  }
}

@media screen and (max-width: 660px) {
  .cases {
    padding: 70px 0 0px;
  }

  .cases__title {
    font-size: 32px;
  }

  .cases__carousel__item__title {
    font-size: 20px;
    padding: 40px 0 12px;
  }

  .cases__carousel__item__text {
    font-size: 14px;
  }

  .cases__carousel__item__card__title {
    font-size: 16px;
    font-weight: 500;
  }

  .cases__carousel__item__card {
    gap: 16px;
  }

  .cases__carousel__button {
    width: 28px;
    height: 28px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    top: 125px;
  }

  .cases__carousel__button>svg {
    width: 100%;
    height: 100%;
  }

  .cases__carousel__button:hover {
    background-color: #3b3f45;
  }
}

/* _$$$$__$$$$$__$$__$$__$$$$__$$__$$_$$$$$$__$$$$___$$$$__$$$$$__$$$$_____$$$$$__$$______$$$$___$$$$__$$__$$
   $$__$$_$$__$$_$$__$$_$$__$$_$$$_$$___$$___$$__$$_$$_____$$____$$________$$__$$_$$_____$$__$$_$$__$$_$$_$$_
   $$$$$$_$$__$$_$$__$$_$$$$$$_$$_$$$___$$___$$$$$$_$$_$$$_$$$$___$$$$_____$$$$$__$$_____$$__$$_$$_____$$$$__
   $$__$$_$$__$$__$$$$__$$__$$_$$__$$___$$___$$__$$_$$__$$_$$________$$____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
   $$__$$_$$$$$____$$___$$__$$_$$__$$___$$___$$__$$__$$$$__$$$$$__$$$$_____$$$$$__$$$$$$__$$$$___$$$$__$$__$$ */
.advantages {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: var(--MAIN__WIDTH);
  gap: 36px;
  padding: 50px 0;
  scroll-margin-top: var(--HEADER__HEIGHT);
  width: 100%;
}

.advantages__title {
  color: white;
  opacity: 0.8;
  font-size: 56px;
  font-weight: 600;
}

.advantages__content {
  display: grid;
  grid-template: repeat(2, minmax(auto, 300px)) / repeat(3, 1fr);
  width: 100%;
  gap: 16px;
}

.advantages__content__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding: 40px 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  overflow: hidden;
}

.advantages__content__item__grid {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  fill: radial-gradient(50.89% 33.84% at 35.08% 34.55%, #d0d0d0 48.3%, rgba(255, 255, 255, 0) 100%);
}

.advantages__content__item__title {
  color: white;
  font-size: 32px;
  font-weight: 600;
  opacity: 0.8;
}

.advantages__content__item__text {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  font-size: 16px;
}

.advantages__content__item__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.advantages__content__item__list>li {
  color: rgba(255, 255, 255, 0.8);
  opacity: 0.7;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.advantages__content__item__list>li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
}

.advantages__mobile {
  display: none;
  grid-template: repeat(5, auto) / repeat(2, auto);
  -moz-column-gap: 16px;
  column-gap: 16px;
}

.advantages__mobile__number {
  width: 60px;
  height: 60px;
  border-radius: 13.5px;
  background: rgba(50, 56, 59, 0.4);
  -webkit-backdrop-filter: blur(5.1199998856px);
  backdrop-filter: blur(5.1199998856px);
  color: white;
  opacity: 0.8;
  font-weight: 600;
  font-size: 34px;
  display: grid;
  place-items: center;
}

.advantages__mobile__line {
  display: flex;
  justify-content: center;
  padding: 6px 0;
}

.advantages__mobile__line>svg {
  height: 100%;
  width: 1.6px;
}

.advantages__mobile__title {
  padding: 8px 0 12px 0;
  color: white;
  font-size: 36px;
  opacity: 0.8;
  font-weight: 600;
}

.advantages__mobile__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.advantages__mobile__list>li {
  display: flex;
  gap: 6.5px;
  align-items: center;
}

.advantages__mobile__list>li::before {
  content: "";
  width: 4px;
  height: 4px;
  background-color: #9c9ea0;
}

.advantages__mobile__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 400;
  opacity: 0.7;
}

.advantages__mobile__text-wrapper {
  max-width: 400px;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .advantages {
    padding: 70px 16px 0px;
  }
}

@media screen and (max-width: 1030px) {
  .advantages__content {
    grid-template: repeat(2, minmax(auto, 315px)) / repeat(3, 1fr);
  }
}

@media screen and (max-width: 900px) {
  .advantages__content {
    display: none;
  }

  .advantages__mobile {
    display: grid;
  }
}

@media screen and (max-width: 660px) {
  .advantages__title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
  }

  .advantages__mobile__title {
    font-size: 20px;
  }

  .advantages__mobile__text {
    font-size: 14px;
  }

  .advantages__mobile__line>svg {
    width: 1px;
  }

  .advantages__mobile__number {
    font-size: 16px;
    height: 40px;
    width: 40px;
  }
}

.languages {
  max-width: var(--MAIN__WIDTH);
  width: 100%;
  padding: 100px 0;
  scroll-margin-top: var(--HEADER__HEIGHT);
}

.languages__title {
  font-size: 56px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-weight: 600;
  padding: 0 0 24px;
}

.languages__main {
  display: flex;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
}

.languages__main__wrapper {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows ease 500ms;
}

.languages__main__wrapper_closed {
  grid-template-rows: 0fr;
}

.languages__main__card {
  max-width: 190px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  gap: 16px;
  padding: 24px 10px;
  backdrop-filter: blur(100px);
  background: rgba(255, 255, 255, 0.03);
}

.languages__main__card>div {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

.languages__main .languages__main__card:nth-child(6) {
  cursor: pointer;
}

.languages__main .languages__main__card:nth-child(6)>svg>circle {
  transition: fill ease 300ms;
  fill: #3b3f45;
}

.languages__main .languages__main__card:nth-child(6):hover>svg>circle {
  fill: #ff448f;
}

@media screen and (max-width: 1300px) {
  .languages__main {
    padding: 0 16px;
  }
}

@media screen and (max-width: 1040px) {

  .languages__main__card>img,
  .languages__main__card>svg {
    width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 900px) {
  .languages__main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .languages__main__card {
    max-width: unset;
  }
}

@media screen and (max-width: 480px) {
  .languages__main {
    grid-template-columns: repeat(2, 1fr);
  }
}

/*$$$$$___$$$$__$$$$$$_$$$$$__$$$$_____$$$$$__$$______$$$$___$$$$__$$__$$
  $$__$$_$$__$$___$$___$$____$$________$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$$$$__$$$$$$___$$___$$$$___$$$$_____$$$$$__$$_____$$__$$_$$_____$$$$__
  $$__$$_$$__$$___$$___$$________$$____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$__$$_$$__$$___$$___$$$$$__$$$$_____$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
.rates {
  max-width: var(--MAIN__WIDTH);
  width: 100%;
  padding: 50px 0 78px;
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 50px;
  scroll-margin-top: var(--HEADER__HEIGHT);
}

.rates__animation-point {
  height: 2px;
  width: 100%;
  background-color: transparent;
}

.rates__title {
  color: white;
  opacity: 0.8;
  font-size: 56px;
  font-weight: 600;
}

.rates__transition-background {
  display: none;
  background: linear-gradient(270deg,
      #151b1f 0%,
      rgba(21, 27, 31, 0.97) 25%,
      rgba(21, 27, 31, 0.8) 48.96%,
      rgba(21, 27, 31, 0) 100%);
  position: absolute;
  left: 0;
  width: 20%;
  width: calc(33.3333333333% - 40px);
  height: 100%;
  z-index: 30;
  transform: rotate(180deg) translateX(10px);
}

.rates__transition-background_right {
  left: unset;
  right: 0;
  transform: rotate(0deg) translateX(10px);
}

.rates__wrapper {
  --RATES_CAROUSEL_GAP: 0px;
  display: grid;
  grid-template: 1fr/1fr minmax(auto, 390px) 1fr;
  -moz-column-gap: 20px;
  column-gap: 20px;
  width: 100%;
  position: relative;
}

.rates__content {
  display: grid;
  place-items: center;
  position: relative;
}

.rates__content__card {
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  padding: 45px 25px 30px;
  display: grid;
  grid-template: auto 1fr auto auto/1fr;
  position: relative;
  white-space: normal;
  z-index: 4;
}

.rates__content__card_popular {
  position: relative;
  transform: scaleY(1.09);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  z-index: 3;
}

.rates__content__card__shield {
  position: absolute;
  left: -80px;
  top: 25px;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, #fd3585 0%, #da065b 100%);
  font-size: 12px;
  color: white;
  gap: 6px;
  z-index: 10;
}

.rates__content__card__shield_mobile {
  display: none;
}

.rates__content__card__glow {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background: radial-gradient(19.49% 58.52% at 50% 0%, rgba(249, 196, 60, 0.3) 0%, rgba(231, 166, 1, 0) 100%),
    radial-gradient(110.11% 70.71% at 100% 0%, #520aeb 10.27%, rgba(159, 115, 255, 0) 100%),
    radial-gradient(90.92% 70.71% at 0% 0%, #00a7ff 0%, rgba(0, 166, 254, 0.12) 100%),
    radial-gradient(110.33% 70.71% at 0% 100%, #ff8d6c 0%, rgba(255, 92, 0, 0.6) 100%),
    radial-gradient(70.71% 70.71% at 100% 100%, #e81d72 0%, rgba(255, 0, 0, 0) 100%);
  background-blend-mode: overlay, normal, normal, color-dodge, normal;
  transform: translate(0px, 0px);
  filter: blur(24px);
  z-index: 2;
}

.rates__content__card__glass {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 45px 25px 30px;
  display: grid;
  grid-template: auto 1fr auto auto/1fr;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  z-index: 3;
}

.rates__content__card__background {
  position: absolute;
  left: 0;
  right: 0;
  background: #151b1f;
  width: 100%;
  height: 100%;
  z-index: 3;
  border-radius: 11px;
}

.rates__content__card__title {
  color: white;
  opacity: 0.8;
  font-size: 32px;
  font-weight: 600;
  padding: 0 0 30px;
  justify-self: center;
}

.rates__content__card__list {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.rates__content__card__list>li {
  color: white;
  opacity: 1;
  display: flex;
  white-space: normal;
  gap: 7px;
}

.rates__content__card_popular .rates__content__card__list>li:first-child {
  color: #77df5c;
}

.rates__content__card__list>li::before {
  content: url(../assets/img/ratesCheck.svg);
}

.rates__content__card_popular .rates__content__card__list>li:first-child::before {
  content: url(../assets/img/ratesCheckGreen.svg);
}

.rates__content__card__price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 16px 0 32px;
}

.rates__content__card__price_transparent {
  opacity: 0;
}

.rates__content__card__price>span {
  color: white;
  font-size: 56px;
  font-weight: 600;
}

.rates__content__card__price>p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  opacity: 0.7;
  font-weight: 400;
  transform: translate(0, -12px);
}

.rates__content__card__button {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  width: 100%;
  color: #151b1f;
  font-size: 18.5px;
  font-weight: 600;
  background-color: white;
  border-radius: 11px;
  transition: ease all 300ms;
  cursor: pointer;
}

.rates__content__card__button:hover {
  background-color: #f3287a;
  color: white;
}

.rates__content__card__button:active {
  background-color: #df1466;
}

.rates__wrapper .rates__content__card:nth-child(3) .rates__content__card__list {
  border-bottom: none;
}

@media screen and (max-width: 1250px) {
  .rates {
    padding: 50px 16px 78px;
  }

  .rates__wrapper {
    grid-template: 1fr / repeat(3, 1fr);
  }
}

@media screen and (max-width: 1024px) {
  .rates__transition-background {
    display: block;
  }

  .rates__content__card {
    max-width: 350px;
  }

  .rates {
    padding: 50px 0px 28px;
    gap: 0;
  }

  .rates__wrapper .rates__content__card:nth-child(1) {
    margin-left: 16px;
  }

  .rates__wrapper .rates__content__card:nth-child(3) {
    margin-right: 16px;
  }

  .rates__wrapper {
    padding: 50px 0;
    display: flex;
    align-items: center;
    overflow-x: auto;
    white-space: nowrap;
    display: flex;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Needed to work on iOS Safari */
    scroll-snap-type: mandatory;
    -ms-scroll-snap-type: mandatory;
    scroll-snap-points-x: repeat(100%);
    -ms-scroll-snap-points-x: repeat(100%);
  }

  .rates__content__card {
    scroll-snap-align: center;
    flex: 1 0 100%;
    padding: 30px 16px;
    height: 600px;
  }

  .rates__content__card__glow {
    height: 100%;
  }

  .rates__content__card_popular {
    transform: scaleY(1);
    height: 620px;
  }

  .rates__content__card__shield {
    display: none;
  }

  .rates__content__card__shield_mobile {
    position: absolute;
    left: -80px;
    align-items: center;
    padding: 10px 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fd3585 0%, #da065b 100%);
    font-size: 12px;
    color: white;
    gap: 6px;
    z-index: 10;
    display: flex;
    overflow-block: visible;
    left: 50%;
    transform: translate(-50%, -15px);
    top: 0;
    width: -moz-fit-content;
    width: fit-content;
  }
}

@media screen and (max-width: 660px) {
  .rates__title {
    font-size: 32px;
  }

  .rates__content__card__title {
    font-size: 20px;
  }

  .rates__content__card__list {
    font-size: 14px;
  }

  .rates__content__card__price>span {
    font-size: 32px;
  }

  .rates__content__card__price>p {
    font-size: 14px;
  }

  .rates__content__card__button {
    font-size: 14px;
  }
}

@media screen and (max-width: 620px) {
  .rates__transition-background {
    opacity: 0;
  }

  .rates {
    padding: 70px 0px;
  }

  .rates__content__card {
    height: 500px;
  }

  .rates__content__card_popular {
    height: 520px;
  }
}

@media screen and (max-width: 420px) {
  .rates__content__card {
    max-width: 300px;
  }
}

/*$$$$$$__$$$$___$$$$_____$$$$$__$$______$$$$___$$$$__$$__$$
  $$_____$$__$$_$$__$$____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$$$___$$$$$$_$$_$$$____$$$$$__$$_____$$__$$_$$_____$$$$__
  $$_____$$__$$_$$__$$____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$_____$$__$$__$$$$$____$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
noscript:has(.faq-noscript)+.faq .faq__content__item__text__wrapper {
  grid-template-rows: 1fr;
}

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0 120px;
  gap: 60px;
}

.faq__title {
  color: #fff;
  font-size: 56px;
  font-weight: 600;
}

.faq__top-arrow {
  position: fixed;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  right: 5vw;
  bottom: 40px;
  display: none;
  opacity: 0;
  transition: opacity 1000ms ease;
  cursor: pointer;
  place-items: center;
  background-color: rgba(50, 56, 59, 0.4);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  z-index: 30;
}

.faq__top-arrow_active {
  display: grid;
  animation: __faq_fadeIn forwards 0.3s ease;
}

.faq__top-arrow_disable {
  animation: __faq_fadeOut forwards 0.3s ease;
}

.faq__content {
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq__content ul {
  padding-left: 20px;
}

.faq__content li {
  margin: 10px 0;
}

.faq__content a {
  color: #f62c7d;
  text-decoration: underline;
}

.faq__content__item {
  display: flex;
  flex-direction: column;
  padding: 0 0 25px;
  -webkit-transform: translateZ(0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq__content__item__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  transition: padding 400ms ease;
  opacity: 0.7;
  overflow: hidden;
}

.faq__content__item__text__wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition-property: grid-template-rows, padding;
  transition: 500ms ease;
  padding: 0 0 0 0;
}

.faq__content__item__text__wrapper_opened {
  padding: 12px 0 0 0;
  grid-template-rows: 1fr;
}

.faq__content__item__title {
  display: grid;
  grid-template: 1fr/1fr auto;
  align-items: flex-start;
  justify-content: space-between;
  color: white;
  font-size: 24px;
  font-weight: 400;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.faq__content__item__title>div {
  transition: color ease 300ms;
}

.faq__content__item__title:hover h2 {
  color: #ff448f;
}

.faq__content__item__title:hover svg path {
  fill: #ff448f;
}

.faq__content__item__title>svg {
  transform-origin: center;
  transition: all ease 300ms;
}

.faq__cross__rotated {
  transform: rotate(45deg);
}

@keyframes __faq_fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes __faq_fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@media screen and (max-width: 1024px) {
  .faq__top-arrow {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .faq {
    padding: 50px 16px 210px;
  }
}

@media screen and (max-width: 660px) {
  .faq__title {
    font-size: 32px;
  }

  .faq__content__item__title {
    font-size: 16px;
  }

  .faq__content__item__text {
    font-size: 14px;
  }

  .faq__content__item__title>svg {
    width: 16px;
    height: 16px;
  }

  .faq {
    padding: 0 16px 90px;
    gap: 30px;
  }

  .faq__content__item__text {
    padding: 0;
  }

  .faq__content__item__text__wrapper_opened>p {
    padding: 16px 0 0 0;
  }
}

/*_$$$$__$$$$$___$$$$_____$$$$$__$$______$$$$___$$$$__$$__$$
  $$__$$_$$__$$_$$________$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$$$$$_$$__$$__$$$$_____$$$$$__$$_____$$__$$_$$_____$$$$__
  $$__$$_$$__$$_____$$____$$__$$_$$_____$$__$$_$$__$$_$$_$$_
  $$__$$_$$$$$___$$$$_____$$$$$__$$$$$$__$$$$___$$$$__$$__$$*/
.advertisement-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0px 16px;
}

.advertisement-popup__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 2000px;
  height: 86px;
}

.advertisement-popup__wrapper {
  overflow: hidden;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 90;
  background: #1a1633;
  box-shadow: 0px -3px 30px 0px rgba(126, 50, 161, 0.3);
  display: none;
  width: 100vw;
  height: -moz-fit-content;
  height: fit-content;
}

.advertisement-popup__wrapper_active {
  display: flex;
}

.advertisement-popup__wrapper__slideUp {
  animation: __advertisementPopup_slideUp ease 500ms forwards;
}

.advertisement-popup__wrapper__slideDown {
  animation: __advertisementPopup_slideDown ease 800ms forwards;
}

.advertisement-popup__title {
  font-size: 24px;
  font-weight: 500;
  color: white;
  padding: 0 40px 0 0;
}

.advertisement-popup__text {
  font-size: 16px;
  font-weight: 400;
  color: white;
  padding: 24px 40px 24px 0;
  max-width: 620px;
}

.advertisement-popup__button {
  font-size: 16px;
  font-weight: 600;
  color: white;
  border-radius: 15px;
  background: #ff3888;
  padding: 16px 24px;
  height: -moz-fit-content;
  height: fit-content;
}

.advertisement-popup__close {
  cursor: pointer;
  margin: 0 0 0 16px;
}

@keyframes __advertisementPopup_fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes __advertisementPopup_fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes __advertisementPopup_slideDown {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(0, 100vw);
  }
}

@keyframes __advertisementPopup_slideUp {
  from {
    transform: translate(0, 100vw);
  }

  to {
    transform: translate(0, 0);
  }
}

@media screen and (min-width: 2000px) {
  .advertisement-popup__line {
    width: 100%;
    height: unset;
  }
}

@media screen and (max-width: 1650px) {
  .advertisement-popup__line {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media screen and (max-width: 1367px) {
  .advertisement-popup__wrapper .advertisement-popup__line:nth-child(2) {
    transform: translate(-50%, -15px);
  }

  .advertisement-popup__line {
    height: 100%;
  }
}

@media screen and (max-width: 1220px) {
  .advertisement-popup__title {
    font-size: 18px;
    padding: 0 20px 0 0;
  }

  .advertisement-popup__text {
    padding: 24px 20px 24px 0;
  }

  .advertisement-popup__text,
  .advertisement-popup__button {
    font-size: 14px;
  }

  .advertisement-popup__wrapper .advertisement-popup__line:nth-child(2) {
    transform: translate(0px, -15px);
  }

  .advertisement-popup__line {
    left: 0;
    transform: translate(0px, 0);
  }
}

@media screen and (max-width: 660px) {
  .advertisement-popup {
    padding: 27px 32px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
  }

  .advertisement-popup__text,
  .advertisement-popup__title {
    text-align: center;
  }

  .advertisement-popup__text {
    padding: 0;
  }

  .advertisement-popup__close {
    margin: 0;
    position: absolute;
    right: 15px;
    top: 15px;
  }

  .advertisement-popup__wrapper .advertisement-popup__line:nth-child(1) {
    transform: translate(0px, 73px);
  }

  .advertisement-popup__wrapper .advertisement-popup__line:nth-child(2) {
    transform: translate(0px, 55px);
  }
}

/*_$$$$__$$__$$_$$$$$__$$$$$$__$$$$_____$$$$$___$$$$__$$$$$__$$__$$_$$$$$_
  $$__$$_$$__$$_$$__$$___$$___$$__$$____$$__$$_$$__$$_$$__$$_$$__$$_$$__$$
  $$$$$$_$$__$$_$$__$$___$$___$$__$$____$$$$$__$$__$$_$$$$$__$$__$$_$$$$$_
  $$__$$_$$__$$_$$__$$___$$___$$__$$____$$_____$$__$$_$$_____$$__$$_$$____
  $$__$$__$$$$__$$$$$__$$$$$$__$$$$_____$$______$$$$__$$______$$$$__$$____*/
.audio-popup {
  display: none;
  place-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
}

.audio-popup__drag-hover {
  display: none;
  position: absolute;
  z-index: 110;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.audio-popup__back {
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 27, 31, 0) 0%, #151b1f 100%);
}

.audio-popup__glass {
  display: grid;
  justify-items: center;
  grid-template-rows: 1fr;
  max-width: 580px;
  width: 100%;
  max-height: 600px;
  transition: max-height ease 300ms;
  height: 100%;
  padding: 50px 30px;
  border-radius: 10.5px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  position: relative;
  -webkit-backdrop-filter: blur(96.3559341431px);
  backdrop-filter: blur(96.3559341431px);
}

.audio-popup__glass__appearance {
  animation: __audio-popup__slideDown 300ms forwards ease;
}

.audio-popup__glass__appearance_disable {
  animation: __audio-popup__slideUp 300ms forwards ease;
}

.audio-popup__glass__adaptive_result {
  max-height: 560px;
}

.audio-popup__glass__adaptive_loading {
  max-height: 430px;
}

.audio-popup__content {
  max-width: 400px;
  width: 100%;
  z-index: 1;
}

.audio-popup__content__full {
  max-width: unset;
}

.audio-popup__content__start {
  transition: opacity 300ms ease;
  text-align: center;
  justify-items: center;
  align-items: center;
  flex-direction: column;
  align-items: center;
  display: none;
}

.audio-popup__content__record {
  display: none;
  text-align: center;
  flex-direction: column;
  align-items: center;
  height: 100%;
  opacity: 0;
  transition: opacity 300ms ease;
}

.audio-popup__content__record>.audio-popup__drag__text {
  max-width: 170px;
}

.audio-popup__content__record__button {
  font-size: 16px;
  font-weight: 500;
  color: white;
  border-radius: 11px;
  background: #ff3888;
  padding: 16px 32px;
  margin: 16px 0 0 0;
  opacity: 0;
  transition: opacity 300ms ease;
}

.audio-popup__content__record__button_active {
  opacity: 1;
}

.audio-popup__content__record__time {
  padding: 0 0 20px;
  transition: opacity 300ms ease;
  opacity: 1;
}

.audio-popup__content__record__time__disabled {
  opacity: 0;
}

.audio-popup__content__record__time>p {
  position: relative;
  color: white;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translate(5px, 0);
}

.audio-popup__content__record__time>p::before {
  content: "";
  width: 12px;
  height: 12px;
  background: #f62c7d;
  border-radius: 50%;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translate(0, -50%);
}

.audio-popup__content__record__img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
  margin: 140px 0 40px;
}

.audio-popup__content__record__shine_big {
  position: absolute;
  min-width: 235px;
  min-height: 235px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(255, 255, 255, 0.02) 85.51%, rgba(255, 255, 255, 0) 100%);
  left: 50%;
  z-index: -1;
  border: unset;
  top: 50%;
  transform: translate(-50%, -50%);
  transition-property: min-width, min-height;
  transition: ease 300ms;
}

.audio-popup__content__record__shine_small {
  position: absolute;
  min-width: 170px;
  min-height: 170px;
  width: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  left: 50%;
  z-index: -1;
  border: unset;
  top: 50%;
  transition-property: min-width, min-height;
  transform: translate(-50%, -50%);
  transition: min-width ease 300ms;
}

.audio-popup__content__record__img {
  cursor: pointer;
  width: 108px;
  border-radius: 50%;
  height: 108px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  background: transparent;
  transform: translate(0, 5px);
}

.audio-popup__content__record__img_disabled {
  pointer-events: none;
}

.audio-popup__content__record__img::after {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  opacity: 1;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff3888 0%, #d80358 100%);
  transition: opacity 300ms ease;
}

.audio-popup__content__record__img::before {
  content: "";
  width: 100%;
  height: 100%;
  z-index: -2;
  position: absolute;
  opacity: 0;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff5b9d 0%, #ff1271 100%);
  transition: opacity 300ms ease;
  filter: drop-shadow(0px 0px 30px rgba(247, 45, 127, 0.5));
}

.audio-popup__content__record__img:hover~.audio-popup__content__record__shine_small {
  min-width: 187px;
  min-height: 187px;
}

.audio-popup__content__record__img:hover~.audio-popup__content__record__shine_big {
  min-width: 287px;
  min-height: 287px;
}

.audio-popup__content__record__img:hover::after {
  opacity: 0;
}

.audio-popup__content__record__img:hover::before {
  opacity: 1;
}

.audio-popup__content__record__img>img {
  width: 44px;
  height: 44px;
}

.audio-popup__content__await {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 300ms ease;
}

.audio-popup__content__await>.audio-popup__title_small {
  padding: 0 0 60px;
}

.audio-popup__content__await>svg {
  transform-origin: center;
  animation: __audioPopup__loading 1s infinite ease-in-out;
}

.audio-popup__content__result {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 300ms ease;
}

.audio-popup__content__result>div {
  padding: 0;
}

.audio-popup__content__result__audio {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  padding: 35px 0 40px;
}

.audio-popup__content__result__audio__button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #f3287a;
  border-radius: 23px;
  cursor: pointer;
}

.audio-popup__content__result__audio__button img:last-of-type {
  display: none;
}

.audio-popup__content__result__audio__button_paused img:first-of-type {
  display: none;
}

.audio-popup__content__result__audio__button_paused img:last-of-type {
  display: block;
}

.audio-popup__content__result__audio__heights {
  max-width: 220px;
  width: 100%;
}

.audio-popup__content__result__audio__time {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.audio-popup__content__result__text-box {
  border-radius: 15.417px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  width: 100%;
  padding: 20px 4px 20px 20px;
}

.audio-popup__content__result__text-box__content {
  height: 160px;
  overflow-y: scroll;
  padding: 0 16px 0 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  cursor: pointer;
}

.audio-popup__content__result__text-box__content>pre {
  color: #fff;
  text-overflow: ellipsis;
  font-size: 16px;
  white-space: normal;
  font-family:
    San Francisco,
    sans-serif;
}

.audio-popup__content__result__text-box__content::-webkit-scrollbar {
  width: 3px;
  background-color: transparent;
}

.audio-popup__content__result__text-box__content::-webkit-scrollbar-thumb {
  background-color: #fff;
  opacity: 0;
}

.audio-popup__content__result__button {
  color: #151b1f;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  background-color: white;
  border-radius: 15px;
}

.audio-popup__content__result>.audio-popup__drag__text {
  padding: 24px 0 20px;
}

.audio-popup__title {
  color: white;
  font-size: 30px;
  font-weight: 500;
  padding: 0 0 15px;
}

.audio-popup__title_small {
  color: rgba(255, 255, 255, 0.8);
  font-size: 19px;
  font-weight: 400;
}

.audio-popup__img {
  padding: 50px 0 20px;
}

.audio-popup__close {
  cursor: pointer;
  position: absolute;
  right: 24px;
  top: 24px;
}

.audio-popup__text {
  max-width: 230px;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  padding: 0 0 30px;
}

.audio-popup__button {
  width: 100%;
  padding: 16px 10px;
  border-radius: 10.5px;
  background: #ff3888;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.audio-popup__drag {
  width: 100%;
  padding: 30px 15px;
  border-radius: 15.5px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  margin: 25px 0 0 0;
  position: relative;
  z-index: 200;
  cursor: pointer;
}

.audio-popup__drag_light {
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.13);
}

.audio-popup__drag_error {
  background: rgba(243, 40, 122, 0.2);
}

.audio-popup__drag__img {
  padding: 0 0 20px;
}

.audio-popup__drag__title {
  color: white;
  font-size: 16px;
  font-weight: 500;
  opacity: 0.8;
  padding: 0 0 6px;
  overflow-x: hidden;
}

.audio-popup__drag__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
}

.audio-popup__active {
  display: grid;
}

.audio-popup__active__anim {
  animation: _audioPopup__fadeIn ease forwards 300ms;
}

.audio-popup__active__anim_disable {
  animation: _audioPopup__fadeOut ease forwards 300ms;
}

@media screen and (max-width: 660px) {
  .audio-popup {
    padding: 0 16px;
  }

  .audio-popup__content__result__audio__heights {
    max-width: 180px;
  }

  .audio-popup__title {
    font-size: 24px;
  }

  .audio-popup__content__result__audio__button {
    width: 40px;
    height: 40px;
    border-radius: 18.5px;
  }

  .audio-popup__title_small,
  .audio-popup__button,
  .audio-popup__drag__title,
  .audio-popup__content__result__text-box__content>pre,
  .audio-popup__content__result__button {
    font-size: 14px;
  }

  .audio-popup__text,
  .audio-popup__drag__text {
    font-size: 12px;
  }

  .audio-popup__glass {
    padding: 30px 16px;
  }

  .audio-popup__content__result__button {
    width: 100%;
    max-width: 300px;
  }

  .audio-popup__glass {
    max-height: 540px;
  }

  .audio-popup__close {
    top: 16px;
    right: 16px;
  }

  .audio-popup__close>svg {
    width: 24px;
    height: 24px;
  }

  .audio-popup__glass__adaptive_loading {
    max-height: 380px;
  }

  .audio-popup__glass__adaptive_loading {
    max-height: 530px;
  }
}

.audio-content__active {
  display: flex;
  animation: _audioPopup__fadeIn ease forwards 300ms;
}

.audio-content__disable {
  animation: _audioPopup__fadeOut ease forwards 300ms;
}

.audio-content__cross__disable {
  pointer-events: none;
}

.audio-content__cross__active {
  animation: _audioPopup__fadeIn ease forwards 300ms;
}

@keyframes _audioPopup__fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes _audioPopup__fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes __audio-popup__slideDown {
  from {
    transform: translate(0, -100vh);
  }

  to {
    transform: translate(0, 0);
  }
}

@keyframes __audio-popup__slideUp {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(0, -100vh);
  }
}

@keyframes __audioPopup__loading {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.spectrograph {
  width: 100%;
  max-width: 220px;
}

/*$$$$$$__$$$$__$$$$$__$$___$$____$$$$$___$$$$__$$$$$__$$__$$_$$$$$_
  $$_____$$__$$_$$__$$_$$$_$$$____$$__$$_$$__$$_$$__$$_$$__$$_$$__$$
  $$$$___$$__$$_$$$$$__$$_$_$$____$$$$$__$$__$$_$$$$$__$$__$$_$$$$$_
  $$_____$$__$$_$$__$$_$$___$$____$$_____$$__$$_$$_____$$__$$_$$____
  $$______$$$$__$$__$$_$$___$$____$$______$$$$__$$______$$$$__$$____*/
.form-popup {
  display: none;
  place-items: center;
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 99;
  padding: 50px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: auto;
}

.form-popup::-webkit-scrollbar {
  display: none;
}

.form-popup__wrapper {
  width: 100%;
  position: relative;
}

.form-popup_active {
  display: grid;
}

.form-popup__background {
  position: fixed;
  opacity: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(21, 27, 31, 0) 0%, #151b1f 100%);
}

.form-popup__background__appearance {
  animation: __formPopup_fadeIn 300ms forwards ease;
}

.form-popup__background__appearance_remove {
  animation: __formPopup_fadeOut 300ms forwards ease;
}

.form-popup__glass {
  max-width: 600px;
  width: 100%;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  padding: 50px;
  position: relative;
}

.form-popup__glass__slideDown {
  animation: __formPopup_slideDown 500ms forwards ease;
}

.form-popup__glass__slideUp {
  animation: __formPopup_slideUp 500ms forwards ease;
}

.form-popup__glass>form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
}

.form-popup__close {
  position: absolute;
  cursor: pointer;
  right: 25px;
  top: 25px;
}

.form-popup__title {
  color: white;
  font-size: 32px;
  text-align: center;
  padding: 0 0 24px;
}

.form-popup__item {
  width: 100%;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid transparent;
  transition: border 300ms ease;
}

.form-popup__item__wrapper {
  position: relative;
  width: 100%;
  transition: padding 300ms ease;
}

.form-popup__item__wrapper__error {
  position: relative;
  padding: 0 0 20px;
}

.form-popup__item__wrapper__error_email {
  position: relative;
  padding: 0 0 20px;
}

.form-popup__item__wrapper__error_phone {
  position: relative;
  padding: 0 0 20px;
}

.form-popup__item__wrapper__error_email::after {
  content: "Error - The email address is incorrect!";
  position: absolute;
  left: 2px;
  bottom: -5px;
  color: #e95570;
  font-size: 12px;
}

.form-popup__item__wrapper__error_phone::after {
  content: "Error - The format of the entered phone number is incorrect!";
  position: absolute;
  left: 2px;
  bottom: -5px;
  color: #e95570;
  font-size: 12px;
}

.form-popup__item__wrapper__error::after {
  content: "Error - The field is empty!";
  position: absolute;
  left: 2px;
  bottom: -5px;
  color: #e95570;
  font-size: 12px;
}

.form-popup__item__error {
  border: 1px solid #e95570;
}

.form-popup__item_focused {
  border: 1px solid #f72d7f;
}

.form-popup__item__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: gap 500ms;
  position: relative;
  z-index: 10;
}

.form-popup__item__list svg {
  transition: transform 500ms ease;
  transform-origin: center;
}

.form-popup__item__list_active {
  gap: 16px;
}

.form-popup__item__list_active svg {
  transform: rotate(180deg);
}

.form-popup__item__list__variants {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  backdrop-filter: blur(3px);
}

.form-popup__item__list__variants::-webkit-scrollbar {
  display: none;
}

.form-popup__item__list__variants__wrapper {
  position: absolute;
  width: 100%;
  display: grid;
  grid-template-rows: 0fr;
  transition: all 500ms;
  top: 58px;
  background: rgba(21, 27, 31, 0.9);
  border-radius: 10px;
  z-index: 10;
}

.form-popup__item__list__variants__wrapper_active {
  grid-template-rows: 1fr;
}

.form-popup__item__list__variants p:first-of-type {
  padding: 24px 20px 12px;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.form-popup__item__list__variants p:last-of-type {
  padding: 12px 20px 24px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.form-popup__item__list__variants>.form-popup__item__list__variants_active {
  color: #fff;
}

.form-popup__item__list__variants>p {
  width: 100%;
  padding: 12px 20px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.form-popup__item__list__variants>p:hover {
  background: rgba(255, 255, 255, 0.05);
}

.form-popup__item__list__content {
  padding: 0;
  transition: padding 300ms ease;
  position: relative;
}

.form-popup__item__list__content__error {
  padding: 0 0 20px;
}

.form-popup__item__list__content__error::after {
  content: "Error - Task not selected!";
  position: absolute;
  left: 2px;
  bottom: -5px;
  color: #e95570;
  font-size: 12px;
}

.form-popup__item__list__wrapper {
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid transparent;
  cursor: pointer;
}

.form-popup__item__list__wrapper__error {
  border: 1px solid #e95570;
}

.form-popup__item__list__wrapper_active {
  color: rgba(255, 255, 255, 0.8);
}

.form-popup__item__list__wrapper>p>span {
  color: #ff9838;
}

.form-popup__item__label {
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 20px;
  top: 16px;
  cursor: text;
  display: none;
}

.form-popup__item__label__fadeOut {
  animation: __formPopup_fadeOut ease 200ms forwards;
}

.form-popup__item__label__fadeIn {
  display: block;
  animation: __formPopup_fadeIn ease 200ms forwards;
}

.form-popup__item__label>span {
  color: #ff9838;
}

.form-popup__textarea__label>span {
  color: #ff9838;
}

.form-popup__textarea {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  resize: none;
  height: 130px;
  position: relative;
}

.form-popup__textarea::-webkit-scrollbar {
  width: 3px;
  background-color: transparent;
}

.form-popup__textarea::-webkit-scrollbar-thumb {
  background-color: #fff;
}

.form-popup__textarea__label {
  position: absolute;
  left: 20px;
  top: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  font-weight: 400;
  display: none;
  cursor: text;
}

.form-popup__textarea__label__fadeOut {
  animation: __formPopup_fadeOut ease 100ms forwards;
}

.form-popup__textarea__label__fadeIn {
  display: block;
  animation: __formPopup_fadeIn ease 200ms forwards;
}

.form-popup__textarea__wrapper {
  width: 100%;
  position: relative;
  z-index: 9;
  transition: padding 300ms ease;
}

.form-popup__privacy {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  padding: 9px 0;
  font-size: 16px;
  font-weight: 400px;
  color: rgba(255, 255, 255, 0.8);
  gap: 10px;
  position: relative;
  z-index: 9;
}

.form-popup__privacy__text>a {
  color: #ff3888;
  text-decoration: underline;
}

.form-popup__privacy__checkbox {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  transition: all 300ms ease;
  cursor: pointer;
}

.form-popup__privacy__checkbox>svg {
  opacity: 0;
  transition: opacity 150ms ease;
  transform: translate(0, 1px);
}

.form-popup__privacy__checkbox_error {
  border: 1px solid #ff3888;
}

.form-popup__privacy__checkbox_active {
  background: #ff3888;
}

.form-popup__privacy__checkbox_active>svg {
  opacity: 1;
}

.form-popup__button {
  transition: max-width 300ms ease;
  color: white;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  border-radius: 11px;
  background: #ff3888;
  font-weight: 600;
  padding: 17px 0;
}

.form-popup__item_phone {
  width: 100%;
  padding: 16px 20px 16px 40px;
}

.form-popup__item_phone::placeholder {
  opacity: 0;
}

.form-popup__item__country-code {
  position: absolute;
  left: 58px;
  top: 17px;
  display: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.form-popup__item__connect-list {
  width: 100%;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.form-popup__item__connect-list__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  width: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 400;
  cursor: pointer;
}

.form-popup__item__connect-list__content_fill {
  color: white;
}

.form-popup__item__connect-list__wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows ease 500ms;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.form-popup__item__connect-list__wrapper_active {
  grid-template-rows: 1fr;
}

.form-popup__item__connect-list__connections {
  overflow: hidden;
}

.form-popup__item__connect-list__connections {
  background: rgba(21, 27, 31, 0.9);
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

.form-popup__item__connect-list__connections>div:first-of-type {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 23px 0 11px 16px;
}

.form-popup__item__connect-list__connections>div:last-of-type {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 11px 0 23px 16px;
}

.form-popup__item__connect-list__connections__item {
  height: fit-content;
  padding: 11px 0 11px 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  user-select: none;
  cursor: pointer;
}

.form-popup__item__connect-list__content>svg {
  transition: transform ease 500ms;
}

.form-popup__item__connect-list__content_active>svg {
  transform: rotate(180deg);
}

.form-popup__item__connect-list__connections__item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.form-popup__item__connect-list__connections__item__checkbox {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-popup__item__connect-list__connections__item__checkbox svg {
  display: none;
  transform: translate(0px, 0);
}

.form-popup__item__connect-list__connections__item__checkbox_active {
  background: #ff3888;
}

.form-popup__item__connect-list__connections__item__checkbox_active svg {
  display: block;
}

@media screen and (max-width: 660px) {
  .form-popup {
    padding: 50px 16px;
    overflow: auto;
  }
}

@media screen and (max-width: 450px) {
  .form-popup__close {
    top: 16px;
    right: 16px;
  }

  .form-popup__close>svg {
    width: 24px;
    height: 24px;
  }

  .form-popup__glass {
    padding: 30px 16px;
  }

  .form-popup__title {
    font-size: 24px;
  }

  .form-popup__privacy,
  .form-popup__button,
  .form-popup__textarea__label,
  .form-popup__item__list__wrapper,
  .form-popup__item,
  .form-popup__item__label {
    font-size: 14px;
  }

  .form-popup__privacy__text {}
}

.form-popup__item__blurified {
  animation: __blurify 300ms ease forwards;
}

@keyframes __formPopup_fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes __formPopup_fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes __formPopup_slideDown {
  from {
    transform: translate(0, -150vh);
  }

  to {
    transform: translate(0, 0);
  }
}

@keyframes __formPopup_slideUp {
  from {
    transform: translate(0, 0);
  }

  to {
    transform: translate(0, -150vh);
  }
}

@keyframes __blurify {
  from {
    filter: blur(0px);
  }

  to {
    filter: blur(4px);
  }
}

/*$$$$$$__$$$$___$$$$__$$$$$$_$$$$$_$$$$$_
  $$_____$$__$$_$$__$$___$$___$$____$$__$$
  $$$$___$$__$$_$$__$$___$$___$$$$__$$$$$_
  $$_____$$__$$_$$__$$___$$___$$____$$__$$
  $$______$$$$___$$$$____$$___$$$$$_$$__$$*/
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--FOOTER__BACKGROUND);
  padding: 50px 0 40px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  gap: 230px;
}

.footer__top {
  max-width: var(--MAIN__WIDTH);
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.footer__top__logo {
  cursor: pointer;
}

.footer__top__logo>svg>g path {
  transition-property: fill, opacity;
  transition: 300ms ease;
  opacity: 1;
}

.footer__top__logo:hover>svg>g path {
  fill: #ff3888;
}

.footer__top__navigation {
  display: flex;
  gap: 32px;
}

.footer__top__navigation__wrapper {
  display: flex;
  gap: 32px;
}

.footer__top__navigation__link {
  opacity: 0.8;
  cursor: pointer;
  transition: all ease 300ms;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.footer__top__navigation__link:hover {
  color: #ff448f;
  opacity: 1;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  max-width: var(--MAIN__WIDTH);
  width: 100%;
}

.footer__bottom__copy {
  display: flex;
}

.footer__bottom__terms {
  display: flex;
  gap: 24px;
}

.footer__bottom__terms__link {
  color: inherit;
  opacity: 0.8;
  transition: all ease 300ms;
}

.footer__bottom__terms__link:hover {
  color: #ff448f;
  opacity: 1;
}

@media screen and (max-width: 1250px) {
  .footer {
    padding: 50px 16px 40px;
  }
}

@media screen and (max-width: 930px) {
  .footer {
    gap: 90px;
    padding: 24px 16px;
  }

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

  .footer__top__logo {
    max-width: 130px;
    width: 100%;
    padding: 0 0 32px;
  }

  .footer__bottom {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

@media screen and (max-width: 750px) {
  .footer__top__navigation {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

@media screen and (max-width: 500px) {
  .footer__bottom__terms {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer {
    font-size: 14px;
  }
}

[data-animation-type="clip-element"] {
  opacity: 0;
}

[data-animation-type="card-fadeIn"] {
  opacity: 0;
  transform: translate(0, 50px);
}

[data-animation-type="circle-fadeIn"] {
  opacity: 0;
}

.card__fadeIn {
  animation: __cardFadeIn 500ms ease forwards;
}

.element__clip {
  animation: __clipElement var(--ANIMATION__TIME) ease forwards;
}

.circle__fadeIn {
  animation: __elementFadeIn 1000ms ease forwards;
}

.cookie {
  position: fixed;
  right: 40px;
  bottom: 40px;
  max-width: 460px;
  width: 100%;
  backdrop-filter: blur(8px);
  background: #111116;
  border: 1px solid #25252e;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999999999;
  display: none;
}

.cookie__active {
  display: flex;
  animation: __cookieFadeIn 500ms ease forwards;
}

.cookie__disable {
  animation: __cookieFadeOut 500ms ease forwards;
}

.cookie__text {
  color: white;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  font-family: "Inter", sans-serif;
}

.cookie__button {
  background-color: #d4d4d4;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
  color: var(--black);
  max-width: 100px;
  width: 100%;
  transition: 300ms ease all;
}

.cookie__button:hover {
  background-color: #cd0e5b;
  color: white;
}

.cookie__text>a {
  text-decoration: underline;
  color: white;
}

.cookie__text>a:visited {
  color: white;
}

@media screen and (max-width: 700px) {
  .cookie {
    right: unset;
    left: 50%;
    transform: translate(-50%, 0);
    align-items: center;
    bottom: 10px;
  }

  .cookie__text {
    text-align: center;
  }

  .cookie__button {
    max-width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .cookie__text {
    font-size: 14px;
    text-align: center;
  }

  .cookie__button {
    font-size: 12px;
    text-align: center;
  }
}

@keyframes __cookieFadeIn {
  from {
    right: -600px;
    opacity: 0;
  }

  to {
    right: 40px;
    opacity: 1;
  }
}

@keyframes __cookieFadeOut {
  from {
    right: 40px;
    opacity: 1;
  }

  to {
    right: -600px;
    opacity: 0;
  }
}

@keyframes __clipElement {
  from {
    -webkit-clip-path: inset(0 0 100% 0);
    clip-path: inset(0 0 100% 0);
    opacity: 1;
  }

  to {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes __cardFadeIn {
  from {
    opacity: 0;
    transform: translate(0, 50px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0px);
  }
}

@keyframes __elementFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.2;
  }
}