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

body {
  position: relative;
  height: unset;
}

/* $$__$$_$$$$$__$$$$__$$$$$__$$$$$_$$$$$_
   $$__$$_$$____$$__$$_$$__$$_$$____$$__$$
   $$$$$$_$$$$__$$$$$$_$$__$$_$$$$__$$$$$_
   $$__$$_$$____$$__$$_$$__$$_$$____$$__$$
   $$__$$_$$$$$_$$__$$_$$$$$__$$$$$_$$__$$*/
.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: none;
  width: 24px;
  height: 24px;
  place-items: center;
}
.header__logo {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header__logo path {
  transition: fill 300ms ease;
}
.header__logo:hover path {
  fill: #ff6332;
}

.header__logo__text {
  transform: translate(0, 1px);
}

.header__burger__content {
  display: none;
  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: 20px;
  top: 20px;
  max-width: 650px;
  width: 100%;
  background: #23272d;
  border-radius: 20px;
  box-shadow: 0px 4px 10px 0px rgba(46, 46, 46, 0.05);
  padding: 0;
  z-index: 50;
  border-top: rgba(255, 255, 255, 0) 1px solid;
}
.header__burger__content__background {
  position: fixed;
  left: 0;
  top: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(35, 39, 45, 0.7);
  box-shadow: 0px 4px 10px 0px rgba(46, 46, 46, 0.05);
  z-index: 49;
  opacity: 0;
  visibility: hidden;
  transition: 300ms opacity ease;
}
.header__burger__content__background_active {
  visibility: visible;
  opacity: 1;
}

.header__burger__content__background_disabled {
  opacity: 0;
}

.header__burger__content__wrapper {
  display: grid;
  grid-template: repeat(7, auto) / auto 1fr;
  align-items: center;
  padding: 0 32px;
  column-gap: 50px;
  row-gap: 16px;
  overflow: hidden;
}
.header__burger__content_active {
  border-top: rgba(255, 255, 255, 0.05) 1px solid;
  grid-template-rows: 1fr;
  padding: 32px 0;
}

.header__burger__close-content {
  grid-area: 1 / 1 / 1 / span 2;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 0 40px 0;
  overflow: visible;
}

.header__burger__close-content__logo {
  max-width: 120px;
  width: 100%;
}

.header__burger__close-content__cross {
  position: relative;
}

.header__burger__content__wrapper > .header__nav__item__mobile {
  font-size: 24px;
}
.header__burger__buttons {
  display: grid;
  gap: 16px;
  grid-area: 7 / 1 / 7 / span 2;
  grid-template: repeat(2, auto) / repeat(2, 1fr);
  padding: 0 0 0 0;
}

.header__burger__buttons > button {
  grid-row: 1 / 1;
}

.header__burger__buttons > a {
  grid-row: 2 / 2;
}

.header__burger__content__wrapper > .header__button_send-question {
  grid-area: 6 / 1 / 6 / span 2;
  gap: 0;
  font-size: 24px;
  display: flex;
  justify-content: left;
}

.header__burger__content__wrapper > .header__button_send-question > svg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__burger__content__wrapper > .header__button_send-question > path {
  transform: translate(0, -10px);
}

.header__burger__content__wrapper > .header__button_send-question {
  padding: 45px 0;
  display: flex;
  width: fit-content;
}

.header__burger__buttons > .header__button_start-work {
  font-size: 24px;
  display: flex;
  width: 100%;
}

.header__burger__buttons > .header__button_sign-in {
  cursor: pointer;
  background-color: transparent;
  font-size: 24px;
}

.header__wrapper {
  max-width: 1450px;
  width: 100%;
  display: grid;
  grid-template: 1fr / auto 1fr auto;
  -moz-column-gap: 16px;
  column-gap: 16px;
  transition: grid-template 300ms ease;
  align-items: center;
  justify-content: space-between;
  padding: 21px;
  position: relative;
}
.header__nav {
  display: flex;
  color: rgba(255, 255, 255, 0.8);
  transition: all 300ms ease;
  gap: 16px;
  align-items: center;
  padding: 0 0 0 38px;
}
.header__nav__item,
.header__nav__item__mobile {
  cursor: pointer;
  transition: all ease 300ms;
  color: rgba(255, 255, 255, 0.8);
}
.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: #ff6332;
}

.header__button-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header__button_send-question {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: color ease 300ms;
}
.header__button_send-question:hover {
  color: #ff6332;
}
.header__button_send-question:active {
  color: #ff6332;
}

.header__button_sign-in {
  border-radius: 15px;
  border: 1px solid #fff;
  display: flex;
  padding: 15px 24px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: 300ms all ease;
  cursor: pointer;
}

