/* +++++++++++++++++ Global css +++++++++++++++++++*/

:root {
  --main-font: "Roboto", sans-serif;
  --heading-font: "Bricolage Grotesque", sans-serif;
  --text-font: "Roboto", sans-serif;
  --heading-color: #020202;
  --blue-color: #2f84be;
  --pink-color: #ffe9cf;
  --purple-color: #f0f0f0;
  --light-color: #dde6ff;
  --white-color: #fff;
  --black-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: var(--main-font);
  margin-bottom: 0;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
}

html {
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  font-family: var(--main-font);
  color: #4e4e4e;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
}

ul {
  padding: 0;
  margin: 0;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

input[type="number"] {
  -moz-appearance: textfield;
}

/* responsive font size */

html {
  font-size: 1rem;
}

@include media-breakpoint-up(sm) {
  html {
    font-size: 1.2rem;
  }
}

@include media-breakpoint-up(md) {
  html {
    font-size: 1.4rem;
  }
}

@include media-breakpoint-up(lg) {
  html {
    font-size: 1.6rem;
  }
}

.btn-dark.focus,
.btn-dark:focus {
  box-shadow: none;
}

/* +++++++++++++++++ Global css +++++++++++++++++++*/

/* Header Sec Start */

.navbar-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-bar-main .navbar-collapse {
  justify-content: end;
}

.nav-bar-main .navbar-nav .nav-item .nav-link {
  font-size: 17px;
  line-height: 21px;
  font-weight: 400;
  color: var(--white-color);
}

.nav-bar-main .navbar-nav .nav-item {
  padding: 0px 20px;
}

.nav-bar-main .navbar-nav .nav-item .nav-link.active {
  color: var(--white-color);
}

.header-main {
  position: absolute;
  height: auto;
  width: 100%;
  z-index: 100;
  padding: 0px 0px;
}

.login-btn {
  display: flex;
  align-items: center;

  a {
    color: var(--white-color);
    border-radius: 6px;
    font-size: 15px;
    line-height: 20px;
    padding: 15px 20px;
    border: none;
    background: var(--blue-color);
    box-shadow: none;

    span {
      margin-right: 7px;
    }
  }
}

.header-main {
  .header-container {
    padding: 10px 50px 10px;
  }
}

.login-btn-list {
  margin-right: 30px;

  a {
    width: 54px;
    height: 54px;
    background: rgb(255 255 255 / 20%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-self: center;
    padding: 15px;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}

.navbar-nav {
  align-items: center;
}

/* ===== Dropdown Fix ===== */

.nav-dropdown {
  position: relative;
}

/* Arrow */
.nav-arrow {
  display: inline-block;
  margin-left: 6px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--white-color);
  transition: transform 0.3s ease;
}

/* Rotate arrow */
.nav-dropdown.active .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown menu */
.nav-dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 6px;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

/* Show menu */
.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown items */
.nav-dropdown-menu li {
  list-style: none;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #212529;
  text-decoration: none;
}

.nav-dropdown-menu li a:hover {
  background: #f2f6ff;
  color: var(--blue-color);
}

/* Header Sec End */
/* Banner Sec Start */
/* .bnr-sec {
  position: relative;
  background: #ccc;
  background: url(../images/banner1.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 180px 0px 180px;
} */
.bnr-sec {
  position: relative;
}

.bnr-img {
  position: relative;
  height: 100vh;
}

.bnr-img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #156fadcc, #0000007a, transparent);
  z-index: 1;
}

.bnr-sec-wrap {
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 16%;
  transform: translate(10px, -50%);
}

.bnr-text h1 {
  color: var(--white-color);
  font-size: 55px;
  line-height: 60px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--heading-font);
  margin-bottom: 20px;
}

.bnr-text h1 span {
  text-transform: capitalize;
}

.bnr-text p {
  font-size: 16px;
  line-height: 26px;
  color: var(--white-color);
  margin-bottom: 50px;
  font-family: var(--text-font);
}

.bnr-list ul {
  column-count: 2;
}

