* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Creepster";
  src: url("../fonts/Creepster.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2");
  font-weight: 600;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Black.woff2") format("woff2");
  font-weight: 900;
}

@font-face {
  font-family: "Monument";
  src:
    url("../fonts/Monument-Extended-Bold.woff2") format("woff2"),
    url("../fonts/Monument-Extended-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --current-size: 1920;
}
body {
  font-family: Gilroy;
  background: #000;
}

.container {
  width: calc((1800 / var(--current-size)) * 100vw);
  margin: 0 auto;
  height: 100%;
}

.form-item p {
  color: #fff;
  font-size: calc((14 / var(--current-size)) * 100vw);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

header img {
  width: calc((120 / var(--current-size)) * 100vw);
}

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
}

#hero > picture img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.choose-adv {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  width: 100%;
  gap: calc((20 / var(--current-size)) * 100vw);
}

.choose-adv p {
  width: 100%;
  border: 1px solid #f9c829;
  padding: calc((16 / var(--current-size)) * 100vw) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
}

.choosed-inputs {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  width: 100%;
}

.choose-adv p.clicked {
  background: #f9c829 !important;
  color: #000 !important;
}
/* #hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 100%
  );
  pointer-events: none;
} */

.form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
  padding-bottom: calc((40 / var(--current-size)) * 100vw);
  z-index: 2;
}

#form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  width: calc((600 / var(--current-size)) * 100vw);
  gap: calc((10 / var(--current-size)) * 100vw);
}

#form > div {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: calc((10 / var(--current-size)) * 100vw);
}

.form-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: calc((6 / var(--current-size)) * 100vw);
  position: relative;
}

.form-item input {
  width: 100%;
  padding: calc((18 / var(--current-size)) * 100vw)
    calc((10 / var(--current-size)) * 100vw);
  border-radius: 8px;
  background: #1a1a1adb;
  backdrop-filter: blut(5px);
  -webkit-backdrop-filter: blut(5px);
  outline: none;
  border: calc((1 / var(--current-size)) * 100vw) solid #29292971;
  color: #ffffff;
  font-size: calc((16 / var(--current-size)) * 100vw);
  font-weight: 400;
  transition: 0.3s ease;
}

.form-item input:focus {
  border: calc((1 / var(--current-size)) * 100vw) solid #b5b5b5be;
  transition: 0.3s ease;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000009b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
}

.preloader.sending {
  opacity: 1;
  visibility: visible;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

.message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0000009b;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
}

.message p {
  color: #ffffff;
  font-size: calc((34 / var(--current-size)) * 100vw);
  font-weight: 700;
}

.message.sended {
  opacity: 1;
  visibility: visible;
}

.preloader img {
  width: calc((34 / var(--current-size)) * 100vw);
}

.form-item input::placeholder {
  color: #ffffffad;
}

.title {
  position: absolute;
  top: calc((20 / var(--current-size)) * 100vw);
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
  color: #fff;
  font-size: calc((60 / var(--current-size)) * 100vw);
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}

.form-item textarea {
  width: 100%;
  padding: calc((10 / var(--current-size)) * 100vw)
    calc((10 / var(--current-size)) * 100vw);
  border-radius: 8px;
  background: #1a1a1adb;
  backdrop-filter: blut(5px);
  -webkit-backdrop-filter: blut(5px);
  outline: none;
  color: #ffffff;
  font-size: calc((18 / var(--current-size)) * 100vw);
  font-weight: 400;
  resize: none;
  border: calc((1 / var(--current-size)) * 100vw) solid #29292971;
  height: calc((70 / var(--current-size)) * 100vw);
}

.form-item textarea::placeholder {
  color: #ffffffad;
}

#form button {
  width: 100%;
  height: calc((60 / var(--current-size)) * 100vw);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: calc((10 / var(--current-size)) * 100vw);
  background: #f9c82900;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-size: calc((18 / var(--current-size)) * 100vw);
  transition: 0.3s ease;
  border: calc((1 / var(--current-size)) * 100vw) solid #f9c829;
}

#form button:hover {
  transition: 0.3s ease;
  background: #f9c829;
  color: #000;
}

/* .form-item p {
  color: #000000;
  font-size: calc((16 / var(--current-size)) * 100vw);
} */

.form-up-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-bottom: calc((30 / var(--current-size)) * 100vw);
  width: calc((600 / var(--current-size)) * 100vw);
}

.form-item p.wt {
  color: #fff;
}

.form-up-text p {
  font-family: Gilroy;
  color: #fff;
  font-size: calc((40 / var(--current-size)) * 100vw);
  margin-bottom: calc((20 / var(--current-size)) * 100vw);
  font-weight: 900;
  text-align: center;
}

.form-up-text span {
  font-family: Gilroy;
  color: #fff;
  font-size: calc((20 / var(--current-size)) * 100vw);
  position: relative;
  z-index: 2;
  text-align: center;
}

.dropdown {
  position: absolute;
  top: 105%;
  left: 0;
  width: 100%;
  z-index: 2;
  border-radius: 8px;
  background: #000000e7;
  backdrop-filter: blut(5px);
  -webkit-backdrop-filter: blut(5px);
  outline: none;
  border: calc((1 / var(--current-size)) * 100vw) solid #ababab71;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}

.dropdown.open {
  opacity: 1;
  visibility: visible;
}

.checked-input {
  cursor: pointer;
}

.checked-input input {
  cursor: pointer;
}

.checked-input::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #ffffff transparent transparent transparent;
  position: absolute;
  top: calc((42 / var(--current-size)) * 100vw);
  right: calc((20 / var(--current-size)) * 100vw);
  pointer-events: none;
}

