@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;900&display=swap");
/*Primary Colors*/
/*Accent Colors*/
/*Neutral Colors*/
@font-face {
  font-family: 'eina01-regular';
  src: url("../../fonts/eina01-regular/eina01-regular-webfont.woff2") format("woff2"), url("../../fonts/eina01-regular/eina01-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'eina01-bold';
  src: url("../../fonts/eina01-bold/eina01-bold-webfont.woff2") format("woff2"), url("../../fonts/eina01-bold/eina01-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'eina01-semibold';
  src: url("../../fonts/eina01-semibold/eina01-semibold-webfont.woff2") format("woff2"), url("../../fonts/eina01-semibold/eina01-semibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
.padtb0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important; }

.padt60 {
  padding-top: 60px !important; }

.padt80 {
  padding-top: 80px !important; }

.padlr0 {
  padding-left: 0px !important;
  padding-right: 0px !important; }

.padt15 {
  padding-top: 15px !important; }

body {
  background: #f9f9f9;
  padding-top: 100px;
  font-family: "Inter", sans-serif; }

/* Header */
.header-area {
  z-index: 999;
  transition: all 0.3s ease-in-out;
  margin-top: 20px; }
  .header-area .custom-navbar {
    background: rgba(255, 255, 255, 0.4);
    border: rgba(255, 255, 255, 0.5) solid 1px;
    border-radius: 9999px;
    height: 60px;
    padding: 12px 14px 12px 24px;
    max-width: 920px;
    margin: 0px auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(24px);
    transition: all 0.3s ease-in-out; }
    .header-area .custom-navbar.navbar-light .navbar-nav .nav-link {
      color: #0a0d13;
      font-weight: 500;
      font-size: 14px;
      padding: 8px 16px;
      border-radius: 9999px;
      display: flex; }
      .header-area .custom-navbar.navbar-light .navbar-nav .nav-link:hover {
        color: #0a0d13;
        background-color: #2942631f; }
      .header-area .custom-navbar.navbar-light .navbar-nav .nav-link.dropdown-toggle span {
        background-image: url("../../images/carrot-down.svg");
        background-position: center right;
        background-repeat: no-repeat;
        background-size: 20px;
        display: inline-block;
        width: 20px;
        height: 23px; }
      .header-area .custom-navbar.navbar-light .navbar-nav .nav-link.dropdown-toggle::after {
        display: none; }
  .header-area .navbar-brand img {
    height: 32px; }
  @media (max-width: 991.98px) {
    .header-area {
      margin-top: 0px; }
      .header-area .container {
        padding: 0px; }
      .header-area .custom-navbar {
        border-radius: 0px; } }

.contact-btn {
  background: #294263;
  color: #fff;
  height: 36px;
  border-radius: 9999px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  font-family: "Inter", sans-serif;
  text-decoration: none; }
  .contact-btn:hover {
    background: #0d2b56;
    color: #fff; }

/* Dropdown */
.custom-dropdown {
  margin-top: 10px;
  width: 753px;
  border: 0;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12); }
  .custom-dropdown .mega-menu {
    display: flex;
    gap: 24px; }
    .custom-dropdown .mega-menu h3 {
      font-size: 14px;
      color: #848484;
      font-weight: 600;
      font-family: "Inter", sans-serif;
      text-transform: uppercase;
      padding-left: 16px;
      margin-bottom: 8px; }
    .custom-dropdown .mega-menu ul {
      margin: 0px;
      padding: 0px;
      gap: 0px;
      display: flex;
      flex-direction: column;
      padding-top: 8px; }
      .custom-dropdown .mega-menu ul li {
        list-style-type: none; }
        .custom-dropdown .mega-menu ul li .dropdown-item {
          padding: 6px 16px;
          font-size: 14px;
          font-weight: 500;
          line-height: 20px;
          display: flex;
          gap: 12px;
          color: #0A0D13; }
          .custom-dropdown .mega-menu ul li .dropdown-item:hover {
            background: #f4fff8;
            color: #00c853; }

/* Smooth dropdown animation */
.dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s;
  backdrop-filter: blur(40px);
  background-color: rgba(255, 255, 255, 0.95); }

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding-top: 20px; }

/* Mobile */
@media (max-width: 991px) {
  .custom-navbar {
    border-radius: 15px; }
    .custom-navbar.navbar-light .navbar-toggler {
      margin-bottom: 4px; }

  .navbar-collapse {
    padding-top: 20px;
    background-color: #ffffff; }

  .navbar-nav {
    align-items: flex-start !important; }

  .dropdown-menu {
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 15px;
    width: 100%; }
    .dropdown-menu.show {
      display: block; }
    .dropdown-menu .mega-menu h3 {
      display: none; }
    .dropdown-menu .mega-menu ul:nth-child(2), .dropdown-menu .mega-menu ul:nth-child(3) {
      display: none; } }
/* Desktop */
@media (min-width: 992px) {
  .dropdown-menu {
    left: -120%; }

  .offcanvas-lg {
    position: static;
    transform: none !important;
    visibility: visible !important;
    background: transparent;
    border: 0;
    width: auto; }

  .offcanvas-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    overflow: visible; } }
@media (max-width: 991.98px) {
  .offcanvas {
    width: 320px;
    right: -1px; }
    .offcanvas .offcanvas-body {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 1.5rem; }
      .offcanvas .offcanvas-body .navbar-nav {
        width: 100%; }
        .offcanvas .offcanvas-body .navbar-nav .nav-link {
          padding: .9rem 0;
          width: max-content; }
      .offcanvas .offcanvas-body .contact-btn {
        width: 100%;
        margin-top: 20px;
        text-align: center; }

  .modal-backdrop {
    width: 100%; }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    border: 0;
    box-shadow: none;
    padding-left: 1rem;
    display: none; }

  .dropdown-menu.show {
    display: block; } }
.info-section {
  margin: 0px auto; }

.info-card {
  min-height: 332px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 40px;
  padding: 40px;
  height: 100%; }
  .info-card p,
  .info-card .delivery-title {
    font-size: 20px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    line-height: 28px;
    margin-bottom: 0px; }
  .info-card h4 {
    font-size: 46px;
    font-weight: 800;
    font-family: "Inter", sans-serif;
    line-height: 100%;
    margin-bottom: 0px; }
  .info-card .rate {
    font-size: 46px;
    font-weight: 800;
    font-family: "Inter", sans-serif;
    line-height: 28px; }
  .info-card .rate-text {
    font-size: 20px;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    line-height: 28px;
    color: #000000; }

.green-card {
  background: #00ce5a;
  color: #fff; }

.dark-card {
  background: #0c1827;
  color: #fff;
  padding: 36px;
  flex-direction: column; }
  .dark-card .delivery-block {
    display: flex;
    flex-direction: column;
    gap: 20px; }

.white-card {
  background: #fff;
  color: #222; }

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff4d; }
  .icon-circle img {
    width: 32px; }
  .icon-circle.green-circle {
    background-color: #00ce5a33; }
  .icon-circle.gray-circle {
    background-color: #ffffff4d; }

.green-card .icon-circle {
  background: rgba(255, 255, 255, 0.25); }

.dark-card .icon-circle {
  background: #4d5665; }

.white-card .icon-circle {
  background: #d7f8e5;
  color: #08c44a; }

.delivery-title {
  font-size: 24px;
  margin-bottom: 20px; }

.custom-badge {
  display: inline-block;
  border: 1px solid #707070;
  border-radius: 50px;
  color: #fff;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px; }

.rate {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px; }

@media (max-width: 767px) {
  .info-card {
    min-height: auto;
    padding: 30px 20px;
    gap: 20px; }
    .info-card h4 {
      font-size: 36px; }

  .info-card p,
  .delivery-title {
    font-size: 20px; }

  .rate {
    font-size: 36px !important;
    line-height: 100% !important; } }
.companies-block {
  padding: 100px 72px;
  background-color: #ffffff; }
  .companies-block .company-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; }
    .companies-block .company-cnt .company-logo span img {
      height: 40px; }
  @media screen and (max-width: 991px) {
    .companies-block {
      padding: 30px 15px; }
      .companies-block .company-cnt .company-logo span img {
        height: 25px; } }

.block-heading {
  color: #071f40;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  position: relative;
  text-align: center;
  margin-bottom: 0px; }
  .block-heading::before, .block-heading::after {
    content: "";
    width: 99px;
    height: 2px;
    background-color: #1cca67;
    position: absolute; }
    @media screen and (max-width: 991px) {
      .block-heading::before, .block-heading::after {
        display: none; } }
  .block-heading::before {
    left: 0px;
    left: -115px;
    bottom: 11px; }
  .block-heading::after {
    right: -110px;
    bottom: 11px; }
  .block-heading.captilize {
    text-transform: capitalize; }

.sec-main-heading {
  font-size: 48px;
  line-height: 62px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #ffffff;
  max-width: 687px;
  margin: 0px auto;
  text-align: center; }
  .sec-main-heading span {
    color: #00ce5a;
    display: inline-block; }
  @media screen and (max-width: 991px) {
    .sec-main-heading {
      font-size: 26px;
      line-height: 36px; } }

.cto-sec {
  padding: 100px 0px;
  background-color: #071f40; }
  .cto-sec .cto-cnt {
    gap: 40px;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .cto-sec .cto-cnt .block-header {
      display: flex;
      gap: 16px;
      justify-content: center; }
      .cto-sec .cto-cnt .block-header .block-heading {
        color: #ffffff; }
    .cto-sec .cto-cnt h2 {
      color: #ffffff;
      max-width: 687px;
      margin: 0px auto; }
      .cto-sec .cto-cnt h2 span {
        color: #00ce5a;
        display: inline-block; }
    .cto-sec .cto-cnt .cto-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 14px; }
      .cto-sec .cto-cnt .cto-grid .cto-block {
        background-color: #1c2a46;
        border-radius: 20px;
        padding: 24px;
        gap: 30px;
        width: 217px;
        max-height: 222px;
        display: flex;
        flex-direction: column; }
        .cto-sec .cto-cnt .cto-grid .cto-block p {
          font-size: 16px;
          font-weight: 500;
          color: #ffffff;
          line-height: 24px;
          font-family: "Inter", sans-serif;
          letter-spacing: -0.02em; }
        .cto-sec .cto-cnt .cto-grid .cto-block img {
          width: 24px; }
        @media screen and (max-width: 767px) {
          .cto-sec .cto-cnt .cto-grid .cto-block {
            width: 100%;
            align-items: center;
            text-align: center; }
            .cto-sec .cto-cnt .cto-grid .cto-block p {
              max-width: 260px;
              letter-spacing: 0em; } }
        .cto-sec .cto-cnt .cto-grid .cto-block.cto-block-v2 {
          width: 266px;
          gap: 32px;
          padding: 0px 32px;
          background-color: transparent;
          border-right: rgba(255, 255, 255, 0.3) solid 1px;
          border-radius: 0px; }
          .cto-sec .cto-cnt .cto-grid .cto-block.cto-block-v2:last-child {
            border: none; }
          .cto-sec .cto-cnt .cto-grid .cto-block.cto-block-v2 img {
            width: 44px; }
          .cto-sec .cto-cnt .cto-grid .cto-block.cto-block-v2 p {
            letter-spacing: 0em; }
          @media screen and (max-width: 767px) {
            .cto-sec .cto-cnt .cto-grid .cto-block.cto-block-v2 {
              border: none;
              text-align: center;
              align-items: center;
              width: 100%; } }

.banner-sec {
  padding: 72px 0px;
  background-color: transparent; }
  .banner-sec .banner-cnt {
    gap: 25px;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .banner-sec .banner-cnt .block-header {
      display: flex;
      gap: 16px;
      justify-content: center; }
      .banner-sec .banner-cnt .block-header .block-heading {
        color: #071f40; }
    .banner-sec .banner-cnt p {
      font-size: 20px;
      max-width: 997px;
      margin: 0px auto;
      line-height: 28px;
      font-weight: 500;
      color: #000000;
      text-align: center; }
    .banner-sec .banner-cnt h1 {
      font-size: 48px;
      line-height: 56px;
      font-family: "Inter", sans-serif;
      font-weight: 700;
      color: #00ce5a;
      max-width: 991px;
      margin: 0px auto;
      text-align: center; }
      .banner-sec .banner-cnt h1 span {
        color: #071f40;
        display: inline-block; }
  @media screen and (max-width: 991px) {
    .banner-sec {
      padding: 20px 0px; }
      .banner-sec .banner-cnt h1 {
        font-size: 26px;
        line-height: 36px; }
      .banner-sec .banner-cnt .cta-buttons {
        flex-direction: column; } }

.cta-section {
  background: #00ce5a;
  padding: 100px 0; }
  .cta-section .cta-box {
    text-align: center; }
    .cta-section .cta-box .cta-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 62px;
      color: #fff;
      margin-bottom: 20px; }
      .cta-section .cta-box .cta-title span {
        color: #071f40; }
    .cta-section .cta-box .cta-text {
      color: #fff;
      font-size: 16px;
      line-height: 24px;
      max-width: 760px;
      font-weight: 500;
      font-family: "Inter", sans-serif;
      margin: 0 auto 35px; }
    .cta-section .cta-box .cta-buttons {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px; }

.btn-consultation {
  background: #fff;
  color: #0b2056;
  border: 1px solid #fff;
  padding: 14px 35px;
  font-weight: 600;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  text-decoration: none; }
  .btn-consultation:hover {
    background: #0b2056;
    color: #fff;
    border-color: #0b2056; }

.btn-email {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 14px 35px;
  border-radius: 0;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  text-decoration: none; }
  .btn-email:hover {
    background: #fff;
    color: #0b2056; }
  .btn-email.how-we-work {
    border: #294263 solid 1px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #294263;
    font-family: "Inter", sans-serif; }
    .btn-email.how-we-work:hover {
      background-color: #99c2f7;
      color: #000000; }

.our-offering {
  padding: 72px 0px; }
  .our-offering .our-offering-cnt .left-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 420px; }
    @media screen and (min-width: 992px) and (max-width: 1200px) {
      .our-offering .our-offering-cnt .left-side {
        width: 390px; } }
    .our-offering .our-offering-cnt .left-side h2 {
      text-align: left;
      color: #071F40; }
      .our-offering .our-offering-cnt .left-side h2 span {
        display: inline; }
  .our-offering .our-offering-cnt .our-offering-list ul li {
    border-bottom: 1px solid #EAECEF;
    padding: 24px 0;
    display: flex;
    gap: 16px; }
    .our-offering .our-offering-cnt .our-offering-list ul li span {
      width: 44px;
      min-width: 44px;
      display: block;
      color: #00CE5A;
      font-family: "Inter",sans-serif;
      font-size: 20px;
      line-height: 28px;
      font-weight: 600; }
    .our-offering .our-offering-cnt .our-offering-list ul li .our-offering-details {
      display: flex;
      flex-direction: column;
      gap: 8px; }
      .our-offering .our-offering-cnt .our-offering-list ul li .our-offering-details h6 {
        font-size: 20px;
        font-weight: 700;
        line-height: 28px;
        font-family: "Inter", sans-serif;
        color: #071F40;
        margin-bottom: 0px; }
      .our-offering .our-offering-cnt .our-offering-list ul li .our-offering-details p {
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        font-family: "Inter", sans-serif;
        color: #666666;
        margin-bottom: 0px; }
  @media screen and (max-width: 991px) {
    .our-offering .our-offering-cnt .our-offering-list ul {
      margin-bottom: 0px; }
      .our-offering .our-offering-cnt .our-offering-list ul li {
        padding: 15px 0px; } }

.casestudy-section {
  padding: 72px 0;
  background-color: #F3F3F3; }
  .casestudy-section .caseSwiper {
    padding-top: 72px;
    position: relative; }
  .casestudy-section .casestudy-cnt {
    display: flex;
    flex-direction: column;
    gap: 40px; }
    .casestudy-section .casestudy-cnt .block-header .block-heading {
      color: #071f40; }
    .casestudy-section .casestudy-cnt .sec-main-heading {
      color: #071f40;
      max-width: 767px; }
      .casestudy-section .casestudy-cnt .sec-main-heading span {
        color: #00CE5A; }
  .casestudy-section .case-study {
    width: 100%;
    padding: 80px 0; }
  .casestudy-section .case-content {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 80px; }
    @media screen and (min-width: 1300px) {
      .casestudy-section .case-content {
        max-width: 1240px; } }
    @media screen and (max-width: 1299px) {
      .casestudy-section .case-content {
        max-width: 1000px; } }
    @media screen and (max-width: 1024px) {
      .casestudy-section .case-content {
        max-width: 920px; } }
    .casestudy-section .case-content .left {
      display: flex;
      flex-direction: column;
      gap: 24px;
      align-items: flex-start;
      padding-bottom: 50px; }
      .casestudy-section .case-content .left h2 {
        font-size: 52px;
        font-weight: 300;
        letter-spacing: 5px;
        font-family: "Inter",sans-serif; }
      .casestudy-section .case-content .left p {
        color: #000000;
        line-height: 24px;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0px;
        letter-spacing: -2%;
        font-family: "Inter",sans-serif; }
        .casestudy-section .case-content .left p strong {
          font-weight: 700; }
      .casestudy-section .case-content .left .tags {
        display: flex;
        gap: 6px;
        flex-wrap: wrap; }
        .casestudy-section .case-content .left .tags span {
          background: #fff;
          border-radius: 30px;
          padding: 4px 12px;
          font-size: 12px;
          line-height: 20px;
          font-weight: 500;
          font-family: "Inter",sans-serif; }
      .casestudy-section .case-content .left h4 {
        font-size: 16px;
        line-height: 24px;
        font-weight: 700;
        font-family: "Inter",sans-serif; }
      .casestudy-section .case-content .left ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin: 0px;
        padding: 0px; }
        .casestudy-section .case-content .left ul li {
          position: relative;
          font-family: "Inter",sans-serif;
          font-size: 16px;
          line-height: 24px;
          font-weight: 500;
          letter-spacing: -2%;
          display: flex;
          gap: 10px; }
  .casestudy-section .right {
    flex: 1;
    text-align: center; }
    .casestudy-section .right img {
      max-width: 100%; }
  .casestudy-section .left a {
    text-decoration: none;
    color: #000027;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    font-family: "Inter",sans-serif;
    letter-spacing: -2%; }
  .casestudy-section .caseSwiper .swiper-button-prev {
    left: calc((100% - 1200px) / 2); }
    @media screen and (max-width: 1280px) {
      .casestudy-section .caseSwiper .swiper-button-prev {
        left: calc((100% - 1000px) / 2); } }
    @media screen and (max-width: 1024px) {
      .casestudy-section .caseSwiper .swiper-button-prev {
        left: calc((100% - 950px) / 2); } }
  .casestudy-section .caseSwiper .swiper-button-next {
    right: calc((100% - 1200px) / 2); }
    @media screen and (max-width: 1280px) {
      .casestudy-section .caseSwiper .swiper-button-next {
        right: calc((100% - 1000px) / 2); } }
    @media screen and (max-width: 1024px) {
      .casestudy-section .caseSwiper .swiper-button-next {
        right: calc((100% - 950px) / 2); } }
  .casestudy-section .swiper-button-next,
  .casestudy-section .swiper-button-prev {
    width: 52px;
    height: 44px;
    background: #00CE5A;
    color: #000; }
  .casestudy-section .swiper-button-next:after,
  .casestudy-section .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold; }
  @media screen and (min-width: 992px) and (max-width: 1200px) {
    .casestudy-section .case-content {
      gap: 30px; } }
  @media screen and (max-width: 991px) {
    .casestudy-section .case-content {
      flex-direction: column-reverse;
      gap: 40px;
      text-align: left;
      padding: 0 25px; }
    .casestudy-section .right img {
      max-width: 420px; }
    .casestudy-section .left h2 {
      font-size: 40px; }
    .casestudy-section .swiper-button-next,
    .casestudy-section .swiper-button-prev {
      display: none; } }
  @media screen and (max-width: 576px) {
    .casestudy-section .case-study {
      padding: 50px 0; }
    .casestudy-section .left h2 {
      font-size: 34px; }
    .casestudy-section .left p {
      font-size: 15px; }
    .casestudy-section .left .tags span {
      font-size: 12px;
      padding: 6px 12px; }
    .casestudy-section .right img {
      max-width: 100%; } }
  .casestudy-section.v2 {
    background-color: transparent;
    padding-bottom: 0px; }
    .casestudy-section.v2 .casestudy-cnt .sec-main-heading {
      max-width: 687px; }
    .casestudy-section.v2 .caseSwiper {
      background-color: #B8E9E8;
      margin-top: 60px; }
      .casestudy-section.v2 .caseSwiper .case-content .left .tags span {
        background-color: rgba(255, 255, 255, 0.5); }
      .casestudy-section.v2 .caseSwiper .case-study-btn {
        background-color: #ffffff;
        padding: 12px 16px; }

.comparison-section {
  padding: 72px 0; }
  .comparison-section .comparison-cnt {
    display: flex;
    flex-direction: column;
    gap: 40px; }
    .comparison-section .comparison-cnt .block-header .block-heading {
      color: #071f40; }
    .comparison-section .comparison-cnt .sec-main-heading {
      color: #071f40;
      max-width: 799px; }
      .comparison-section .comparison-cnt .sec-main-heading span {
        color: #00CE5A;
        display: inline; }
    .comparison-section .comparison-cnt .comparison-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      width: 100%;
      border: #E7E7E7 solid 1px;
      border-radius: 24px; }
      .comparison-section .comparison-cnt .comparison-card .comparison-table {
        margin-bottom: 0; }
        .comparison-section .comparison-cnt .comparison-card .comparison-table th, .comparison-section .comparison-cnt .comparison-card .comparison-table td {
          padding: 12px 24px;
          vertical-align: middle;
          border-color: #ececec;
          font-size: 15px; }
        .comparison-section .comparison-cnt .comparison-card .comparison-table thead th {
          background: #fff;
          font-weight: 600;
          color: #00CE5A;
          text-align: left;
          font-size: 13px;
          line-height: 18px;
          font-family: "Inter",sans-serif; }
          .comparison-section .comparison-cnt .comparison-card .comparison-table thead th:first-child {
            background: #fff;
            border-right: #E4E4E7 solid 1px; }
          .comparison-section .comparison-cnt .comparison-card .comparison-table thead th:nth-child(2) {
            border-right: #E4E4E7 solid 1px; }
        .comparison-section .comparison-cnt .comparison-card .comparison-table tbody td {
          font-weight: 500;
          color: #000000;
          text-align: left;
          font-size: 12px;
          line-height: 18px;
          font-family: "Inter",sans-serif; }
          .comparison-section .comparison-cnt .comparison-card .comparison-table tbody td:first-child {
            width: 32%;
            border-right: #E4E4E7 solid 1px; }
          .comparison-section .comparison-cnt .comparison-card .comparison-table tbody td:nth-child(2) {
            border-right: #E4E4E7 solid 1px; }
      .comparison-section .comparison-cnt .comparison-card.sound-cnt {
        border: none;
        overflow: visible; }
        .comparison-section .comparison-cnt .comparison-card.sound-cnt .sound-card {
          padding: 38px 32px;
          border: #5162794D solid 1px;
          border-radius: 8px;
          display: flex;
          flex-direction: column;
          align-items: center;
          gap: 20px; }
          .comparison-section .comparison-cnt .comparison-card.sound-cnt .sound-card p {
            max-width: 240px;
            margin: 0px auto;
            font-weight: 500;
            color: #000000;
            text-align: left;
            font-size: 16px;
            line-height: 24px;
            font-family: "Inter",sans-serif;
            text-align: center; }
        @media screen and (max-width: 767px) {
          .comparison-section .comparison-cnt .comparison-card.sound-cnt .sound-card {
            padding: 20px 32px; } }

.bottom-text {
  font-size: 16px;
  color: #071F40;
  font-weight: 500;
  line-height: 24px;
  font-family: "Inter",sans-serif; }
  .bottom-text.v2 {
    font-size: 20px;
    line-height: 32px; }

.get-support {
  background: #19CA66;
  color: #fff;
  font-size: 16px;
  font-family: "Inter",sans-serif;
  line-height: 24px;
  padding: 15px 24px;
  border-radius: 4px;
  font-weight: 500;
  transition: .3s;
  max-width: 351px;
  margin: 0px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  text-decoration: none;
  gap: 8px; }
  .get-support:hover {
    background: #18a84d;
    color: #fff; }

@media (max-width: 768px) {
  .comparison-table th,
  .comparison-table td {
    padding: 14px;
    font-size: 14px;
    min-width: 220px; }

  .comparison-table td:first-child,
  .comparison-table th:first-child {
    min-width: 170px; }

  .bottom-text {
    font-size: 16px; } }
.block-header {
  display: flex;
  gap: 16px;
  justify-content: center; }
  .block-header .block-heading {
    color: #071f40; }

.engagement-sec {
  padding: 72px 0px; }
  .engagement-sec .engagement-cnt {
    gap: 32px;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .engagement-sec .engagement-cnt .block-header {
      display: flex;
      gap: 16px;
      justify-content: center; }
      .engagement-sec .engagement-cnt .block-header .block-heading {
        color: #071f40; }
    .engagement-sec .engagement-cnt h2 {
      color: #071f40;
      max-width: 793px; }
      .engagement-sec .engagement-cnt h2 span {
        color: #00ce5a;
        display: inline-block; }
    .engagement-sec .engagement-cnt .engage-card {
      border-radius: 16px;
      padding: 32px;
      gap: 24px;
      display: flex;
      flex-direction: column;
      background-color: #f6f4f2;
      height: 100%; }
      .engagement-sec .engagement-cnt .engage-card h3 {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        font-family: "Inter", sans-serif;
        color: #000000;
        margin-bottom: 0px; }
      .engagement-sec .engagement-cnt .engage-card .engage-card-desc {
        display: flex;
        flex-direction: column;
        gap: 8px; }
        .engagement-sec .engagement-cnt .engage-card .engage-card-desc h4 {
          font-size: 24px;
          line-height: 32px;
          font-weight: 700;
          font-family: "Inter", sans-serif;
          color: #071f40;
          margin-bottom: 0px; }
        .engagement-sec .engagement-cnt .engage-card .engage-card-desc p {
          font-size: 16px;
          line-height: 24px;
          font-weight: 400;
          font-family: "Inter", sans-serif;
          color: #000000;
          margin-bottom: 0px; }
      @media screen and (max-width: 767px) {
        .engagement-sec .engagement-cnt .engage-card {
          padding: 20px;
          gap: 15px; } }
    .engagement-sec .engagement-cnt.v2 .engage-card {
      width: 551px; }
      .engagement-sec .engagement-cnt.v2 .engage-card h4 {
        font-size: 32px;
        line-height: 40px;
        font-weight: 700;
        color: #071F40; }
      .engagement-sec .engagement-cnt.v2 .engage-card p {
        font-size: 20px;
        line-height: 28px;
        font-weight: 500; }
      @media screen and (max-width: 1200px) {
        .engagement-sec .engagement-cnt.v2 .engage-card {
          width: 100%; } }
      .engagement-sec .engagement-cnt.v2 .engage-card ul {
        margin: 0px;
        padding: 0px;
        display: flex;
        flex-direction: column;
        gap: 4px; }
        .engagement-sec .engagement-cnt.v2 .engage-card ul li {
          list-style-type: none;
          display: flex;
          gap: 8px; }
          .engagement-sec .engagement-cnt.v2 .engage-card ul li img {
            width: 20px; }
      .engagement-sec .engagement-cnt.v2 .engage-card .bottom-text {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        font-family: "Inter", sans-serif;
        color: #000000; }

.delivery-process {
  padding: 72px 0px; }
  .delivery-process .delivery-process-cnt {
    gap: 32px;
    display: flex;
    flex-direction: column;
    align-items: center; }
    .delivery-process .delivery-process-cnt .block-header {
      display: flex;
      gap: 16px;
      justify-content: center; }
      .delivery-process .delivery-process-cnt .block-header .block-heading {
        color: #071f40; }
    .delivery-process .delivery-process-cnt h2 {
      color: #071f40;
      max-width: 793px;
      text-align: center; }
      .delivery-process .delivery-process-cnt h2 span {
        color: #00ce5a;
        display: inline-block; }
    .delivery-process .delivery-process-cnt .delivery-card {
      border-radius: 16px;
      padding: 32px;
      gap: 24px;
      display: flex;
      flex-direction: column;
      height: 100%; }
      .delivery-process .delivery-process-cnt .delivery-card h3 {
        font-size: 16px;
        line-height: 24px;
        font-weight: 400;
        font-family: "Inter", sans-serif;
        color: #000000;
        margin-bottom: 0px; }
      .delivery-process .delivery-process-cnt .delivery-card .delivery-card-desc {
        display: flex;
        flex-direction: column;
        gap: 8px; }
        .delivery-process .delivery-process-cnt .delivery-card .delivery-card-desc h4 {
          font-size: 24px;
          line-height: 32px;
          font-weight: 700;
          font-family: "Inter", sans-serif;
          color: #071f40;
          margin-bottom: 0px; }
        .delivery-process .delivery-process-cnt .delivery-card .delivery-card-desc p {
          font-size: 16px;
          line-height: 24px;
          font-weight: 400;
          font-family: "Inter", sans-serif;
          color: #000000;
          margin-bottom: 0px; }

.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #082449;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px; }
  .section-title:after {
    content: "";
    width: 75px;
    height: 2px;
    background: #00d86d; }

.lead-section {
  background: #F3F3F3; }
  .lead-section .left-side {
    background: #F3F3F3;
    padding: 80px 15px;
    display: flex;
    align-items: center; }
    .lead-section .left-side h2 {
      text-align: left;
      color: #071F40;
      font-size: 40px;
      line-height: 56px; }
      .lead-section .left-side h2 span {
        display: inline; }
    .lead-section .left-side .feature-list {
      list-style: none;
      padding: 0;
      margin: 24px 0px 0px 0px; }
      .lead-section .left-side .feature-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 12px;
        color: #082449;
        font-size: 14px;
        line-height: 20px;
        font-family: "Inter",sans-serif;
        font-weight: 500;
        gap: 10px; }
    @media screen and (max-width: 1366px) {
      .lead-section .left-side {
        padding: 80px 50px; } }
  .lead-section .right-side {
    background: #082449;
    padding: 72px 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 0; }
    .lead-section .right-side::after {
      content: "";
      background: #082449;
      width: 100vh;
      position: absolute;
      right: 0;
      height: 100%;
      left: 120px;
      z-index: -1; }
      @media screen and (max-width: 1366px) {
        .lead-section .right-side::after {
          display: none; } }
  @media screen and (min-width: 1367px) {
    .lead-section .container-fluid {
      max-width: 1166px; } }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 40px 0px 0px 0px; }
  .feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 14px;
    line-height: 20px;
    font-family: "Inter",sans-serif;
    font-weight: 500;
    gap: 10px; }

.text-green {
  color: #1CCA67;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  font-family: "Inter",sans-serif; }

.form-control,
.form-select {
  height: 52px;
  border-radius: 8px;
  border: none;
  box-shadow: none; }
  .form-control::placeholder,
  .form-select::placeholder {
    color: #A9A9A9;
    font-size: 14px; }

.form-select {
  color: #A9A9A9;
  font-size: 14px; }

textarea.form-control {
  height: 120px;
  resize: none; }

.btn-green {
  background: #19CA66;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 24px;
  font-weight: 600;
  transition: 0.3s; }
  .btn-green:hover {
    background: #00bf61;
    color: #fff; }

.social-sidebar {
  position: fixed;
  right: 10px;
  top: 25%;
  transform: translateY(-25%);
  width: 58px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 14px 0;
  z-index: 9; }
  .social-sidebar ul {
    margin: 0px;
    padding: 0px; }
    .social-sidebar ul li {
      list-style-type: none; }
      .social-sidebar ul li a {
        width: 42px;
        height: 42px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #8f96a3;
        font-size: 20px;
        transition: .3s; }
        .social-sidebar ul li a span {
          display: flex;
          align-items: center;
          justify-content: center; }
        .social-sidebar ul li a:hover {
          background: #eeeeee;
          color: #fff; }
  @media screen and (max-width: 991px) {
    .social-sidebar {
      display: none; } }

@media (max-width: 991px) {
  .cta-title {
    font-size: 42px;
    line-height: 48px; }

  .left-side,
  .right-side {
    padding: 30px 25px !important; }

  h1 {
    font-size: 42px; }

  .engagement-sec, .delivery-process, .banner-sec, .companies-block, .cto-sec, .cta-section, .comparison-section, .our-offering, .casestudy-section, .industry-section {
    padding: 25px 0px !important; }

  .offcanvas {
    height: 100vh; } }
@media (max-width: 767px) {
  body {
    padding-top: 65px; }

  .swiper-pagination {
    bottom: 0px !important; }

  .cta-section {
    padding: 50px 0; }
    .cta-section .cta-box .cta-title {
      font-size: 32px;
      line-height: 38px; }
    .cta-section .cta-box .cta-text {
      font-size: 15px; }
    .cta-section .cta-box .cta-buttons {
      flex-direction: column;
      align-items: center; }

  .cta-buttons .btn {
    width: 100%;
    max-width: 340px; }

  .lead-section {
    min-height: auto; }

  h1 {
    font-size: 34px; }

  .section-title {
    font-size: 18px; }

  .right-side {
    padding-top: 40px; }

  .btn-green {
    width: 100%; } }
.industry-section {
  padding: 71px 0;
  background: #fff; }
  .industry-section .sec-main-heading {
    color: #071F40;
    text-align: left;
    margin-left: 0px; }
    .industry-section .sec-main-heading span {
      color: #00CE5A; }
  .industry-section .left {
    gap: 40px;
    width: 650px; }
  @media screen and (min-width: 991px) and (max-width: 1200px) {
    .industry-section .left {
      width: 560px; } }
  @media screen and (max-width: 991px) {
    .industry-section .left {
      gap: 20px; }
    .industry-section .sec-main-heading {
      margin: 0px;
      text-align: center; } }

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; }
  .industry-tags .industry-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    padding: 19px 32px;
    border: 1px solid #BCBCBC;
    border-radius: 100px;
    background: #fff;
    color: #071F40;
    font-size: 16px;
    font-weight: 500;
    transition: .3s;
    line-height: 24px; }
    .industry-tags .industry-tag:hover {
      background: #00CE5A;
      color: #fff;
      border-color: #00CE5A; }
    .industry-tags .industry-tag img {
      max-width: 100%;
      height: auto; }

@media (max-width: 991px) {
  .industry-tags {
    justify-content: center;
    margin-bottom: 0px; }
    .industry-tags .industry-tag {
      padding: 10px 22px; }

  .industry-image {
    text-align: center; } }
@media (max-width: 576px) {
  .industry-tag {
    font-size: 14px;
    padding: 10px 18px; } }
@media screen and (min-width: 992px) {
  .navbar-expand-lg {
    justify-content: space-between; } }
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1166px !important; } }
.swiper-pagination {
  bottom: 20px; }
  .swiper-pagination .swiper-pagination-bullet {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: transparent;
    border: 2px solid transparent;
    transition: .3s;
    margin: 0 4px !important; }
    .swiper-pagination .swiper-pagination-bullet img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%; }
    .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      border-color: #ffffff; }

.contact-modal .modal-header-custom {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end; }
  .contact-modal .modal-header-custom .btn-close {
    position: fixed;
    right: 35px;
    top: 20px;
    filter: invert(1); }
.contact-modal .modal-dialog {
  margin: 0px auto;
  max-width: 700px; }
  .contact-modal .modal-dialog .modal-content {
    background: transparent;
    border: 0;
    border-radius: 0;
    overflow: hidden; }
    .contact-modal .modal-dialog .modal-content .modal-body {
      padding: 40px 72px;
      gap: 40px;
      display: flex;
      flex-direction: column; }
      .contact-modal .modal-dialog .modal-content .modal-body .modal-title {
        color: #fff;
        font-size: 32px;
        line-height: 42px;
        font-family: "Inter",sans-serif;
        font-weight: 700;
        letter-spacing: -2%;
        text-align: left;
        width: 100%; }
      .contact-modal .modal-dialog .modal-content .modal-body .form-control,
      .contact-modal .modal-dialog .modal-content .modal-body .form-select {
        height: 50px;
        border-radius: 8px;
        border: #CECECE solid 1px; }
      .contact-modal .modal-dialog .modal-content .modal-body textarea.form-control {
        min-height: 100px;
        resize: none; }

.modal-backdrop {
  background-color: #0B182766;
  backdrop-filter: blur(32px); }
  .modal-backdrop.show {
    opacity: 1; }

.submit-btn {
  background: #00CE5A;
  border: none;
  color: #fff;
  padding: 10px 24px;
  font-weight: 600; }
  .submit-btn:hover {
    background: #13b04f; }

.wpcf7-form-control-wrap {
  width: 100%; }

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  color: #46b450;
  margin-top: 0px; }

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #ffb900;
  color: #ffb900; }

.footer_wrapper {
  width: 100%;
  height: 85vh;
  display: block;
  padding: 60px 110px 50px 110px;
  background: url("../../images/address_map.svg") no-repeat center #0C1827;
  overflow: hidden;
  max-height: 650px; }
  .footer_wrapper .container {
    max-width: 1040px !important;
    height: 100%;
    margin: 0 auto; }
    .footer_wrapper .container > .row.address_block_wrap {
      height: calc(100% - 160px);
      display: flex; }
  .footer_wrapper .footer_nav {
    padding: 0 0 18px 0;
    width: 100%; }
    .footer_wrapper .footer_nav ul {
      display: flex;
      padding: 0;
      justify-content: space-between; }
      .footer_wrapper .footer_nav ul li {
        padding-bottom: 0px; }
        .footer_wrapper .footer_nav ul li a {
          font-size: 20px;
          color: #ffffff;
          text-decoration: none;
          line-height: 28px;
          font-family: "Poppins", sans-serif;
          font-weight: 400;
          -webkit-transition: all 0.3s ease;
          -moz-transition: all 0.3s ease;
          -ms-transition: all 0.3s ease;
          -o-transition: all 0.3s ease;
          transition: all 0.3s ease; }
          .footer_wrapper .footer_nav ul li a:hover {
            color: #19CA66; }
  .footer_wrapper .address_block {
    display: flex;
    justify-content: space-around;
    padding: 0px 0;
    width: 100%;
    align-items: center;
    font-family: "Poppins", sans-serif;
    font-weight: 400; }
    .footer_wrapper .address_block .location {
      text-align: center;
      width: 325px; }
      .footer_wrapper .address_block .location h4 {
        font-size: 36px;
        line-height: 50px;
        color: #ffffff;
        padding-bottom: 5px;
        font-weight: 900; }
      .footer_wrapper .address_block .location p {
        font-size: 18px;
        line-height: 27px;
        color: #ffffff;
        padding: 0px;
        margin: 0px;
        text-align: center;
        font-weight: 400; }
  .footer_wrapper .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
    width: 100%; }
    .footer_wrapper .logo a {
      display: inline-block; }
      .footer_wrapper .logo a img {
        display: block; }
    @media screen and (max-width: 767px) {
      .footer_wrapper .logo a img {
        max-width: 220px; } }
  .footer_wrapper .copyrights {
    display: flex;
    width: 100%;
    padding-top: 0px;
    padding-bottom: 40px; }
    .footer_wrapper .copyrights ul {
      display: flex;
      width: 100%;
      justify-content: center;
      margin: 0;
      padding: 0px; }
      .footer_wrapper .copyrights ul li {
        padding: 0 20px; }
        .footer_wrapper .copyrights ul li p, .footer_wrapper .copyrights ul li a {
          font-size: 14px;
          color: #ffffff;
          font-size: 12px;
          line-height: 18px;
          padding: 0px;
          margin: 0px;
          display: block;
          text-decoration: none;
          font-family: "Poppins", sans-serif;
          font-weight: 400; }
        .footer_wrapper .copyrights ul li a:hover {
          color: #19CA66; }
  .footer_wrapper .social ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0px; }
    .footer_wrapper .social ul li {
      padding: 0 5px; }
      .footer_wrapper .social ul li a {
        display: block;
        color: rgba(255, 255, 255, 0.3);
        text-decoration: none !important; }
        .footer_wrapper .social ul li a i {
          width: 30px;
          height: 30px;
          background: transparent;
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center; }
        .footer_wrapper .social ul li a:hover .fa-facebook-f {
          color: #3b5998;
          background: #ffffff; }
        .footer_wrapper .social ul li a:hover .fa-linkedin-in {
          color: #0077b5;
          background: #ffffff; }
        .footer_wrapper .social ul li a:hover .fa-twitter {
          color: #00acee;
          background: #ffffff; }
  @media screen and (max-width: 1599px) {
    .footer_wrapper .footer_nav ul li a {
      font-size: 18px; }
    .footer_wrapper .address_block .location h4 {
      font-size: 30px;
      line-height: 40px; } }
  @media screen and (max-width: 1199px) and (min-width: 768px) {
    .footer_wrapper {
      padding-left: 110px; } }
  @media screen and (max-width: 1041px) {
    .footer_wrapper {
      position: static; } }
  @media screen and (max-width: 768px) {
    .footer_wrapper {
      padding-left: 20px; } }
  @media screen and (max-width: 767px) {
    .footer_wrapper {
      padding-left: 20px;
      height: auto;
      max-height: 600px;
      position: static; }
      .footer_wrapper .container {
        height: auto; }
        .footer_wrapper .container > .row.address_block_wrap {
          height: auto; }
      .footer_wrapper .footer_nav {
        padding: 0; }
        .footer_wrapper .footer_nav ul {
          flex-wrap: wrap;
          justify-content: center; }
          .footer_wrapper .footer_nav ul li {
            padding: 0 9px; }
            .footer_wrapper .footer_nav ul li a {
              font-size: 15px; }
      .footer_wrapper .address_block {
        flex-direction: column;
        padding: 0px 0 20px; }
        .footer_wrapper .address_block .location {
          padding: 20px 0;
          margin: 0 auto; }
          .footer_wrapper .address_block .location h4 {
            font-size: 25px;
            line-height: 30px; }
          .footer_wrapper .address_block .location p {
            font-size: 16px;
            line-height: 24px; }
      .footer_wrapper .copyrights {
        padding-bottom: 10px; }
        .footer_wrapper .copyrights ul {
          flex-wrap: wrap; }
          .footer_wrapper .copyrights ul li {
            padding: 0 10px 10px; }
      .footer_wrapper .logo {
        padding-bottom: 30px; } }
  @media screen and (max-width: 575px) {
    .footer_wrapper {
      padding: 20px; }
      .footer_wrapper .footer_nav ul {
        margin-bottom: 0; } }
  @media screen and (max-width: 375px) {
    .footer_wrapper .address_block .location {
      width: auto; } }

/*# sourceMappingURL=landing-page-style.css.map */