.bnr-list ul li {
  font-family: var(--text-font);
  font-size: 18px;
  line-height: 30px;
  color: var(--white-color);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;

  span {
    background: rgb(255 255 255 / 12%);
    border-radius: 50%;
    padding: 14px;

    img {
      display: inline-block;
      width: 24px;
    }
  }
}

.bnr-rit img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bnr-text h4 {
  font-size: 19px;
  line-height: 26px;
  font-weight: 700;
  font-family: var(--text-font);
  color: var(--white-color);
  margin-bottom: 26px;
}

.social-div {
  position: absolute;
  top: 50%;
  left: 70px;
  transform: translate(10px, -50%);

  ul {
    padding: 0;
    margin: 0;

    li {
      width: 50px;
      height: 50px;
      background: rgb(255 255 255 / 20%);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-bottom: 25px;

      a {
        font-size: 16px;
        color: #fff;
      }
    }
  }
}

.bnnr-img {
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.bnr-text-div {
  position: relative;
  z-index: 2;
}

.banner-slider {
  position: relative;

  .slick-arrow {
    i {
      color: #fff;
      background: rgb(255 255 255 / 20%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0px 4px 15px 0px rgb(0 0 0 / 28%);
    }
  }

  .pre-arrow.slick-arrow {
    position: absolute;
    top: 30%;
    right: 5%;
    z-index: 10;
    transform: translate(0%, -30%);
  }

  .nest-arrow.slick-arrow {
    position: absolute;
    top: 70%;
    right: 5%;
    z-index: 10;
    transform: translate(0%, -70%);
  }
}

.bnr-img {
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.banner-slider {
  .slick-dots {
    position: absolute;
    top: 50%;
    right: 6%;
    z-index: 10;
    transform: translate(0%, -50%);

    li {
      margin-bottom: 10px;

      button {
        color: var(--white-color);
        background: transparent;
        font-family: var(--heading-font);
        font-size: 15px;
        line-height: 22px;
      }
    }
  }
}

.banner-slider .slick-dots .slick-active button {
  font-size: 25px;
  line-height: 35px;
}

/* Banner Sec End */
/* bnr btm sec start */
.top-bar {
  background: var(--blue-color);
  color: #fff;
  font-size: 13px;
  position: relative;
  padding: 7px 0px;
}

.top-bar::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  background: #f0faff;
  width: 528px;
  height: 100%;
  clip-path: polygon(10% 0, 100% 0%, 100% 100%, 0% 100%);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

.slash {
  position: relative;
  top: -15px;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-left p {
  font-size: 18px;
  line-height: 26px;
  font-family: var(--text-font);
  margin: 0;
  font-weight: 500;
}

.top-right {
  display: flex;
  gap: 80px;
  position: relative;

  a {
    font-size: 18px;
    line-height: 26px;
    font-family: var(--text-font);
    color: var(--white-color);
    font-weight: 300;

    span {
      margin-right: 4px;
    }
  }
}

.top-call {
  color: #a5a5a5 !important;

  span {
    color: var(--heading-color);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    height: auto;
    padding: 8px 0;
    gap: 5px;
  }
}

/* bnr btm sec end */
/* abt sec start */
.abt-sec {
  padding: 100px 0px;
  position: relative;
}

.abt-sec-icon {
  margin-bottom: 30px;
}

.abt-sec-icon-text h4 {
  font-size: 21px;
  line-height: 25px;
}

.abt-sec-icon-div {
  text-align: center;
  padding: 36px;
  border-radius: 6px;
  margin-bottom: 36px;
}

.heading-1 {
  h4 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    color: var(--heading-color);
    font-family: var(--heading-font);
    padding: 6px 30px;
    border: 1px solid #eeeeee;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 28px;
  }

  h2 {
    font-size: 45px;
    line-height: 50px;
    font-weight: 600;
    color: var(--heading-color);
    font-family: var(--heading-font);
    margin-bottom: 32px;

    span {
      color: var(--blue-color);
    }
  }

  p {
    font-size: 17px;
    line-height: 26px;
    color: rgb(0 0 0 / 70%);
    font-family: var(--text-font);
    margin-bottom: 58px;
  }
}

.heading-white {
  h4 {
    color: var(--white-color);
  }

  h2 {
    color: var(--white-color);
  }

  p {
    color: var(--white-color);
  }
}

.btn-1 {
  a {
    font-size: 15px;
    color: var(--heading-color);
    font-family: var(--text-font);
    font-weight: 500;
    padding: 18px 35px;
    background: #f0f0f0;
    border-radius: 30px;
    display: inline-block;
  }
}

.abt-img {
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 40px 0px 40px 0px;
  }
}

/* abt sec end */
/* Solution sec start */
.solution-sec {
  padding: 0px 0px 100px;
}

.sol-box {
  padding: 40px 30px;
  border-radius: 40px 0px 40px 0px;
  min-height: 300px;
  z-index: 1;

  .sol-icon-div {
    margin-right: 22px;
  }

  .sol-text {
    h3 {
      font-size: 26px;
      line-height: 36px;
      font-family: var(--heading-font);
      color: var(--heading-color);
      font-weight: 600;
      margin-bottom: 18px;
    }

    p {
      font-size: 17px;
      line-height: 27px;
      font-family: var(--text-font);
      color: #7a7a7a;
      margin-bottom: 18px;
    }
  }
}

.sol-btn {
  a {
    color: var(--blue-color);
    font-size: 17px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--text-font);

    span {
      margin-left: 10px;
    }
  }
}

.sol-box-1 {
  background: var(--pink-color);
}

.sol-box-2 {
  background: var(--purple-color);
}

.sol-box-3 {
  background: var(--light-color);
}

.sol-p {
  position: absolute;
  right: 0;
  top: 30px;
  z-index: -1;
}

/* Solution sec end */
/* sol-glance sec start */
.sol-glance-sec {
  background: #f2f2f2;
  padding: 120px 0px;
}

.glance-div {
  margin-top: 60px;

  p {
    font-size: 17px;
    line-height: 26px;
    font-family: var(--text-font);
    color: rgb(0 0 0 / 55%);
    margin-top: 30px;
  }
}

.glance-box {
  border-radius: 10px;
  background: var(--white-color);
  padding: 80px 24px 20px;
  transition: ease-in all 0.3s;

  .glance-icon {
    margin-bottom: 25px;
    height: 38px;
    width: 38px;
    transition: ease-in all 0.3s;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: ease-in all 0.3s;
    }
  }
}