.dropdown p {
  padding: calc((10 / var(--current-size)) * 100vw)
    calc((20 / var(--current-size)) * 100vw);
  transition: 0.3s ease;
  cursor: pointer;
}

.dropdown p:hover {
  background: #202020e7;
}

.dropdown p:first-child {
  border-bottom: calc((1 / var(--current-size)) * 100vw) solid #ababab71;
}

.nick-tg {
  display: flex;
  align-items: center;
  flex-direction: row !important;
  gap: calc((10 / var(--current-size)) * 100vw);
}

.hidden {
  display: none;
}

.privacy-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((1200 / var(--current-size)) * 100vw);
  color: #fff;
  margin: 0 auto;
  padding: calc((60 / var(--current-size)) * 100vw) 0;
}

.privacy-wrapper h1 {
  font-size: calc((32 / var(--current-size)) * 100vw);
  margin-bottom: calc((30 / var(--current-size)) * 100vw);
}

.privacy-wrapper h5 {
  font-size: calc((24 / var(--current-size)) * 100vw);
  margin: calc((20 / var(--current-size)) * 100vw) 0
    calc((20 / var(--current-size)) * 100vw) 0;
}

.privacy-wrapper > button {
  background: #f9c829 !important;
  padding: calc((10 / var(--current-size)) * 100vw)
    calc((50 / var(--current-size)) * 100vw);
  color: #000000;
  font-size: calc((14 / var(--current-size)) * 100vw);
  border-radius: 8px;
  border: none;
  margin-right: auto;
  margin-bottom: calc((50 / var(--current-size)) * 100vw);
  cursor: pointer;
}

.checkbox-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  flex-direction: row !important;
}

.checkbox-wrapper p {
  color: #fff;
  font-size: calc((18 / var(--current-size)) * 100vw);
}

.checkbox-wrapper p a {
  color: #fff;
  font-size: calc((18 / var(--current-size)) * 100vw);
}

.checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox input {
  width: calc((16 / var(--current-size)) * 100vw);
  height: calc((16 / var(--current-size)) * 100vw);
}

@media all and (max-width: 768px) {
  :root {
    --current-size: 375;
  }

  .container {
    width: calc((355 / var(--current-size)) * 100vw);
  }

  .privacy-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: #fff;
    margin: 0 auto;
    padding: calc((60 / var(--current-size)) * 100vw) 0;
  }

  .privacy-wrapper h1 {
    font-size: calc((28 / var(--current-size)) * 100vw);
  }

  #form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    gap: calc((10 / var(--current-size)) * 100vw);
  }

  #hero > picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    object-fit: cover;
  }

  .form-item input {
    padding: calc((10 / var(--current-size)) * 100vw)
      calc((20 / var(--current-size)) * 100vw);
    font-size: calc((14 / var(--current-size)) * 100vw);
  }

  .form-item textarea {
    padding: calc((10 / var(--current-size)) * 100vw)
      calc((20 / var(--current-size)) * 100vw);
    font-size: calc((14 / var(--current-size)) * 100vw);
    border: calc((1 / var(--current-size)) * 100vw) solid #29292971;
    height: calc((70 / var(--current-size)) * 100vw);
  }

  .form-item p {
    color: #fff;
    font-size: calc((14 / var(--current-size)) * 100vw);
  }

  .form-up-text span {
    font-family: Gilroy;
    color: #fff;
    font-size: calc((14 / var(--current-size)) * 100vw);
    position: relative;
    z-index: 2;
    text-align: center;
  }

  #hero {
    position: relative;
    width: 100%;
    height: auto;
  }

  #form {
    padding-bottom: calc((30 / var(--current-size)) * 100vw);
  }

  .form-wrapper {
    justify-content: unset;
    padding-top: calc((500 / var(--current-size)) * 100vw);
    padding-bottom: 0;
  }

  #form button {
    width: 100%;
    height: calc((50 / var(--current-size)) * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc((10 / var(--current-size)) * 100vw);
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    font-size: calc((18 / var(--current-size)) * 100vw);
    transition: 0.3s ease;
  }

  .checked-input::after {
    top: calc((37 / var(--current-size)) * 100vw);
  }

  .checkbox-wrapper p {
    font-size: calc((13 / var(--current-size)) * 100vw);
  }

  .checkbox-wrapper p a {
    font-size: calc((13 / var(--current-size)) * 100vw);
  }

  #form button {
    font-size: calc((16 / var(--current-size)) * 100vw);
  }

  .form-up-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: calc((30 / var(--current-size)) * 100vw);
    width: 100%;
  }

  body {
    background: #000;
  }

  body:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc((200 / var(--current-size)) * 100vw);
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .choose-adv p {
    padding: calc((10 / var(--current-size)) * 100vw) 0;
  }

  .title {
    top: calc((10 / var(--current-size)) * 100vw);
    font-size: calc((32 / var(--current-size)) * 100vw);
  }
}
