@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("../css/reset.min.css");
:root {
  --primary-color: #046a63;
  --additional-color: #7b2c2c;
  --gray-color: #d8d5cd;
}

body {
  font-family: "Poppins", sans-serif;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

p,
ul li,
ol li {
  line-height: 1.5;
}

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

.container {
  padding: 0 40px;
  max-width: 1208px;
  margin: 0 auto;
}

.title {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 24px;
  text-wrap: balance;
}

.text {
  font-size: 20px;
}

.list {
  font-size: 20px;
}
.list li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
.list li:last-child {
  margin: 0;
}
.list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

.btn {
  background: var(--additional-color);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background: var(--primary-color);
}

.inner {
  position: relative;
  z-index: 10;
  padding-bottom: 96px;
}

.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-color);
  margin-bottom: 24px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
}
.header__logo img {
  width: 50px;
}
.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.header__nav-list li button {
  background: transparent;
  border: none;
  padding: 0;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
.header__nav-list li button:hover {
  text-decoration: underline;
}

.hero .inner {
  max-width: 750px;
  margin: 0 auto;
  padding-top: 96px;
  text-align: center;
}
.hero__title {
  font-size: 64px;
  margin-bottom: 16px;
}
.hero__text {
  margin-bottom: 40px;
}

.about .inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  padding-top: 56px;
}
.about__img {
  max-width: 500px;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: url("../img/about-mask.png");
          mask-image: url("../img/about-mask.png");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.about__text {
  margin-bottom: 16px;
}

.help {
  position: relative;
}
.help::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center/cover no-repeat url("../img/help-bg.svg");
  opacity: 0.25;
}
.help .inner {
  padding-top: 96px;
}
.help__box {
  margin-top: 64px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
}
.help__item {
  flex: 1;
  text-align: center;
  padding: 24px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.05);
}
.help__item-icon {
  max-width: 50px;
  margin: 0 auto 8px;
}
.help__item-title {
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 600;
}
.help__item-text {
  font-size: 16px;
}

.choose .title {
  text-align: center;
}
.choose .inner {
  padding-top: 96px;
  padding-bottom: 47px;
}
.choose__box {
  display: flex;
  justify-content: center;
  max-width: 900px;
  width: 100%;
  margin: 64px auto 0;
  flex-wrap: wrap;
}
.choose__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  padding: 24px;
  text-align: center;
  border: 1px solid var(--gray-color);
}
.choose__item:nth-child(1) {
  border-top: none;
  border-left: none;
}
.choose__item:nth-child(2) {
  border-top: none;
  border-right: none;
}
.choose__item:nth-child(3) {
  border-bottom: none;
  border-left: none;
}
.choose__item:nth-child(4) {
  border-bottom: none;
  border-right: none;
}
.choose__item-title {
  font-size: 24px;
  font-weight: 600;
}

.reviews {
  padding-top: 47px;
}
.reviews__box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
}
.reviews__item {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.05);
  padding: 24px;
  border-radius: 12px;
}
.reviews__item-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  margin: 0 auto 24px;
}
.reviews__item-text {
  text-align: center;
  display: block;
  margin-bottom: 24px;
}

.faq {
  position: relative;
}
.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: center/cover no-repeat url("../img/faq-bg.svg");
}
.faq::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.faq .inner {
  padding-top: 96px;
}
.faq .title {
  text-align: center;
  color: #fff;
}
.faq__box {
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
}
.faq__item {
  margin-bottom: 24px;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-color);
}
.faq__item:last-child {
  margin: 0;
}
.faq__item-quest {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}
.faq__item-answer {
  max-width: 550px;
}

.contact .inner {
  padding-top: 96px;
}
.contact .title {
  text-align: center;
  margin-bottom: 12px;
}
.contact__text {
  text-align: center;
  margin: 0 auto 40px;
}
.contact__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.contact__form {
  padding: 24px;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.contact__form label {
  display: block;
  width: 100%;
}
.contact__form label input,
.contact__form label textarea {
  width: 100%;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 16px;
  border: 1px solid var(--gray-color);
  resize: none;
}
.contact__form label textarea {
  height: 150px;
}

.iti--separate-dial-code .iti__selected-flag {
  background: transparent !important;
}

.footer {
  background: var(--primary-color);
}
.footer .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  padding: 24px 0;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
}
.footer__logo img {
  width: 50px;
}
.footer__list {
  max-width: 300px;
}
.footer__list li {
  margin-bottom: 16px;
}
.footer__list li:last-child {
  margin: 0;
}
.footer__links li {
  margin-bottom: 16px;
  font-size: 18px;
}
.footer__links li:last-child {
  margin: 0;
}
.footer__links li a:hover {
  text-decoration: underline;
}

.thanks {
  min-height: calc(100vh - 110px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.thanks .inner {
  max-width: 550px;
  margin: 0 auto;
  width: 100%;
}
.thanks .container {
  width: 100%;
}
.thanks__title {
  font-size: 48px;
  margin: 0 auto 40px;
  max-width: 500px;
  text-align: center;
}
.thanks__text {
  margin-bottom: 12px;
}
.thanks__text:last-child {
  margin: 0;
}

.info .inner {
  padding: 56px 0;
}
.info__title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 64px;
}
.info__content h3 {
  margin-top: 24px;
  font-size: 28px;
}
.info__content p {
  margin-top: 16px;
  font-size: 18px;
}

@media (max-width: 1023px) {
  .title {
    font-size: 34px;
    text-align: center;
  }
  .text, .list {
    font-size: 18px;
  }
  .list li::before {
    top: 9px;
  }
  .inner {
    padding-bottom: 56px;
  }
  .hero__title {
    font-size: 48px;
    max-width: 500px;
    margin: 0 auto 12px;
  }
  .hero__text {
    margin-bottom: 24px;
  }
  .about .inner {
    flex-direction: column;
  }
  .help__box {
    flex-direction: column;
  }
  .choose__item-title {
    font-size: 22px;
  }
  .reviews__box {
    max-width: 500px;
    margin: 0 auto;
    flex-direction: column;
  }
  .contact__box {
    flex-direction: column;
  }
  .contact__box iframe {
    width: 100%;
  }
  .footer .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
  .title {
    font-size: 30px;
    text-align: left !important;
  }
  .header .inner {
    flex-direction: column;
  }
  .header__nav-list li button {
    font-size: 18px;
  }
  .hero .inner {
    padding: 56px 0;
    text-align: left;
  }
  .hero__title {
    font-size: 44px;
    text-wrap: balance;
  }
  .about__img {
    min-height: 300px;
  }
  .help .inner, .faq .inner {
    padding-top: 56px;
  }
  .choose .inner {
    padding-top: 56px;
  }
  .choose__item {
    width: 100%;
  }
  .choose__item:nth-child(1n) {
    border: none;
    border-bottom: 1px solid var(--gray-color);
  }
  .contact__text {
    text-align: left;
  }
  .thanks__title {
    font-size: 34px;
  }
  .info__title {
    font-size: 34px;
  }
  .info__content h3 {
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */