:root {
  --main: #02B3E2;
  --bg: #E1E6EE;
}

body {
  background-color: #fff;
  font-family: "Hind Siliguri", sans-serif;
  font-size: 16px;
  color: #1E1D24;
}

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

.body-fixed {
  overflow: hidden;
}

strong {
  font-weight: 600;
}

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;
  position: relative;
}
@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%;
  color: #2d3740;
}
@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;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 28px;
}

em {
  font-style: italic;
}

.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 .logo img {
  width: 120px;
}
@media (max-width: 768px) {
  .header .logo img {
    width: 110px;
  }
}
.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: 400;
  font-size: 16px;
  color: #1E1D24;
  text-transform: uppercase;
}
.header .btn-menu {
  display: none;
}
@media (max-width: 992px) {
  .header__nav ul {
    gap: 24px;
  }
}
@media (max-width: 992px) {
  .header {
    padding: 20px 0;
  }
  .header__nav {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    right: 0;
    background: var(--bg);
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
    gap: 0;
  }
  .header__nav li {
    border-bottom: 1px solid var(--main);
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__nav li:first-child {
    border-top: 1px solid var(--main);
  }
  .header__nav a {
    font-size: 16px !important;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .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: #1E1D24;
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
  }
  .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;
  }
}

.contact-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;
  color: #fff;
  background-color: var(--main);
  padding: 15px 30px;
  text-transform: uppercase;
  -webkit-transition: 0.23s;
  transition: 0.23s;
  position: relative;
  z-index: 15;
}
.contact-btn:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .contact-btn {
    padding: 10px 15px;
  }
}

.hero {
  background-color: var(--bg);
  padding-top: 50px;
}
.hero__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.hero__image img {
  width: 400px;
}
.hero__content h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 30px;
}
.hero__content p {
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 30px;
}
.hero__list {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  background-color: #fff;
  padding: 20px 10px;
}
.hero .hero-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
}
.hero .hero-item svg {
  min-width: 26px;
  max-width: 26px;
}
.hero .hero-item p {
  margin-bottom: 0;
}
.hero__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding: 30px 0;
}
@media (max-width: 992px) {
  .hero__image img {
    width: 350px;
    margin-left: -110px;
  }
}
@media (max-width: 768px) {
  .hero__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .hero__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .hero__image img {
    margin-left: 0;
  }
  .hero__content h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .hero__content p {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .hero__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
    padding: 30px 0;
  }
}

.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;
  gap: 12px;
  color: #fff;
  background-color: var(--main);
  padding: 20px 30px;
  -webkit-transition: 0.23s;
  transition: 0.23s;
}
.btn:hover {
  opacity: 0.7;
}

