@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
@import url("../css/reset.min.css");
:root {
  --primary-color: #212838;
  --second-color: #dcbe75;
  --gray-color: #2e364a;
  --dark-color: #181818;
}

body {
  font-family: "Red Hat Display", sans-serif;
}

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

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

b,
strong {
  font-weight: 800;
}

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

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

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

.title {
  font-size: 40px;
  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(--gray-color);
  border-radius: 50%;
}

.btn {
  display: table;
  background: var(--primary-color);
  background-size: 200%;
  background-position: left;
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
}
.btn:hover {
  background: var(--gray-color);
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #212838;
}
.header.scroll .header__inner {
  padding: 12px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  transition: 0.3s;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.header__logo img {
  width: 60px;
}
.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 {
  padding-top: 99px;
  background: center/cover no-repeat url("../img/hero-bg.jpg");
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--dark-color);
  opacity: 0.75;
}
.hero__inner {
  padding: 144px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.hero__info {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
  color: #fff;
}
.hero__info-btns {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.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;
  height: 515px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
  -webkit-mask-image: url("../img/about-mask.png");
  mask-image: url("../img/about-mask.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
          mask-size: 100%;
}
.about__title {
  text-align: left;
}
.about__text {
  margin-bottom: 16px;
}

.services__inner {
  padding: 96px 0;
  color: var(--dark-color);
}
.services__title {
  text-align: center;
  color: var(--dark-color);
  margin-bottom: 40px;
}
.services__box {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.services__item {
  max-width: 500px;
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  padding: 24px;
  border-radius: 12px;
}
.services__item-title {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 800;
}
.services__item-list li::before {
  background: var(--second-color);
}

.steps__title {
  text-align: center;
  margin-bottom: 40px;
}
.steps__box {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}
.steps__box::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  background: var(--second-color);
  height: 6px;
  width: 100%;
}
.steps__item {
  flex: 1;
  background: var(--second-color);
  color: var(--gray-color);
  padding: 24px;
  border-radius: 12px;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
.steps__btn {
  margin: 0 auto;
}

.wehelp {
  background: var(--primary-color);
}
.wehelp__inner {
  padding: 96px 0;
}
.wehelp__title {
  text-align: center;
  color: #fff;
}
.wehelp__box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.wehelp__item {
  width: 50%;
  padding: 40px 34px;
  color: #fff;
}
.wehelp__item-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}
.wehelp__item:nth-child(1) {
  background: var(--dark-color);
  border-radius: 16px 0 0 0;
}
.wehelp__item:nth-child(4) {
  background: var(--second-color);
  color: var(--gray-color);
  border-radius: 0 0 16px 0;
}

.choose {
  background: var(--dark-color);
}
.choose__inner {
  padding-top: 96px;
  color: #fff;
  text-align: center;
}
.choose__title {
  margin-bottom: 40px;
}
.choose__box {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.choose__item {
  flex: 1;
}
.choose__item-img {
  width: 50px;
  margin: 0 auto 16px;
}
.choose__item-text {
  font-size: 22px;
}

.blog .inner {
  padding-top: 96px;
}
.blog__title {
  text-align: center;
  margin-bottom: 64px;
}
.blog__box {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.blog__item {
  border-radius: 12px;
  overflow: hidden;
  flex: 1;
  box-shadow: 0 0 40px 2px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.blog__item:hover {
  scale: 1.01;
}
.blog__item-img {
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog__item-title {
  font-size: 24px;
  font-weight: 600;
  padding: 24px 24px 0;
}
.blog__item-text {
  padding: 8px 24px 24px;
}

.faq__title {
  text-align: center;
}
.faq__box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.faq__item {
  width: calc(50% - 12px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--gray-color);
}
.faq__item-quest {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 6px;
}

.contact__title {
  text-align: center;
  margin-bottom: 40px;
}
.contact__title span {
  font-size: 30px;
  color: var(--second-color);
}
.contact__box {
  display: flex;
  gap: 40px;
}
.contact__form {
  padding: 24px;
  box-shadow: 0 0 40px 4px rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  flex: 1;
}
.contact__map {
  flex: 1;
  border-radius: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 650px;
  width: 100%;
  font-size: 18px;
}
form label {
  display: block;
  width: 100%;
}
form label input,
form label textarea {
  width: 100%;
  border-radius: 12px;
  padding: 16px 24px;
  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__box {
  display: flex;
  gap: 24px;
}
.footer__map {
  width: 500px;
  height: 200px;
}
.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;
}

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

.info {
  padding-top: 99px;
}
.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;
}

.article {
  padding-top: 99px;
}
.article__inner {
  padding: 64px 0;
}
.article__img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 24px;
}
.article__title {
  font-size: 40px;
  margin-bottom: 24px;
}
.article__content h2, .article__content h3 {
  margin-top: 24px;
}
.article__content p {
  font-size: 20px;
  margin-top: 16px;
}

@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__inner {
    padding: 12px 0;
  }
  .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 {
    max-width: 100%;
    padding: 24px !important;
    margin: 0;
    width: 50%;
  }
  .services__item-title {
    font-size: 22px;
  }
  .steps__box {
    flex-direction: column;
  }
  .steps__box::before {
    left: 50%;
    translate: -50% 0;
    top: 0;
    height: 100%;
    width: 5px;
  }
  .choose__box {
    flex-wrap: wrap;
    gap: 24px;
  }
  .choose__item {
    flex: unset;
    width: calc(50% - 12px);
  }
  .blog__box {
    flex-direction: column;
  }
  .contact__box {
    flex-direction: column;
  }
  .contact__form {
    margin: 0 auto;
    max-width: 500px;
    width: 100%;
  }
  .contact__map {
    max-width: 100%;
    min-height: 300px;
  }
  .footer .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }
  .footer__top {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .footer__box {
    flex-direction: column;
    width: 100%;
  }
  .footer__map {
    width: 100%;
  }
  .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;
    align-items: flex-start;
  }
  .header__nav {
    display: none;
  }
  .header__btn {
    display: none;
  }
  .article {
    padding: 0;
  }
  .hero {
    padding: 0;
  }
  .hero__inner {
    padding: 56px 0;
  }
  .hero__title {
    font-size: 40px;
    text-wrap: balance;
    max-width: 100%;
  }
  .hero__info {
    text-align: left;
  }
  .hero__info-btns {
    flex-direction: column;
    gap: 12px;
  }
  .about__img {
    height: 400px;
  }
  .services__box {
    flex-direction: column;
  }
  .services__item {
    width: 100%;
  }
  .choose__title {
    text-align: center !important;
  }
  .choose__item-text {
    font-size: 20px;
  }
  .services .inner {
    padding-top: 56px;
  }
  .services__list li {
    width: 100%;
  }
  .wehelp__box {
    flex-direction: column;
  }
  .wehelp__item {
    width: 100%;
    border-radius: 16px !important;
  }
  .wehelp__item:nth-child(3) {
    order: 1;
  }
  .faq__box {
    flex-direction: column;
  }
  .faq__item {
    width: 100%;
  }
  .contact .inner {
    padding-top: 56px;
  }
  .contact__text {
    text-align: left;
  }
  .thanks__title {
    font-size: 34px;
  }
  .info {
    padding: 0;
  }
  .info__title {
    font-size: 34px;
  }
  .info__content h3 {
    font-size: 24px;
  }
  form button {
    font-size: 16px !important;
  }
  .article__img {
    height: 200px;
  }
  .article__title {
    font-size: 30px;
  }
  .article__content p {
    font-size: 18px;
  }
}/*# sourceMappingURL=style.css.map */