.glance-text {
  h3 {
    font-size: 22px;
    line-height: 32px;
    color: var(--heading-color);
    font-family: var(--heading-font);
    transition: ease-in all 0.3s;
  }
}

.glance-img {
  transition: ease-in all 0.3s;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: ease-in all 0.3s;
  }
}

.glance-arrow {
  position: absolute;
  right: 21px;
  top: 25px;
  opacity: 0;
  transition: ease-in all 0.3s;
}

.glance-box:hover {
  background: var(--blue-color);

  .glance-text {
    h3 {
      color: var(--white-color);
    }
  }

  .glance-icon {
    img {
      filter: brightness(0) invert(1);
    }
  }

  .glance-arrow {
    opacity: 1;
  }
}

.btn-2 {
  margin-top: 68px;

  a {
    background: #f2f2f2;
    border: 1px solid #cbd5dd;
    border-radius: 8px;
  }
}

/* sol-glance sec end */
/* milestone-sec start */
.milestone-sec-main {
  background: #f2f2f2;
  border-radius: 0px 0px 150px 0px;
}

.milestone-sec {
  background: linear-gradient(rgba(21, 111, 173, 0.64),
      rgba(21, 111, 173, 0.64)),
    url("../images/service1.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0px 80px;
  border-radius: 150px 0px 150px 0px;
}

/* Counter sec start */
.parent {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;

  .stat-row {
    display: flex;
    justify-content: space-between;
  }

  .stat-item {
    margin-right: 40px;
  }

  .stat-number {
    font-style: normal;
    font-weight: 600;
    font-size: 40px;
    line-height: 45px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white-color);
    margin-bottom: 10px;
  }

  .stat-title {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-align: center;
    color: var(--white-color);

    span {
      display: block;
      margin-bottom: 15px;
      color: rgb(255 255 255 / 75%);
    }
  }

  .count-icon {
    text-align: center;
    width: 90px;
    height: 90px;
    margin: 0 auto 40px;
    padding: 26px;
    background: rgb(255 255 255 / 30%);
    border-radius: 10px;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}

/* Counter sec end */
/* milestone-sec end */
/* solution sec start */
.solution-sec {
  padding: 100px 0px;
}

.client-icon-box {
  margin: 0 20px;
}

.client-icon {
  transition: ease-in all 0.3s;
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
     transition: ease-in all 0.3s;
  }
}
.client-icon a img{
   filter: grayscale(100%);
}
.client-icon:hover a img{
 filter: grayscale(0%);
}
.client-sec-wrap {
  position: relative;
  margin-bottom: 65px;
  margin-top: 35px;
}

