@import url("https://fonts.googleapis.com/css2?family=Kantumruy+Pro:ital,wght@0,100..700;1,100..700&display=swap");
@import url("../css/reset.min.css");
:root {
  --primary-color: #174c4f;
  --additional-color: #b1a87f;
  --gray-color: #d8d5cd;
  --dark-color: #222;
}

body {
  font-family: "Kantumruy Pro", 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;
  padding-top: 82px;
}

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

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

.text {
  font-size: 22px;
}

.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;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background: #a78b54;
}

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

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background: var(--primary-color);
}
.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.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;
  color: #fff;
}
.header__nav-list li button:hover {
  text-decoration: underline;
}

.hero {
  background: center/cover no-repeat url("../img/hero-bg.jpg");
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.hero .inner {
  padding-top: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.hero__info {
  max-width: 550px;
  margin-right: auto;
  text-align: left;
  color: #fff;
}
.hero__title {
  font-size: 64px;
  margin-bottom: 16px;
}
.hero__text {
  margin-bottom: 40px;
}
.about {
  background: var(--dark-color);
}
.about .inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 96px 0;
  color: #fff;
}
.about__img {
  max-width: 450px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__title {
  text-align: left;
}
.about__text {
  margin-bottom: 16px;
}

.services .title {
  text-align: center;
}
.services .inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding: 96px 0;
  color: var(--dark-color);
}
.services .title {
  color: var(--dark-color);
  margin-bottom: 40px;
}
.services__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.services__list li {
  width: 30%;
  padding: 24px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  margin: 0;
}
.services__list li::before {
  display: none;
}

.reviews {
  padding-top: 47px;
}
.reviews .title {
  color: var(--dark-color);
  text-align: center;
}
.reviews__box {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 64px;
}
.reviews__item {
  flex: 1;
  background: #fff;
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.1);
  padding: 24px;
  border-radius: 12px;
  color: var(--dark-color);
}
.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;
  background: var(--dark-color);
}
.faq .inner {
  padding-top: 96px;
}
.faq .title {
  text-align: center;
  color: #fff;
}
.faq__box {
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
}
.faq__item {
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}
.faq__item:last-child {
  margin: 0;
}
.faq__item-quest {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
  position: relative;
  padding-right: 30px;
}
.faq__item-quest::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background: center/contain no-repeat url("../img/plus.svg");
  translate: 0 -50%;
  transition: 0.3s;
}
.faq__item.active .faq__item-quest::before {
  background-image: url("../img/minus.svg");
}
.faq__item-answer {
  padding-top: 8px;
  display: none;
}

.contact .inner {
  padding-top: 96px;
}
.contact .title {
  text-align: center;
  margin-bottom: 40px;
}
.contact__text {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 40px;
}
.contact__box {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.contact__form {
  padding: 24px;
  box-shadow: 0 0 40px 4px rgba(0, 0, 0, 0.1);
  margin: 0;
}
.contact__form button.btn {
  background: #a7233a;
  color: #fff;
}
.contact__form button.btn:hover {
  background: #a78b54;
}
.contact__map {
  max-width: 600px;
  width: 100%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
form label {
  display: block;
  width: 100%;
}
form label input,
form label textarea {
  width: 100%;
  border-radius: 12px;
  padding: 12px 24px;
  font-size: 16px;
  border: 1px solid var(--gray-color);
  resize: none;
}
form label textarea {
  height: 150px;
}

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

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

.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;
  text-align: center;
}
.thanks__text:last-child {
  margin: 0;
}

.info {
  background: var(--dark-color);
  color: #fff;
}
.info .inner {
  padding: 56px 0;
}
.info__title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 64px;
}
.info__content h2 {
  margin-top: 24px;
}
.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;
  }
  .header__nav, .header__btn {
    display: none;
  }
  .hero .inner {
    flex-direction: column;
  }
  .hero__info {
    margin-left: auto;
    text-align: center;
  }
  .hero__title {
    font-size: 48px;
    max-width: 500px;
    margin: 0 auto 12px;
  }
  .hero__text {
    margin-bottom: 24px;
  }
  .about .inner {
    flex-direction: column;
  }
  .services__item-title {
    font-size: 22px;
  }
  .reviews__box {
    max-width: 500px;
    margin: 0 auto;
    flex-direction: column;
  }
  .contact__box {
    flex-direction: column;
  }
  .contact__form {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
  }
  .contact__map {
    max-width: 100%;
    height: 400px;
  }
  .footer .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
  }
  .footer__column {
    width: 100%;
  }
  .footer__logo {
    justify-content: center;
  }
  .footer__list {
    margin: 0 auto;
    text-align: center;
  }
  .footer iframe {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .wrapper {
    padding-top: 0;
  }
  .container {
    padding: 0 16px;
  }
  .title {
    font-size: 30px;
    text-align: left !important;
  }
  .header {
    position: relative;
  }
  .header .inner {
    flex-direction: column;
  }
  .header__nav {
    display: none;
  }
  .header__btn {
    display: none;
  }
  .hero .inner {
    padding: 56px 0;
    text-align: left;
  }
  .hero__title {
    font-size: 40px;
    text-wrap: balance;
  }
  .about__img {
    min-height: 300px;
  }
  .help .inner,
  .faq .inner {
    padding-top: 56px;
  }
  .faq__item-quest {
    font-size: 20px;
  }
  .services .inner {
    padding-top: 56px;
  }
  .services__list li {
    width: 100%;
  }
  .contact .inner {
    padding-top: 56px;
  }
  .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 */