/* Media Sizes */
/* Laptop */
/* Phone */
/* Font Weights */
*::selection {
  background-color: #9F54B1;
}

* {
  font-family: "Manrope", sans-serif;
  box-sizing: border-box;
  -webkit-text-size-adjust: none !important;
}

html {
  font-family: "Manrope", sans-serif;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: white;
  margin: 0;
  padding: 0;
}

.main {
  overflow: hidden;
  position: relative;
  padding-bottom: 60px;
  height: 100vh;
  width: 100%;
  min-height: 935px;
  display: flex;
  justify-content: center;
}
.main .main__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #04070D;
  background-image: url("../assets/img/bg.jpg");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .main .main__bg {
    background-size: cover;
  }
}
.main .main__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .main {
    width: 100%;
    height: auto;
    min-height: 100vh;
    padding-bottom: 60px;
  }
}

/* Media Sizes */
/* Laptop */
/* Phone */
/* Font Weights */
.header {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #04070D;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}
.header .header__wrapper {
  padding: 0 5%;
  position: relative;
  width: 100%;
  max-width: 1920px;
  height: 109px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header .header__wrapper {
    max-width: 95%;
    padding: 0;
  }
}
.header .header__wrapper .logo {
  width: 137px;
  height: auto;
}
.header .header__wrapper .phone-number {
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media (max-width: 768px) {
  .header {
    display: flex;
    justify-content: center;
  }
}

.flex-wrapper {
  width: 100%;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-wrapper .flex-content {
  width: 100%;
  max-width: 1240px;
  display: flex;
  justify-content: space-between;
}
.flex-wrapper .flex-content .tab--1 {
  width: 100%;
  max-width: 577px;
}
.flex-wrapper .flex-content .tab--1 .title {
  margin: 0;
  color: #FFF;
  font-family: "Manrope", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
}
.flex-wrapper .flex-content .tab--1 .title span {
  margin-top: 30px;
  display: block;
  font-size: 20px;
}
@media (max-width: 1400px) {
  .flex-wrapper .flex-content .tab--1 .title span {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .flex-wrapper .flex-content .tab--1 .title span {
    font-size: 18px;
  }
}
@media (max-width: 1400px) {
  .flex-wrapper .flex-content .tab--1 .title {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .flex-wrapper .flex-content .tab--1 .title {
    width: 100%;
    padding: 0 15px;
    font-size: 24px;
  }
}
.flex-wrapper .flex-content .tab--1 .form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.flex-wrapper .flex-content .tab--1 .form .form__row {
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (max-width: 1400px) {
  .flex-wrapper .flex-content .tab--1 .form .form__row {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .flex-wrapper .flex-content .tab--1 .form .form__row {
    flex-direction: column;
    width: 100%;
  }
}
.flex-wrapper .flex-content .tab--1 .form .form__group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-size: 18px;
  color: #606060;
  white-space: nowrap;
  border-radius: 300px;
  background-color: white;
}
.flex-wrapper .flex-content .tab--1 .form .form__group.form__group--textarea {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-block: 32px;
  border-radius: 44px;
  height: 174px;
}
.flex-wrapper .flex-content .tab--1 .form .form__group.form__group--textarea textarea {
  resize: none;
  height: 100%;
}
.flex-wrapper .flex-content .tab--1 .form .form__group.form__group--checkbox {
  border-radius: 0;
  background-color: transparent;
  position: relative;
  color: white;
  height: auto;
}
.flex-wrapper .flex-content .tab--1 .form .form__group.form__group--checkbox .form__group-label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  white-space: normal;
}
.flex-wrapper .flex-content .tab--1 .form .form__group.form__group--checkbox .form__group-control {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}
.flex-wrapper .flex-content .tab--1 .form .form__group.form__group--checkbox .form__group-control--custom-checkbox {
  display: flex;
  flex-shrink: 0;
  width: 31px;
  border: 2px solid #594393;
  aspect-ratio: 1/1;
  background-color: white;
  border-radius: 4px;
  position: relative;
}
.flex-wrapper .flex-content .tab--1 .form .form__group.form__group--checkbox .form__group-control--custom-checkbox:after {
  content: "";
  display: flex;
  width: 104%;
  height: 104%;
  aspect-ratio: 1/1;
  background-color: #594393;
  background-image: url("../../assets/img/check.svg");
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center center;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.5s;
  opacity: 0;
}
.flex-wrapper .flex-content .tab--1 .form .form__group.form__group--checkbox .form__group-control:checked + .form__group-control--custom-checkbox:after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
@media (max-width: 768px) {
  .flex-wrapper .flex-content .tab--1 .form .form__group {
    font-size: 16px;
  }
}
.flex-wrapper .flex-content .tab--1 .form .form__group-control {
  width: 100%;
  color: #FFF;
  outline: none;
  border: none;
  border-bottom: 1px solid #FCEDF1;
}
.flex-wrapper .flex-content .tab--1 .form .form__group--checkbox {
  margin-top: 25px;
}
.flex-wrapper .flex-content .tab--1 .form .form__group--checkbox:nth-child(1) {
  margin-top: 0;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
@media (max-width: 768px) {
  .flex-wrapper .flex-content .tab--1 .form .form__group--checkbox:nth-child(1) {
    font-size: 16px;
  }
  .flex-wrapper .flex-content .tab--1 .form .form__group--checkbox:nth-child(1) br {
    display: none;
  }
}
.flex-wrapper .flex-content .tab--1 .form .form__group--input {
  padding: 20px 20px;
  width: 100%;
  border-radius: 56px;
  background: #FFF;
}
.flex-wrapper .flex-content .tab--1 .form .form__group--input input {
  background: none;
  border: none;
  color: #606060;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  box-shadow: inset 20px 20px 0px 20px #FFF !important;
  -webkit-text-fill-color: #606060 !important;
}
.flex-wrapper .flex-content .tab--1 .form .form__group--input input::placeholder {
  opacity: 0.5;
}
.flex-wrapper .flex-content .tab--1 .form input,
.flex-wrapper .flex-content .tab--1 .form textarea {
  outline: none;
  border: none;
  box-shadow: none;
}
.flex-wrapper .flex-content .tab--1 .form input:focus,
.flex-wrapper .flex-content .tab--1 .form textarea:focus {
  outline: none;
  border: none;
  box-shadow: none;
}
.flex-wrapper .flex-content .tab--1 .form input:active,
.flex-wrapper .flex-content .tab--1 .form textarea:active {
  outline: none;
  border: none;
  box-shadow: none;
}
.flex-wrapper .flex-content .tab--1 .form input textarea:focus,
.flex-wrapper .flex-content .tab--1 .form input input:focus,
.flex-wrapper .flex-content .tab--1 .form textarea textarea:focus,
.flex-wrapper .flex-content .tab--1 .form textarea input:focus {
  outline: none;
}
.flex-wrapper .flex-content .tab--1 .form input *:focus,
.flex-wrapper .flex-content .tab--1 .form textarea *:focus {
  outline: none;
  box-shadow: none;
}
.flex-wrapper .flex-content .tab--1 .form .form__btn {
  margin-top: 30px;
  padding: 15px 0;
  width: 100%;
  max-width: 445px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  background: #594393;
  border: none;
}
.flex-wrapper .flex-content .tab--1 .form .form__btn:hover {
  cursor: pointer;
}
.flex-wrapper .flex-content .tab--1 .form .form__btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.flex-wrapper .flex-content .tab--1 .form .form__btn.form__btn--submit {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 120%;
  background-color: #594393;
}
@media (max-width: 768px) {
  .flex-wrapper .flex-content .tab--1 .form .form__btn {
    height: 34px;
  }
}
@media (max-width: 768px) {
  .flex-wrapper .flex-content .tab--1 .form {
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .flex-wrapper .flex-content .tab--1 {
    margin-top: 32px;
  }
}
.flex-wrapper .flex-content .tab--2 .item {
  width: 100%;
  max-width: 566px;
}
@media (max-width: 1400px) {
  .flex-wrapper .flex-content .tab--2 .item {
    width: 30%;
    min-width: 220px;
  }
}
@media (max-width: 1400px) {
  .flex-wrapper .flex-content .tab--2 {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 1400px) {
  .flex-wrapper .flex-content {
    margin-top: 50px;
    max-width: 95%;
    justify-content: center;
    flex-wrap: wrap-reverse;
  }
}

.hidden-answer {
  height: calc(100vh - 64px);
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.hidden-answer p {
  margin: 0;
  color: #FFF;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  transform: translateY(-100px);
}
@media (max-width: 768px) {
  .hidden-answer {
    align-items: normal;
    align-content: center;
    flex-wrap: wrap;
  }
  .hidden-answer p {
    width: 100%;
    max-width: 95%;
    font-size: 20px;
  }
  .hidden-answer a {
    font-size: 20px;
  }
}

.error-mail {
  margin-top: 20px;
  padding: 15px 20px;
  width: 100%;
  border-radius: 10px;
  background: rgba(255, 0, 0, 0.3);
}
.error-mail p {
  margin: 0;
  padding: 0;
}

.hidden-error {
  display: none;
}

/*# sourceMappingURL=style.css.map */
