*,
*::before,
*::after {
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  line-height: 1.2;
}

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

.wrapper {
  position: relative;
  overflow: hidden;
}

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

h2.title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  text-wrap: balance;
  max-width: 700px;
  margin: 0 auto 54px;
}

.btn {
  border-radius: 100px;
  padding: 12px 34px;
  text-align: center;
  background: #fff;
  border: 2px solid #000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  color: #fff;
  background: #40bb78;
  border-color: #40bb78;
  transition: 0.3s;
}
.btn.btn-green {
  border-color: #40bb78;
  background: #40bb78;
  color: #fff;
}
.btn.btn-green:hover {
  background: #fff;
  color: #40bb78;
  border-color: #40bb78;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__logo-img {
  width: 50px;
  margin-right: 8px;
}
.header__logo-title {
  font-size: 24px;
  font-weight: 700;
  padding-right: 8px;
  margin-right: 8px;
  border-right: 3px solid #000;
}
.header__logo-text {
  font-size: 14px;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__nav-list li {
  font-size: 15px;
}
.header__nav-list li button {
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.header__nav-list li button:hover {
  color: #204d9b;
  text-decoration: underline;
}

.hero__inner {
  padding: 96px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__info {
  max-width: 650px;
}
.hero__title {
  font-size: 46px;
  margin-bottom: 16px;
  text-align: left;
  max-width: 700px;
}
.hero__text {
  font-size: 20px;
  margin-bottom: 40px;
  max-width: 570px;
}
.hero__btns {
  display: flex;
  gap: 12px;
}
.hero__board {
  max-width: 500px;
  width: 100%;
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.hero__board-title {
  background: #222;
  color: #fff;
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
  padding: 24px;
}
.hero__board form {
  padding: 24px;
}
.hero__board form label {
  display: block;
  margin-bottom: 4px;
  padding-bottom: 20px;
  position: relative;
}
.hero__board form label input,
.hero__board form label select {
  width: 100%;
  font-size: 18px;
  border: 1px solid #222;
  padding: 12px 24px;
  border-radius: 8px;
}
.hero__board form label .error {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  font-size: 14px;
  color: #f40;
}
.hero__board form label.invalid .error {
  opacity: 1;
  pointer-events: painted;
  transition: 0.3s;
}
.hero__board form .consent {
  margin-bottom: 20px;
  padding: 0;
  display: flex;
  align-items: center;
}
.hero__board form .consent__input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.hero__board form .consent__text {
  font-size: 16px;
}
.hero__board form button {
  width: 100%;
}
.hero__board form button:disabled, .hero__board form button:disabled:hover {
  background: gray;
  cursor: not-allowed;
  border-color: gray;
  color: #fff;
}

.numbers__inner {
  padding: 56px 0;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.numbers__item {
  width: calc(25% - 16px);
  border: 1px solid #b9b9b9;
  border-radius: 16px;
  padding: 24px;
}
.numbers__item-num {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 2px;
}
.numbers__item-text {
  font-size: 16px;
}

.reasons__inner {
  padding: 96px 0;
}
.reasons__box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 100px;
}
.reasons__item {
  border: 2px solid #a0a0a0;
  border-radius: 16px;
  padding: 24px;
  width: calc(33.33% - 16px);
}
.reasons__item-img {
  width: 100px;
  margin-bottom: 24px;
}
.reasons__item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.reasons__item-text {
  font-size: 18px;
}
.reasons__board {
  max-width: 500px;
  width: 100%;
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.reasons__board-title {
  background: #222;
  color: #fff;
  font-size: 24px;
  text-align: center;
  margin-bottom: 24px;
  padding: 24px;
}
.reasons__board-title span {
  color: #40bb78;
}
.reasons__board form {
  padding: 24px;
}
.reasons__board form label {
  display: block;
  margin-bottom: 4px;
  padding-bottom: 20px;
  position: relative;
}
.reasons__board form label input,
.reasons__board form label select {
  width: 100%;
  font-size: 18px;
  border: 1px solid #222;
  padding: 12px 24px;
  border-radius: 8px;
}
.reasons__board form label .error {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  font-size: 14px;
  color: #f40;
}
.reasons__board form label.invalid .error {
  opacity: 1;
  pointer-events: painted;
  transition: 0.3s;
}
.reasons__board form .consent {
  margin-bottom: 20px;
  padding: 0;
  display: flex;
  align-items: center;
}
.reasons__board form .consent__input {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.reasons__board form .consent__text {
  font-size: 16px;
}
.reasons__board form button {
  width: 100%;
}
.reasons__board form button:disabled, .reasons__board form button:disabled:hover {
  background: gray;
  cursor: not-allowed;
  border-color: gray;
  color: #fff;
}

.process__inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 0 96px;
}
.process__item {
  max-width: 50%;
  width: 100%;
  counter-increment: num;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
  gap: 24px;
  margin-top: -80px;
}
.process__item:nth-child(1) {
  margin: 0;
}
.process__item::after {
  content: counter(num);
}
.process__item::before, .process__item::after {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #40bb78;
  color: #fff;
  font-size: 40px;
  min-width: 150px;
  height: 150px;
}
.process__item:nth-child(2n) {
  margin-left: auto;
  text-align: left;
  justify-content: flex-start;
}
.process__item:nth-child(2n)::after {
  display: none;
}
.process__item:nth-child(2n)::before {
  content: counter(num);
}
.process__item-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}

.team__inner {
  padding: 0 0 96px;
}
.team__box {
  display: flex;
  flex: 1;
  gap: 24px;
}
.team__item-img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 250px;
  height: 250px;
  margin: 0 auto;
}
.team__item-info {
  padding: 24px;
  background: #222;
  border-radius: 12px;
  color: #fff;
  text-align: center;
  margin-top: -50px;
  position: relative;
  z-index: 1;
}
.team__item-name {
  font-size: 24px;
  margin-bottom: 8px;
}
.team__item-pos {
  font-size: 20px;
  margin-bottom: 8px;
  color: #c2c2c2;
}
.team__item-text {
  font-size: 16px;
}

.reviews__inner {
  padding: 0 0 96px;
}
.reviews__box {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.reviews__item {
  max-width: 350px;
  width: 100%;
}
.reviews__item-img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 200px;
  height: 200px;
  margin: 0 auto;
}
.reviews__item-info {
  margin-top: 24px;
  padding: 24px;
  color: #222;
  text-align: center;
  position: relative;
  z-index: 1;
}
.reviews__item-name {
  font-size: 26px;
  margin-bottom: 8px;
}
.reviews__item-country {
  font-size: 20px;
  margin-bottom: 24px;
  color: #8b8b8b;
}
.reviews__item-text {
  font-size: 16px;
}

.cta {
  margin-bottom: 96px;
}
.cta__inner {
  padding: 56px;
  background: #40bb78;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 24px;
  color: #fff;
  text-align: center;
}
.cta__title.title {
  margin-bottom: 24px;
}
.cta__text {
  font-size: 18px;
  margin-bottom: 40px;
}
.cta__btn {
  background: #222;
  color: #fff;
  padding: 24px;
  font-size: 20px;
}
.cta__btn:hover {
  background: #000;
}

.footer__text {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 500;
}
.footer__logo {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.footer__logo-img {
  width: 50px;
  margin-right: 8px;
}
.footer__logo-title {
  font-size: 24px;
  font-weight: 700;
  padding-right: 8px;
  margin-right: 8px;
  border-right: 3px solid #fff;
}
.footer__logo-text {
  font-size: 14px;
}
.footer__board {
  background: #222;
  color: #fff;
  padding: 24px 24px 56px;
  border-radius: 24px 24px 0 0;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.footer__board-imgs {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.footer__board-imgs img {
  max-width: 200px;
}
.footer__board-copyright {
  text-align: center;
  color: #fff;
  max-width: 400px;
}

@media (max-width: 1023px) {
  .header__inner {
    flex-wrap: wrap;
  }
  .header__logo {
    order: 1;
  }
  .header__btn {
    order: 2;
  }
  .header__nav {
    width: 100%;
    order: 3;
  }
  .header__nav-list {
    margin-top: 16px;
    justify-content: center;
  }
  .hero__inner {
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }
  .numbers__inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  .numbers__item {
    width: 45%;
  }
  .reasons__item {
    width: calc(50% - 12px);
  }
  .team__box {
    flex-direction: column;
    align-items: center;
  }
  .reviews__box {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .header__inner {
    flex-direction: column;
  }
  .header__logo {
    margin-bottom: 24px;
    order: 1;
  }
  .header__logo-img {
    width: 40px;
  }
  .header__logo-title {
    font-size: 18px;
  }
  .header__logo-text {
    font-size: 14px;
  }
  .header__nav {
    order: 2;
    margin-bottom: 24px;
  }
  .header__nav-list {
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
  }
  .header__nav-list li {
    width: 40%;
  }
  .header__btn {
    order: 3;
    width: 100%;
  }
  .hero__inner {
    padding: 56px 0;
  }
  .hero__title {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 12px;
  }
  .hero__text {
    font-size: 18px;
    margin-bottom: 34px;
  }
  .hero__btns {
    flex-direction: column-reverse;
  }
  .hero__btns button {
    width: 100%;
  }
  .numbers__inner {
    flex-direction: column;
    padding: 56px 0;
  }
  .numbers__item {
    width: 100%;
  }
  .reasons__inner {
    flex-direction: column;
    padding: 0 0 56px;
  }
  .reasons__item {
    width: 100%;
  }
  .process__item {
    max-width: 100%;
    text-align: left !important;
    margin: 0 !important;
  }
  .process__item::before {
    content: counter(num) !important;
    min-width: 100px;
    height: 100px;
    font-size: 24px !important;
  }
  .process__item::after {
    display: none !important;
  }
  .cta__inner {
    padding: 24px;
  }
  .cta__title {
    font-size: 26px !important;
  }
  .cta__text {
    font-size: 18px;
  }
  .cta__btn {
    font-size: 18px;
    width: 100%;
  }
  .footer__logo {
    margin-bottom: 24px;
  }
  .footer__logo-img {
    width: 40px;
  }
  .footer__logo-title {
    font-size: 18px;
  }
  .footer__logo-text {
    font-size: 13px;
  }
  .footer__board-imgs img {
    max-width: 125px;
  }
}/*# sourceMappingURL=style.css.map */