.header__button_sign-in:visited {
  color: #fff;
}

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

.header__button_start-work {
  color: #151b1f;
  font-weight: 600;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  border-radius: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all ease 300ms;
}
.header__button_start-work:hover {
  background-color: #ff6332;
  color: white;
}
.header__button_start-work:active {
  background-color: #ff6332;
}
.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: "Отправить заявку";
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  background: #ff6332;
  z-index: 1;
  left: 0;
  top: 0;
}
.header__advertisement__button:hover::after {
  background: #ff6332;
  box-shadow: 0px 0px 20px 0px rgba(255, 99, 50, 0.5);
}
.header__advertisement__button:active::after {
  background: #ff6332;
}

.header__nav__item_in-view {
  color: #ff6332;
}

.header__nav__item_in-view:visited {
  color: #ff6332;
}

@media screen and (max-width: 1410px) {
  .header__nav__item:nth-child(5) {
    display: none;
  }

  .header__nav {
    justify-content: center;
  }
}

@media screen and (max-width: 1375px) {
  .header__nav {
    gap: 16px;
    padding: 0;
  }
}

@media screen and (max-width: 1340px) {
  .header__nav {
    padding: 0 0 0 0;
  }
}

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

@media screen and (max-width: 1280px) {
  .header__nav__item,
  .header__button_send-question,
  .header__button_start-work,
  .header__button_sign-in {
    font-size: 14px;
  }
  .header__button_start-work {
    height: 100%;
  }
}

@media screen and (max-width: 1200px) {
  .header__burger {
    display: grid;
    transform: translate(0, 1px);
  }

  .header__nav {
    display: none;
  }

  .header__wrapper {
    grid-template: 1fr / 1fr auto auto;
    align-items: center;
  }

  .header__burger__content {
    display: grid;
  }

  .header__button_start-work {
    height: -moz-fit-content;
    height: fit-content;
  }
}

@media screen and (max-width: 960px) {
  .header__button-wrapper {
    display: none;
  }

  .header__button_send-question {
    font-size: 20px;
  }

  .header__button_sign-in {
    max-width: 330px;
    width: 100%;
  }

  .header__burger__content {
    top: 20px;
  }

  .header__burger__content__wrapper > .header__button_send-question,
  .header__burger__content__wrapper > .header__button_start-work,
  .header__burger__content__wrapper > .header__button_sign-in {
    display: flex;
  }

  .header__wrapper {
    grid-template: 1fr / 1fr auto;
  }
}

@media screen and (max-width: 680px) {
  .header__burger__content {
    width: 100%;
    right: 0;
  }
}

@media screen and (max-width: 600px) {
  .header__wrapper {
    padding: 16px 15px;
  }
  .header__burger__content {
    top: 0px;
  }

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

  .header__burger__content__wrapper > .header__button_send-question {
    padding: 100px 0 3px 0;
    grid-area: 6 / 1 / 6 / span 2;
    justify-content: center;
    width: 100%;
  }

  .header__burger__content__wrapper > .header__button_send-question > img {
    width: 30px;
    height: 30px;
  }

  .header__burger__content__wrapper {
    grid-template: repeat(7, auto) / repeat(2, 1fr);
    row-gap: 7px;
  }
}

@media screen and (max-width: 500px) {
  .header__burger__content__wrapper > .header__nav__item__mobile {
    font-size: 16px;
  }

  .header__burger__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .header__burger__buttons > .header__button_sign-in {
    width: 100%;
    max-width: unset;
  }
}

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

.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__grid {
  display: grid;
  grid-template: repeat(4, 1fr) / repeat(2, 1fr);
}
.main__grid > .main__text {
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 10px;
}
.main__title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 56px;
  font-weight: 600;
}
.main__title_small {
  color: white;
  font-size: 32px;
  font-weight: 600;
  opacity: 0.8;
  padding: 40px 0 24px;
}
.main__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
  padding: 0 0 12px;
}

.main__link {
  color: white;
  font-weight: 600;
}

@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: rgb(46, 52, 57);
  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: "Ошибка - Aдрес электронной почты указан не верно!";
  position: absolute;
  left: 2px;
  bottom: -5px;
  color: #e95570;
  font-size: 12px;
}

.form-popup__item__wrapper__error_phone::after {
  content: "Ошибка - Номер телефона должен содержать 11 цифр!";
  position: absolute;
  left: 2px;
  bottom: -5px;
  color: #e95570;
  font-size: 12px;
}
.form-popup__item__wrapper__error::after {
  content: "Ошибка - Поле не заполнено!";
  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: "Ошибка - Задача не выбрана!";
  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: #ff6332;
}

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

