@font-face {
  font-family: "Open-Sans";
  src: url("../fonts/OpenSans-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Open-Sans";
  src: url("../fonts/OpenSans-Regular.ttf");
  font-weight: 400;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Open-Sans";
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

img {
  display: block;
  width: 100%;
}

.btn {
  border: none;
  display: table;
  padding: 16px 56px;
  border-radius: 16px;
  background: #006721;
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 14px 4px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  scale: 1.03;
  transition: 0.3s;
  background: #245a5d;
}

.header__inner {
  padding: 12px 0 40px;
}
.header__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header__logo-img {
  max-width: 100px;
}
.header__logo-text {
  border-radius: 0 4px 4px 0;
  margin-top: 4px;
  font-size: 15px;
  line-height: 16px;
  font-weight: 700;
  color: #fff;
  background: #006721;
  padding: 6px 24px;
}
.header__title {
  text-align: center;
  max-width: 400px;
  margin: 24px auto 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.info .container {
  padding: 0;
}
.info .wrap-1 {
  background: linear-gradient(#006721, #334c29);
  padding: 0 16px;
}
.info .wrap-2 {
  background: #d29b7b;
  padding: 0 16px;
}
.info__title {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 0;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  color: #fff;
}
.info__subtitle {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 0;
  font-size: 20px;
  line-height: 26px;
}

.bottom__inner {
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.bottom__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 300px;
  height: 300px;
  background: left/contain no-repeat url("../img/bg.svg");
  z-index: -1;
  filter: grayscale(1) opacity(0.4);
  pointer-events: none;
}
.bottom__title {
  text-align: center;
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
}
.bottom__img {
  max-width: 100px;
  margin: 40px auto;
  animation: arrowMove 2s ease-in-out 0s infinite;
}
.bottom__btn {
  margin: 0 auto;
}

@keyframes arrowMove {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 20px;
  }
}
.contact__inner {
  padding: 24px 16px;
}

.contact {
  padding-bottom: 100px;
}

.form__label {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
}
.form__label-title {
  font-size: 24px;
  line-height: 28px;
  text-align: center;
  max-width: 600px;
  margin: 20px auto 20px;
}
.form__label-title.last-title {
  margin-top: 40px;
}
.form__label-text {
  color: #3f3f3f;
  text-align: left;
  margin-bottom: 4px;
}
.form__label input,
.form__label select {
  border: 1px solid #757575;
  width: 100%;
  text-align: left;
  font-size: 20px;
  line-height: 24px;
  padding: 12px 16px;
}
.form__label .iti--separate-dial-code .iti__selected-dial-code {
  font-size: 20px;
  line-height: 24px;
}
.form__label .error {
  margin-top: 2px;
  display: none;
  font-size: 14px;
  line-height: 15px;
  color: #f40;
  text-align: left;
}
.form__label.invalid input,
.form__label.invalid select {
  border-color: red;
}
.form__label.invalid .error {
  display: block;
}
.form button.btn {
  width: 100%;
  border-radius: 6px;
  padding: 20px;
  font-size: 24px;
  line-height: 26px;
}
.form button.btn:disabled {
  background: gray;
  cursor: not-allowed;
  scale: 1;
  transition: 0.3s;
}

.consent {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.consent__input {
  width: 16px;
  height: 16px;
  margin: 0;
}

.consent__text {
  font-size: 18px;
  line-height: 24px;
  margin: 0;
}

@media (max-width: 767px) {
  .info__title {
    font-size: 20px;
    line-height: 26px;
  }
  .info__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .contact__inner {
    padding: 12px 0;
  }
  .form__label-title {
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    margin-left: 0;
  }
  .form__label-text {
    font-size: 14px;
    line-height: 16px;
  }
  .form__label select,
  .form__label input {
    font-size: 16px;
    line-height: 24px;
    padding: 12px;
  }
  .form__label .iti--separate-dial-code .iti__selected-dial-code {
    font-size: 16px;
    line-height: 24px;
  }
  .form button.btn {
    font-size: 18px;
    line-height: 24px;
    padding: 16px;
  }
}/*# sourceMappingURL=style.css.map */