@import url(reset.css);
@import url(fonts.css);

:root {
  --text: 'DM Sans', sans-serif;
  --title: 'The Seasons', sans-serif;

  --base: #100721;
  --active: #b4a3fd;
  --light: #FFF;
  --light_text: #e1e1e1;
}

.wow.delay-1s {
  animation-delay: 1s;
}

.wow.delay-1-2s {
  animation-delay: 1.2s;
}

.wow.delay-1-4s {
  animation-delay: 1.4s;
}

.wow.delay-1-6s {
  animation-delay: 1.6s;
}

.wow.delay-1-8s {
  animation-delay: 1.8s;
}

.wow.delay-2s {
  animation-delay: 2s;
}

.wow.delay-2-2s {
  animation-delay: 2.2s;
}

.wow.delay-2-4s {
  animation-delay: 2.4s;
}

.wow.delay-2-6s {
  animation-delay: 2.6s;
}

.wow.delay-2-8s {
  animation-delay: 2.8s;
}

.wow.delay-3s {
  animation-delay: 3s;
}

.container {
  max-width: 1600px;
  padding: 0 15px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}

.tre {
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -ms-transition: all .3s ease;
  -o-transition: all .3s ease;
  font-size: 16px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  position: relative;
  font-family: var(--title);
  color: var(--base);
  background: var(--active);
  text-transform: uppercase;
}


.section__title {
  font-size: calc(21px + 1.25vw);
  margin-bottom: 40px;
}

body {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--text);
  color: var(--light);
}

/* main */
.logo {
  height: 50px;
}

.main {
  width: 100%;
  position: relative;
  background: linear-gradient(0deg, #100721df 0%, #100721b2 100%), url(../img/1.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px 0;
  overflow: hidden;
  background-attachment: fixed;
  min-height: 100vh;
}

.main__wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: 100%;
}

.main__title {
  font-family: var(--title);
  font-size: calc(20px + 5vw);
  margin-bottom: 40px;
  text-align: center;
  color: var(--active);
}
.main__title span {
  font-family: var(--text);
  font-weight: 300;
}
.main__list {
  color: var(--active);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}

.main__list li{
  font-size: calc(16px + .5vw);
    text-align: center;
    font-weight: 200;
}
.main__list li b{
  font-weight: 900;
}
.main__btn {
  background: var(--active);
  color: var(--base);
  font-weight: 600;
  max-width: 400px;
  margin: 0 auto;
}
.main__buttons{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.main__buttons a{
  margin: 0;
}
/* about */
.about {
  background: var(--active);
  padding: 200px 0;
}

.about__title {
  color: var(--base);
  font-size: calc(20px + 3vw);
  margin: 0 0 28px;
  text-align: center;
}

.about__subtitle {
  color: var(--base);
  max-width: 50%;
  margin: 0 auto 40px;
  font-size: calc(16px + .5vw);
  text-align: center;
  font-weight: 200;
}

.about__bg {
  width: calc(60% - 30px);
  pointer-events: none;
  margin: 0 auto;
  display: block;
}

.about__btn {
  background: var(--base);
  color: var(--active);
  max-width: 400px;
  margin: 0 auto;
}

.about__btn i {
  font-family: var(--text);
  padding-right: 4px;
}
.about__more{
  display: block;
  margin: 0 auto;
  color: var(--base);
  font-weight: 300;
  text-align: center;
  max-width: 400px;
  margin-top: 25px;
  text-decoration: underline;
}
.about__more:hover{
  text-decoration: none;
}
/* down__form */
.down__form {
  padding: 60px 0;
  background: linear-gradient(0deg, #100721df 0%, #100721b2 100%), url(../img/2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.down__form .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.down__form-title {
  margin-bottom: 21px;
  font-size: calc(21px + 2vw);
}

.down__form-description {
  font-size: calc(16px + 1.2vw);
  font-weight: 200;
  color: var(--light_text);
}

.down__form-form {
  padding: 28px 41px;
  background: var(--active);
  width: 100%;
  max-width: 900px;
  border-radius: 18px;
}

.down__form-form .form__label:last-child {
  margin-bottom: 0;
}

.down__form-form .form__input {
  background: transparent;
  border-bottom: 1px solid var(--base);
  padding: 21px 14px 28px 0;
  font-size: 21px;
  color: var(--base);
  font-family: var(--title);
  font-weight: 400;
}

.down__form-form .form__input::placeholder {
  color: var(--base);
}

@media(max-width:1000px) {
  .down__form .container {
    grid-template-columns: 1fr;
  }

  .down__form-form .form__input {
    font-size: 16px;
  }
}

.form__label {
  margin-bottom: 21px;
  display: block;
  color: var(--base);
}

.form__caption {
  font-size: 14px;
  margin-bottom: 7px;
}

.form__input {
  display: block;
  outline: none;
  width: 100%;
  color: var(--light);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--base);
  padding: 21px 14px 28px 0;
  font-size: 21px;
  color: var(--base);
  font-family: var(--title);
  font-weight: 400;
  border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  -ms-border-radius: 0 0 0 0;
  -o-border-radius: 0 0 0 0;
}

.form__input::placeholder {
  color: var(--base);
}

.form__btn {
  background: var(--base);
  padding: 28px 0;
  width: 100%;
  font-family: var(--title);
  text-transform: uppercase;
  color: var(--active);
  border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  -ms-border-radius: 0 0 0 0;
  -o-border-radius: 0 0 0 0;
}
.form__check-label{
  display: flex;
  align-items: center;
  justify-content: start; 
  gap: 10px;
}
.form__checkbox{
  width: 20px;
  height: 20px;
  cursor: pointer;
}
@media(max-width:800px) {
  .modal {
    min-width: auto;
    width: 100%;
  }

  .form__input {
    font-size: 16px;
  }
}

.form__btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}