.about__txt {
  margin-top: 50px;
  margin-bottom: 50px;
}
.about p {
  font-size: 16px;
  line-height: 140%;
}
.about .p1 {
  font-size: 18px;
}
.about .p2 {
  font-size: 18px;
  max-width: 500px;
  color: var(--main);
  margin-bottom: 20px;
}
.about .about-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.about .about-list__item {
  background-color: var(--bg);
  padding: 40px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about .about-list__item p {
  font-size: 18px;
  text-align: center;
  line-height: 150%;
}
@media (max-width: 992px) {
  .about .about-list {
    gap: 20px;
  }
  .about .about-list__item {
    padding: 30px 20px;
  }
  .about .about-list__item p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .about__txt {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .about p {
    font-size: 16px;
  }
  .about .p1 {
    font-size: 16px;
  }
  .about .p2 {
    font-size: 16px;
  }
  .about .about-list {
    gap: 20px;
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
  }
  .about .about-list__item {
    padding: 30px 20px;
    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;
  }
  .about .about-list__item p {
    font-size: 16px;
    text-align: center;
  }
}

.advantage {
  background-color: var(--main);
}
.advantage .title2 {
  color: #fff;
  text-align: left;
}
.advantage .pretitle {
  color: #fff;
}
.advantage__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 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: #07a1da;
  border: 2px solid #fff;
  padding: 30px 20px;
}
.advantage .advantage-item__ic img {
  width: 120%;
}
.advantage .advantage-item p {
  font-size: 16px;
  line-height: 140%;
  color: #fff;
}
@media (max-width: 992px) {
  .advantage__list {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .advantage__list {
    gap: 20px;
  }
}
@media (max-width: 576px) {
  .advantage__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
}

.geo {
  position: relative;
}
.geo .container {
  position: relative;
  z-index: 3;
}
.geo::after {
  display: block;
  content: "";
  background-image: url(../img/world.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0.3;
}
.geo .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.geo .title2 {
  text-align: center;
}
.geo .pretitle {
  text-align: center;
}
.geo__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  margin-bottom: 50px;
}
.geo__list span {
  font-size: 22px;
  font-weight: 500;
}
.geo .geo_flags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.geo .geo_flags__item img {
  width: 70px;
}
@media (max-width: 768px) {
  .geo__list {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  .geo__list span {
    font-size: 18px;
    line-height: 140%;
    text-align: center;
  }
  .geo .geo_flags {
    gap: 10px 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .geo .geo_flags__item img {
    width: 50px;
  }
}

.steps {
  background-color: var(--bg);
}
.steps .top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.steps .title2 {
  text-align: center;
}
.steps__box {
  display: -ms-grid;
  display: grid;
  gap: 60px;
  margin-top: 50px;
}
.steps__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.steps__row::before {
  position: absolute;
  top: 35px;
  width: 74%;
  height: 4px;
  content: "";
  background-color: var(--main);
  opacity: 0.4;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.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;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.steps .steps-item__num {
  background-color: var(--main);
  width: 70px;
  height: 70px;
  border-radius: 100px;
  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-size: 30px;
  font-weight: 600;
  color: #fff;
}
.steps .steps-item__content {
  max-width: 250px;
}
.steps .steps-item__content p {
  text-align: center;
  font-size: 18px;
  line-height: 140%;
}
@media (max-width: 576px) {
  .steps__row {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  .steps__row::before {
    display: none;
  }
  .steps__box {
    gap: 20px;
  }
  .steps .steps-item {
    gap: 20px;
  }
  .steps .steps-item__num {
    width: 60px;
    height: 60px;
    font-size: 26px;
  }
  .steps .steps-item__content {
    max-width: 350px;
  }
  .steps .steps-item__content p {
    font-size: 16px;
  }
}

.pz {
  background-image: url(../img/pzpz.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.pz::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--main);
  opacity: 0.85;
}
.pz .container {
  position: relative;
  z-index: 2;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: rgba(19, 19, 19, 0.144);
}
.pz .title2 {
  color: #fff;
}
.pz__box {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
.pz__box p {
  font-size: 18px;
  line-height: 140%;
  color: #fff;
}
.pz__box ul {
  list-style-type: disc;
  padding-left: 30px;
  color: #fff;
  display: -ms-grid;
  display: grid;
  gap: 10px;
}
@media (max-width: 768px) {
  .pz__box {
    gap: 30px;
  }
  .pz__box p {
    font-size: 16px;
  }
  .pz__box ul {
    padding-left: 30px;
    gap: 10px;
  }
}

.principl__box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 30px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.principl .principl-item {
  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;
  min-height: 140px;
  background-color: var(--bg);
}
.principl .principl-item::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 50px;
  content: "";
  background-color: var(--main);
}
.principl .principl-item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 4px;
  content: "";
  background-color: var(--main);
}
.principl .principl-item__box::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 4px;
  height: 50px;
  content: "";
  background-color: var(--main);
}
.principl .principl-item__box::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 4px;
  content: "";
  background-color: var(--main);
}
.principl .principl-item p {
  text-align: center;
  font-size: 18px;
}
@media (max-width: 576px) {
  .principl__box {
    -ms-grid-columns: 1fr;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.faq {
  background-color: var(--main);
}
.faq .title2 {
  color: #fff;
  text-align: left;
}
.faq__list {
  display: -ms-grid;
  display: grid;
  gap: 20px;
  margin-top: 50px;
}
.faq .faq-item {
  background-color: #fff;
  padding: 30px;
  cursor: pointer;
}
.faq .faq-item__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faq .faq-item__top h5 {
  font-weight: 600;
  font-size: 18px;
  line-height: 160%;
  color: #2D3740;
}
.faq .faq-item__arr {
  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;
  min-width: 44px;
  max-width: 44px;
  min-height: 44px;
  max-height: 44px;
  margin-left: 15px;
}
.faq .faq-item__arr img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -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: #2D3740;
}
.faq .faq-item.active .faq-item__arr img {
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}
@media (max-width: 768px) {
  .faq {
    margin-bottom: 30px;
  }
  .faq .faq-item {
    padding: 20px 15px;
  }
  .faq .faq-item__top {
    padding-right: 0;
  }
  .faq .faq-item__top h5 {
    font-size: 16px;
  }
  .faq .faq-item__arr {
    min-width: 34px;
    max-width: 34px;
    min-height: 34px;
    max-height: 34px;
  }
  .faq .faq-item__content {
    padding-top: 20px;
    padding-left: 20px;
  }
  .faq .faq-item__content p {
    font-size: 14px;
  }
}

.footer {
  padding: 50px 0;
}
.footer__top {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
.footer__logo img {
  width: 140px;
}
.footer p {
  font-size: 18px;
  line-height: 150%;
}
.footer .cprt {
  font-size: 14px;
  margin-top: 30px;
}
.footer .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--main);
  font-size: 20px;
}