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

html,
body {
  font-family:
    San Francisco,
    sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
}

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

/* $$__$$_$$$$$__$$$$__$$$$$__$$$$$_$$$$$_
   $$__$$_$$____$$__$$_$$__$$_$$____$$__$$
   $$$$$$_$$$$__$$$$$$_$$__$$_$$$$__$$$$$_
   $$__$$_$$____$$__$$_$$__$$_$$____$$__$$
   $$__$$_$$$$$_$$__$$_$$$$$__$$$$$_$$__$$*/
.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;
}

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

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

  .header__wrapper {
    padding: 16px 15px;
  }

  .header__burger__content {
    top: 55px;
  }
}

.main {
  padding: 120px 0 200px;
}

.main__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 900px;
  width: 100%;
}

.main__link {
  color: #ff448f;
  opacity: 1;
  text-decoration: underline;
}

.main__link:visited {
  color: #ff448f;
}

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

.main__checkbox {
  display: inline-block;
  background: rgba(255, 255, 255, 0.03);
  width: 20px;
  height: 20px;
  border-radius: 7px;
  padding: 3px;
  transform: translate(0, 4px);
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-right: 5px;
}

.main__checkbox>svg {
  display: none;
}

.main__checkbox__active {
  background: #ff3888;
}

.main__checkbox__active>svg {
  display: block;
  width: 12px;
  height: 100%;
}

.main__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 10px;
}

.main__list_dash {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 10px;
}

.main__list_dash>li {
  position: relative;
  padding: 0 0 0 80px;
}

.main__list_dash>li::before {
  content: "—";
  color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 50px;
  top: 0px;
}

.main__list_dash>.main__text_undashed::before {
  content: "";
}

.main__list_dash>.main__text_undashed {
  padding: 0 0 0 40px;
}

.main__list_hollow {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 10px;
}

.main__list_hollow>li {
  position: relative;
  padding: 0 0 0 80px;
}

.main__list_hollow>li::before {
  content: "";
  border: rgba(255, 255, 255, 0.8) 1px solid;
  position: absolute;
  border-radius: 50%;
  left: 60px;
  top: 7px;
  width: 6px;
  height: 6px;
}

.main__list_hollow>.main__text_undashed::before {
  content: "";
}

.main__list_hollow>.main__text_undashed {
  padding: 0 0 0 40px;
}

.main__list>li {
  position: relative;
  padding: 0 0 0 40px;
}

.main__list_hollow>p {
  padding: 0 0 0 80px;
}

.main__list>li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 20px;
  top: 7px;
}

.main__grid {
  display: grid;
  grid-template-columns: minmax(auto, 300px) 1fr;
  grid-template-rows: 1fr;
  align-items: center;
}

.main__grid__title {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 500;
  opacity: 0.7;
  padding: 10px;
  justify-self: center;
  width: 100%;
  text-align: center;
}

.main__grid>p,
.main__grid>div {
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.main__grid>div {
  padding: 10px;
}

.main__grid>.main__text {
  padding: 10px;
  height: 100%;
}

.main__title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 56px;
  padding: 0 0 0px;
  font-weight: 600;
}

.main__title_small {
  color: white;
  font-size: 32px;
  font-weight: 600;
  opacity: 0.8;
  padding: 40px 0 24px;
}

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

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

.main__text>span {
  font-weight: 600;
}

.main__text__colored {
  opacity: 1;
}

.main__text_offset {
  padding: 0 0 12px 40px;
}

@media screen and (max-width: 970px) {
  .main {
    padding: 40px 16px 90px;
  }
}

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

  .main__title_small {
    font-size: 24px;
  }

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

/*$$$$$$__$$$$__$$__$$_$$$$$$__$$$$_
  $$_____$$__$$_$$$_$$___$$___$$____
  $$$$___$$__$$_$$_$$$___$$____$$$$_
  $$_____$$__$$_$$__$$___$$_______$$
  $$______$$$$__$$__$$___$$____$$$$_*/
@font-face {
  font-family: San Francisco;
  src: url(../../assets/fonts/SF/woff2/SF-Pro-Display-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-stretch: normal;
  font-variant: normal;
  font-display: swap;
}

@font-face {
  font-family: San Francisco;
  src: url(../../assets/fonts/SF/woff2/SF-Pro-Display-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-stretch: normal;
  font-variant: normal;
  font-display: swap;
}

@font-face {
  font-family: San Francisco;
  src: url(../../assets/fonts/SF/woff2/SF-Pro-Display-Semibold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
  font-stretch: normal;
  font-variant: normal;
  font-display: swap;
}

@font-face {
  font-family: San Francisco;
  src: url(../../assets/fonts/SF/woff2/SF-Pro-Display-Bold.woff2) format("opentype");
  font-weight: 700;
  font-style: normal;
  font-stretch: normal;
  font-variant: normal;
  font-display: swap;
}

/*$$$$$$__$$$$__$$$$$__$$___$$____$$$$$___$$$$__$$$$$__$$__$$_$$$$$_
  $$_____$$__$$_$$__$$_$$$_$$$____$$__$$_$$__$$_$$__$$_$$__$$_$$__$$
  $$$$___$$__$$_$$$$$__$$_$_$$____$$$$$__$$__$$_$$$$$__$$__$$_$$$$$_
  $$_____$$__$$_$$__$$_$$___$$____$$_____$$__$$_$$_____$$__$$_$$____
  $$______$$$$__$$__$$_$$___$$____$$______$$$$__$$______$$$$__$$____*/
.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_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::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;
}

.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 {
  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__textarea__label>span {
  color: #ff9838;
}

.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 {
  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__wrapper__error_phone {
  position: relative;
  padding: 0 0 20px;
}

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

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

@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 {
    display: flex;
    flex-direction: column;
  }
}

.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__top__navigation__link:visited {
  color: rgba(255, 255, 255, 0.8);
}

.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__top__navigation {
    width: 100%;
  }

  .footer__top__navigation .footer__top__navigation__wrapper:nth-child(1) {
    justify-content: space-around;
  }

  .footer__top__navigation__wrapper {
    width: 100%;
    gap: 0;
    justify-content: space-between;
  }

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