.client-img {
  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
}

.client-name {
  padding: 20px 10px;
  text-align: center;

  h3 {
    font-family: var(--heading-font);
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 600;
  }

  h4 {
    font-size: 13px;
    line-height: 16px;
    font-family: var(--text-font);
  }
}

.client-div-wrap {
  margin: 0px 15px;
}

/* FULL BOX OVERLAY */
.client-overlay {
  position: absolute;
  inset: 0;
  background: rgba(21, 111, 173, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 25px;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.4s ease;
  z-index: 2;
}

.client-overlay h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 30px;
  font-family: var(--heading-font);
}

.client-overlay p {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  margin-bottom: 70px;
  font-family: var(--text-font);
}

.client-overlay a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  span {
    color: #fff;
    margin-left: 6px;
  }
}

/* HOVER ON FULL BOX */
.client-box:hover .client-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.client-box {
  position: relative;
  overflow: hidden;
}

.client-box:hover .client-name {
  opacity: 0;
}

.client-div-slider {
  .slick-arrow {
    i {
      color: #282833;
      background: #fff;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0px 4px 15px 0px rgb(0 0 0 / 28%);
    }
  }

  .pre-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    left: -1%;
    z-index: 10;
    transform: translate(0%, -50%);
  }

  .nest-arrow.slick-arrow {
    position: absolute;
    top: 50%;
    right: -1%;
    z-index: 10;
    transform: translate(0%, -50%);
  }
}

/* solution sec end */

/* BLOG SECTION */
.blog-section {
  padding: 0px 0px 100px;
  background: #fff;
}

.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.btn-outline {
  border: 1px solid #dce6ee;
  padding: 18px 20px;
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  background: #fff;
  color: #1a1a1a;
  font-family: var(--text-font);
  font-weight: 500;
}

/* BLOG GRID */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  border: 1px solid #dce6ee;
  overflow: hidden;
  border-radius: 10px;
}

.blog-card img {
  width: 100%;
  display: block;
}

.blog-content {
  .meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 35px;
    padding: 25px 22px 0px;
  }
}

.blog-add {
  span {
    width: 18px;
    height: 18px;
    margin-right: 10px;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }

  h4 {
    font-size: 14px;
    line-height: 18px;
    color: #8d979f;
    font-family: var(--text-font);
  }
}

.blog-content h3 {
  font-size: 24px;
  line-height: 28px;
  font-family: var(--heading-font);
  color: var(--heading-color);
  padding: 0px 30px 30px;
  border-bottom: 1px solid #dce6ee;
}

.blg-btn a {
  color: #848484;
  text-decoration: none;
  font-weight: 600;
  padding: 25px 22px;
  display: inline-block;
}

.blg-t-1 {
  position: absolute;
  left: 0;
  bottom: 0;
}

.blg-t-2 {
  position: absolute;
  right: 0;
  top: 0;
}

