body {
  background-color: #fff;
  font-family: "Geologica", sans-serif;
  font-size: 16px;
}

* {
  background-repeat: no-repeat;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.wrapper {
  overflow: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .container {
    padding: 0 15px;
  }
}

.header {
  padding: 32px 0;
}
.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header .logo {
  position: relative;
  z-index: 10;
}
.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.header__nav li a {
  font-weight: 700;
  font-size: 14px;
  color: #2d3740;
}
.header .btn-menu {
  display: none;
}
@media (max-width: 992px) {
  .header__nav ul {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
  .header__nav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    right: 0;
    background: #fdc90e;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    height: 100vh;
    width: 100vw;
    padding-top: 100px;
  }
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 35px;
  }
  .header__nav.active {
    opacity: 1;
    visibility: visible;
  }
  .header .btn-menu {
    width: 30px;
    height: 40px;
    position: relative;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 10;
  }
  .header .btn-menu span {
    position: absolute;
    height: 2px;
    width: 100%;
    background: #000;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    border-radius: 1px;
  }
  .header .btn-menu span:nth-child(1) {
    top: 10px;
  }
  .header .btn-menu span:nth-child(2) {
    top: 19px;
  }
  .header .btn-menu span:nth-child(3) {
    top: 28px;
  }
  .header .btn-menu.active span:nth-child(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 19px;
  }
  .header .btn-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .header .btn-menu.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 19px;
  }
}

strong {
  font-weight: 600;
}

.btn-primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  color: #181d27;
  padding: 20px 32px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  background: #fdc90e;
}
.btn-primary:hover {
  background: #ffd53f;
}
@media (max-width: 576px) {
  .btn-primary {
    min-height: 60px;
  }
  .btn-primary svg {
    width: 20px;
    height: 20px;
  }
}

