* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}
@font-face {
  font-family: "Helvetica";
  src: url("./assets/fonts/Helvetica.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
body {
  background: #fff;
}
@font-face {
  font-family: "Helvetica";
  src: url("./assets/fonts/helvetica-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("./assets/fonts/Helvetica-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #000;
  z-index: 10;
  .navbar-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 26px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    .nav-lang {
      display: flex;
      align-items: center;
      position: relative;
      .current-lang {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
        color: #fff;
        border: none;
        background: transparent;
        pointer-events: none;
      }
      .other-langs {
        display: flex;
        align-items: center;
        gap: 16px;
        position: absolute;
        left: 28px;
        width: 44px;
        .lang-item {
          font-family: Helvetica;
          font-weight: 400;
          font-size: 10px;
          line-height: 12px;
          color: #898989;
        }
      }
    }
    .nav-logo {
      width: 152px;
      min-width: 152px;
      height: 28px;
      position: relative;
      .desktop-logo {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(1);
        position: absolute;
        width: 152px;
        min-width: 152px;
        transition: 0.3s ease-in-out;
      }
      .mobile-logo {
        top: 50%;
        left: 54%;
        transform: translate(-50%, -50%) scale(0);
        position: absolute;
        width: 35px;
        min-width: 35px;
        transition: 0.3s ease-in-out;
      }
    }
    .hamburger {
      background: transparent;
      border: none;
      min-width: 28px;
      width: 28px;
      img {
        width: 100%;
      }
    }
  }
}
button {
  cursor: pointer;
}
.menu {
  position: fixed;
  z-index: 12;
  left: 0;
  top: 0;
  background: #000;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  .closeMenu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    width: 32px;
    height: 32px;
    min-width: 32px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    img {
      width: 100%;
      height: 100%;
    }
    &:hover {
      transform: rotate(180deg);
    }
  }
  .menu-inner {
    width: 100%;
    height: 100%;
    padding: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    .menu-logo {
      width: 214px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
    .menu-links {
      display: flex;
      align-items: center;
      flex-direction: column;
      width: 100%;
      gap: 20px;
      .link-item {
        font-family: "Playfair Display";
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        letter-spacing: 4px;
        text-align: center;
        text-transform: uppercase;
        color: #898989;
        transition: 0.3s ease-in-out;
        &:hover {
          color: #fff;
        }
      }
    }
    .socials {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      gap: 32px;
      .social-item {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 20px;
        max-height: 20px;
        filter: brightness(100) invert(1);
        opacity: 0.4;
        transition: 0.3s ease-in-out;
        img {
          max-width: 100%;
          max-height: 20px;
        }
        &:hover {
          opacity: 1;
        }
      }
    }
  }
}
.menu.showed {
  display: flex;
}
.scrolled {
  .navbar-container {
    .nav-logo {
      .desktop-logo {
        transform: translate(-50%, -50%) scale(0);
      }
      .mobile-logo {
        transform: translate(-50%, -50%) scale(1);
      }
    }
    .hamburger {
      background: transparent;
      border: none;
      min-width: 28px;
      width: 28px;
      img {
        width: 100%;
      }
    }
  }
}
.hero-video {
  width: 100%;
  margin-top: 80px;
  height: calc(100svh - 80px);
  position: relative;
  .coverImg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0%;
    z-index: 1;
  }
  .playIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 71px;
    height: 71px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    background: transparent;
    border: navajowhite;
    img {
      width: 100%;
      height: 100%;
    }
  }
  video {
    width: 100%;
    height: 100%;
  }
}
.about-section {
  width: 100%;
  height: 100vh;
  background: #000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  .about-content {
    max-width: 720px;
    padding: 100px;
    margin-left: auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    .section-title {
      font-family: Helvetica;
      font-weight: 400;
      font-size: 10px;
      line-height: 12px;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 12px;
    }
    .about-title {
      margin-top: auto;
      font-family: "Playfair Display";
      font-weight: 400;
      font-size: 45px;
      line-height: 60px;
      color: #fff;
      max-width: 390px;
    }
    .description {
      width: 100%;
      max-width: 390px;
      margin-top: 40px;
      p {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 13px;
        line-height: 20px;
        color: #fff;
      }
    }
  }
  .about-image {
    width: 100%;
    height: 100%;
    img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
    }
  }
}
.service-section {
  width: 100%;
  max-width: 1440px;
  padding: 100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  .section-title {
    font-family: Helvetica;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #000;
    text-align: center;
  }
  .services {
    margin-top: 100px;
    width: 100%;
    display: grid;
    justify-content: space-between;
    align-items: start;
    grid-template-columns: repeat(auto-fill, minmax(0, 270px));
    gap: 60px;
    .service-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      .icon {
        max-width: 90px;
        height: 90px;
        img {
          max-width: 100%;
          max-height: 100%;
        }
      }
      .service-title {
        font-family: "Playfair Display";
        font-weight: 400;
        font-size: 35px;
        line-height: 40px;
        text-align: center;
        color: #000;
      }
      .description {
        margin-top: 20px;
        width: 100%;
        p {
          font-family: Helvetica;
          font-weight: 400;
          font-size: 13px;
          line-height: 20px;
          text-align: center;
          color: #000;
        }
      }
    }
  }
}
.mission-section {
  width: 100%;
  background: #000;
  .mission-container {
    width: 100%;
    max-width: 1440px;
    padding: 100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 100svh;
    gap: 20px;
    .section-title {
      font-family: Helvetica;
      font-weight: 400;
      font-size: 10px;
      line-height: 12px;
      text-transform: uppercase;
      color: #fff;
      text-align: center;
    }
    .mission-description {
      width: 100%;
      p {
        font-family: "Playfair Display";
        font-weight: 400;
        font-size: 45px;
        line-height: 60px;
        text-align: center;
        color: #fff;
      }
    }
    .bantik {
      width: 46px;
      min-width: 46px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
        height: 100%;
      }
    }
  }
}
.trusted-section {
  width: 100%;
  max-width: 1440px;
  padding: 100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  .section-title {
    font-family: Helvetica;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #000;
    text-align: center;
  }
  .trusted-logos {
    margin-top: 100px;
    display: grid;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: repeat(auto-fill, minmax(0, 170px));
    gap: 60px 20px;
    .trusted-logo {
      max-width: 170px;
      height: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        max-width: 100%;
      }
    }
  }
}
.benefits {
  width: 100%;
  background: #c4c4c4;
  position: relative;
  .section-title {
    font-family: Helvetica;
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    z-index: 2;
  }
  .benefits-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    .benefits-slide {
      width: 100%;
      .benefit-item {
        width: 100%;
        min-height: 100svh;
        display: flex;
        align-items: end;
        justify-content: center;
        .benefit-item-content {
          max-width: 320px;
          width: 100%;
          padding: 150px 20px 190px;
          display: flex;
          flex-direction: column;
          align-items: center;
          .benefit-title {
            font-family: "Playfair Display";
            font-weight: 400;
            font-size: 35px;
            line-height: 40px;
            text-align: center;
            color: #000;
          }
          .benefit-desc {
            margin-top: 40px;
            font-family: Helvetica;
            font-weight: 400;
            font-size: 13px;
            line-height: 20px;
            text-align: center;
            color: #000;
          }
        }
      }
      .swiper-slide-next {
        background: #000;
        .benefit-item-content {
          .benefit-title {
            color: #fff;
          }
          .benefit-desc {
            color: #fff;
          }
        }
      }
      .swiper-pagination {
        width: max-content;
        left: 50%;
        transform: translateX(-50%);
        bottom: 100px;
        display: flex;
        align-items: center;
        gap: 10px;
        .swiper-pagination-bullet {
          margin: 0;
          opacity: 1;
          background: #898989;
          width: 12px;
          height: 12px;
        }
        .swiper-pagination-bullet-active {
          background: #fff;
        }
      }
    }
  }
}
.content-two {
  width: 100%;
  min-height: 100svh;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  .content-left {
    width: 100%;
    height: 100%;
    position: relative;
    .contentBgImage {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      filter: brightness(60%);
    }
    .content-inner {
      max-width: 720px;
      padding: 100px;
      margin-left: auto;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      .section-title {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 12px;
      }
      .content-title {
        margin-top: auto;
        font-family: "Playfair Display";
        font-weight: 400;
        font-size: 45px;
        line-height: 60px;
        color: #fff;
        max-width: 400px;
      }
      .content-description {
        width: 100%;
        max-width: 389px;
        margin-top: 40px;
        p {
          font-family: Helvetica;
          font-weight: 400;
          font-size: 13px;
          line-height: 20px;
          color: #fff;
        }
      }
      .content-link {
        margin-top: 60px;
        font-family: Helvetica;
        width: 140px;
        font-weight: 700;
        font-size: 10px;
        padding: 10px;
        line-height: 14px;
        text-align: center;
        text-transform: uppercase;
        background: #fff;
        color: #000;
        border-radius: 8px;
        letter-spacing: 1.2px;
      }
    }
  }
  .content-right {
    width: 100%;
    height: 100%;
    position: relative;
    .contentBgImage {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      filter: brightness(60%);
    }
    .content-inner {
      max-width: 720px;
      padding: 100px;
      margin-right: auto;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      .section-title {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 10px;
        line-height: 12px;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 12px;
      }
      .content-title {
        margin-top: auto;
        font-family: "Playfair Display";
        font-weight: 400;
        font-size: 45px;
        line-height: 60px;
        color: #fff;
        max-width: 400px;
      }
      .content-description {
        width: 100%;
        max-width: 389px;
        margin-top: 40px;
        p {
          font-family: Helvetica;
          font-weight: 400;
          font-size: 13px;
          line-height: 20px;
          color: #fff;
        }
      }
      .content-link {
        margin-top: 60px;
        font-family: Helvetica;
        width: 140px;
        font-weight: 700;
        font-size: 10px;
        padding: 10px;
        line-height: 14px;
        text-align: center;
        text-transform: uppercase;
        background: #fff;
        color: #000;
        border-radius: 8px;
        letter-spacing: 1.2px;
      }
    }
  }
}
.content-one {
  width: 100%;
  min-height: 100svh;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  .contentBgImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    filter: brightness(60%);
  }
  .content-inner {
    max-width: 1440px;
    padding: 100px;
    width: 100%;
    min-height: 100svh;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    .section-title {
      font-family: Helvetica;
      font-weight: 400;
      font-size: 10px;
      line-height: 12px;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 12px;
    }
    .content-title {
      margin-top: auto;
      font-family: "Playfair Display";
      font-weight: 400;
      font-size: 45px;
      line-height: 60px;
      color: #fff;
      text-align: center;
      max-width: 400px;
    }
    .content-description {
      width: 100%;
      max-width: 389px;
      margin-top: 40px;
      p {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 13px;
        line-height: 20px;
        color: #fff;
        text-align: center;
      }
    }
    .content-link {
      margin-top: 60px;
      font-family: Helvetica;
      width: 140px;
      font-weight: 700;
      font-size: 10px;
      padding: 10px;
      line-height: 14px;
      text-align: center;
      text-transform: uppercase;
      background: #fff;
      color: #000;
      border-radius: 8px;
      letter-spacing: 1.2px;
    }
  }
}
.contact {
  width: 100%;
  background: #000;
  .contact-container {
    width: 100%;
    padding: 100px;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    .contact-title {
      font-family: "Playfair Display";
      font-weight: 400;
      font-size: 45px;
      line-height: 60px;
      color: #fff;
      text-align: center;
      max-width: 400px;
    }
    .contact-description {
      width: 100%;
      max-width: 389px;
      margin-top: 40px;
      p {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 13px;
        line-height: 20px;
        color: #fff;
        text-align: center;
      }
    }
    form {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
      max-width: 590px;
      width: 100%;
      margin-top: 60px;
      select,
      input {
        width: 100%;
        border: none;
        border-bottom: 1px solid #fff;
        border-radius: 0;
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        color: #fff;
        background: transparent;
        padding-bottom: 10px;
        outline: none;
        font-family: Helvetica;
        &::placeholder {
          color: #fff;
        }
      }
      .iti {
        width: 100%;
        .iti__selected-flag {
          padding-bottom: 10px;
          .iti__selected-dial-code {
            color: #fff;
            font-family: Helvetica;
          }
          .iti__arrow {
            border-top-color: #fff;
          }
          .iti__arrow.iti__arrow--up {
            border-bottom-color: #fff;
          }
        }
        .iti__country-name,
        .iti__dial-code {
          font-family: Helvetica;
        }
      }
      .submit {
        margin-top: 40px;
        font-family: Helvetica;
        width: 140px;
        font-weight: 700;
        font-size: 10px;
        padding: 10px;
        line-height: 14px;
        text-align: center;
        text-transform: uppercase;
        background: #fff;
        color: #000;
        border-radius: 8px;
        letter-spacing: 1.2px;
      }
    }
  }
}
footer {
  width: 100%;
  max-width: 1440px;
  padding: 60px 100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  .footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 16px 32px;
    .link-item {
      font-family: Helvetica;
      font-weight: 400;
      font-size: 10px;
      line-height: 14px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: #000;
    }
  }
  .socials {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 16px 32px;
    .social-item {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 20px;
      max-height: 20px;
      img {
        max-width: 100%;
        max-height: 20px;
      }
    }
  }
}
.contact-section {
  width: 100%;
  background: #000;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 80px;
  height: calc(100svh - 80px);
  position: relative;
  .contact-content {
    max-width: 720px;
    padding: 100px;
    margin-left: auto;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    .section-title {
      font-family: Helvetica;
      font-weight: 400;
      font-size: 10px;
      line-height: 12px;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 12px;
    }
    .contact-title {
      margin-top: auto;
      font-family: "Playfair Display";
      font-weight: 400;
      font-size: 45px;
      line-height: 60px;
      color: #fff;
      max-width: 390px;
    }
    .contact-detail {
      width: 100%;
      max-width: 250px;
      margin-top: 40px;
      .contact-item {
        font-family: Helvetica;
        font-weight: 400;
        font-size: 13px;
        line-height: 20px;
        color: #fff;
        a {
          font-family: Helvetica;
          font-weight: 400;
          font-size: 13px;
          line-height: 20px;
          color: #fff;
        }
      }
    }
    .socials {
      margin-top: 36px;
      display: flex;
      align-items: center;
      justify-content: start;
      width: 100%;
      gap: 16px 32px;
      .social-item {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 20px;
        max-height: 20px;
        filter: brightness(100) invert(1);
        img {
          max-width: 100%;
          max-height: 20px;
        }
      }
    }
  }
  .map {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) brightness(0.4);
    iframe {
      width: 100%;
      height: 100%;
    }
  }
}
@media only screen and (max-width: 1250px) {
  .about-section {
    .about-content {
      padding: 80px 60px;
      .section-title {
        font-size: 8px;
        line-height: 10px;
      }
      .about-title {
        font-size: 36px;
        line-height: 44px;
        max-width: 320px;
      }
      .description {
        max-width: 320px;
        margin-top: 32px;
        p {
          font-size: 10px;
          line-height: 14px;
        }
      }
    }
  }
  .service-section {
    padding: 80px 60px;
    .section-title {
      font-size: 8px;
      line-height: 10px;
    }
    .services {
      margin-top: 70px;
      gap: 40px;
      .service-item {
        .icon {
          max-width: 80px;
          height: 80px;
        }
        .service-title {
          font-size: 28px;
          line-height: 36px;
        }
        .description {
          margin-top: 16px;
          p {
            font-size: 12px;
            line-height: 18px;
          }
        }
      }
    }
  }
  .mission-section {
    .mission-container {
      padding: 80px 60px;
      .section-title {
        font-size: 8px;
        line-height: 10px;
      }
      .mission-description {
        width: 100%;
        p {
          font-size: 36px;
          line-height: 44px;
        }
      }
      .bantik {
        width: 40px;
        min-width: 40px;
      }
    }
  }
  .trusted-section {
    padding: 80px 60px;
    .section-title {
      font-size: 8px;
      line-height: 10px;
    }
    .trusted-logos {
      margin-top: 70px;
      grid-template-columns: repeat(auto-fill, minmax(0, 150px));
      gap: 45px 20px;
      .trusted-logo {
        max-width: 150px;
      }
    }
  }
  .benefits {
    .section-title {
      font-size: 8px;
      line-height: 10px;
      top: 80px;
    }
    .benefits-container {
      .benefits-slide {
        .benefit-item {
          .benefit-item-content {
            .benefit-title {
              font-size: 28px;
              line-height: 36px;
            }
            .benefit-desc {
              margin-top: 35px;
              font-size: 12px;
              line-height: 18px;
            }
          }
        }
        .swiper-pagination {
          bottom: 90px;
          gap: 8px;
          .swiper-pagination-bullet {
            width: 10px;
            height: 10px;
          }
        }
      }
    }
  }
  .content-two {
    .content-left {
      .content-inner {
        padding: 80px 60px;
        .section-title {
          font-size: 8px;
          line-height: 10px;
        }
        .content-title {
          font-size: 36px;
          line-height: 44px;
          max-width: 320px;
        }
        .content-description {
          max-width: 320px;
          margin-top: 32px;
          p {
            font-size: 10px;
            line-height: 14px;
          }
        }
        .content-link {
          margin-top: 48px;
          width: 120px;
        }
      }
    }
    .content-right {
      .content-inner {
        padding: 80px 60px;
        .section-title {
          font-size: 8px;
          line-height: 10px;
        }
        .content-title {
          font-size: 36px;
          line-height: 44px;
          max-width: 320px;
        }
        .content-description {
          max-width: 320px;
          margin-top: 32px;
          p {
            font-size: 10px;
            line-height: 14px;
          }
        }
        .content-link {
          margin-top: 48px;
          width: 120px;
        }
      }
    }
  }
  .content-one {
    .content-inner {
      padding: 80px 60px;
      .section-title {
        font-size: 8px;
        line-height: 10px;
      }
      .content-title {
        font-size: 36px;
        line-height: 44px;
        max-width: 320px;
      }
      .content-description {
        max-width: 320px;
        margin-top: 32px;
        p {
          font-size: 10px;
          line-height: 14px;
        }
      }
      .content-link {
        margin-top: 48px;
        width: 120px;
      }
    }
  }
  .contact {
    .contact-container {
      padding: 80px 60px;
      .contact-title {
        font-size: 36px;
        line-height: 44px;
        max-width: 320px;
      }
      .contact-description {
        max-width: 320px;
        margin-top: 32px;
        p {
          font-size: 10px;
          line-height: 14px;
        }
      }
      form {
        gap: 16px;
        max-width: 550px;
        margin-top: 45px;
        select,
        input {
          padding-bottom: 8px;
        }
        .iti {
          .iti__selected-flag {
            padding-bottom: 8px;
          }
        }
        .submit {
          margin-top: 36px;
          width: 120px;
        }
      }
    }
  }
  footer {
    padding: 60px;
    gap: 40px;
    .footer-links {
      gap: 12px 24px;
    }
    .socials {
      gap: 12px 24px;
    }
  }
  .menu {
    .closeMenu {
      width: 28px;
      height: 28px;
      min-width: 28px;
    }
    .menu-inner {
      padding: 80px 60px;
      gap: 30px;
    }
  }
  .contact-section {
    .contact-content {
      padding: 80px 60px;
      .section-title {
        font-size: 8px;
        line-height: 10px;
      }
      .contact-title {
        font-size: 36px;
        line-height: 44px;
        max-width: 320px;
      }
      .contact-detail {
        max-width: 250px;
        margin-top: 32px;
        .contact-item {
          font-size: 12px;
          line-height: 18px;
          a {
            font-size: 12px;
            line-height: 18px;
          }
        }
      }
      .socials {
        margin-top: 32px;
        gap: 14px 28px;
      }
    }
  }
}
@media only screen and (max-width: 768px) {
  nav {
    .navbar-container {
      padding: 20px 30px;
      .nav-lang {
        .current-lang {
          pointer-events: initial;
        }
        .other-langs {
          left: 0;
          width: 0;
          overflow: hidden;
          transition: 0.3s ease-in-out;
          opacity: 0;
          visibility: hidden;
        }
      }
      .nav-lang.active {
        .other-langs {
          left: 28px;
          width: 44px;
          overflow: initial;
          opacity: 1;
          visibility: visible;
        }
      }
      .nav-logo {
        width: 35px;
        min-width: 35px;
        height: 18px;
        .desktop-logo {
          display: none;
        }
        .mobile-logo {
          left: 65%;
          transform: translate(-50%, -50%) scale(1);
        }
      }
    }
  }
  .hero-video {
    margin-top: 57.5px;
    height: calc(100svh - 57.5px);
    .playIcon {
      width: 41px;
      height: 41px;
    }
  }
  .about-section {
    grid-template-columns: repeat(1, 1fr);
    height: auto;
    .about-content {
      max-width: 100%;
      padding: 80px 20px;
      flex-direction: column;
      align-items: center;
      .about-title {
        margin-top: 120px;
        text-align: center;
        font-size: 30px;
        line-height: 35px;
        max-width: 280px;
      }
      .description {
        max-width: 280px;
        margin-top: 28px;
        p {
          text-align: center;
        }
      }
    }
    .about-image {
      width: 100%;
      height: 100%;
      img {
        width: 100%;
        height: auto;
      }
    }
  }
  .service-section {
    padding: 80px 20px;
    .services {
      margin-top: 40px;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      .service-item {
        .icon {
          max-width: 60px;
          height: 60px;
        }
        .service-title {
          font-size: 24px;
          line-height: 32px;
        }
        .description {
          margin-top: 14px;
        }
      }
    }
  }
  .mission-section {
    .mission-container {
      padding: 80px 20px;
      gap: 40px;
      .mission-description {
        p {
          font-size: 30px;
          line-height: 35px;
        }
      }
      .bantik {
        width: 36px;
        min-width: 36px;
      }
    }
  }
  .trusted-section {
    padding: 80px 20px;
    .trusted-logos {
      margin-top: 40px;
      grid-template-columns: repeat(auto-fill, minmax(0, 130px));
      gap: 30px 20px;
      .trusted-logo {
        max-width: 130px;
      }
    }
  }
  .content-two {
    grid-template-columns: repeat(1, 1fr);
    height: auto;
    min-height: 0;
    .content-left {
      max-width: 100%;
      .content-inner {
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        .content-title {
          margin-top: 120px;
          text-align: center;
          font-size: 30px;
          line-height: 35px;
          max-width: 280px;
        }
        .content-description {
          max-width: 280px;
          margin-top: 28px;
          p {
            text-align: center;
          }
        }
        .content-link {
          margin-top: 36px;
          width: 100px;
        }
      }
    }
    .content-right {
      max-width: 100%;
      .content-inner {
        padding: 80px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        .content-title {
          margin-top: 120px;
          text-align: center;
          font-size: 30px;
          line-height: 35px;
          max-width: 280px;
        }
        .content-description {
          max-width: 280px;
          margin-top: 28px;
          p {
            text-align: center;
          }
        }
        .content-link {
          margin-top: 36px;
          width: 100px;
        }
      }
    }
  }
  .content-one {
    min-height: 0;
    height: auto;
    .content-inner {
      min-height: 0;
      height: auto;
      padding: 80px 20px;
      .content-title {
        margin-top: 120px;
        font-size: 30px;
        line-height: 35px;
        max-width: 280px;
      }
      .content-description {
        max-width: 280px;
        margin-top: 28px;
      }
      .content-link {
        margin-top: 36px;
        width: 100px;
      }
    }
  }
  .contact {
    .contact-container {
      padding: 80px 20px;
      .contact-title {
        font-size: 30px;
        line-height: 35px;
        max-width: 280px;
      }
      .contact-description {
        max-width: 280px;
        margin-top: 28px;
      }
      form {
        gap: 14px;
        max-width: 450px;
        margin-top: 30px;
        select,
        input {
          padding-bottom: 6px;
        }
        .iti {
          .iti__selected-flag {
            padding-bottom: 6px;
          }
        }
        .submit {
          margin-top: 32px;
          width: 100px;
        }
      }
    }
  }
  footer {
    padding: 40px 20px;
    gap: 30px;
    .footer-links {
      gap: 10px 20px;
    }
    .socials {
      gap: 10px 20px;
    }
  }
  .menu {
    .menu-inner {
      padding: 80px 20px;
    }
  }
  .benefits {
    .benefits-container {
      .benefits-slide {
        .benefit-item {
          background: #000;
          .benefit-item-content {
            padding: 100px 20px 80px;
            .benefit-title {
              color: #fff;
            }
            .benefit-desc {
              margin-top: 30px;
              color: #fff;
            }
          }
        }
        .swiper-pagination {
          bottom: 20px;
        }
      }
    }
  }
  .contact-section {
    margin-top: 57.5px;
    height: calc(100svh - 57.5px);
    grid-template-columns: repeat(1, 1fr);
    height: auto;
    .contact-content {
      padding: 80px 20px;
      max-width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      .contact-title {
        margin-top: 120px;
        text-align: center;
        font-size: 30px;
        line-height: 35px;
        max-width: 280px;
      }
      .contact-detail {
        .contact-item {
          text-align: center;
        }
      }
      .socials {
        justify-content: center;
        gap: 12px 24px;
      }
    }
    .map {
      height: 400px;
    }
  }
}
@media only screen and (max-width: 575px) {
  .service-section {
    .services {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  footer {
    .footer-links {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      .link-item {
        text-align: center;
      }
    }
  }
}