/* FOOTER */
.footer {
  background-image: url(../images/footerbg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: 60px;
  border-radius: 0px 150px 0px 0px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}

.ftr-logo {
  margin-bottom: 20px;
  width: 200px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.footer p {
  font-size: 16px;
  line-height: 22px;
  font-family: var(--text-font);
  color: #eeeeee;
}

.footer-bottom {
  text-align: center;
  padding: 0px 0 15px;
  font-size: 13px;
}

.footer-contact {
  h4 {
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--heading-font);
    margin-bottom: 30px;
  }
}

.add-div {
  .add-icon {
    border: 1px solid #d4d1de;
    padding: 9px;
    border-radius: 6px;
    font-size: 22px;
    margin-right: 13px;
  }

  .add-text {
    h3 {
      font-size: 18px;
      line-height: 22px;
      font-weight: 500;
      font-family: var(--text-font);
      margin-bottom: 6px;
    }

    a,
    p {
      font-size: 16px;
      line-height: 20px;
      font-weight: 400;
      font-family: var(--text-font);
      color: #eeeeee;
    }
  }
}

.footer-cta {
  background: #5eb0e836;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 45px 45px;
  border-radius: 0px 25px 0px 25px;
  border: 1px solid rgb(255 255 255 / 20%);

  h4 {
    font-size: 34px;
    line-height: 44px;
    font-weight: 500;
    font-family: var(--heading-font);
    margin-bottom: 18px;
  }

  p {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    font-family: var(--text-font);
    margin-bottom: 75px;
  }
}

.ftr-btn {
  background: #5eb0e8;
  padding: 18px 33px;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  font-family: var(--text-font);
  border-radius: 8px;
  color: var(--white-color);
  transition: ease-in all 0.3s;
}

.ftr-btn:hover {
  background: var(--white-color);
  color: var(--blue-color);
}

.ftr-cpy {
  border-top: 1px solid rgb(255 255 255 / 20%);
  padding-top: 15px;

  p {
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
    font-family: var(--text-font);
    color: var(--white-color);
  }

  a {
    width: 50px;
    height: 50px;
    border: 1px solid #d4d1de;
    padding: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 20px;
  }
}

/* footer sec end*/
/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Inner Banner */
.inr-img {
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.inr-header {
  background: rgb(0 0 0 / 14%);
  box-shadow: 0px 4px 35px 0px rgb(0 0 0 / 14%);
}

.inr-img {
  position: relative;
}

.inr-img::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #156fadcc, #0000007a, transparent);
  z-index: 1;
}

.inr-text {
  position: absolute;
  left: 10%;
  top: 65%;
  transform: translate(-10%, -65%);
  z-index: 1;

  h2 {
    font-family: var(--heading-font);
    font-weight: 800;
    font-size: 50px;
    color: var(--white-color);
    margin-bottom: 30px;
  }

  .breadcrumb {
    .breadcrumb-item {
      a {
        font-size: 18px;
        line-height: 26px;
        font-weight: 500;
        font-family: var(--text-font);
        color: var(--white-color);
      }
    }
  }

  .breadcrumb .breadcrumb-item.active {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--text-font);
    color: #9FD7FF;
  }

  .breadcrumb-item+.breadcrumb-item::before {
    color: var(--white-color);
    content: "→";
  }
}

