* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Host Grotesk";
  outline: none;
  text-decoration: none;
}
button {
  cursor: pointer;
}
body {
  background: #fff;
}
.p-lr {
  padding-left: 60px;
  padding-right: 60px;
}
.mt-130 {
  margin-top: 130px;
}
nav {
  width: 100%;
  padding: 14px 0;
  .navbar-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 20px;
    .logo {
      width: 178px;
      min-width: 178px;
      display: flex;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
      }
    }
    .navbar-menu {
      display: flex;
      align-items: center;
      max-width: 610px;
      width: 100%;
      gap: 12px;
      justify-content: space-between;
      .nav-link {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #272727;
        text-wrap: nowrap;
      }
      .dropMenu {
        padding: 30px 0;
        .dropMenu-title {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #272727;
        }
        .dropMenuBox {
          position: absolute;
          max-width: 420px;
          width: 100%;
          left: 50%;
          top: 94px;
          transition: 0.3s ease-in-out;
          opacity: 0;
          visibility: hidden;
          z-index: 12;
          transform: translateX(-50%);
          border-radius: 20px;
          background: #fff;
          border: 0.6px solid #f6f6f6;
          box-shadow: 5px 5px 4px 0px rgba(86, 86, 87, 0.25);
          padding: 0 20px;
          .dropMenuBox-links {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: start;
            border-radius: 20px;
            max-height: 400px;
            overflow-y: auto;
            &::-webkit-scrollbar {
              width: 4px;
              border-radius: 10px;
            }
            &::-webkit-scrollbar-thumb {
              width: 4px;
              border-radius: 10px;
              background: #57a0d0;
            }
            .drop-link {
              display: flex;
              align-items: start;
              gap: 16px;
              width: 100%;
              padding: 26px 10px;
              background: #fff;
              transition: 0.35s ease-in-out;
              border-bottom: 1px solid #e5e5ef;
              .icon {
                width: 24px;
                height: 24px;
                min-width: 24px;
              }
              .link-content {
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: start;
                gap: 8px;
                .content-title {
                  font-weight: 600;
                  font-size: 16px;
                  line-height: 24px;
                  color: #1e1e1e;
                  transition: 0.3s ease-in-out;
                }
                p {
                  font-weight: 400;
                  font-size: 14px;
                  line-height: 21px;
                  color: #5a5a5e;
                }
              }
              &:hover {
                .link-content {
                  .content-title {
                    color: #539bff;
                  }
                }
              }
              &:last-child {
                border-bottom: none;
              }
            }
          }
          .seeAll {
            margin-top: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #3899da;
            transition: 0.3s ease-in-out;
            svg {
              path {
                transition: 0.3s ease-in-out;
              }
            }
            &:hover {
              color: #12219e;
              svg {
                path {
                  fill: #12219e;
                }
              }
            }
          }
        }
        &:hover {
          .dropMenuBox {
            top: 84px;
            opacity: 1;
            visibility: visible;
          }
        }
      }
      .subMenu {
        padding: 30px 0;
        position: relative;
        .subMenu-title {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #272727;
        }
        .subMenu-links {
          position: absolute;
          width: 420px;
          top: 94px;
          transform: translateX(-40%);
          transition: 0.3s ease-in-out;
          opacity: 0;
          visibility: hidden;
          z-index: 2;
          border: 0.6px solid #f6f6f6;
          box-shadow: 5px 5px 4px 0px rgba(86, 86, 87, 0.25);
          border-radius: 20px;
          background: #fff;
          padding: 6px;
          .subMenu-link {
            width: 100%;
            display: flex;
            align-items: center;
            gap: 16px;
            font-weight: 600;
            font-size: 16px;
            line-height: 24px;
            color: #1e1e1e;
            padding: 23px 20px;
            border-radius: 20px;
            background: #fff;
            transition: 0.3s ease-in-out;
            .icon {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
            &:hover {
              background: #ecf5fb;
            }
          }
        }
        &:hover {
          .subMenu-links {
            top: 84px;
            opacity: 1;
            visibility: visible;
          }
        }
      }
    }
    .navbar-right {
      display: flex;
      align-items: center;
      gap: 35px;
      position: relative;
      .lang {
        display: flex;
        flex-direction: column;
        align-items: start;
        position: relative;
        .current-lang {
          display: flex;
          align-items: center;
          gap: 12px;
          border: none;
          outline: none;
          background: transparent;
          span {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #272727;
          }
          img {
            width: 12px;
            transition: 0.35s ease-in-out;
          }
        }
        .other-langs {
          width: 100%;
          position: absolute;
          left: 0;
          top: 40px;
          display: flex;
          flex-direction: column;
          align-items: start;
          padding: 4px;
          border-radius: 8px;
          background: #fff;
          opacity: 0;
          visibility: hidden;
          z-index: 2;
          box-shadow: 1px 3px 4px 0px rgba(0, 0, 0, 0.25);
          transition: 0.35s ease-in-out;

          .lang-item {
            width: 100%;
            padding: 4px 8px;
            font-size: 15px;
            line-height: 22px;
            color: #272727;
            border-radius: 4px;
            transition: 0.35s ease-in-out;
            background: #fff;
            text-align: center;
            &:hover {
              background: #ecf5fb;
            }
          }
        }
      }
      .lang.active {
        .current-lang {
          img {
            transform: rotate(180deg);
          }
        }
        .other-langs {
          top: 30px;
          opacity: 1;
          visibility: visible;
        }
      }
      .phoneLink {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 9px 40px 9px 25px;
        background: #3899da;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          text-align: center;
          color: #fff;
          text-wrap: nowrap;
        }
        img {
          position: absolute;
          z-index: 1;
          transition: 0.35s ease-in-out;
        }
        .icon1 {
          transform: translate(87px, 0px);
        }
        .icon2 {
          transform: translate(62px, 27px);
        }

        &:hover {
          .icon1 {
            transform: translate(114px, -25px);
          }
          .icon2 {
            transform: translate(87px, 0px);
          }
        }
      }
      .hamburger {
        background: transparent;
        border: none;
        width: 24px;
        height: 24px;
        min-width: 24px;
        display: none;
        align-items: center;
        justify-content: center;
        img {
          width: 100%;
          height: 100%;
        }
      }
    }
  }
}
.homenav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  .navbar-container {
    .navbar-menu {
      .nav-link {
        color: #fff;
      }
      .dropMenu {
        .dropMenu-title {
          color: #fff;
        }
        .dropMenuBox {
          border: 0.6px solid transparent;
          box-shadow: none;
        }
      }
      .subMenu {
        .subMenu-title {
          color: #fff;
        }
        .subMenu-links {
          border: 0.6px solid transparent;
          box-shadow: none;
        }
      }
    }
    .navbar-right {
      .lang {
        .current-lang {
          span {
            color: #fff;
          }
          img {
            filter: brightness(10);
          }
        }
      }
      .phoneLink {
        background: #fff;
        p {
          color: #343434;
        }
        img {
          filter: invert(1);
        }
      }
      .hamburger {
        img {
          filter: invert(1);
        }
      }
    }
  }
}
.mobile-menu-container {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  background: #fff;
  height: 100%;
  z-index: 999;
  padding: 30px 20px 40px;
  overflow-y: auto;
  transition: 0.3s ease-in-out;
  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 160px;
      min-width: 160px;
      img {
        width: 100%;
      }
    }
    .closeMobileMenu {
      background: transparent;
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      min-width: 24px;
      svg {
        width: 100%;
        height: 100%;
      }
    }
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
    .mobile-link {
      width: 100%;
      padding: 14px 20px;
      border-radius: 10px;
      background: #f5f5f5;
      color: #494949;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
    }
    .dropMobileMenu {
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 30px;
      width: 100%;
      .dropMenu-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        width: 100%;
        padding: 14px 20px;
        border-radius: 10px;
        background: #f5f5f5;
        .dropMainLink {
          color: #494949;
          font-size: 16px;
          line-height: 24px;
          font-weight: 400;
        }
        .mobileDown {
          border: none;
          background: transparent;
          width: 24px;
          height: 10px;
          min-width: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          svg {
            width: 100%;
            height: 100%;
          }
        }
      }
      .subMenuLinks {
        display: none;
        flex-direction: column;
        align-items: start;
        gap: 20px;
        padding-left: 20px;
        padding-right: 10px;
        max-height: 300px;
        overflow: auto;
        &::-webkit-scrollbar {
          width: 3px;
        }
        &::-webkit-scrollbar-thumb {
          background: #3899da;
        }
        &::-webkit-scrollbar-track {
          background: #e3e3e3;
        }
        .subMenuLink {
          display: flex;
          align-items: start;
          gap: 16px;
          width: 100%;
          border-radius: 20px;
          background: #fff;
          transition: 0.35s ease-in-out;
          .icon {
            width: 24px;
            height: 24px;
            min-width: 24px;
          }
          .link-content {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 10px;
            .content-title {
              font-weight: 600;
              font-size: 16px;
              line-height: 24px;
              color: #1e1e1e;
            }
            p {
              font-weight: 400;
              font-size: 14px;
              line-height: 21px;
              color: #5a5a5e;
              display: -webkit-box;
              -webkit-line-clamp: 3;
              overflow: hidden;
              -webkit-box-orient: vertical;
            }
          }
        }
      }
    }
    .dropMobileMenu.active {
      .dropMenu-title {
        .mobileDown {
          transform: rotate(180deg);
        }
      }
      .subMenuLinks {
        display: flex;
      }
    }
  }
}
.home-hero {
  width: 100%;
  min-height: 100svh;
  position: relative;
  padding: 160px 0 40px;
  display: flex;
  align-items: start;
  .heroBg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .home-hero-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: start;
    gap: 40px;
    justify-content: space-between;
    .content {
      max-width: 560px;
      width: 100%;
      padding-top: 50px;
      h1 {
        font-weight: 700;
        font-size: 70px;
        line-height: 76px;
        color: #fff;
      }
      .desc {
        margin-top: 20px;
        max-width: 430px;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: rgba(255, 255, 255, 0.94);
        }
      }
      .phoneLink {
        margin-top: 24px;
        display: none;
        align-items: center;
        gap: 10px;
        padding: 9px 40px 9px 25px;
        background: #fff;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
        width: max-content;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          text-align: center;
          color: #343434;
        }
        img {
          position: absolute;
          z-index: 1;
          transition: 0.35s ease-in-out;
          filter: invert(1);
        }
        .icon1 {
          transform: translate(87px, 0px);
        }
        .icon2 {
          transform: translate(62px, 27px);
        }

        &:hover {
          .icon1 {
            transform: translate(114px, -25px);
          }
          .icon2 {
            transform: translate(87px, 0px);
          }
        }
      }
    }
    .heroImg {
      max-width: 670px;
      width: 100%;
      border-radius: 30px;
      img,
      video {
        width: 100%;
        border-radius: 30px;
        border-top: 1px solid #fff;
      }
    }
  }
}
.home-solutions-container {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  .home-solutions-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    .section-title {
      font-weight: 600;
      font-size: 36px;
      line-height: 54px;
      color: #272727;
      max-width: 850px;
    }
    .more {
      display: flex;
      align-items: center;
      padding-right: 53px;
      position: relative;
      transition: 0.35s ease-in-out;
      p {
        padding: 14px 64px;
        background: #fff;
        border-radius: 20px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #272727;
        text-align: center;
        border: 1px solid #272727;
        transition: 0.35s ease-in-out;
        text-wrap: nowrap;
      }
      span {
        transition: 0.35s ease-in-out;
        position: absolute;
        top: 0;
        z-index: -1;
        right: 0;
        width: 52px;
        height: 52px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #272727;
        img {
          transition: 0.35s ease-in-out;
          filter: invert(1);
          width: 38px;
          height: 38px;
        }
      }
      &:hover {
        padding-right: 0;
        padding-left: 53px;
        p {
          background: #3899da;
          color: #fff;
          border-color: transparent;
        }
        span {
          right: calc(100% - 52px);
          border-color: transparent;
          background: #3899da;
          img {
            filter: none;
          }
        }
      }
    }
  }
  .home-solutions {
    margin-top: 64px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    .solution-card {
      width: 100%;
      background: #f3f8fb;
      border-radius: 20px;
      position: relative;
      padding: 60px 44px;
      overflow: hidden;
      transition: 0.3s ease-in-out;
      .solution-title {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        color: #1e1e1e;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 2;
        height: 64px;
      }
      .desc {
        margin-top: 30px;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #898fa5;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          -webkit-line-clamp: 5;
          height: 120px;
          position: relative;
          z-index: 1;
        }
      }
      .more {
        margin-top: 50px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 74px 11px 0px;
        background: transparent;
        position: relative;
        overflow: hidden;
        width: max-content;
        p {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          text-align: center;
          color: #4d4aea;
          text-wrap: nowrap;
        }
        img {
          position: absolute;
          right: 30px;
          z-index: 1;
          transition: 0.35s ease-in-out;
        }
        .icon1 {
          transform: translate(0px, 0px);
        }
        .icon2 {
          transform: translate(-34px, 42px);
        }

        &:hover {
          .icon1 {
            transform: translate(34px, -42px);
          }
          .icon2 {
            transform: translate(0px, 0px);
          }
        }
      }
      .solutionImg {
        max-width: 50%;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 0;
        transition: 0.3s ease-in-out;
      }
      &:hover {
        padding-left: 54px;
        .solutionImg {
          transform: scale(1.05);
        }
      }
      &:nth-child(5n + 1) {
        max-width: 32.1%;
      }
      &:nth-child(5n + 2) {
        max-width: 32.1%;
      }
      &:nth-child(5n + 3) {
        max-width: 32.1%;
      }
      &:nth-child(5n + 4) {
        max-width: 66%;
        .desc {
          margin-top: 30px;
          max-width: 514px;
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #898fa5;
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            -webkit-line-clamp: 5;
            height: 120px;
          }
        }
      }
      &:nth-child(5n + 5) {
        max-width: 32%;
      }
    }
  }
  .home-solutions-slide {
    margin-top: 40px;
    width: 100%;
    padding-bottom: 72px;
    display: none;
    .solution-card {
      width: 353px;
      background: #f3f8fb;
      border-radius: 20px;
      position: relative;
      padding: 50px 26px;
      overflow: hidden;
      .solution-title {
        font-weight: 600;
        font-size: 20px;
        line-height: 30px;
        color: #1e1e1e;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 2;
        height: 60px;
      }
      .desc {
        margin-top: 20px;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #898fa5;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          -webkit-line-clamp: 3;
          height: 72px;
          position: relative;
          z-index: 1;
        }
      }
      .more {
        margin-top: 20px;
        margin-bottom: 60px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 74px 11px 0px;
        background: transparent;
        position: relative;
        overflow: hidden;
        width: max-content;
        p {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          text-align: center;
          color: #4d4aea;
          text-wrap: nowrap;
        }
        img {
          position: absolute;
          right: 30px;
          z-index: 1;
          transition: 0.35s ease-in-out;
        }
        .icon1 {
          transform: translate(0px, 0px);
        }
        .icon2 {
          transform: translate(-34px, 42px);
        }

        &:hover {
          .icon1 {
            transform: translate(34px, -42px);
          }
          .icon2 {
            transform: translate(0px, 0px);
          }
        }
      }
      .solutionImg {
        width: 160px;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 0;
      }
    }
    .swiper-buttons {
      position: absolute;
      bottom: 0;
      right: 0;
      display: flex;
      align-items: center;
      gap: 12px;
      .swiper-button-prev,
      .swiper-button-next {
        width: 42px;
        height: 42px;
        border-radius: 100px;
        background: #f3f3f3;
        position: initial;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        &::after {
          color: #5c5c5c;
          --swiper-navigation-size: 15px;
        }
      }
    }
  }
}
.home-about {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 90px;
  padding-right: 90px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  .home-aboutImg {
    min-width: 484px;
    width: 484px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
      circle,
      rgba(195, 208, 255, 0.6) 0%,
      transparent 70%
    );
    img {
      width: 100%;
    }
  }
  .home-about-content {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    .section-title {
      font-weight: 600;
      font-size: 36px;
      line-height: 54px;
      color: #272727;
    }
    .mobileImg {
      width: 100%;
      position: relative;
      display: none;
      align-items: center;
      justify-content: center;
      background: radial-gradient(
        circle,
        rgba(195, 208, 255, 0.6) 0%,
        transparent 70%
      );
      img {
        width: 100%;
      }
    }
    .content {
      margin-top: 26px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #494949;
      }
    }
  }
}
.home-helpCenter {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 90px;
  padding-right: 90px;
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  .home-helpCenter-content {
    max-width: 650px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    .section-title {
      font-weight: 600;
      font-size: 36px;
      line-height: 54px;
      color: #272727;
    }
    .mobileImg {
      width: 100%;
      position: relative;
      display: none;
      align-items: center;
      justify-content: center;
      img {
        width: 100%;
      }
    }
    .content {
      margin-top: 30px;
      p {
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #494949;
      }
    }
    .more {
      margin-top: 30px;
      display: flex;
      align-items: center;
      padding-right: 53px;
      position: relative;
      transition: 0.35s ease-in-out;
      p {
        padding: 14px 64px;
        background: #3899da;
        border-radius: 20px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
        text-align: center;
      }
      span {
        transition: 0.35s ease-in-out;
        position: absolute;
        top: 0;
        z-index: -1;
        right: 0;
        width: 52px;
        height: 52px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #3899da;
        img {
          width: 38px;
          height: 38px;
        }
      }
      &:hover {
        padding-right: 0;
        padding-left: 53px;
        span {
          right: calc(100% - 52px);
        }
      }
    }
  }
  .home-helpCenterImg {
    min-width: 518px;
    width: 518px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    img {
      width: 100%;
    }
  }
}
.project-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  .card-img {
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    .img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
      transition: 0.35s ease-in-out;
    }
    .directionIcons {
      position: absolute;
      top: 30px;
      right: 30px;
      background: #fff;
      border-radius: 100px;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      img {
        filter: invert(1);
        width: 34px;
        height: 34px;
        transition: 0.35s ease-in-out;
      }
      .icon1 {
        transform: translate(17px, 0px);
      }
      .icon2 {
        transform: translate(-63px, 30px);
      }
      &:hover {
        .icon1 {
          transform: translate(59px, -44px);
        }
        .icon2 {
          transform: translate(-17px, 0px);
        }
      }
    }
  }
  .project-title {
    max-width: 524px;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    color: #272727;
  }
  &:hover {
    .card-img {
      .img {
        transform: scale(1.08);
      }
    }
  }
}
.home-project-container {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  .home-project-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    .section-title {
      font-weight: 600;
      font-size: 36px;
      line-height: 54px;
      color: #272727;
      max-width: 850px;
    }
    .more {
      display: flex;
      align-items: center;
      padding-right: 53px;
      position: relative;
      transition: 0.35s ease-in-out;
      p {
        padding: 14px 64px;
        background: #fff;
        border-radius: 20px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #272727;
        text-align: center;
        border: 1px solid #272727;
        transition: 0.35s ease-in-out;
        text-wrap: nowrap;
      }
      span {
        transition: 0.35s ease-in-out;
        position: absolute;
        top: 0;
        z-index: -1;
        right: 0;
        width: 52px;
        height: 52px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border: 1px solid #272727;
        img {
          transition: 0.35s ease-in-out;
          filter: invert(1);
          width: 38px;
          height: 38px;
        }
      }
      &:hover {
        padding-right: 0;
        padding-left: 53px;
        p {
          background: #3899da;
          color: #fff;
          border-color: transparent;
        }
        span {
          right: calc(100% - 52px);
          border-color: transparent;
          background: #3899da;
          img {
            filter: none;
          }
        }
      }
    }
  }
  .home-projects {
    width: 100%;
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 20px;
    .project-item {
      width: 100%;
      .card-img {
        height: 420px;
      }
    }
  }
  .home-projects-slide {
    display: none;
    margin-top: 40px;
    width: 100%;
    padding-bottom: 72px;
    .project-item {
      width: 353px;
      .card-img {
        height: 276px;
      }
    }
    .swiper-buttons {
      position: absolute;
      bottom: 0;
      right: 0;
      display: flex;
      align-items: center;
      gap: 12px;
      .swiper-button-prev,
      .swiper-button-next {
        width: 42px;
        height: 42px;
        border-radius: 100px;
        background: #f3f3f3;
        position: initial;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        &::after {
          color: #5c5c5c;
          --swiper-navigation-size: 15px;
        }
      }
    }
  }
}
.comments-container {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  .comments-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    .small-title {
      font-weight: 600;
      font-size: 14px;
      line-height: 20px;
      text-align: center;
      color: #3899da;
    }
    .section-title {
      margin-top: 8px;
      font-weight: 600;
      font-size: 36px;
      line-height: 54px;
      color: #272727;
      text-align: center;
    }
  }
  .comments-slide {
    margin-top: 50px;
    width: 100%;
    padding-bottom: 70px;
    .comment-item {
      height: auto;
      width: 315px;
      background: #f8fafc;
      border-radius: 16px;
      padding: 40px 20px 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      .quote {
        position: absolute;
        top: 24px;
        left: 24px;
        width: 34px;
        height: 34px;
      }
      .fname {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #272727;
      }
      .position {
        margin-top: 4px;
        font-weight: 400;
        font-size: 14px;
        line-height: 21px;
        text-align: center;
        color: #7c7a7f;
      }
      .comment {
        margin-top: 20px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #5a5a5e;
      }
      .stars {
        margin-top: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 4px;
        img {
          width: 28px;
          min-width: 28px;
          height: 28px;
        }
      }
    }
    .swiper-pagination {
      bottom: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      .swiper-pagination-bullet {
        opacity: 1;
        margin: 0;
        width: 10px;
        height: 10px;
        background: #f0f0f0;
      }
      .swiper-pagination-bullet-active {
        background: #3899da;
      }
    }
  }
}
.partners-container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  .partners-slide {
    width: 100%;
    .swiper-wrapper {
      align-items: center;
      transition-timing-function: linear;
      .partner-item {
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        img {
          width: auto;
          filter: grayscale(100%);
          transition: 0.35s ease-in-out;
        }
        &:hover {
          img {
            filter: none;
          }
        }
      }
    }
  }
}
.get_a_quote-container {
  max-width: 1440px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  .get_a_quote {
    border-radius: 20px;
    background: #f4f4f4;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    .content {
      max-width: 48%;
      .section-title {
        font-weight: 600;
        font-size: 36px;
        line-height: 54px;
        color: #272727;
      }
      .description {
        margin-top: 20px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #898fa5;
        max-width: 90%;
      }
      .quote_link {
        margin-top: 28px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 12px 80px 12px 18px;
        background: #4d4aea;
        width: max-content;
        border-radius: 16px;
        position: relative;
        overflow: hidden;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          text-align: center;
          color: #fff;
          text-wrap: nowrap;
        }
        img {
          position: absolute;
          z-index: 1;
          transition: 0.35s ease-in-out;
          right: 20px;
        }
        .icon1 {
          transform: translate(0, 0px);
        }
        .icon2 {
          transform: translate(-34px, 40px);
        }

        &:hover {
          .icon1 {
            transform: translate(34px, -40px);
          }
          .icon2 {
            transform: translate(0px, 0px);
          }
        }
      }
    }
    .get_a_quote_img {
      position: absolute;
      bottom: 0;
      right: 150px;
      width: 307px;
      overflow: hidden;
      height: 237px;
      transition: 0.5s ease-in-out;
      img {
        width: 100%;
      }
    }
    .get_a_quote_tags {
      display: flex;
      align-items: center;
      position: absolute;
      right: 20px;
      top: 20px;
      width: 500px;
      height: 100%;
      .tagitem {
        padding: 16px 20px;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
        text-align: center;
        color: #fff;
        position: absolute;
        border-radius: 20px;
        transition: 0.5s ease-in-out;
        &:nth-child(3n + 1) {
          background: #78d450;
          transform: rotate(-25deg);
          top: 28%;
          left: -16%;
        }
        &:nth-child(3n + 2) {
          background: #f6c443;
          transform: rotate(2.5deg);
          top: 9%;
          left: 29%;
        }
        &:nth-child(3n + 3) {
          background: #9747ff;
          transform: rotate(29deg);
          top: 26%;
          right: 3%;
        }
      }
    }
    &:hover {
      .get_a_quote_img {
        height: 280px;
      }
      .get_a_quote_tags {
        .tagitem {
          &:nth-child(3n + 1) {
            transform: rotate(-35deg);
            top: 20%;
          }
          &:nth-child(3n + 2) {
            transform: rotate(1.5deg);
            top: -2%;
          }
          &:nth-child(3n + 3) {
            transform: rotate(12deg);
            top: 12%;
            right: 1%;
          }
        }
      }
    }
  }
}
footer {
  width: 100%;
  background: #f7fafc;
  padding: 50px 0 20px;
  .footer-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    .footer-main {
      display: flex;
      align-items: start;
      width: 100%;
      justify-content: space-between;
      gap: 40px;
      .footer-content {
        display: flex;
        flex-direction: column;
        align-items: start;
        max-width: 312px;
        width: 100%;
        .logo {
          width: 270px;
          min-width: 270px;
          display: flex;
          align-items: center;
          justify-content: center;
          img {
            width: 100%;
          }
        }
        .description {
          margin-top: 20px;
          font-weight: 400;
          font-size: 14px;
          line-height: 21px;
          color: #494949;
        }
      }
      .footer-boxes {
        display: flex;
        align-items: start;
        justify-content: space-between;
        max-width: 900px;
        width: 100%;
        gap: 40px;
        .footer-box {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 20px;
          .box-title {
            font-weight: 600;
            font-size: 18px;
            line-height: 28px;
            color: #1e1e1e;
          }
          .links {
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 16px;
            .link-item {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #494949;
              transition: 0.25s ease-in-out;
              &:hover {
                color: #3899da;
              }
            }
          }
        }
        .footer-contact {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 38px;
          .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            max-width: 250px;
            img {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
            p {
              font-weight: 400;
              font-size: 16px;
              line-height: 24px;
              color: #1e1e1e;
            }
          }
        }
      }
    }
    .footer-bottom {
      margin-top: 110px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      .copyRight {
        p {
          font-weight: 400;
          font-size: 14px;
          line-height: 20px;
          color: #767676;
        }
      }
      .footer-socials {
        display: flex;
        align-items: center;
        gap: 20px;
        .social-item {
          width: 24px;
          height: 24px;
          min-width: 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          img {
            width: 100%;
            height: 100%;
          }
        }
      }
    }
  }
}
.breadcrumb {
  max-width: 1440px;
  margin: 64px auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  .breadcrumb-item {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
    color: #848a9c;
    white-space: nowrap;
  }
  svg {
    min-width: 24px;
    width: 24px;
    height: 24px;
  }
  .current {
    color: #272727;
    display: inline-block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.solutions-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #272727;
    max-width: 880px;
  }
  .solutions {
    margin-top: 50px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    .solution-card {
      width: 100%;
      background: #f3f8fb;
      border-radius: 20px;
      position: relative;
      padding: 60px 44px;
      overflow: hidden;
      transition: 0.3s ease-in-out;
      .solution-title {
        font-weight: 600;
        font-size: 24px;
        line-height: 32px;
        color: #1e1e1e;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
        -webkit-line-clamp: 2;
        height: 64px;
      }
      .desc {
        margin-top: 30px;
        p {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #898fa5;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          -webkit-line-clamp: 5;
          height: 120px;
          position: relative;
          z-index: 1;
        }
      }
      .more {
        margin-top: 50px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 11px 74px 11px 0px;
        background: transparent;
        position: relative;
        overflow: hidden;
        width: max-content;
        p {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          text-align: center;
          color: #4d4aea;
          text-wrap: nowrap;
        }
        img {
          position: absolute;
          right: 30px;
          z-index: 1;
          transition: 0.35s ease-in-out;
        }
        .icon1 {
          transform: translate(0px, 0px);
        }
        .icon2 {
          transform: translate(-34px, 42px);
        }

        &:hover {
          .icon1 {
            transform: translate(34px, -42px);
          }
          .icon2 {
            transform: translate(0px, 0px);
          }
        }
      }
      .solutionImg {
        max-width: 50%;
        position: absolute;
        bottom: 0;
        right: 0;
        z-index: 0;
        transition: 0.3s ease-in-out;
      }
      &:hover {
        padding-left: 54px;
        .solutionImg {
          transform: scale(1.05);
        }
      }
    }
  }
}
.projects-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .projects-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    .title {
      font-weight: 600;
      font-size: 36px;
      line-height: 54px;
      color: #272727;
      max-width: 750px;
    }
    .gridButtons {
      display: flex;
      align-items: center;
      gap: 10px;
      .twoGrid {
        width: 50px;
        height: 40px;
        min-width: 50px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eeeeee;
        border: none;
        transition: 0.3s ease-in-out;
        svg {
          width: 22px;
          height: 20px;
        }
      }
      .threeGrid {
        width: 50px;
        height: 40px;
        min-width: 50px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #eeeeee;
        border: none;
        transition: 0.3s ease-in-out;
        svg {
          width: 34px;
          height: 20px;
          transition: 0.3s ease-in-out;
        }
      }
      .active {
        background: #4d4aea;
        svg {
          rect {
            transition: 0.3s ease-in-out;
            stroke: #fff;
          }
        }
      }
    }
  }
  .projects {
    margin-top: 50px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    transition: 0.3s ease-in-out;
    gap: 60px 20px;
    .project-item {
      width: 100%;
      .card-img {
        height: 420px;
      }
    }
  }
  .threeType {
    grid-template-columns: repeat(3, 1fr);
    .project-item {
      .card-img {
        height: 276px;
      }
    }
  }
  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 100px;
    .pagination-item,
    .pagination-dots {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      background: transparent;
      font-weight: 400;
      font-size: 16px;
      line-height: 20px;
      color: #1e1e1e;
    }
    .pagination-item.active {
      background: #4d4aea;
      color: #f5f5f5;
    }
  }
}
.project-detail-head {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #272727;
    max-width: 850px;
  }
}
.project-detail-content {
  margin-top: 80px;
  width: 100%;
  .firstImg {
    max-width: 1224px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  img {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    display: block;
  }
}
.article {
  position: relative;
  border-radius: 20px;
  display: block;
  .tags {
    display: flex;
    align-items: center;
    position: absolute;
    gap: 14px;
    top: 20px;
    right: 20px;
    z-index: 2;
    .tag-item {
      padding: 10px;
      background: #ffffff;
      border-radius: 16px;
      font-weight: 400;
      font-size: 14px;
      line-height: 21px;
      color: #1e1e1e;
    }
  }
  .articleImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(70%);
    transition: 0.3s ease-in-out;
  }
  .article-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    .content {
      position: relative;
      max-width: 100%;
      width: 100%;
      .content-main {
        position: absolute;
        bottom: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 6px;
        width: 100%;
        transition: 0.3s ease-in-out;
        .artice-title {
          font-weight: 600;
          font-size: 22px;
          line-height: 33px;
          color: #ffffff;
        }
        .date {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: rgba(255, 255, 255, 0.8);
        }
      }
      .sub_title {
        position: absolute;
        bottom: 0;
        left: 0;
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #fff;
        opacity: 0;
        transition: 0.3s ease-in-out;
      }
    }
    .total_comments {
      display: flex;
      align-items: center;
      gap: 10px;
      svg {
        width: 24px;
        height: 24px;
        min-width: 24px;
      }
      p {
        font-weight: 600;
        font-size: 14px;
        line-height: 21px;
        color: #fff;
      }
    }
  }
  &:hover {
    .articleImg {
      filter: brightness(40%);
    }
    .article-body {
      .content {
        .content-main {
          opacity: 0;
        }
        .sub_title {
          opacity: 1;
        }
      }
    }
  }
}
.article-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #272727;
  }
  .articles {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 50px;
    .top-articles {
      display: grid;
      grid-template-columns: 2.06fr 1fr;
      gap: 20px;
      width: 100%;
      .top-left-articles {
        height: 555px;
        width: 100%;
        .article {
          width: 100%;
          height: 100%;
          .article-body {
            .content {
              max-width: 60%;
              .content-main {
                .artice-title {
                  font-size: 28px;
                  line-height: 42px;
                }
              }
            }
          }
        }
      }
      .top-right-articles {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 20px;
        width: 100%;
        .article {
          width: 100%;
          height: 267px;
        }
      }
    }
    .articles-list {
      margin-top: 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      width: 100%;
      gap: 20px;
      .article {
        width: 100%;
        height: 470px;
      }
    }
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      margin-top: 100px;
      .pagination-item,
      .pagination-dots {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        background: transparent;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        color: #1e1e1e;
      }
      .pagination-item.active {
        background: #4d4aea;
        color: #f5f5f5;
      }
    }
  }
}
.solutionsDetail-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #272727;
    max-width: 880px;
  }
  .detailImg {
    margin-top: 50px;
    width: 100%;
    border-radius: 20px;
    img {
      width: 100%;
      border-radius: 20px;
    }
  }
  .solutionsDetail {
    width: 100%;
    margin-top: 80px;
    .solutionsDetail-top {
      width: 100%;
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 40px;
      .solutionsContent {
        max-width: 780px;
        width: 100%;
        display: none;
        p {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          color: #1e1e1e;
        }
      }
      .solutionsContent.active {
        display: block;
      }
      .solutionTabs {
        max-width: 447px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 18px;
        margin-left: auto;
        .solutionTab {
          background: #f3f3f3;
          color: #7f7f88;
          padding: 16px;
          width: 100%;
          text-align: center;
          border-radius: 16px;
          border: none;
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
        }
        .solutionTab.active {
          background: #213dfc;
          color: #fff;
          transition: 0.3s ease-in-out;
        }
      }
    }
    .solutionAdvantageTabContent {
      display: none;
      flex-direction: column;
      align-items: start;
      width: 100%;
      gap: 130px;
      .advantage-item {
        display: flex;
        align-items: center;
        gap: 40px;
        justify-content: space-between;
        width: 100%;
        .content {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 24px;
          max-width: 600px;
          h2 {
            font-weight: 600;
            font-size: 24px;
            line-height: 36px;
            color: #1e1e1e;
          }
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #898fa5;
          }
        }
        .itemImg {
          max-width: 430px;
          width: 100%;
          img {
            width: 100%;
          }
        }
        &:nth-child(even) {
          flex-direction: row-reverse;
        }
      }
    }
    .solutionFunctionsTabContent {
      display: none;
      flex-direction: column;
      align-items: start;
      width: 100%;
      gap: 80px;
      .function-item {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 50px;
        width: 100%;
        .function-title {
          font-weight: 600;
          font-size: 24px;
          line-height: 36px;
          color: #1e1e1e;
        }
        .functionImg {
          width: 100%;
          border-radius: 20px;
          img {
            width: 100%;
          }
        }
      }
    }
    .solutionTabContent.active {
      display: flex;
    }
  }
}
.contact-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #272727;
    max-width: 760px;
  }
  .contact-apply {
    margin-top: 60px;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 84px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 50px;
    .apply-links {
      display: flex;
      width: 100%;
      align-items: center;
      justify-content: center;
      gap: 44px;
      a {
        max-width: 273px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: 400;
        font-size: 18px;
        line-height: 27px;
        color: #1e1e1e;
        transition: 0.3s ease-in-out;
        padding: 14px;
        border-radius: 16px;
        svg {
          width: 24px;
          height: 24px;
          min-width: 24px;
        }
        &:hover {
          color: #fff;
          background: #539bff;
          svg {
            path {
              transition: 0.3s ease-in-out;
              fill: #fff;
            }
          }
        }
      }
      .apply_call {
        background: #e4e3f9;
      }
      .apply_email {
        background: #f5e8e9;
      }
    }
    .contactForm {
      max-width: 1016px;
      width: 100%;
      margin: 0 auto;
      background: #ffffff;
      box-shadow: 2px 2px 4px 0px rgba(188, 188, 188, 0.25);
      border-radius: 16px;
      padding: 75px 80px;
      display: flex;
      flex-direction: column;
      align-items: start;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 40px;
      .form-items {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 70px;
      }
      .form-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        width: 100%;
        label {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #1e1e1e;
        }
        input,select,
        textarea {
          width: 100%;
          border: none;
          background: #f8f8f8;
          padding: 14px;
          border-radius: 16px;
          font-size: 16px;
          line-height: 24px;
          color: #1e1e1e;
          font-weight: 400;
        }
        textarea {
          resize: none;
          height: 160px;
        }
      }
      .sendForm {
        width: 100%;
        margin-top: 10px;
        text-align: center;
        padding: 12px;
        color: #fff;
        border: none;
        background: #3899da;
        border-radius: 16px;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
      }
    }
  }
  .contact-us {
    margin-top: 100px;
    max-width: 710px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 54px;
    .contact-items {
      width: 100%;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      .contact-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 18px;
        width: 100%;
        .item-title {
          display: flex;
          align-items: center;
          gap: 10px;
          img {
            width: 24px;
            height: 24px;
            min-width: 24px;
          }
          p {
            font-weight: 400;
            font-size: 20px;
            line-height: 30px;
            color: #6e6f70;
          }
        }
        .item-result {
          font-weight: 400;
          font-size: 22px;
          line-height: 33px;
          color: #1e1e1e;
        }
        .social-items {
          display: flex;
          align-items: center;
          gap: 20px;
          .social-item {
            width: 24px;
            height: 24px;
            min-width: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            img {
              width: 100%;
              height: 100%;
            }
          }
        }
      }
    }
  }
}
.map {
  width: 100%;
  height: 570px;
  margin-bottom: -130px;
  iframe {
    width: 100%;
    height: 100%;
  }
}
.about-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #272727;
    max-width: 880px;
  }
  .aboutImg {
    margin-top: 50px;
    width: 100%;
    border-radius: 20px;
    img {
      width: 100%;
      border-radius: 20px;
    }
  }
  .aboutDetail {
    width: 100%;
    margin-top: 80px;
    .aboutDetail-content {
      width: 100%;
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 40px;
      .aboutContent {
        max-width: 780px;
        width: 100%;
        display: none;
        p {
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
          color: #1e1e1e;
        }
      }
      .aboutContent.active {
        display: block;
      }
      .aboutContentTabs {
        max-width: 447px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 18px;
        margin-left: auto;
        .aboutContentTab {
          background: #f3f3f3;
          color: #7f7f88;
          padding: 16px;
          width: 100%;
          text-align: center;
          border-radius: 16px;
          border: none;
          font-weight: 400;
          font-size: 18px;
          line-height: 28px;
        }
        .aboutContentTab.active {
          background: #213dfc;
          color: #fff;
          transition: 0.3s ease-in-out;
        }
      }
    }
  }
  .aboutAdvantages {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    .smallTitle {
      font-weight: 600;
      font-size: 14px;
      line-height: 21px;
      text-align: center;
      color: #3899da;
    }
    .title {
      margin-top: 8px;
      max-width: 100%;
      text-align: center;
    }
    .advantages-boxes {
      margin-top: 80px;
      display: flex;
      align-items: start;
      justify-content: space-between;
      width: 100%;
      gap: 40px;
      .advantage-box {
        display: flex;
        flex-direction: column;
        align-items: start;
        max-width: 308px;
        width: 100%;
        .boxImg {
          width: 150px;
          height: 150px;
          display: flex;
          align-items: end;
          justify-content: start;
          img {
            max-width: 100%;
          }
        }
        .box-title {
          margin-top: 40px;
          font-weight: 600;
          font-size: 24px;
          line-height: 32px;
          color: #1e1e1e;
          max-width: 200px;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          overflow: hidden;
          -webkit-box-orient: vertical;
          height: 64px;
        }
        .description {
          margin-top: 16px;
          padding-top: 16px;
          width: 100%;
          border-top: 2px solid #4d4aea;
          p {
            font-weight: 400;
            font-size: 16px;
            line-height: 24px;
            color: #898fa5;
          }
        }
      }
    }
  }
  .workProcess-container {
    width: 100%;
    .workProcess-area {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 323px) minmax(0, 770px);
      justify-content: space-between;
      grid-template-areas: "content items";
      gap: 40px;
      .workProcess-titles {
        display: flex;
        flex-direction: column;
        align-items: start;
        max-width: 323px;
        height: 100svh;
        position: sticky;
        top: 100px;
        .smallTitle {
          font-weight: 600;
          font-size: 14px;
          line-height: 21px;
          text-align: center;
          color: #3899da;
        }
        .title {
          margin-top: 8px;
          max-width: 100%;
        }
      }
      .workProcess-items {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        max-width: 770px;
        gap: 70px;
        grid-area: items;
        position: relative;
        height: calc(100svh * 4);
        .workProcess-item {
          width: 100%;
          padding: 40px 60px;
          background: #f5f5f5;
          border: 2px solid #fefefe;
          box-shadow: 4px 4px 2px 0px #f4f4f4;
          border-radius: 20px;
          display: flex;
          flex-direction: column;
          align-items: start;
          position: sticky;
          top: 100px;
          .item-head {
            display: flex;
            align-items: start;
            width: 100%;
            gap: 45px;
            .icon {
              width: 70px;
              height: 70px;
              border-radius: 100px;
              display: flex;
              align-items: center;
              justify-content: center;
              min-width: 70px;
              background: #3899da;
              img {
                width: 36px;
              }
            }
            .head-content {
              width: 100%;
              display: flex;
              flex-direction: column;
              align-items: start;
              gap: 16px;
              .content-title {
                font-weight: 600;
                font-size: 24px;
                line-height: 32px;
                color: #1e1e1e;
              }
              .description {
                width: 100%;
                p {
                  font-weight: 400;
                  font-size: 16px;
                  line-height: 24px;
                  color: #898fa5;
                }
              }
            }
          }
          .item-image {
            margin: 40px auto 0;
            max-height: 230px;
            img {
              max-width: 100%;
              height: 100%;
            }
          }
          .count {
            width: 36px;
            height: 36px;
            min-width: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100px;
            background: #eeeeee;
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-weight: 400;
            font-size: 14px;
            line-height: 18px;
            color: #404040;
          }
        }
      }
      .workProcess-items-slide {
        padding-bottom: 72px;
        display: none;
        width: 100%;
        .workProcess-item {
          width: 353px;
          height: auto;
          padding: 40px 20px;
          background: #f5f5f5;
          border: 2px solid #fefefe;
          box-shadow: 4px 4px 2px 0px #f4f4f4;
          border-radius: 20px;
          display: flex;
          flex-direction: column;
          align-items: start;
          .item-head {
            display: flex;
            align-items: start;
            width: 100%;
            gap: 24px;
            .icon {
              width: 70px;
              height: 70px;
              border-radius: 100px;
              display: flex;
              align-items: center;
              justify-content: center;
              min-width: 70px;
              background: #3899da;
              img {
                width: 36px;
              }
            }
            .head-content {
              width: 100%;
              display: flex;
              flex-direction: column;
              align-items: start;
              gap: 16px;
              .content-title {
                font-weight: 600;
                font-size: 24px;
                line-height: 32px;
                color: #1e1e1e;
              }
              .description {
                width: 100%;
                p {
                  font-weight: 400;
                  font-size: 16px;
                  line-height: 24px;
                  color: #898fa5;
                }
              }
            }
          }
          .item-image {
            margin: 40px auto 0;
            img {
              max-width: 100%;
            }
          }
        }
        .swiper-buttons {
          position: absolute;
          bottom: 0;
          right: 0;
          display: flex;
          align-items: center;
          gap: 12px;
          .swiper-button-prev,
          .swiper-button-next {
            width: 42px;
            height: 42px;
            border-radius: 100px;
            background: #f3f3f3;
            position: initial;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0;
            &::after {
              color: #5c5c5c;
              --swiper-navigation-size: 15px;
            }
          }
        }
      }
    }
  }
}
.video-tutorials-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #272727;
  }
  .video-tutorials {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    margin-top: 50px;
    .video-tutorials-list {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      width: 100%;
      gap: 20px;
      .video {
        position: relative;
        border-radius: 20px;
        display: block;
        width: 100%;
        height: 470px;
        .tags {
          display: flex;
          align-items: center;
          position: absolute;
          gap: 14px;
          top: 20px;
          right: 20px;
          z-index: 2;
          .tag-item {
            padding: 10px;
            background: #ffffff;
            border-radius: 16px;
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: #1e1e1e;
          }
        }
        .video-img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border-radius: 20px;
          filter: brightness(70%);
          transition: 0.3s ease-in-out;
        }
        .video-body {
          position: absolute;
          bottom: 0;
          left: 0;
          width: 100%;
          padding: 20px;
          display: flex;
          align-items: end;
          justify-content: space-between;
          gap: 20px;
          .content {
            position: relative;
            max-width: 100%;
            width: 100%;
            .content-main {
              position: absolute;
              bottom: 0;
              left: 0;
              display: flex;
              flex-direction: column;
              align-items: start;
              gap: 6px;
              width: 100%;
              transition: 0.3s ease-in-out;
              .video-title {
                font-weight: 600;
                font-size: 22px;
                line-height: 33px;
                color: #ffffff;
              }
              .date {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: rgba(255, 255, 255, 0.8);
              }
            }
            .sub_title {
              position: absolute;
              bottom: 0;
              left: 0;
              font-weight: 400;
              font-size: 18px;
              line-height: 27px;
              color: #fff;
              opacity: 0;
              transition: 0.3s ease-in-out;
            }
          }
          .playIcon {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            width: 46px;
            height: 46px;
            min-width: 46px;
            border-radius: 100px;
            svg {
              width: 24px;
              height: 24px;
              min-width: 24px;
            }
            &:hover {
              svg {
                transition: 0.5s ease-in-out;
                transform: scale(1.3) rotate(360deg);
              }
            }
          }
        }
        &:hover {
          .video-img {
            filter: brightness(40%);
          }
          .video-body {
            .content {
              .content-main {
                opacity: 0;
              }
              .sub_title {
                opacity: 1;
              }
            }
          }
        }
      }
    }
    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: 100%;
      margin-top: 100px;
      .pagination-item,
      .pagination-dots {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 4px;
        background: transparent;
        font-weight: 400;
        font-size: 16px;
        line-height: 20px;
        color: #1e1e1e;
      }
      .pagination-item.active {
        background: #4d4aea;
        color: #f5f5f5;
      }
    }
  }
}
.article-detail-container {
  max-width: 1440px;
  width: 100%;
  margin: 60px auto 0;
  .title {
    font-weight: 600;
    font-size: 36px;
    line-height: 54px;
    color: #272727;
  }
  .article-detail {
    margin-top: 50px;
    display: flex;
    align-items: start;
    gap: 45px;
    width: 100%;
    .article-detail-main {
      max-width: 930px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      .article-image {
        width: 100%;
        border-radius: 20px;
        img {
          width: 100%;
          border-radius: 20px;
        }
      }
      .artice-time {
        margin-top: 50px;
        font-weight: 600;
        font-size: 18px;
        line-height: 27px;
        color: #4d4aea;
      }
      .article-title {
        margin-top: 16px;
        font-weight: 600;
        font-size: 40px;
        line-height: 60px;
        color: #272727;
      }
      .content {
        margin-top: 24px;
        p,
        span {
          font-weight: 400;
          font-size: 16px;
          line-height: 24px;
          color: #1e1e1e;
        }
      }
    }
    .article-detail-aside {
      max-width: 345px;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      .other-articles-area {
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        gap: 30px;
        .other-articles-title {
          font-weight: 600;
          font-size: 20px;
          line-height: 30px;
          color: #272727;
        }
        .other-articles {
          display: flex;
          flex-direction: column;
          align-items: start;
          width: 100%;
          gap: 30px;
          .other-article {
            width: 100%;
            padding-bottom: 30px;
            display: flex;
            align-items: start;
            gap: 22px;
            border-bottom: 1px solid #9a9b9e;
            .image {
              width: 140px;
              min-width: 140px;
              height: 90px;
              border-radius: 5px;
              display: flex;
              align-items: center;
              justify-content: center;
              img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: 5px;
              }
            }
            .other-article-body {
              width: 100%;
              display: flex;
              flex-direction: column;
              align-items: start;
              gap: 8px;
              .other-article-time {
                font-weight: 600;
                font-size: 12px;
                line-height: 15px;
                color: #4d4aea;
              }
              .description {
                width: 100%;
                p {
                  font-weight: 400;
                  font-size: 16px;
                  line-height: 24px;
                  color: #1e1e1e;
                  display: -webkit-box;
                  -webkit-line-clamp: 3;
                  overflow: hidden;
                  -webkit-box-orient: vertical;
                  height: 72px;
                }
              }
            }
          }
        }
      }
      .tag-area {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 22px;
        margin-top: 40px;
        .tag-area-title {
          font-weight: 600;
          font-size: 20px;
          line-height: 30px;
          color: #272727;
        }
        .tags {
          display: flex;
          align-items: center;
          flex-wrap: wrap;
          gap: 12px;
          width: 100%;
          .tag-item {
            padding: 10px;
            background: #f7f7f7;
            border-radius: 16px;
            font-weight: 400;
            font-size: 14px;
            line-height: 21px;
            color: #1e1e1e;
          }
        }
      }
    }
  }
  .comments-area {
    margin-top: 100px;
    max-width: 935px;
    width: 100%;
    .totalComments {
      display: flex;
      align-items: center;
      gap: 4px;
      span,
      p {
        font-weight: 600;
        font-size: 24px;
        line-height: 36px;
        color: #272727;
      }
    }
    .comments {
      margin-top: 60px;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 40px;
      .comment-box {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid #cfcfcf;
        .comment-item {
          width: 100%;
          display: flex;
          align-items: start;
          gap: 16px;
          .commentOwnImg {
            width: 64px;
            height: 64px;
            min-width: 64px;
            border-radius: 100px;
            border: 2px solid #4d4aea;
            padding: 3px;
            img {
              width: 100%;
              height: 100%;
              border-radius: 100px;
              object-fit: cover;
            }
          }
          .commentBody {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: start;
            gap: 30px;
            .commentBody-head {
              width: 100%;
              display: flex;
              align-items: center;
              justify-content: space-between;
              gap: 20px;
              .commentOwn-headLeft {
                display: flex;
                flex-direction: column;
                align-items: start;
                .ownFName {
                  font-weight: 600;
                  font-size: 16px;
                  line-height: 24px;
                  color: #1e1e1e;
                }
                .comment-time {
                  font-weight: 600;
                  font-size: 12px;
                  line-height: 18px;
                  color: #afa8a2;
                }
              }
              .replyBtn {
                display: flex;
                align-items: center;
                border: none;
                padding: 10px;
                gap: 10px;
                border-radius: 16px;
                font-weight: 400;
                font-size: 14px;
                line-height: 21px;
                color: #afa8a2;
                background: #f8f6f4;
                svg {
                  width: 24px;
                  min-width: 24px;
                  height: 24px;
                }
              }
            }
            .comment-content {
              p,
              span {
                font-weight: 400;
                font-size: 16px;
                line-height: 24px;
                color: #767676;
              }
            }
          }
        }
        .subComment {
          padding-left: 80px;
          width: 100%;
          .subComment-item {
            width: 100%;
            display: flex;
            align-items: start;
            gap: 16px;
            background: #f8f6f4;
            padding: 30px 20px;
            border-radius: 16px;
            .commentOwnImg {
              width: 64px;
              height: 64px;
              min-width: 64px;
              border-radius: 100px;
              border: 2px solid #4d4aea;
              padding: 3px;
              img {
                width: 100%;
                height: 100%;
                border-radius: 100px;
                object-fit: cover;
              }
            }
            .commentBody {
              width: 100%;
              display: flex;
              flex-direction: column;
              align-items: start;
              gap: 30px;
              .commentBody-head {
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 20px;
                .commentOwn-headLeft {
                  display: flex;
                  flex-direction: column;
                  align-items: start;
                  .ownFName {
                    font-weight: 600;
                    font-size: 16px;
                    line-height: 24px;
                    color: #1e1e1e;
                  }
                  .comment-time {
                    font-weight: 600;
                    font-size: 12px;
                    line-height: 18px;
                    color: #afa8a2;
                  }
                }
                .replyBtn {
                  display: flex;
                  align-items: center;
                  border: none;
                  padding: 10px;
                  gap: 10px;
                  border-radius: 16px;
                  font-weight: 400;
                  font-size: 14px;
                  line-height: 21px;
                  color: #afa8a2;
                  background: #f8f6f4;
                  svg {
                    width: 24px;
                    min-width: 24px;
                    height: 24px;
                  }
                }
              }
              .comment-content {
                p,
                span {
                  font-weight: 400;
                  font-size: 16px;
                  line-height: 24px;
                  color: #767676;
                }
              }
            }
          }
        }
      }
    }
    .more {
      display: block;
      margin: 40px auto 0;
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      color: #4d4aea;
      text-align: center;
    }
  }
  .comment-form {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: 810px;
    width: 100%;
    .form-title {
      font-weight: 600;
      font-size: 24px;
      line-height: 36px;
      color: #272727;
    }
    .note {
      margin-top: 8px;
      font-weight: 400;
      font-size: 14px;
      line-height: 21px;
      color: #767676;
    }
    form {
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: start;
      gap: 30px;
      margin-top: 50px;
      .form-item {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 12px;
        width: 100%;
        label {
          font-weight: 600;
          font-size: 14px;
          line-height: 21px;
          color: #1e1e1e;
          sup {
            color: #e62729;
          }
        }
        input,
        textarea {
          width: 100%;
          border: none;
          background: #f7f7f7;
          border-radius: 20px;
          padding: 12px;
          font-size: 16px;
          line-height: 24px;
          font-weight: 400;
          color: #000;
        }
        textarea {
          height: 190px;
          resize: none;
        }
      }
      .form-items {
        width: 100%;
        display: grid;
        gap: 40px;
        grid-template-columns: repeat(2, 1fr);
      }
      .sendComment {
        margin-top: 20px;
        width: 100%;
        color: #fff;
        text-align: center;
        border-radius: 16px;
        background: #3899da;
        border: none;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        padding: 12px;
      }
    }
  }
  .mobile-tag-area {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: start;
    gap: 22px;
    margin-top: 80px;
    .tag-area-title {
      font-weight: 600;
      font-size: 20px;
      line-height: 30px;
      color: #272727;
    }
    .tags {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      width: 100%;
      .tag-item {
        padding: 10px;
        background: #f7f7f7;
        border-radius: 16px;
        font-weight: 400;
        font-size: 14px;
        line-height: 21px;
        color: #1e1e1e;
      }
    }
  }
}
@media only screen and (max-width: 1250px) {
  .p-lr {
    padding-left: 40px;
    padding-right: 40px;
  }
  .mt-130 {
    margin-top: 100px;
  }
  nav {
    .navbar-container {
      .logo {
        width: 170px;
        min-width: 170px;
      }
      .navbar-menu {
        max-width: 510px;
        .dropMenu {
          padding: 30px 0;
          .dropMenuBox {
            max-width: 885px;
            padding: 20px 30px 25px;
            .dropMenuBox-links {
              .drop-link {
                gap: 14px;
                padding: 20px 16px;
              }
            }
            .seeAll {
              margin-top: 16px;
            }
          }
        }
        .subMenu {
          .subMenu-links {
            width: 320px;
            transform: translateX(-35%);
            .subMenu-link {
              gap: 12px;
              padding: 16px 12px;
            }
          }
        }
      }
      .navbar-right {
        gap: 24px;
      }
    }
  }
  .home-hero {
    padding: 160px 0 40px;
    .home-hero-container {
      gap: 40px;
      justify-content: space-between;
      .content {
        max-width: 450px;
        padding-top: 30px;
        h1 {
          font-size: 54px;
          line-height: 68px;
        }
        .desc {
          margin-top: 16px;
          max-width: 400px;
        }
      }
      .heroImg {
        max-width: 620px;
      }
    }
  }
  .home-solutions-container {
    .home-solutions-head {
      gap: 20px;
      .section-title {
        font-size: 30px;
        line-height: 44px;
        max-width: 750px;
      }
    }
    .home-solutions {
      margin-top: 44px;
      .solution-card {
        padding: 50px 26px;
        .solution-title {
          font-size: 20px;
          line-height: 30px;
          -webkit-line-clamp: 2;
          height: 60px;
        }
        .desc {
          margin-top: 20px;
          p {
            -webkit-line-clamp: 3;
            height: 72px;
          }
        }
        .more {
          margin-top: 20px;
          margin-bottom: 60px;
        }
        .solutionImg {
          max-width: 40%;
        }
        &:nth-child(5n + 1) {
          max-width: 31.8%;
        }
        &:nth-child(5n + 2) {
          max-width: 31.8%;
        }
        &:nth-child(5n + 3) {
          max-width: 31.8%;
        }
        &:nth-child(5n + 4) {
          max-width: 65.8%;
          .desc {
            margin-top: 30px;
            max-width: 414px;
          }
        }
        &:nth-child(5n + 5) {
          max-width: 31.8%;
        }
      }
    }
  }
  .home-about {
    padding-left: 50px;
    padding-right: 50px;

    .home-aboutImg {
      min-width: 424px;
      width: 424px;
    }
    .home-about-content {
      max-width: 600px;
      .section-title {
        font-size: 30px;
        line-height: 44px;
      }
      .content {
        margin-top: 32px;
      }
    }
  }
  .home-helpCenter {
    padding-left: 50px;
    padding-right: 50px;
    .home-helpCenter-content {
      max-width: 600px;
      .section-title {
        font-size: 30px;
        line-height: 44px;
      }
      .content {
        margin-top: 35px;
      }
      .more {
        margin-top: 35px;
      }
    }
    .home-helpCenterImg {
      min-width: 468px;
      width: 468px;
    }
  }
  .project-item {
    .card-img {
      .directionIcons {
        top: 20px;
        right: 20px;
      }
    }
  }
  .home-project-container {
    .home-project-head {
      .section-title {
        font-size: 30px;
        line-height: 44px;
        max-width: 700px;
      }
    }
    .home-projects {
      margin-top: 50px;
      gap: 40px 20px;
      .project-item {
        .card-img {
          height: 350px;
        }
      }
    }
  }
  .comments-container {
    .comments-head {
      .section-title {
        margin-top: 10px;
        font-size: 30px;
        line-height: 44px;
      }
    }
    .comments-slide {
      margin-top: 45px;
      padding-bottom: 60px;
    }
  }
  .get_a_quote-container {
    .get_a_quote {
      padding: 46px 30px;
      .content {
        max-width: 44%;
        .section-title {
          font-size: 30px;
          line-height: 44px;
        }
        .quote_link {
          margin-top: 24px;
        }
      }
      .get_a_quote_img {
        right: 110px;
        width: 257px;
        height: 200px;
      }
      .get_a_quote_tags {
        display: flex;
        align-items: center;
        position: absolute;
        right: 20px;
        top: 20px;
        width: 500px;
        height: 100%;
        .tagitem {
          padding: 12px;
          font-size: 10px;
          line-height: 12px;
          &:nth-child(3n + 1) {
            top: 38%;
            left: 9%;
          }
          &:nth-child(3n + 2) {
            top: 23%;
            left: 46%;
          }
          &:nth-child(3n + 3) {
            top: 40%;
            right: -1%;
          }
        }
      }
      &:hover {
        .get_a_quote_img {
          height: 260px;
        }
        .get_a_quote_tags {
          .tagitem {
            &:nth-child(3n + 1) {
              transform: rotate(-30deg);
              top: 20%;
            }
            &:nth-child(3n + 2) {
              transform: rotate(1.5deg);
              top: 3%;
            }
            &:nth-child(3n + 3) {
              transform: rotate(12deg);
              top: 16%;
              right: 0%;
            }
          }
        }
      }
    }
  }
  footer {
    .footer-container {
      .footer-main {
        gap: 20px;
        .footer-content {
          max-width: 260px;
          .logo {
            width: 240px;
            min-width: 240px;
          }
        }
        .footer-boxes {
          max-width: 800px;
          gap: 20px;
        }
      }
      .footer-bottom {
        margin-top: 80px;
      }
    }
  }
  .breadcrumb {
    margin: 52px auto 0;
  }
  .solutions-container {
    margin: 50px auto 0;
    .title {
      font-size: 30px;
      line-height: 44px;
      max-width: 730px;
    }
    .solutions {
      margin-top: 45px;
      grid-template-columns: repeat(3, 1fr);
      .solution-card {
        padding: 50px 26px;
        .solution-title {
          font-size: 20px;
          line-height: 30px;
          -webkit-line-clamp: 2;
          height: 60px;
        }
        .desc {
          margin-top: 20px;
          p {
            -webkit-line-clamp: 3;
            height: 72px;
          }
        }
        .more {
          margin-top: 20px;
          margin-bottom: 60px;
        }
        .solutionImg {
          max-width: 50%;
        }
      }
    }
  }
  .projects-container {
    margin: 50px auto 0;
    .projects-head {
      .title {
        font-size: 30px;
        line-height: 44px;
        max-width: 650px;
      }
      .gridButtons {
        .twoGrid {
          width: 45px;
          height: 35px;
          min-width: 45px;
          svg {
            width: 20px;
            height: 18px;
          }
        }
        .threeGrid {
          width: 45px;
          height: 35px;
          min-width: 45px;
          svg {
            width: 30px;
            height: 18px;
          }
        }
      }
    }
    .projects {
      margin-top: 45px;
      gap: 50px 20px;
      .project-item {
        .card-img {
          height: 350px;
        }
      }
    }
    .threeType {
      .project-item {
        .card-img {
          height: 226px;
        }
      }
    }
    .pagination {
      margin-top: 90px;
    }
  }
  .project-detail-head {
    margin: 50px auto 0;
    .title {
      font-size: 30px;
      line-height: 44px;
      max-width: 750px;
    }
  }
  .project-detail-content {
    margin-top: 65px;
    .firstImg {
      max-width: 924px;
    }
  }
  .article {
    .tags {
      gap: 12px;
      top: 14px;
      right: 14px;
    }
    .article-body {
      padding: 14px;
      .content {
        .content-main {
          .artice-title {
            font-size: 20px;
            line-height: 30px;
          }
        }
        .sub_title {
          font-size: 16px;
          line-height: 24px;
        }
      }
    }
  }
  .article-container {
    width: 100%;
    margin: 50px auto 0;
    .title {
      font-size: 30px;
      line-height: 44px;
    }
    .articles {
      margin-top: 45px;
      .top-articles {
        .top-left-articles {
          height: 434px;
          .article {
            .article-body {
              .content {
                max-width: 60%;
                .content-main {
                  .artice-title {
                    font-size: 24px;
                    line-height: 36px;
                  }
                }
              }
            }
          }
        }
        .top-right-articles {
          .article {
            height: 207px;
          }
        }
      }
      .articles-list {
        .article {
          height: 430px;
        }
      }
      .pagination {
        margin-top: 90px;
      }
    }
  }
  .solutionsDetail-container {
    margin: 50px auto 0;
    .title {
      font-size: 30px;
      line-height: 44px;
      max-width: 780px;
    }
    .detailImg {
      margin-top: 45px;
    }
    .solutionsDetail {
      margin-top: 60px;
      .solutionsDetail-top {
        .solutionsContent {
          max-width: 720px;
        }
        .solutionTabs {
          max-width: 407px;
        }
      }
      .solutionAdvantageTabContent {
        gap: 100px;
        .advantage-item {
          .content {
            max-width: 550px;
          }
          .itemImg {
            min-width: 350px;
          }
        }
      }
      .solutionFunctionsTabContent {
        .function-item {
          gap: 45px;
        }
      }
    }
  }
  .contact-container {
    margin: 50px auto 0;
    .title {
      font-size: 30px;
      line-height: 44px;
    }
    .contact-apply {
      margin-top: 50px;
      padding: 64px 44px;
      gap: 45px;
      .apply-links {
        gap: 24px;
        a {
          max-width: 253px;
        }
      }
      .contactForm {
        max-width: 916px;
        padding: 55px 40px;
        gap: 30px;
        .form-items {
          grid-template-columns: repeat(2, 1fr);
          gap: 50px;
        }
      }
    }
    .contact-us {
      margin-top: 90px;
      max-width: 710px;
      gap: 50px;
      .contact-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        .contact-item {
          .item-result {
            font-size: 20px;
            line-height: 30px;
          }
        }
      }
    }
  }
  .map {
    margin-bottom: -100px;
  }
  .about-container {
    margin: 50px auto 0;
    .title {
      font-size: 30px;
      line-height: 44px;
      max-width: 700px;
    }
    .aboutImg {
      margin-top: 45px;
    }
    .aboutDetail {
      margin-top: 60px;
      .aboutDetail-content {
        .aboutContent {
          max-width: 720px;
        }
        .aboutContentTabs {
          max-width: 407px;
        }
      }
    }
    .aboutAdvantages {
      .title {
        margin-top: 10px;
        max-width: 100%;
      }
      .advantages-boxes {
        gap: 40px;
        .advantage-box {
          .box-title {
            -webkit-line-clamp: 2;
            height: 64px;
          }
        }
      }
    }
    .workProcess-container {
      .workProcess-area {
        grid-template-columns: minmax(0, 243px) minmax(0, 650px);
        .workProcess-titles {
          max-width: 243px;
          top: 80px;
          .title {
            margin-top: 10px;
            max-width: 100%;
          }
        }
        .workProcess-items {
          max-width: 650px;
          gap: 50px;
          .workProcess-item {
            padding: 40px;
            top: 80px;
            .item-head {
              gap: 34px;
            }
            .item-image {
              max-height: 200px;
            }
            .count {
              width: 32px;
              height: 32px;
              min-width: 32px;
              bottom: 16px;
              right: 16px;
              font-size: 12px;
              line-height: 16px;
            }
          }
        }
      }
    }
  }
  .video-tutorials-container {
    margin: 50px auto 0;
    .title {
      font-size: 30px;
      line-height: 44px;
    }
    .video-tutorials {
      margin-top: 45px;
      .video-tutorials-list {
        .video {
          height: 400px;
          .tags {
            gap: 12px;
            top: 14px;
            right: 14px;
          }
          .video-body {
            padding: 14px;
            .content {
              .content-main {
                .video-title {
                  font-size: 20px;
                  line-height: 30px;
                }
              }
              .sub_title {
                font-size: 16px;
                line-height: 24px;
              }
            }
          }
        }
      }
      .pagination {
        margin-top: 90px;
      }
    }
  }
  .article-detail-container {
    margin: 50px auto 0;
    .title {
      font-size: 30px;
      line-height: 44px;
    }
    .article-detail {
      margin-top: 45px;
      gap: 35px;
      .article-detail-main {
        .artice-time {
          margin-top: 45px;
        }
        .article-title {
          font-size: 32px;
          line-height: 40px;
        }
      }
      .article-detail-aside {
        max-width: 285px;
        .other-articles-area {
          .other-articles {
            .other-article {
              .image {
                width: 120px;
                min-width: 120px;
                height: 90px;
              }
            }
          }
        }
        .tag-area {
          margin-top: 40px;
        }
      }
    }
    .comments-area {
      margin-top: 80px;
      .comments {
        margin-top: 40px;
        .comment-box {
          .subComment {
            padding-left: 60px;
            .subComment-item {
              padding: 20px;
            }
          }
        }
      }
    }
    .comment-form {
      max-width: 810px;
      form {
        .form-items {
          grid-template-columns: repeat(2, 1fr);
        }
      }
    }
  }
}
@media only screen and (max-width: 992px) {
  nav {
    padding-top: 20px;
    padding-bottom: 0;
    .navbar-container {
      .logo {
        width: 160px;
        min-width: 160px;
      }
      .navbar-menu {
        display: none;
      }
      .navbar-right {
        gap: 24px;
        .phoneLink {
          display: none;
        }
        .hamburger {
          display: flex;
        }
      }
    }
  }
  .mobile-menu-container {
    display: block;
  }
  .home-hero {
    padding: 140px 0 60px;
    .home-hero-container {
      gap: 40px;
      flex-direction: column;
      align-items: start;
      .content {
        max-width: 100%;
        padding-top: 0;
        .desc {
          max-width: 100%;
        }
        .phoneLink {
          display: flex;
        }
      }
      .heroImg {
        max-width: 620px;
      }
    }
  }
  .home-solutions-container {
    .home-solutions-head {
      gap: 0;
      .section-title {
        max-width: 100%;
      }
      .more {
        display: none;
      }
    }
    .home-solutions {
      display: none;
    }
    .home-solutions-slide {
      display: block;
    }
  }
  .home-about {
    .home-aboutImg {
      display: none;
    }
    .home-about-content {
      max-width: 100%;
      .mobileImg {
        margin-top: 40px;
        max-width: 500px;
        display: flex;
      }
    }
  }
  .home-helpCenter {
    .home-helpCenter-content {
      max-width: 100%;
      .mobileImg {
        display: flex;
        margin-top: 40px;
        max-width: 500px;
      }
    }
    .home-helpCenterImg {
      display: none;
    }
  }
  .home-project-container {
    .home-projects {
      .project-item {
        .card-img {
          height: 300px;
        }
      }
    }
  }
  .get_a_quote-container {
    .get_a_quote {
      .content {
        max-width: 100%;
      }
      .get_a_quote_img {
        display: none;
      }
      .get_a_quote_tags {
        display: none;
      }
    }
  }
  footer {
    .footer-container {
      .footer-main {
        gap: 60px;
        flex-direction: column;
        align-items: start;
        .footer-content {
          max-width: 320px;
          .logo {
            width: 270px;
            min-width: 270px;
          }
        }
        .footer-boxes {
          max-width: 100%;
        }
      }
    }
  }
  .projects-container {
    .projects-head {
      .gridButtons {
        display: none;
      }
    }
    .projects {
      .project-item {
        .card-img {
          height: 300px;
        }
      }
    }
    .threeType {
      grid-template-columns: repeat(2, 1fr);
      .project-item {
        .card-img {
          height: 300px;
        }
      }
    }
  }
  .article-container {
    .articles {
      .top-articles {
        grid-template-columns: repeat(1, 1fr);
        .top-right-articles {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          .article {
            height: 430px;
          }
        }
      }
      .articles-list {
        grid-template-columns: repeat(2, 1fr);
      }
    }
  }
  .video-tutorials-container {
    .video-tutorials {
      .video-tutorials-list {
        grid-template-columns: repeat(2, 1fr);
        .video {
          height: 450px;
        }
      }
    }
  }
  .article-detail-container {
    .article-detail {
      gap: 80px;
      flex-direction: column;
      .article-detail-main {
        max-width: 100%;
      }
      .article-detail-aside {
        max-width: 100%;
        .other-articles-area {
          .other-articles {
            .other-article {
              .image {
                width: 140px;
                min-width: 140px;
                height: 90px;
              }
            }
          }
        }
        .tag-area {
          display: none;
        }
      }
    }
    .mobile-tag-area {
      display: flex;
    }
  }
  .about-container {
    .workProcess-container {
      .workProcess-area {
        .workProcess-items {
          .workProcess-item {
            .item-image {
              max-height: 150px;
            }
          }
        }
      }
    }
  }
}
@media only screen and (max-width: 768px) {
  .p-lr {
    padding-left: 20px;
    padding-right: 20px;
  }
  .mt-130 {
    margin-top: 80px;
  }
  .home-hero {
    .home-hero-container {
      .content {
        h1 {
          font-size: 40px;
          line-height: 60px;
        }
      }
      .heroImg {
        border-radius: 16px;
        img,
        video {
          border-radius: 16px;
        }
      }
    }
  }
  .home-solutions-container {
    .home-solutions-head {
      .section-title {
        font-size: 26px;
        line-height: 38px;
      }
    }
  }
  .home-about {
    padding-left: 20px;
    padding-right: 20px;
    .home-about-content {
      max-width: 100%;
      .section-title {
        font-size: 26px;
        line-height: 38px;
      }
      .content {
        margin-top: 40px;
      }
    }
  }
  .home-helpCenter {
    padding-left: 20px;
    padding-right: 20px;
    .home-helpCenter-content {
      .section-title {
        font-size: 26px;
        line-height: 38px;
      }
      .content {
        margin-top: 40px;
      }
      .more {
        margin-top: 40px;
      }
    }
  }
  .home-project-container {
    .home-project-head {
      .section-title {
        font-size: 26px;
        line-height: 38px;
        max-width: 100%;
      }
      .more {
        display: none;
      }
    }
    .home-projects {
      display: none;
    }
    .home-projects-slide {
      display: block;
    }
  }
  .comments-container {
    .comments-head {
      .section-title {
        margin-top: 12px;
        font-size: 26px;
        line-height: 38px;
      }
    }
    .comments-slide {
      margin-top: 40px;
      padding-bottom: 50px;
    }
  }
  .get_a_quote-container {
    .get_a_quote {
      padding: 46px 20px;
      .content {
        .section-title {
          font-size: 26px;
          line-height: 38px;
        }
        .description {
          max-width: 100%;
        }
      }
    }
  }
  footer {
    .footer-container {
      .footer-main {
        .footer-content {
          max-width: 100%;
          .description {
            margin-top: 30px;
            max-width: 400px;
          }
        }
        .footer-boxes {
          gap: 50px;
          flex-direction: column;
          align-items: start;
          .footer-contact {
            .footer-contact-item {
              max-width: 100%;
            }
          }
        }
      }
      .footer-bottom {
        margin-top: 54px;
        flex-direction: column-reverse;
        align-items: start;
      }
    }
  }
  .breadcrumb {
    margin: 40px auto 0;
  }
  .solutions-container {
    margin: 40px auto 0;
    .title {
      font-size: 26px;
      line-height: 38px;
      max-width: 100%;
    }
    .solutions {
      margin-top: 40px;
      grid-template-columns: repeat(2, 1fr);
      .solution-card {
        padding: 50px 26px 40px;
        .desc {
          margin-top: 20px;
          margin-bottom: 20px;
          p {
            -webkit-line-clamp: 5;
            height: 120px;
          }
        }
        .more {
          margin-top: auto;
          margin-bottom: 0;
        }
        .solutionImg {
          max-width: 40%;
        }
      }
    }
  }
  .projects-container {
    margin: 40px auto 0;
    .projects-head {
      .title {
        font-size: 26px;
        line-height: 38px;
        max-width: 600px;
      }
    }
    .projects {
      margin-top: 40px;
      gap: 40px 20px;
      .project-item {
        .card-img {
          height: 200px;
        }
      }
    }
    .threeType {
      grid-template-columns: repeat(2, 1fr);
      .project-item {
        .card-img {
          height: 200px;
        }
      }
    }
    .pagination {
      margin-top: 80px;
    }
  }
  .project-detail-head {
    margin: 40px auto 0;
    .title {
      font-size: 26px;
      line-height: 38px;
      max-width: 600px;
    }
  }
  .project-detail-content {
    margin-top: 50px;
    .firstImg {
      max-width: 724px;
    }
  }
  .article-container {
    margin: 40px auto 0;
    .title {
      font-size: 26px;
      line-height: 38px;
    }
    .articles {
      margin-top: 40px;
      .top-articles {
        grid-template-columns: repeat(1, 1fr);
        .top-left-articles {
          height: 384px;
          .article {
            .article-body {
              .content {
                max-width: 100%;
                .content-main {
                  .artice-title {
                    font-size: 20px;
                    line-height: 30px;
                  }
                }
              }
            }
          }
        }
        .top-right-articles {
          grid-template-columns: repeat(2, 1fr);
          .article {
            height: 350px;
          }
        }
      }
      .articles-list {
        grid-template-columns: repeat(2, 1fr);
        .article {
          height: 350px;
        }
      }
      .pagination {
        margin-top: 80px;
      }
    }
  }
  .solutionsDetail-container {
    margin: 40px auto 0;
    .title {
      font-size: 26px;
      line-height: 38px;
      max-width: 100%;
    }
    .detailImg {
      margin-top: 40px;
    }
    .solutionsDetail {
      margin-top: 40px;
      .solutionsDetail-top {
        flex-direction: column-reverse;
        .solutionsContent {
          max-width: 100%;
        }
        .solutionTabs {
          max-width: 100%;
        }
      }
      .solutionAdvantageTabContent {
        gap: 80px;
        .advantage-item {
          flex-direction: column-reverse;
          .content {
            max-width: 100%;
          }
          .itemImg {
            min-width: 0;
            max-width: 100%;
            width: auto;
          }
          &:nth-child(even) {
            flex-direction: column-reverse;
          }
        }
      }
      .solutionFunctionsTabContent {
        .function-item {
          gap: 40px;
        }
      }
    }
  }
  .contact-container {
    margin: 40px auto 0;
    padding-left: 0;
    padding-right: 0;
    .title {
      padding-left: 20px;
      padding-right: 20px;
      font-size: 26px;
      line-height: 38px;
    }
    .contact-apply {
      margin-top: 40px;
      padding: 40px 20px;
      gap: 40px;
      border-radius: 20px;
      .apply-links {
        gap: 14px;
        flex-direction: column;
        a {
          max-width: 322px;
        }
      }
      .contactForm {
        max-width: 100%;
        padding: 50px 15px;
        gap: 20px;
        .form-items {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
        }
        .sendForm {
          margin-top: 20px;
        }
      }
    }
    .contact-us {
      margin-top: 80px;
      max-width: 100%;
      gap: 40px;
      .contact-items {
        padding-left: 20px;
        padding-right: 20px;
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
      }
    }
  }
  .map {
    margin-bottom: -80px;
  }
  .about-container {
    margin: 40px auto 0;
    .title {
      font-size: 26px;
      line-height: 38px;
      max-width: 100%;
    }
    .aboutImg {
      margin-top: 40px;
    }
    .aboutDetail {
      .aboutDetail-content {
        flex-direction: column-reverse;
        .aboutContent {
          max-width: 100%;
        }
        .aboutContentTabs {
          max-width: 100%;
        }
      }
    }
    .aboutAdvantages {
      .title {
        margin-top: 12px;
        max-width: 250px;
      }
      .advantages-boxes {
        flex-direction: column;
        gap: 80px;
        .advantage-box {
          max-width: 100%;
          .box-title {
            display: block;
            height: auto;
          }
        }
      }
    }
    .workProcess-container {
      .workProcess-area {
        display: flex;
        flex-direction: column;
        align-items: start;
        .workProcess-titles {
          max-width: 100%;
          width: 100%;
          align-items: center;
          padding-top: 0;
          height: auto;
          position: initial;
          .title {
            margin-top: 12px;
            max-width: 250px;
            text-align: center;
          }
        }
        .workProcess-items {
          display: none;
        }
        .workProcess-items-slide {
          display: block;
        }
      }
    }
  }
  .video-tutorials-container {
    margin: 40px auto 0;
    .title {
      font-size: 26px;
      line-height: 38px;
    }
    .video-tutorials {
      margin-top: 40px;
      .video-tutorials-list {
        .video {
          height: 380px;
        }
      }
      .pagination {
        margin-top: 80px;
      }
    }
  }
  .article-detail-container {
    margin: 40px auto 0;
    .title {
      font-size: 26px;
      line-height: 38px;
    }
    .article-detail {
      margin-top: 40px;
      gap: 80px;
      flex-direction: column;
      .article-detail-main {
        max-width: 100%;
        .article-image {
          img {
            width: 100%;
            object-fit: cover;
            height: 100%;
            min-height: 400px;
          }
        }
        .artice-time {
          margin-top: 40px;
        }
        .article-title {
          font-size: 26px;
          line-height: 36px;
        }
      }
    }
    .comments-area {
      .comments {
        .comment-box {
          .subComment {
            padding-left: 0;
          }
        }
      }
    }
    .comment-form {
      max-width: 100%;
      form {
        .form-items {
          gap: 30px;
          grid-template-columns: repeat(1, 1fr);
        }
      }
    }
  }
}
@media only screen and (max-width: 575px) {
  .mobile-menu-container {
    width: 100%;
  }
  .solutions-container {
    .solutions {
      margin-top: 40px;
      grid-template-columns: repeat(1, 1fr);
      .solution-card {
        padding: 50px 26px 40px;
        .solution-title {
          display: block;
          height: auto;
        }
        .desc {
          margin-top: 20px;
          margin-bottom: 20px;
          p {
            -webkit-line-clamp: 5;
            height: 120px;
          }
        }
        .more {
          margin-top: auto;
          margin-bottom: 0;
        }
        .solutionImg {
          max-width: 100%;
          height: 90px;
        }
      }
    }
  }
  .projects-container {
    .projects {
      margin-top: 40px;
      gap: 40px 20px;
      grid-template-columns: repeat(1, 1fr);
      .project-item {
        .card-img {
          height: auto;
        }
      }
    }
    .threeType {
      grid-template-columns: repeat(1, 1fr);
      .project-item {
        .card-img {
          height: auto;
        }
      }
    }
  }
  .article-container {
    .articles {
      .top-articles {
        .top-left-articles {
          height: 470px;
        }
        .top-right-articles {
          grid-template-columns: repeat(1, 1fr);
          .article {
            height: 470px;
          }
        }
      }
      .articles-list {
        grid-template-columns: repeat(1, 1fr);
        .article {
          height: 470px;
        }
      }
    }
  }
  .contact-container {
    .contact-apply {
      .contactForm {
        .form-items {
          grid-template-columns: repeat(1, 1fr);
        }
      }
    }
  }
  .video-tutorials-container {
    .video-tutorials {
      .video-tutorials-list {
        grid-template-columns: repeat(1, 1fr);
        .video {
          min-height: 340px;
          height: auto;
        }
      }
    }
  }
}
