@charset "UTF-8";
body {
  font-family: "AudiType", Courier, monospace;
  background-color: #101319;
}

#app {
  max-width: 2000px;
  margin-inline: auto;
}

.button {
  border-radius: 100px;
  padding: 0.75rem 3rem;
  font-size: 0.9rem;
  border: 1px solid #657081;
  cursor: pointer;
  background-color: #181d25;
  transition: all 0.2s ease-in-out;
}
.button:hover {
  background-color: #2a323f;
}
.button--filled {
  background-color: #657081;
}

.intro {
  text-align: center;
  margin-block: 4rem 3rem;
  margin-inline: 1rem;
}
.intro h1 {
  font-size: 1.8rem;
}
.intro p {
  margin-block: 1.5rem 0;
}
.intro p span {
  font-size: 1.7rem;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .intro h1 {
    font-size: 1.2rem;
  }
  .intro p {
    line-height: 1.6;
  }
  .intro p span {
    font-size: 1.2rem;
  }
}

.box {
  margin-inline: 10%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1000px) {
  .box {
    flex-direction: column;
    gap: 2rem;
  }
}
.box > img {
  width: 47%;
}
@media (max-width: 1000px) {
  .box > img {
    width: 100%;
  }
}
.box__content {
  width: 47%;
}
.box__content h3 {
  font-size: 1.8rem;
}
.box__content ul {
  margin-block: 2.5rem;
}
.box__content ul li {
  position: relative;
  margin-block: 0.85rem;
  font-size: 0.9rem;
  padding-inline: 2rem 0;
  line-height: 1.6;
}
.box__content ul li::before {
  content: "";
  background: url(/assets/img/arrow_down_icon.webp) no-repeat;
  background-size: 15px;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -25%;
  position: block;
}
.box__content p {
  font-size: 0.9rem;
  line-height: 1.6;
}
.box__content p span {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (max-width: 1000px) {
  .box__content {
    width: 100%;
  }
  .box__content h3 {
    font-size: 1.2rem;
  }
}
.box__inline-wrapper {
  margin-block: 4rem 0;
  display: flex;
  gap: 2rem;
}
@media (max-width: 1000px) {
  .box__inline-wrapper {
    flex-direction: column;
    align-items: center;
  }
}

.pros {
  margin-inline: 10%;
  background-color: #202630;
  border-radius: 12px;
  margin-block: 4rem;
  text-align: center;
  padding-block: 3rem;
}
.pros h3 {
  font-size: 1.8rem;
}
.pros__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5rem;
  margin-block: 2rem 0;
}
@media (max-width: 1000px) {
  .pros__items {
    gap: 3rem;
  }
}
.pros__item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.pros__item p {
  font-size: 0.9rem;
}
.pros__item img {
  filter: invert(1);
  height: 45px;
}