.truck-img {
  position: absolute;
  right: 200px;
  bottom: -55px;
  height: 125px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.msn-icon {
  margin-bottom: 10px;
}

.abt-msn-wrap {
  h3 {
    font-family: var(--heading-font);
    font-size: 25px;
    font-weight: 600;
    color: #072032;
    margin-bottom: 8px;
  }

  h4 {
    font-family: var(--text-font);
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: #656C7A;
    margin-bottom: 12px;
  }
}

.abt-sec-right {
  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.arrow-icon {
  margin-bottom: 23px;
}

.location-div {
  background: var(--blue-color);
  padding: 27px 29px 50px 29px;
  border-radius: 6px 0px 30px 0px;

  h4 {
    font-size: 19px;
    line-height: 26px;
    font-family: var(--text-font);
    font-weight: 500;
    margin-bottom: 24px;
    color: var(--white-color);
  }

  span {
    color: var(--white-color);
    font-size: 45px;

    i {
      margin-bottom: 50px;
    }
  }

  p {
    font-size: 16px;
    line-height: 20px;
    font-family: var(--text-font);
    font-weight: 400;
    color: var(--white-color);
  }
}

.abt-msn {
  display: flex;
  justify-content: space-between;

  .abt-msn-div {
    width: 50%;
  }

  .location-div {
    width: 50%;
  }
}

.process-box {
  text-align: center;
  position: relative;

  .process-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 50px 0px #EEEEEE;
    margin: 0px auto 25px;
    transition: ease-in all 0.3s;
    background: #fff;
  }

  h3 {
    color: var(--heading-color);
    font-size: 22px;
    line-height: 26px;
    font-weight: 500;
    font-family: var(--text-font);
    margin-bottom: 18px;
  }

  p {
    font-size: 16px;
    line-height: 26px;
    color: #656C7A;
    font-family: var(--text-font);
    margin-bottom: 18px;
  }
}

.process-sec {
  padding: 0px 0px 100px;
}

.process-box:hover .process-icon {
  background: var(--blue-color);
}

.process-box:hover .process-icon img {
  filter: brightness(100);
}

.process-box:hover .process-icon::before {
  position: absolute;
  content: "";
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0px auto;
  background: rgb(47 132 190 / 8%);
}

.process-icon-wrap a {
  font-family: var(--text-font);
  font-size: 14px;
  line-height: 26px;
  font-weight: 500;
  color: var(--blue-color);
}

.process-wrap {
  position: relative;
  margin-top: 30px;
}

.process-wrap::before {
  position: absolute;
  content: "";
  background: url(../images/wave.png);
  background-repeat: no-repeat;
  background-size: contain;
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0px);
  width: 100%;
  height: 100%;
}

.process-box-2 {
  margin-top: 45px;
}

.single-wdo {
  padding: 0px 0px 100px;

  .single-img {
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 6px 6px 6px 50px;
    }
  }
}

.read-btn {
  a {
    background: var(--blue-color);
    color: var(--white-color);
    min-width: 150px;
    margin: 0 auto;
    text-align: center;
  }
}