.hero {
  background: #fdc90e;
  padding: 50px 0;
}
.hero .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}
.hero__image {
  position: absolute;
  left: 0px;
  bottom: -50px;
}
.hero__image img {
  width: 100%;
  max-width: 350px;
}
@media (max-width: 992px) {
  .hero__image {
    left: -100px;
  }
}
.hero__box {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 3;
}
.hero__title {
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  color: #181d27;
  margin-bottom: 40px;
}
.hero__content {
  padding: 20px 30px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.25);
  background: #fff;
}
.hero p {
  font-weight: 400;
  font-size: 16px;
  line-height: 200%;
  color: #181d27;
}
.hero .hero-list {
  margin-top: 35px;
  display: -ms-grid;
  display: grid;
  gap: 30px;
  margin-bottom: 50px;
}
.hero .hero-list__item {
  background-image: url(../img/icons/iccheckb.svg);
  background-repeat: no-repeat;
  background-position: left top 5px;
  padding-left: 32px;
}
.hero__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .hero__image {
    left: 0;
    right: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero__image img {
    max-width: 250px;
  }
  .hero__box {
    padding-bottom: 300px;
    max-width: 100%;
  }
  .hero__title {
    font-size: 26px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .hero__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .hero__content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

section {
  padding: 100px 0px;
}
@media (max-width: 992px) {
  section {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

.title2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  color: #2d3740;
  text-align: center;
}
@media (max-width: 768px) {
  .title2 {
    font-size: 28px;
  }
}

.title3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 125%;
  color: #181d27;
}
@media (max-width: 768px) {
  .title3 {
    font-size: 24px;
  }
}

.pretitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 178%;
  text-align: center;
  color: #2d3740;
  max-width: 650px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .pretitle {
    font-size: 16px;
  }
}

.top {
  margin-bottom: 30px;
  display: -ms-grid;
  display: grid;
  gap: 16px;
}

.about__box {
  background: #fdc90e;
  padding: 42px 64px;
  display: -ms-grid;
  display: grid;
  gap: 50px;
}
.about__top {
  display: -ms-grid;
  display: grid;
  gap: 60px;
}
.about__top p {
  font-weight: 500;
  font-size: 16px;
  line-height: 150%;
  color: #535862;
  max-width: 500px;
}
.about__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 34px 1fr 34px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}
.about .about-item {
  padding: 15px;
  gap: 16px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.about .about-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 171%;
  color: #181d27;
}
@media (max-width: 992px) {
  .about__box {
    padding: 32px 24px;
    gap: 30px;
  }
  .about__top {
    gap: 30px;
  }
  .about__list {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .about__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .about__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .about .about-item p {
    font-size: 14px;
  }
}

.advantage .top {
  margin-bottom: 100px;
}
.advantage__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 75px 24px;
}
.advantage .advantage-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 30px;
  padding: 45px;
  background: #f9fafb;
}
.advantage .advantage-item__icon {
  margin-top: -80px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background: #fdc90e;
  border-radius: 100px;
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.advantage .advantage-item p {
  font-weight: 600;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #000;
}
.advantage .advantage-item span {
  font-weight: 400;
}
@media (max-width: 992px) {
  .advantage__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .advantage .advantage-item p {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .advantage__list {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
}

.geo {
  overflow: hidden;
}
.geo__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.geo__box::after {
  display: block;
  content: "";
  width: 500px;
  height: 500px;
  right: 0;
  position: absolute;
  background-image: url(../img/map.svg);
  background-repeat: no-repeat;
}
.geo__list {
  width: 100%;
  max-width: 380px;
  display: -ms-grid;
  display: grid;
  gap: 22px;
  position: relative;
  z-index: 2;
}
.geo .geo-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  background: #fdc90e;
  padding: 18px 22px;
}
.geo .geo-item img {
  min-width: 32px;
  max-width: 32px;
  height: 32px;
}
.geo .geo-item span {
  font-weight: 500;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: #000;
}
@media (max-width: 992px) {
  .geo__box::after {
    right: -150px;
  }
}
@media (max-width: 768px) {
  .geo__box {
    margin-top: 30px;
  }
  .geo .geo-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 18px;
    background: #fdc90e;
    padding: 18px 22px;
  }
  .geo .geo-item img {
    min-width: 28px;
    max-width: 28px;
    height: 28px;
  }
  .geo .geo-item span {
    font-size: 16px;
  }
}

.steps__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 24px;
}
.steps .top {
  margin-bottom: 100px;
}
.steps .steps-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f9fafb;
  padding: 55px 45px;
  gap: 30px;
}
.steps .steps-item__num {
  width: 70px;
  height: 70px;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  background-color: #fdc90e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 24px;
  line-height: 83%;
  text-align: center;
  color: #000;
  border-radius: 100px;
  margin-top: -90px;
}
.steps .steps-item p {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  text-align: center;
  color: #000;
}
@media (max-width: 992px) {
  .steps__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  .steps .steps-item {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
  }
}
@media (max-width: 576px) {
  .steps__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

em {
  font-style: italic;
}

.ourpz {
  padding-top: 50px;
  overflow: hidden;
}

.ourpz-box {
  background: #fdc90e;
  padding: 30px 45px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ourpz-box p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #2d3740;
}
.ourpz-box__content {
  width: 100%;
  position: relative;
  z-index: 2;
}
.ourpz-box__top {
  margin-bottom: 20px;
}
.ourpz-box__top img {
  margin-bottom: 32px;
}
.ourpz-box__top .title2 {
  margin-bottom: 16px;
  text-align: left;
}
.ourpz-box ul {
  list-style-type: disc;
  padding-left: 30px;
  margin-bottom: 18px;
}
.ourpz-box__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 25px;
}
.ourpz-box__bottom a img {
  width: 140px;
}
@media (max-width: 992px) {
  .ourpz-box::after {
    right: -180px;
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 768px) {
  .ourpz-box {
    padding-left: 20px;
    padding-right: 20px;
  }
  .ourpz-box__content {
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .ourpz-box__content {
    max-width: 100%;
  }
  .ourpz-box__bottom {
    gap: 15px;
  }
  .ourpz-box__bottom a img {
    width: 110px;
  }
}

.principles__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.principles .principles-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.principles .principles-item__num {
  font-weight: 700;
  font-size: 24px;
  line-height: 83%;
  text-align: center;
  color: #fff;
  -webkit-box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  border-radius: 100px;
  width: 100px;
  height: 100px;
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.principles .principles-item__num::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  background-image: url(../img/icons/ic1.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.principles .principles-item__num span {
  font-weight: 600;
  font-size: 24px;
  line-height: 83%;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.principles .principles-item p {
  font-weight: 600;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: #000;
}
@media (max-width: 992px) {
  .principles .principles-item__num {
    width: 70px;
    height: 70px;
  }
  .principles .principles-item__num::after {
    width: 36px;
    height: 36px;
  }
  .principles .principles-item__num span {
    font-size: 20px;
  }
  .principles .principles-item p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .principles__list {
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 10px;
  }
  .principles .principles-item__num {
    width: 70px;
    height: 70px;
  }
  .principles .principles-item__num::after {
    width: 36px;
    height: 36px;
  }
  .principles .principles-item__num span {
    font-size: 20px;
  }
  .principles .principles-item p {
    font-size: 14px;
  }
}

.faq .faq-item {
  border-bottom: 1px solid rgba(36, 44, 51, 0.212);
  padding: 38px 0;
  cursor: pointer;
}
.faq .faq-item__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 50px;
}
.faq .faq-item__top h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 160%;
  color: #242c33;
}
.faq .faq-item__top::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../img/icons/arrrr.svg);
  background-size: contain;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-position: center;
  top: 10px;
  right: 0;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.faq .faq-item__content {
  display: none;
  padding-top: 30px;
  padding-left: 30px;
}
.faq .faq-item__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 171%;
  color: #242c33;
}
.faq .faq-item.active .faq-item__top::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media (max-width: 768px) {
  .faq .faq-item {
    padding: 28px 0;
  }
  .faq .faq-item__top {
    padding-right: 30px;
  }
  .faq .faq-item__top h5 {
    font-size: 16px;
  }
  .faq .faq-item__top::after {
    background-image: url(../img/icons/arrrr.svg);
    width: 26px;
    height: 26px;
    top: 2px;
  }
  .faq .faq-item__content {
    padding-top: 20px;
    padding-left: 20px;
  }
  .faq .faq-item__content p {
    font-size: 14px;
  }
}

.footer {
  background: #181d27;
  color: #fff;
}
.footer .foo-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer p {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}
.footer a {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
}
.footer a:hover {
  text-decoration: underline;
}
.footer ul {
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
.footer__main {
  padding: 100px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 28px 0;
  border-top: 1px solid #fff;
}
.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.footer__links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.footer__links a::before {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  content: "";
  background-color: #fff;
  left: -15px;
}
.footer .teltel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .footer__main {
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .footer__main {
    padding: 60px 0;
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .footer__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 10px;
  }
  .footer__links a::before {
    display: none;
  }
}