body {
  background-color: #1A3145;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #fff;
}

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

.wrapper {
  overflow: hidden;
}

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

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

em {
  font-style: italic;
}

strong {
  font-weight: 700;
}

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

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

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

.top {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.top .title2 {
  text-align: left;
}
.top p {
  text-align: left;
  margin-left: 0;
}

.header {
  padding: 42px 0;
  border-radius: 0 0 25px 25px;
  background-color: #192734;
}
.header__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  -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: #fff;
}
.header__nav li a:hover {
  text-transform: uppercase;
}
.header .btn-menu {
  display: none;
}
@media (max-width: 992px) {
  .header__nav ul {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
  .header__box {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header__nav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    right: 0;
    background: #192734;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    height: 100vh;
    width: 100%;
    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: #fff;
    -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;
  }
}

.hero {
  margin-top: 100px;
  padding-bottom: 30px;
}
.hero__box {
  gap: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #192734;
  border-radius: clamp(25px, 4.667vw, 50px);
  overflow: hidden;
}
.hero__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 40%;
  max-width: 40%;
  min-height: 100%;
  background-image: url(../img/maini.jpg);
  background-position: center;
}
.hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero__main {
  padding-top: 60px;
  padding-bottom: 50px;
  height: 100%;
  background-color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: clamp(25px, 4.667vw, 50px);
}
.hero__title {
  font-size: 35px;
  font-weight: 700;
  color: #192734;
  margin-bottom: 30px;
}
.hero__pretitle {
  font-size: 20px;
  font-weight: 600;
  color: #192734;
  margin-bottom: 30px;
  line-height: 125%;
}
.hero .hero-list {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.hero .hero-list__item {
  color: #192734;
  padding-left: 25px;
  position: relative;
}
.hero .hero-list__item p {
  font-size: 18px;
  line-height: 130%;
}
.hero .hero-list__item::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 5px;
  top: 9px;
  width: 12px;
  height: 4px;
  background-color: #408CEF;
  content: "";
}
.hero__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 50px;
}
@media (max-width: 1200px) {
  .hero__image {
    min-width: 40%;
    max-width: 40%;
  }
}
@media (max-width: 992px) {
  .hero {
    padding-top: 30px;
    padding-bottom: 0;
    margin-top: 20px;
  }
  .hero__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
    padding-top: 20px;
  }
  .hero__image {
    height: 400px;
    min-width: 100%;
    max-width: 100%;
  }
  .hero__image img {
    width: 100%;
  }
  .hero__main {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .hero__image {
    height: 300px;
  }
  .hero__title {
    font-size: 28px;
  }
  .hero__pretitle {
    font-size: 18px;
  }
  .hero__main {
    padding-left: 15px;
    padding-right: 15px;
  }
  .hero .hero-list {
    display: -ms-grid;
    display: grid;
    gap: 24px;
  }
  .hero .hero-list__item {
    padding-left: 20px;
  }
  .hero .hero-list__item p {
    font-size: 16px;
  }
  .hero .hero-list__item::before {
    left: 6px;
    top: 6px;
    width: 6px;
    height: 6px;
  }
  .hero__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  .hero__nav a {
    width: 100%;
    font-size: 16px;
  }
}

.btn {
  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;
  padding: 20px 30px;
  background-color: #408CEF;
  color: #fff;
  font-weight: 600;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  border-radius: 15px;
  gap: 15px;
  min-width: 300px;
}
.btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .btn {
    padding: 20px 15px;
    width: 100%;
    min-width: 200px;
  }
}

.about {
  padding-bottom: 0;
}
.about .title2, .about .pretitle {
  text-align: center;
  margin: 0 auto;
}
.about__box {
  padding-bottom: 50px;
}
.about__box .container {
  background-color: #192734;
  padding-top: 80px;
  padding-bottom: 80px;
  border-radius: clamp(25px, 4.667vw, 50px);
}
.about__box .title3, .about__box p {
  color: #fff;
  text-align: center;
}
.about__box .title3 {
  margin-bottom: 20px;
}
.about__box span {
  font-size: 18px;
  line-height: 140%;
}
.about__box p {
  line-height: 140%;
}
.about__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 50px 1fr 50px 1fr;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 50px;
  gap: 50px;
}
.about .about-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 30px;
  color: #192734;
}
.about .about-item svg {
  width: 34px;
  height: 34px;
}
.about .about-item span {
  margin-top: 30px;
}
@media (max-width: 992px) {
  .about__list {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .about__list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .about .about-item span {
    margin-top: 20px;
  }
}

.advantage .top {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.advantage .top .title2, .advantage .top .pretitle {
  text-align: center;
  margin: 0 auto;
}
.advantage__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr clamp(30px, 6.667vw, 70px) 1fr clamp(30px, 6.667vw, 70px) 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 6.667vw, 70px);
  margin-top: 70px;
  background-color: #192734;
  border-radius: clamp(25px, 4.667vw, 50px);
  padding: 50px 30px;
}
.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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  background-color: #26445e;
  padding: 20px;
  border-radius: 25px;
}
.advantage .advantage-item__ic {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.advantage .advantage-item span {
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}
@media (max-width: 992px) {
  .advantage__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .advantage__list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 30px;
  }
  .advantage .advantage-item img {
    width: 50px;
  }
  .advantage .advantage-item span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    max-width: 270px;
  }
}