.sol-icon-box {
  position: absolute;
  bottom: -17px;
  left: -17px;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.single-wrap {
  position: relative;
  padding: 100px 0px;
}

.sol-2 {
  position: absolute;
  right: 0;
  top: 0;

  img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.single-head {
  position: relative;
}

.single-wrap::before {
  position: absolute;
  content: "";
  width: 92%;
  height: 100%;
  background: #F8F8F8;
  top: 0;
  right: 0;
  border-radius: 0px 0px 0px 150px;
}

/* counter sec */
.counter-sec-main {
  padding: 0px 0px 100px;
}

.counter-section {
  display: flex;
  justify-content: space-between;
}

.counter-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.circle-wrap {
  width: 150px;
  height: 150px;
  position: relative;
}

svg {
  transform: rotate(-90deg);
}

.bg {
  fill: none;
  stroke: #e9ecef;
  stroke-width: 6;
}

.progress {
  fill: none;
  stroke: var(--blue-color);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 251;
  stroke-dashoffset: 251;
  transition: stroke-dashoffset 1.5s ease;
}

.percentage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: rgb(0 0 0 / 80%);
  font-family: var(--text-font);
}

.counter-box {
  .text {
    h4 {
      font-size: 15px;
      line-height: 26px;
      color: #485862;
      font-family: var(--text-font);
      margin-bottom: 14px;

      span {
        font-size: 23px;
        line-height: 26px;
        font-family: var(--text-font);
        color: #202020 !important;
        display: block;
      }
    }

    p {
      font-family: var(--text-font);
      font-size: 16px;
      line-height: 26px;
      color: #656C7A;
    }
  }
}

/* .text p {
  margin: 4px 0 0;
  font-size: 12px;
  color: #6c757d;
  line-height: 1.4;
} */

/* Responsive */
@media (max-width: 768px) {
  .counter-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* contact add sec start */
.contact-add-sec {
  padding: 100px 0px 0px;
}

.con-icon {
  width: 100px;
  height: 100px;
  padding: 28px;
  background: #F7F7F7;
  border-radius: 20px 0px 20px 0px;
  display: flex;
  align-items: center;
  justify-content: center;

  span {
    color: var(--blue-color);
    font-size: 35px;

  }
}

.con-div-wrap {
  display: flex;

  .con-icon-box {
    margin-right: 17px;
  }
}

.con-text-div {
  h3 {
    font-size: 23px;
    line-height: 26px;
    font-family: var(--text-font);
    margin-bottom: 12px;
  }

  a {
    font-size: 16px;
    line-height: 26px;
    color: #787878;
    font-family: var(--text-font);
    display: block;
  }

  p {
    font-size: 16px;
    line-height: 26px;
    color: #787878;
    font-family: var(--text-font);
  }
}

.get-div {
  margin-top: 100px;
  margin-bottom: 100px;
}

.get-add-slide-wrap {
  margin: 0px 5px;
}

.get-add-box {
  h3 {
    font-size: 25px;
    line-height: 50px;
    font-family: var(--text-font);
    font-weight: 500;
    color: var(--blue-color);
    margin-bottom: 10px;
  }

  a {
    margin-bottom: 15px;
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #282828;
    font-weight: 500;
    font-family: var(--text-font);

    span {
      margin-right: 20px;
      color: var(--blue-color);
    }
  }
}

.get-add-slide .pre-arrow.slick-arrow {
  position: absolute;
  right: 90px;
  top: 0;
  color: var(--blue-color);
  cursor: pointer;
  z-index: 99;
}

.get-add-slide .nest-arrow.slick-arrow {
  position: absolute;
  right: 60px;
  top: 0;
  color: var(--blue-color);
  cursor: pointer;
  z-index: 99;
}

.read-btn {
  span {
    margin-right: 10px;
  }
}

.get-form {
  form {
    .form-control {
      background: #F7F7F7;
      padding: 13px 20px;
      border-radius: 6px;
      font-size: 16px;
      line-height: 26px;
      font-family: var(--text-font);
      border: none;
      box-shadow: none;
      color: var(--heading-color);
    }

    .form-control::placeholder {
      color: var(--heading-color);
    }
  }
}

/* contact add sec end */
/* Blog Page Css Start */
.blog-listing {
  padding: 100px 0px;
}

.blog-card {
  background: #F8F8F8;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-card-active {
  background: #fff;
  position: relative;
}

.blog-card-active::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background: #2F84BE;
  bottom: 0;
  left: 0;
}

.blog-img {
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.blog-meta-div {
  h4 {
    font-size: 15px;
    line-height: 26px;
    font-family: var(--text-font);
    font-weight: 500;

    span {
      color: #2F84BE;
      margin-right: 5px;
    }
  }
}

.blog-tags {
  margin-bottom: 30px;
}

.blog-tags span {
  background: var(--blue-color);
  color: #fff;
  font-size: 17px;
  line-height: 26px;
  font-family: var(--text-font);
  font-weight: 500;
  padding: 8px 18px;
  font-weight: 500;
  border-radius: 2px;
  margin-right: 10px;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgb(255 255 255 / 80%);
  color: #413E3E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  transition: ease-in all 0.3s;
}

.video-play:hover {
  color: var(--blue-color);
}

.side-box-top {
  background: var(--blue-color) !important;
  padding: 25px 25px !important;

  h4 {
    font-size: 22px !important;
    line-height: 50px !important;
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--white-color);
  }

  p {
    font-size: 17px !important;
    line-height: 26px;
    font-family: var(--text-font);
    color: var(--white-color) !important;
    font-weight: 400;
    margin-bottom: 25px;
  }
}

.blog-content-1 {
  padding: 0px 30px 30px;
  margin-top: -12px;
  position: relative;
}

.blog-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  gap: 15px;
}

.blog-meta li {
  font-size: 17px;
  line-height: 26px;
  font-family: var(--text-font);
  color: #34556B;
  position: relative;
  padding-left: 15px;
}