.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: #ff6332;
  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 #ff6332;
}
.form-popup__privacy__checkbox_active {
  background: #ff6332;
}
.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: #ff6332;
  font-weight: 600;
  padding: 17px 0;
}

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

.form-popup__item__country-code {
  position: absolute;
  left: 20px;
  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: #ff6332;
}

.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 {
    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: grid;
  place-items: center;
  background-color: #1e2428;
}

.footer__wrapper {
  max-width: 1550px;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 64px 0 64px 10px;
}

.footer__container {
  display: flex;
}

.footer__logo {
  font-weight: 600;
  width: fit-content;
  font-size: 38px;
  cursor: pointer;
  color: white;
  transition: 300ms ease all;
}

.footer__logo:hover {
  color: #ff6332;
}

.footer__text {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: #fff;
  padding: 12px 0 32px;
}

.footer__sing-in {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #000;
  border-radius: 12px;
  padding: 16px 40px;
  background: #f1f1f1;
  transition: 300ms ease all;
  cursor: pointer;
}

.footer__sing-in:hover {
  color: white;
  background-color: #ff6332;
}

.footer__contact {
  border: 1px solid #f1f1f1;
  border-radius: 12px;
  padding: 16px 40px;
  background-color: transparent;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 12px 0 0;
  cursor: pointer;
  transition: 300ms ease all;
}

.footer__contact:hover {
  color: #ff6332;
  border: 1px solid #ff6332;
}

.footer__copy {
  font-weight: 400;
  font-size: 16px;
  color: #646464;
  padding: 60px 0 0 0;
}

.footer__item {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #fff;
  padding: 0 0 12px;
  transition: 300ms ease all;
  cursor: pointer;
}

.footer__item:hover {
  color: #ff6332;
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__column:nth-child(1) {
  padding: 0 290px 0 0;
}
.footer__column:nth-child(2) {
  padding: 0 124px 0 0;
  transform: translate(0, 5px);
}
.footer__column:nth-child(3) {
  padding: 0 85px 0 0;
  transform: translate(0, 5px);
}
.footer__column:nth-child(4) {
  transform: translate(0, 5px);
}

.footer__copy__mobile {
  font-weight: 400;
  font-size: 16px;
  color: #646464;
  padding: 32px 0 0 0;
  display: none;
}

.footer__logo {
  display: flex;
  flex-direction: column;
}
.footer__logo img {
  max-width: 260px;
}
.sub-logo-text {
  font-size: 14px;
  font-weight: 400;
  margin-top: 10px;
}
.footer-disclaimer {
  margin: 40px 0;
}
.footer-disclaimer p {
  font-size: 20px;
  color: #fff;
  line-height: 26px;
}
.footer-disclaimer a {
  color: #ff6332;
}
.footer-disclaimer .copyright {
  font-size: 18px;
}

@media screen and (max-width: 1250px) {
  .footer__column:nth-child(1) {
    padding: 0 150px 0 0;
  }
}

@media screen and (max-width: 1100px) {
  .footer__column:nth-child(1) {
    padding: 0 100px 0 0;
  }
  .footer__column:nth-child(2) {
    padding: 0 100px 0 0;
  }
}

@media screen and (max-width: 1024px) {
  .footer__text {
    font-size: 12px;
  }

  .footer__wrapper {
    padding: 40px 10px;
  }

  .footer__sing-in {
    font-size: 14px;
    padding: 12px 24px;
  }

  .footer__contact {
    font-size: 14px;
    padding: 12px 24px;
  }

  .footer__item {
    font-size: 14px;
    padding: 0 0 8px;
  }

  .footer__copy {
    font-size: 12px;
    padding: 22px 0 0;
  }

  .footer__column:nth-child(1) {
    padding: 0 66px 0 0;
  }

  .footer__column:nth-child(2) {
    padding: 0 60px 0 0;
  }

  .footer__column:nth-child(3) {
    padding: 0 44px 0 0;
  }

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

  .sub-logo-text {
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .footer__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 10px 20px;
  }

  .footer__copy {
    display: none;
  }
  .footer__copy__mobile {
    display: block;
  }

  .footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
  }
  .footer__column:nth-child(1),
  .footer__column:nth-child(2),
  .footer__column:nth-child(3),
  .footer__column:nth-child(4) {
    padding: 0;
  }

  .footer__column {
    align-items: center;
    max-width: 400px;
    width: 100%;
  }

  .footer__sing-in {
    width: 100%;
  }

  .footer__contact {
    width: 100%;
    margin: 8px 0 32px;
  }

  .footer__text {
    padding: 12px 0 16px;
  }

  .footer__copy {
    padding: 0;
    position: absolute;
    bottom: -52px;
  }

  .footer__item br {
    display: none;
  }
}