.geo {
  background: #192734;
}
.geo__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.geo__main {
  width: 60%;
  padding-left: 100px;
}
.geo__map {
  width: 40%;
}
.geo__map img {
  width: 100%;
}
.geo .title2 {
  color: #fff;
}
.geo .pretitle {
  color: #fff;
}
.geo__list {
  margin-top: 70px;
}
.geo__list .flags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
.geo__list .flags img {
  width: 40px;
}
.geo__list span {
  font-size: 32px;
  font-weight: 600;
  color: #fff;
  line-height: 140%;
  display: inline-block;
  max-width: 500px;
}
@media (max-width: 992px) {
  .geo__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .geo__main {
    width: 100%;
    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;
    padding-left: 0;
  }
  .geo__main .title2 {
    text-align: center;
  }
  .geo__main .pretitle {
    text-align: center;
    margin: 0 auto;
  }
  .geo__list {
    margin-top: 30px;
  }
  .geo__list .flags {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
  }
  .geo__list .flags img {
    width: 50px;
  }
  .geo__list span {
    font-size: 18px;
    max-width: 500px;
  }
  .geo__map {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .geo__map img {
    max-width: 400px;
  }
}
@media (max-width: 576px) {
  .geo .flags {
    gap: 15px;
  }
  .geo .flags img {
    width: 40px;
  }
}

.steps__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  background-color: #192734;
  padding: 50px 30px;
  border-radius: clamp(25px, 4.667vw, 50px);
}
.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;
  background-color: #26445E;
  padding: 30px;
  gap: 30px;
  border-radius: 25px;
}
.steps .steps-item span {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
}
.steps .steps-item p {
  color: #fff;
  line-height: 140%;
  font-size: 18px;
}
@media (max-width: 992px) {
  .steps__list {
    gap: 30px;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .steps__list {
    gap: 30px;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
  }
  .steps .steps-item {
    padding: 30px 20px;
    gap: 30px;
  }
  .steps .steps-item span {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    font-size: 30px;
  }
  .steps .steps-item p {
    font-size: 18px;
  }
}

.ourpz {
  color: #fff;
}
.ourpz .container {
  background-color: #192734;
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: clamp(25px, 4.667vw, 50px);
}
.ourpz .title2 {
  color: #fff;
}
.ourpz em {
  font-size: 20px;
  font-style: normal;
  line-height: 140%;
}
.ourpz ul {
  margin-top: 50px;
  margin-bottom: 50px;
  display: -ms-grid;
  display: grid;
  gap: 20px;
  background-color: #223D55;
  border-radius: 25px;
  padding: 30px 20px;
}
.ourpz ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ourpz ul li svg {
  width: 32px;
  height: 32px;
}
.ourpz ul li p {
  font-size: 16px;
}
.ourpz p {
  font-size: 16px;
  line-height: 150%;
}
@media (max-width: 768px) {
  .ourpz em {
    font-size: 18px;
  }
  .ourpz ul {
    margin-top: 40px;
    margin-bottom: 40px;
    gap: 20px;
  }
  .ourpz ul li {
    gap: 15px;
  }
  .ourpz ul li svg {
    width: 28px;
    height: 28px;
  }
  .ourpz ul li p {
    font-size: 18px;
  }
  .ourpz p {
    font-size: 16px;
  }
}

.principles {
  background-color: #192734;
}
.principles__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.principles .principles-item {
  padding: 30px;
  background: #223D55;
  border-radius: 25px;
  position: relative;
  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: 20px;
}
.principles .principles-item img {
  height: 70px;
}
.principles .principles-item p {
  font-size: 24px;
  line-height: 120%;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
@media (max-width: 768px) {
  .principles__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 20px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .principles .principles-item {
    padding: 30px 20px 30px 20px;
    gap: 20px;
  }
  .principles .principles-item img {
    width: 50px;
  }
  .principles .principles-item p {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .principles__list {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px;
  }
  .principles .principles-item p {
    font-size: 18px;
  }
}

.faq__box {
  background-color: #223D55;
  padding: 50px 30px;
  border-radius: clamp(25px, 4.667vw, 50px);
}
.faq .faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.212);
  padding: 38px 30px;
  cursor: pointer;
}
.faq .faq-item:last-child {
  border: none;
}
.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: #fff;
}
.faq .faq-item__top::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../img/icons/ardown.svg);
  background-size: contain;
  width: 26px;
  height: 26px;
  background-repeat: no-repeat;
  background-position: center;
  top: -3px;
  right: 0;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.faq .faq-item__content {
  display: none;
  padding: 30px;
  margin-top: 30px;
  background-color: #1A3145;
  border-radius: 15px;
}
.faq .faq-item__content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 171%;
  color: #fff;
}
.faq .faq-item.active .faq-item__top::after {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
@media (max-width: 768px) {
  .faq__box {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .faq .faq-item {
    padding: 28px 15px;
  }
  .faq .faq-item__top {
    padding-right: 30px;
  }
  .faq .faq-item__top h5 {
    font-size: 16px;
  }
  .faq .faq-item__top::after {
    width: 22px;
    height: 22px;
    top: 2px;
  }
  .faq .faq-item__content {
    padding-top: 20px;
    padding-left: 20px;
  }
  .faq .faq-item__content p {
    font-size: 14px;
  }
}

.footer {
  background: #192734;
  color: #fff;
  padding-top: 50px;
}
.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 .container_fm {
  background-color: #26445E;
  border-radius: clamp(25px, 4.667vw, 50px);
}
.footer__main {
  padding: 100px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}
.footer .footer-bottom {
  padding: 28px 0;
}
.footer .footer-bottom p, .footer .footer-bottom a {
  color: #fff;
  text-align: left;
}
.footer .footer-bottom__section {
  gap: 20px;
}
.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 .footer-bottom {
    gap: 30px;
  }
  .footer .footer__links {
    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;
    margin-bottom: 40px;
  }
}
@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: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .footer__links a::before {
    display: none;
  }
}