.blog-meta li::after {
  content: "";
  margin-left: 15px;
  position: absolute;
  left: -13px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #2F84BE;
  border-radius: 50%;
}

.blog-meta li:first-child::after {
  content: "";
  margin-left: 15px;
  position: absolute;
  left: -15px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #34556B;
}

.blog-content-1 {
  h3 {
    font-size: 30px;
    line-height: 50px;
    font-weight: 600;
    font-family: var(--heading-font);
    color: var(--black-color);
    margin-bottom: 12px;
  }

  p {
    font-size: 17px;
    line-height: 26px;
    color: rgb(0 0 0 / 70%);
    font-family: var(--text-font);
    margin-bottom: 18px;
  }
}

.read-more {
  font-size: 15px;
  line-height: 26px;
  font-family: var(--text-font);
  font-weight: 500;
  color: var(--blue-color);
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  padding-left: 18px;
}

.read-more::after {
  content: "";
  position: absolute;
  margin-left: 6px;
  right: -12px;
  top: 1px;
  width: 2px;
  height: 15px;
  background: #2F84BE;
}

.read-more::before {
  content: "";
  position: absolute;
  margin-left: 6px;
  left: 0px;
  top: 1px;
  width: 2px;
  height: 15px;
  background: #2F84BE;
}

.blog-sidebar {
  position: sticky;
  top: 30px;
}

.author-img {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.sidebar-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.sidebar-box p {
  font-size: 14px;
  color: #6c757d;
}

.linkedin-icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  background: transparent;
  color: #fff;
  border-radius: 50%;
  align-items: center;
  border: 1px solid #fff;
  justify-content: center;
  margin-top: 10px;
  transition: ease-in all 0.3s;
  font-size: 25px;
}

.linkedin-icon:hover {
  background: var(--white-color);
  color: var(--blue-color);
}

.search-box {
  position: relative;
  background: #F8F8F8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.search-box input {
  height: 65px;
  border-radius: 4px;
  font-size: 14px;
  padding-right: 45px;
  border: none;
  box-shadow: none !important;
}

.search-box button {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
}

.sidebar-box {
  h5 {
    font-size: 22px;
    font-weight: 500;
    font-family: var(--heading-font);
    margin-bottom: 28px;
    color: var(--blue-color);
    display: flex;
    align-items: center;

    span {
      color: var(--blue-color);
      font-size: 10px;
      margin-right: 8px;
    }
  }
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1.5px solid #F0F0F0;
}

.category-list li a {
  color: #433D3D;
  font-size: 18px;
  font-weight: 500;
  font-family: var(--text-font);
  text-decoration: none;
}

.category-list li span {
  color: #403B3B;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--text-font);
  background: #F8F8F8;
  padding: 3px 13px;
}

.related-post {
  gap: 12px;
  margin-bottom: 25px;
  align-items: center;
}

.related-post img {
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.related-post h6 {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  font-family: var(--text-font);
  margin-bottom: 10px;
  color: #3A3737;
}

.related-post span {
  font-size: 16px;
  line-height: 22px;
  font-weight: 400;
  font-family: var(--text-font);
  color: #818181;

}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list a {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--text-font);
  padding: 6px 13px;
  border-radius: 1px;
  text-decoration: none;
  color: #3A3737;
  border: 1px solid #F0F0F0;
}

.gallery img {
  height: 90px;
  object-fit: cover;
}

.gallery-div {
  margin-bottom: 50px;
}

.contact-blog {
  background: url(../images/map-2.png);
  background-repeat: no-repeat;
  background-position: center;
  color: #fff;
  padding: 50px 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid #2F84BE;
  border-radius: 0px;
}

.contact-blog img {
  max-width: 140px;
  margin-bottom: 15px;
}

.contact-blog h4 {
  font-size: 23px;
  line-height: 35px;
  color: var(--black-color);
  font-weight: 500;
  font-family: var(--text-font);
  margin-bottom: 40px;
}

.contact-blog .btn-primary {
  background: #0d6efd;
  border: none;
  padding: 10px 25px;
  font-size: 14px;
  border-radius: 4px;
}

/* Blog page Css End */