.form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 2rem;
  padding-block: 4rem;
  padding-inline: 4rem;
  color: #fff;
  margin-left: auto;
}
@media (max-width: 599px) {
  .form {
    padding-inline: 0;
    padding-block: 2rem;
  }
}
.form__content {
  display: grid;
  place-content: center;
  margin-inline: 2rem;
  color: #fff;
}
@media (max-width: 599px) {
  .form__content {
    margin-inline: 2rem;
    margin-block: 2rem 0;
  }
}
.form__content-header {
  font-size: 1.8rem;
  margin-block: 1rem;
  text-align: center;
  font-weight: 200;
}
@media (max-width: 599px) {
  .form__content-header {
    font-size: 1.6rem;
  }
}
.form__content-text {
  text-align: center;
}
.form__bg {
  display: flex;
  flex-direction: column;
  padding-block: 6rem 0;
  padding-inline: 6rem;
  position: relative;
}
@media (max-width: 599px) {
  .form__bg {
    padding-block: 0;
    padding-inline: 1rem;
    gap: 2rem;
  }
}
.form__header {
  width: 100%;
  font-size: 1.8rem;
  text-align: center;
}
.form__subheader {
  width: 100%;
  text-align: center;
}
.form__all-inputs-wrapper {
  display: flex;
  width: 100%;
  gap: 2rem;
}
@media (max-width: 599px) {
  .form__all-inputs-wrapper {
    flex-direction: column;
  }
}
.form__basic-inputs-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 3rem;
}
@media (max-width: 599px) {
  .form__basic-inputs-wrapper {
    width: 100%;
  }
}
.form__input-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 27%;
}
@media (max-width: 599px) {
  .form__input-wrapper {
    width: 100%;
  }
}
.form__textarea-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 48%;
  height: 100%;
}
@media (max-width: 599px) {
  .form__textarea-wrapper {
    width: 100%;
  }
}
.form__label {
  position: absolute;
  top: 30%;
  left: 0.75rem;
  color: #fff;
  cursor: text;
  transition: all 0.1s ease-in-out;
  transform-origin: left;
}
.form__label--textarea {
  top: 1.5rem;
}
.form__label--error {
  color: #fc0d1b;
}
.form__input {
  padding-inline: 0.75rem;
  padding-block: 1rem 0.375rem;
  border-bottom: 1px solid #8a9097;
  transition: all 0.1s ease-in-out;
  color: #fff;
}
.form__input::-moz-placeholder {
  color: transparent;
}
.form__input::placeholder {
  color: transparent;
}
.form__input:is(:focus) {
  border-color: #3f83f8;
}
.form__input:is(:focus):not(.form__input--error) + label {
  color: #3f83f8;
}
.form__input:is(:focus, :not(:-moz-placeholder)) + label {
  top: -5px;
  left: 0.785rem;
  scale: 0.7;
}
.form__input:is(:focus, :not(:placeholder-shown)) + label {
  top: -5px;
  left: 0.785rem;
  scale: 0.7;
}
.form__input--error {
  border-color: #fc0d1b;
  color: #fc0d1b;
  background-color: #ffdbdd;
}
.form__checkbox-wrapper {
  width: 100%;
  margin-left: 25px;
}
.form__checkbox-wrapper:has(input:checked) label::before {
  content: "✓";
  background-color: #001e50;
}
.form__checkbox-wrapper--small {
  width: 100px;
}
.form__checkbox {
  position: relative;
  cursor: pointer;
  font-size: 0.9rem;
}
.form__checkbox::before {
  content: "";
  position: absolute;
  left: -25px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 3px;
  border: 1px solid #8a9097;
  transition: all 0.2s ease-in-out;
}
.form__checkboxes-wrapper {
  width: 100%;
  display: flex;
  gap: 0.25rem;
}
.form__textarea {
  height: 100%;
  padding-inline: 0.75rem;
  padding-block: 1.5rem 1rem;
  border-bottom: 1px solid #8a9097;
  transition: all 0.1s ease-in-out;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
}
.form__textarea::-moz-placeholder {
  color: transparent;
}
.form__textarea::placeholder {
  color: transparent;
}
.form__textarea:focus {
  border-color: #3f83f8;
}
.form__textarea:is(:focus) + label {
  color: #3f83f8;
}
.form__textarea:is(:focus, :not(:-moz-placeholder)) + label {
  scale: 0.75;
  top: 0.5rem;
}
.form__textarea:is(:focus, :not(:placeholder-shown)) + label {
  scale: 0.75;
  top: 0.5rem;
}
.form__error-message-wrapper {
  position: absolute;
  bottom: -1.2rem;
}
.form__error-message-wrapper--checkbox {
  position: static;
}
.form__error-message {
  height: 1rem;
  font-size: 0.7rem;
  color: #fc0d1b;
  margin-block: 0.25rem 0;
  white-space: nowrap;
}
.form__consent-text {
  font-size: 0.7rem;
}
.form__expand-btn {
  display: block;
  font-weight: 600;
  cursor: pointer;
}
.form__submit-btn {
  padding-block: 0.75rem;
  padding-inline: 5rem;
  margin-inline: auto;
  color: #fff;
  border: 1px solid #fff;
  transition: all 0.2s ease-in-out;
}
.form__submit-btn:hover {
  cursor: pointer;
}
.form__submit-btn:disabled {
  opacity: 0.3;
}
.form__popup-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 10000;
}
.form__popup {
  position: relative;
  padding-inline: 3rem;
  padding-block: 3rem;
  background-color: #fff;
  color: #000;
  border-radius: 10px;
  text-align: center;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.1);
}
.form__popup div {
  color: black;
}
.form__popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-size: 1.4rem;
  cursor: pointer;
  color: #000;
}
.form button {
  margin-inline: auto;
}

.baner {
  position: relative;
}
.baner__img {
  width: 100%;
}
.baner__content {
  position: absolute;
  bottom: 15%;
  left: 8%;
  color: #fff;
}
@media (max-width: 1000px) {
  .baner__content {
    position: static;
    text-align: center;
    margin-block: 1rem 0;
  }
}
.baner__title {
  font-size: clamp(1.2rem, 3.5vw, 3rem);
  margin-block: 0 1rem;
  font-weight: 600;
}
.baner__subline {
  font-size: clamp(1rem, 2vw, 2rem);
}

.footer {
  padding-block: 2rem;
  padding-inline: 2rem;
  color: #000;
  text-align: center;
}
.footer__main {
  font-size: 1.4rem;
}
.footer__submain {
  font-size: 1.2rem;
  font-weight: 600;
  margin-block: 0.25rem 0.75rem;
}

.logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 4%;
}
.logo-bar__sign {
  display: block;
  font-weight: 600;
  font-size: 1.2rem;
}
@media (max-width: 1000px) {
  .logo-bar__sign {
    font-size: 1rem;
  }
}
.logo-bar__logo {
  width: clamp(35px, 23%, 70px);
  filter: invert(1);
}

.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.loader__item {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.loader__item div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.loader__item div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fcf;
  margin: -4px 0 0 -4px;
}
.loader__item div:nth-child(1) {
  animation-delay: -0.036s;
}
.loader__item div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.loader__item div:nth-child(2) {
  animation-delay: -0.072s;
}
.loader__item div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.loader__item div:nth-child(3) {
  animation-delay: -0.108s;
}
.loader__item div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.loader__item div:nth-child(4) {
  animation-delay: -0.144s;
}
.loader__item div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.loader__item div:nth-child(5) {
  animation-delay: -0.18s;
}
.loader__item div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.loader__item div:nth-child(6) {
  animation-delay: -0.216s;
}
.loader__item div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.loader__item div:nth-child(7) {
  animation-delay: -0.252s;
}
.loader__item div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.loader__item div:nth-child(8) {
  animation-delay: -0.288s;
}
.loader__item div:nth-child(8):after {
  top: 56px;
  left: 12px;
}

@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */