/* RGT Color Styles  */
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scrollPartners {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-1400px);
  }
}
@keyframes scrollPartnersReverse {
  from {
    transform: translateY(-1400px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes infiniteScroll {
  14.28% {
    transform: translate(-100%);
  }
  14.29% {
    transform: translate(600%);
  }
}
@keyframes clientLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* ****************** */
@keyframes animation-num {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes example {
  0% {
    bottom: 500px;
  }
  100% {
    bottom: 0px;
  }
}
/* ********************************** */
@keyframes _2tPiREdh {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes _33UlCTR1 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes WBg_52ht {
  0% {
    opacity: 0;
    transform: translateY(200px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes HNovGioP {
  0% {
    transform: scale(0, 0.1);
    /* transform: translateX(-100); */
    transform-origin: 0 50%;
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    /* transform: translateX(0); */
    transform-origin: 0 50%;
    opacity: 1;
  }
}
@keyframes HNovGioPline {
  0% {
    left: -10%;
    opacity: 0;
  }
  100% {
    left: 0%;
    opacity: 1;
  }
}
@keyframes mbHNovGioPline {
  0% {
    top: -5%;
    opacity: 0;
  }
  100% {
    top: 0%;
    opacity: 1;
  }
}
@keyframes _1nFOab96 {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes _-Igv5Bn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes _2gDo1nIq {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ****************** */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

nav.nav-menu li a.active {
  color: #f7941f;
}

nav.nav-menu li a.active-sub {
  color: #f7941f;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #dadada;
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ea9423;
}

html {
  overflow-y: scroll;
}

b,
strong {
  font-weight: bold;
}

html,
body {
  width: 100%;
  height: 100%;
  font-weight: 100;
  padding-top: 60px;
  font-weight: 400;
  color: #333333;
  background-color: #f5f8fd;
}

p {
  margin: 0 0 10px 0;
  font-family: "inter", sans-serif;
  font-size: 1.125rem;
  color: #333333;
}

.img-fluid {
  width: 100%;
}

a {
  text-decoration: none;
}
a:hover {
  outline: none;
  text-decoration: none;
}
a:active {
  outline: none;
  text-decoration: none;
}
a:focus {
  color: #333;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #4d4d4f;
  border-top-color: #e2eefd;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: animate-preloader 1s linear infinite;
}

.btn-get-started {
  font-family: "inter", sans-serif;
  font-weight: 500;
  display: inline-block;
  border-radius: 8px;
  background: var(--Primary-Blue-500, #2388ff);
  font-size: 16px;
  height: 52px;
  padding: 0px 20px;
  color: #ffffff;
}
.btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
}
.btn-get-started:hover {
  background: #e3efff;
  color: var(--Primary-Blue-500, #2388ff) !important;
}
.btn-get-started:hover i {
  transform: translateX(5px);
}

.btn-icon {
  font-family: "inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  transition: 0.5s;
  color: #4d4d4f;
}
.btn-icon i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}
.btn-icon:hover {
  color: #000;
}
.btn-icon:hover i {
  transform: translateX(5px);
  font-weight: bold;
}

.back-to-top {
  position: fixed;
  display: none;
  background: #f78904;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 1rem;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}
.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 50px 0;
  overflow: hidden;
}

.section-bg {
  background-color: white;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  line-height: 1;
  margin: 0;
  color: var(--base-black, #000);
  display: inline-block;
  text-transform: uppercase;
}
.section-title h3 {
  margin: 15px 0 0 0;
  font-size: 48px;
  font-weight: 500;
}
.section-title h3 span {
  color: #f97316;
}
.section-title p {
  margin: 15px auto 0 auto;
  font-weight: 600;
}

.bg-color {
  background: var(--neutral-neutral-500, #f3efea);
}

/*--------------------------------------------------------------
# header Section
--------------------------------------------------------------*/
#header {
  padding: 15px 0;
  background-color: #f4f8fd;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
#header .logo {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "inter", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  float: left;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  padding: 0;
  margin: 0;
  width: 100px;
}
#header .btn-get-started {
  color: var(--base-white, #fff) !important;
  background: var(--Gradient-Button, linear-gradient(100deg, #2388ff 7.96%, #005bc7 100%));
  padding: 10px 20px;
  margin: 0;
  border-radius: 8px;
  text-transform: none;
  border: 5px solid #c3ddff;
}
#header .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
}
#header .btn-get-started:hover {
  border-radius: 9px;
  box-shadow: 0px 5px 12px 2px rgba(194, 65, 12, 0.12);
}
#header .btn-get-started:hover i {
  transform: translateX(5px);
  transition: 0.3s;
  margin-left: 5px;
}
#header .header-transparent {
  background: #ffffff;
}
#header .header-scrolled {
  background: #ffffff;
  padding: 5px 0px;
}

.nav-menu {
  display: flex;
  justify-content: space-between;
}
.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul {
  display: flex;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.nav-menu > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1.5px;
  bottom: -6px;
  left: 0;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0.1s;
}
.nav-menu > ul > li > .getstarted:before {
  visibility: hidden;
}
.nav-menu a {
  display: block;
  position: relative;
  color: #333333;
  transition: 0.3s;
  font-size: 1rem;
  font-family: "inter", sans-serif;
  font-weight: 500;
}
.nav-menu a:hover {
  color: #000000;
  font-weight: 500;
}
.nav-menu a:hover:before {
  visibility: visible;
  width: 100%;
}
.nav-menu .active > a {
  color: #000000;
  font-weight: 500;
}
.nav-menu li:hover > a {
  color: #000000;
  font-weight: 500;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 14px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.nav-menu .drop-down ul a {
  padding: 5px 20px;
  font-size: 1rem;
  text-transform: none;
  color: #333333;
}
.nav-menu .drop-down ul a:hover {
  color: #000000;
  background: #dee2e6;
}
.nav-menu .drop-down ul .active > a {
  color: #f78904;
}
.nav-menu .drop-down ul li:hover > a {
  color: #000000;
}
.nav-menu .drop-down:hover > ul {
  display: block;
  opacity: 1;
  visibility: visible;
}
.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}
.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}
.nav-menu .drop-down .drop-down ul {
  display: none;
}
.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}
.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}
.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 30px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 1.5rem;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}
.mobile-nav-toggle i {
  color: #4d4d4f;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}
.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mobile-nav a {
  display: block;
  position: relative;
  color: #333333;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}
.mobile-nav a:hover {
  color: #f78904;
  text-decoration: none;
}
.mobile-nav .active > a {
  color: #333333;
  text-decoration: none;
}
.mobile-nav li:hover > a {
  color: #f78904;
  text-decoration: none;
}
.mobile-nav .drop-down > a {
  padding-right: 35px;
}
.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}
.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}
.mobile-nav .drop-down li {
  padding-left: 20px;
}
.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}
.mobile-nav .btn-get-started {
  color: var(--base-white, #fff) !important;
  padding: 10px 20px;
  margin: 0;
  text-transform: none;
  border: 5px solid #c3ddff;
}
.mobile-nav .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
  font-weight: 500;
}
.mobile-nav .btn-get-started:hover {
  background: var(--Primary-Blue-500, #2388ff) !important;
  box-shadow: 0px 2px 16px 0px rgba(194, 65, 12, 0.12);
  color: var(--base-white, #fff);
}
.mobile-nav .btn-get-started:hover i {
  transform: translateX(5px);
  transition: 0.3s;
  margin-left: 5px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(26, 26, 26, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}
#hero {
  padding-top: 0;
}
#hero .container {
  overflow: hidden;
}
#hero .container .carousel .carousel-inner {
  overflow: inherit !important;
}
#hero .container .carousel .carousel-image img {
  width: 100%;
}
#hero .container .carousel .carousel-title {
  position: absolute;
  width: 518px;
  height: 118px;
  top: 24%;
  left: -19.5%;
  z-index: 1;
  margin: 0;
  padding: 0;
}
#hero .container .carousel .carousel-title h1 {
  margin: 0;
  border: 1px;
  font-weight: 500;
  opacity: 0.96;
  letter-spacing: 0px;
  line-height: 63px;
  font-style: normal;
  background: url("../assets/img/hero-banner/hero-title.png") center/cover;
  /* Replace 'path/to/your/image.jpg' with the actual path to your image */
  /* background: linear-gradient(to right, #19213d 42%, transparent 30%); */
  color: transparent;
  background-clip: text;
  /* fallback for old browsers */
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 96px;
  height: 140px;
}
#hero .container .carousel p {
  width: 200px;
  color: #353e5c;
  height: 120px;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
  margin-top: -2rem;
}
#hero .container .carousel .animate__fadeInUp {
  animation-name: none;
}
#hero .container .carousel .carousel-indicators {
  right: 0;
  bottom: 20.8rem;
  left: -63rem;
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
}
#hero .container .carousel .carousel-indicators li {
  opacity: 1;
  background-color: #fff;
  margin: 0;
  width: 6.2rem;
  height: 2px;
}
#hero .container .carousel .carousel-indicators li.active {
  background-color: #2388ff;
  margin: 0;
}
#hero .container .carousel .carousel-control-prev {
  background-color: rgba(248, 251, 255, 0.2);
  -webkit-backdrop-filter: blur(white);
          backdrop-filter: blur(white);
  opacity: 1;
  width: 72px;
  height: 54px;
  border-radius: 40px;
  padding: 10px;
  gap: 10px;
  margin-top: 32rem;
  margin-left: 55rem;
}
#hero .container .carousel .carousel-control-prev-icon {
  background-image: url("../assets/img/png/arrow_left2.png");
  opacity: 1;
}
#hero .container .carousel .carousel-control-next-icon {
  background-image: url("../assets/img/png/arrow_right.png");
}
#hero .container .carousel .carousel-control-prev-icon:hover {
  background-image: url("../assets/img/png/left_hov.png");
  opacity: 1;
}
#hero .container .carousel .carousel-control-next-icon:hover {
  background-image: url("../assets/img/png/right_hov.png");
}
#hero .container .carousel .carousel-control-next {
  background-color: rgba(248, 251, 255, 0.2);
  -webkit-backdrop-filter: blur(white);
          backdrop-filter: blur(white);
  opacity: 1;
  width: 72px;
  height: 54px;
  border-radius: 40px;
  padding: 10px;
  gap: 10px;
  margin-top: 32rem;
  margin-right: 2rem;
}

@media (min-width: 1200px) and (max-width: 1399.98px) {
  #hero {
    padding-top: 0;
  }
  #hero .container {
    overflow: hidden;
  }
  #hero .container .carousel .carousel-inner {
    overflow: inherit !important;
  }
  #hero .container .carousel .carousel-image {
    width: 877px;
    float: right;
  }
  #hero .container .carousel .carousel-image img {
    width: 100%;
    border-radius: 12px;
  }
  #hero .container .carousel .carousel-title {
    position: absolute;
    width: 518px;
    height: 118px;
    top: 22%;
    left: -17%;
    z-index: 10;
    margin: 0;
    padding: 0;
  }
  #hero .container .carousel .carousel-title h1 {
    margin: 0;
    border: 1px;
    font-weight: 500;
    opacity: 0.96;
    letter-spacing: 0px;
    line-height: 62px;
    font-style: normal;
    background: url("../assets/img/hero-banner/hero-title.png") center/cover;
    /* Replace 'path/to/your/image.jpg' with the actual path to your image */
    /* background: linear-gradient(to right, #19213d 42%, transparent 30%); */
    color: transparent;
    background-clip: text;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 96px;
    height: 140px;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  #hero .container .carousel p {
    width: 200px;
    color: #353e5c;
    height: 120px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin-top: -2.5rem;
  }
  #hero .container .carousel .animate__fadeInUp {
    animation-name: none;
  }
  #hero .container .carousel .carousel-indicators {
    right: 0;
    bottom: 16.1rem;
    left: -47rem;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
  }
  #hero .container .carousel .carousel-indicators li {
    opacity: 1;
    background-color: #fff;
    margin: 0;
    width: 6rem;
    height: 2px;
  }
  #hero .container .carousel .carousel-indicators li.active {
    background-color: #2388ff;
    margin: 0;
  }
  #hero .container .carousel .carousel-control-prev {
    background-color: rgba(248, 251, 255, 0.2);
    -webkit-backdrop-filter: blur(white);
            backdrop-filter: blur(white);
    opacity: 1;
    width: 72px;
    height: 54px;
    border-radius: 40px;
    padding: 10px;
    gap: 10px;
    margin-top: 25.5rem;
    margin-left: 46.2rem;
  }
  #hero .container .carousel .carousel-control-prev-icon {
    background-image: url("../assets/img/png/arrow_left2.png");
    opacity: 1;
  }
  #hero .container .carousel .carousel-control-next-icon {
    background-image: url("../assets/img/png/arrow_right.png");
  }
  #hero .container .carousel .carousel-control-next {
    background-color: rgba(248, 251, 255, 0.2);
    -webkit-backdrop-filter: blur(white);
    backdrop-filter: blur(white);
    opacity: 1;
    width: 72px;
    height: 54px;
    border-radius: 40px;
    padding: 10px;
    gap: 10px;
    margin-top: 25.5rem;
    margin-right: 1.5rem;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #hero {
    padding-top: 0;
  }
  #hero .container {
    overflow: hidden;
  }
  #hero .container .carousel .carousel-inner {
    overflow: inherit !important;
  }
  #hero .container .carousel .carousel-image {
    width: 721px;
    float: right;
  }
  #hero .container .carousel .carousel-image img {
    width: 100%;
    border-radius: 12px;
  }
  #hero .container .carousel .carousel-title {
    position: absolute;
    width: 518px;
    height: 118px;
    top: 22%;
    left: -17%;
    z-index: 10;
    margin: 0;
    padding: 0;
  }
  #hero .container .carousel .carousel-title h1 {
    margin: 0;
    border: 1px;
    font-weight: 500;
    opacity: 0.96;
    letter-spacing: 0px;
    line-height: 62px;
    font-style: normal;
    background: url("../assets/img/hero-banner/hero-title.png") center/cover;
    /* Replace 'path/to/your/image.jpg' with the actual path to your image */
    /* background: linear-gradient(to right, #19213d 42%, transparent 30%); */
    color: transparent;
    background-clip: text;
    font-size: 86px;
    height: 140px;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
  }
  #hero .container .carousel p {
    width: 200px;
    color: #353e5c;
    height: 120px;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin-top: -2.5rem;
  }
  #hero .container .carousel .animate__fadeInUp {
    animation-name: none;
  }
  #hero .container .carousel .carousel-indicators {
    right: 0;
    bottom: 12.1rem;
    left: -38rem;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
  }
  #hero .container .carousel .carousel-indicators li {
    opacity: 1;
    background-color: #fff;
    margin: 0;
    width: 5.5rem;
    height: 2px;
  }
  #hero .container .carousel .carousel-indicators li.active {
    background-color: #2388ff;
    margin: 0;
  }
  #hero .container .carousel .carousel-control-prev {
    background-color: rgba(248, 251, 255, 0.2);
    -webkit-backdrop-filter: blur(white);
            backdrop-filter: blur(white);
    opacity: 1;
    width: 72px;
    height: 54px;
    border-radius: 40px;
    padding: 10px;
    gap: 10px;
    margin-top: 20rem;
    margin-left: 36.8rem;
  }
  #hero .container .carousel .carousel-control-prev-icon {
    background-image: url("../assets/img/png/arrow_left2.png");
    opacity: 1;
  }
  #hero .container .carousel .carousel-control-next-icon {
    background-image: url("../assets/img/png/arrow_right.png");
  }
  #hero .container .carousel .carousel-control-next {
    background-color: rgba(248, 251, 255, 0.2);
    -webkit-backdrop-filter: blur(white);
    backdrop-filter: blur(white);
    opacity: 1;
    width: 72px;
    height: 54px;
    border-radius: 40px;
    padding: 10px;
    gap: 10px;
    margin-top: 20rem;
    margin-right: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #hero {
    padding-top: 0;
  }
  #hero .container {
    overflow: hidden;
  }
  #hero .container .carousel .carousel-inner {
    overflow: inherit !important;
  }
  #hero .container .carousel .carousel-image {
    width: 515px;
    float: inline-end;
  }
  #hero .container .carousel .carousel-image img {
    width: 100%;
    border-radius: 12px;
  }
  #hero .container .carousel .carousel-title {
    position: absolute;
    width: 330px;
    height: 165px;
    top: 8%;
    left: -18%;
    z-index: 10;
    margin: 0;
    padding: 0;
  }
  #hero .container .carousel .carousel-title h1 {
    margin: 0;
    border: 1px;
    font-weight: 500;
    opacity: 0.96;
    letter-spacing: 0px;
    line-height: 56px;
    font-style: normal;
    background: url("../assets/img/hero-banner/hero-title.png") center/cover;
    /* Replace 'path/to/your/image.jpg' with the actual path to your image */
    /* background: linear-gradient(to right, #19213d 42%, transparent 30%); */
    color: transparent;
    background-clip: text;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 48px;
    height: 140px;
  }
  #hero .container .carousel p {
    width: 133px;
    color: #353e5c;
    height: 85px;
    height: 85px;
    font-size: 12px;
    line-height: 16.8px;
    font-weight: 400;
    margin-top: -4rem;
  }
  #hero .container .carousel .animate__fadeInUp {
    animation-name: none;
  }
  #hero .container .carousel .carousel-indicators {
    right: 0;
    bottom: 11rem;
    left: -29rem;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
  }
  #hero .container .carousel .carousel-indicators li {
    opacity: 1;
    background-color: #fff;
    margin: 0;
    width: 4rem;
    height: 2px;
  }
  #hero .container .carousel .carousel-indicators li.active {
    background-color: #2388ff;
    margin: 0;
  }
  #hero .container .carousel .carousel-control-prev {
    background-color: rgba(248, 251, 255, 0.2);
    -webkit-backdrop-filter: blur(white);
            backdrop-filter: blur(white);
    opacity: 1;
    width: 72px;
    height: 54px;
    border-radius: 40px;
    padding: 10px;
    gap: 10px;
    margin-top: 32rem;
    margin-left: 55rem;
  }
  #hero .container .carousel .carousel-control-prev-icon {
    background-image: url("../assets/img/png/arrow_left2.png");
    opacity: 1;
  }
  #hero .container .carousel .carousel-control-next-icon {
    background-image: url("../assets/img/png/arrow_right.png");
  }
  #hero .container .carousel .carousel-control-next {
    background-color: rgba(248, 251, 255, 0.2);
    -webkit-backdrop-filter: blur(white);
            backdrop-filter: blur(white);
    opacity: 1;
    width: 72px;
    height: 54px;
    border-radius: 40px;
    padding: 10px;
    gap: 10px;
    margin-top: 32rem;
    margin-right: 2rem;
  }
}
@media (min-width: 480px) and (max-width: 767.98px) {
  #hero {
    margin: 0;
    padding: 0;
  }
  #hero .container {
    overflow: hidden;
  }
  #hero .container .carousel .carousel-inner {
    overflow: inherit !important;
  }
  #hero .container .carousel .carousel-image img {
    width: 100%;
    border-radius: 12px;
  }
  #hero .container .carousel .carousel-title {
    position: relative;
    width: 330px;
    top: 57%;
    left: 1%;
    z-index: 10;
    margin: 0;
    padding: 0;
    margin-top: -2.2rem;
  }
  #hero .container .carousel .carousel-title h1 {
    margin: 0;
    border: 1px;
    font-weight: 500;
    opacity: 0.96;
    letter-spacing: 0px;
    line-height: 56px;
    background: url("../assets/img/hero-banner/hero-title.png") center/cover;
    /* Replace 'path/to/your/image.jpg' with the actual path to your image */
    /* background: linear-gradient(to right, #19213d 42%, transparent 30%); */
    color: transparent;
    background-clip: text;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    -webkit-background-clip: text;
    font-size: 48px;
    height: 140px;
  }
  #hero .container .carousel .carousel-title p {
    width: 343px;
    height: 34px;
    color: #353e5c;
    height: 85px;
    height: 85px;
    font-size: 12px;
    line-height: 16.8px;
    font-weight: 400;
    margin-top: -4.3rem;
  }
  #hero .container .carousel .animate__fadeInUp {
    animation-name: none;
  }
  #hero .container .carousel .carousel-indicators {
    position: absolute;
    margin: 0;
    padding: 0;
    bottom: 3rem;
    left: 0rem;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
  }
  #hero .container .carousel .carousel-indicators li {
    opacity: 1;
    background-color: #fff;
    margin: 0;
    width: 6.3rem;
    height: 2px;
  }
  #hero .container .carousel .carousel-indicators li.active {
    background-color: #2388ff;
    margin: 0;
  }
}
@media (min-width: 400px) and (max-width: 480px) {
  #hero {
    margin: 0;
    padding: 0;
  }
  #hero .container {
    overflow: hidden;
  }
  #hero .container .carousel .carousel-inner {
    overflow: inherit !important;
  }
  #hero .container .carousel .carousel-image img {
    width: 100%;
    border-radius: 12px;
  }
  #hero .container .carousel .carousel-title {
    position: relative;
    width: 330px;
    top: 57%;
    left: 1.8%;
    z-index: 10;
    margin: 0;
    padding: 0;
    margin-top: -2.2rem;
  }
  #hero .container .carousel .carousel-title h1 {
    margin: 0;
    border: 1px;
    font-weight: 500;
    opacity: 0.96;
    letter-spacing: 0px;
    line-height: 56px;
    font-style: normal;
    background: url("../assets/img/hero-banner/hero-title.png") center/cover;
    /* Replace 'path/to/your/image.jpg' with the actual path to your image */
    /* background: linear-gradient(to right, #19213d 42%, transparent 30%); */
    color: transparent;
    background-clip: text;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    color: transparent;
    -webkit-background-clip: text;
    font-size: 48px;
    height: 140px;
  }
  #hero .container .carousel .carousel-title p {
    width: 343px;
    height: 34px;
    color: #353e5c;
    height: 85px;
    height: 85px;
    font-size: 12px;
    line-height: 16.8px;
    font-weight: 400;
    margin-top: -4.3rem;
    padding-right: 1rem;
  }
  #hero .container .carousel .animate__fadeInUp {
    animation-name: none;
  }
  #hero .container .carousel .carousel-indicators {
    position: absolute;
    margin: 0;
    padding: 0;
    bottom: 3rem;
    left: 0rem;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
  }
  #hero .container .carousel .carousel-indicators li {
    opacity: 1;
    background-color: #fff;
    margin: 0;
    width: 5.5rem;
    height: 2px;
  }
  #hero .container .carousel .carousel-indicators li.active {
    background-color: #2388ff;
    margin: 0;
  }
}
@media (min-width: 320px) and (max-width: 400px) {
  #hero {
    margin: 0;
    padding: 0;
  }
  #hero .container {
    overflow: hidden;
  }
  #hero .container .carousel .carousel-inner {
    overflow: inherit !important;
  }
  #hero .container .carousel .carousel-image img {
    width: 100%;
    border-radius: 12px;
  }
  #hero .container .carousel .carousel-title {
    position: relative;
    width: 330px;
    top: 57%;
    left: 1.8%;
    z-index: 10;
    margin: 0;
    padding: 0;
    margin-top: -2.2rem;
  }
  #hero .container .carousel .carousel-title h1 {
    margin: 0;
    border: 1px;
    font-weight: 500;
    opacity: 0.96;
    letter-spacing: 0px;
    line-height: 56px;
    font-style: normal;
    background: url("../assets/img/hero-banner/hero-title.png") center/cover;
    /* Replace 'path/to/your/image.jpg' with the actual path to your image */
    /* background: linear-gradient(to right, #19213d 42%, transparent 30%); */
    color: transparent;
    background-clip: text;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    -webkit-background-clip: text;
    font-size: 48px;
    height: 140px;
  }
  #hero .container .carousel .carousel-title p {
    width: 343px;
    height: 34px;
    color: #353e5c;
    height: 85px;
    height: 85px;
    font-size: 12px;
    line-height: 16.8px;
    font-weight: 400;
    margin-top: -4.3rem;
    padding-right: 1rem;
  }
  #hero .container .carousel .animate__fadeInUp {
    animation-name: none;
  }
  #hero .container .carousel .carousel-indicators {
    position: absolute;
    margin: 0;
    padding: 0;
    bottom: 3rem;
    left: 0rem;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
  }
  #hero .container .carousel .carousel-indicators li {
    opacity: 1;
    background-color: #fff;
    margin: 0;
    width: 4.4rem;
    height: 2px;
  }
  #hero .container .carousel .carousel-indicators li.active {
    background-color: #2388ff;
    margin: 0;
  }
}
@media (max-width: 320px) and (min-width: 100px) {
  #hero {
    margin: 0;
    padding: 0;
  }
  #hero .container {
    overflow: hidden;
  }
  #hero .container .carousel .carousel-inner {
    overflow: inherit !important;
  }
  #hero .container .carousel .carousel-image img {
    width: 100%;
    border-radius: 12px;
  }
  #hero .container .carousel .carousel-title {
    position: relative;
    width: 330px;
    top: 57%;
    left: 1.8%;
    z-index: 10;
    margin: 0;
    padding: 0;
    margin-top: -2.3rem;
  }
  #hero .container .carousel .carousel-title h1 {
    margin: 0;
    border: 1px;
    font-weight: 500;
    opacity: 0.96;
    letter-spacing: 0px;
    line-height: 56px;
    font-style: normal;
    background: url("../assets/img/hero-banner/hero-title.png") center/cover;
    /* Replace 'path/to/your/image.jpg' with the actual path to your image */
    /* background: linear-gradient(to right, #19213d 42%, transparent 30%); */
    color: transparent;
    background-clip: text;
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    -webkit-background-clip: text;
    font-size: 48px;
    height: 140px;
  }
  #hero .container .carousel .carousel-title p {
    width: 343px;
    height: 34px;
    color: #353e5c;
    height: 85px;
    height: 85px;
    font-size: 10px;
    line-height: 16.8px;
    font-weight: 400;
    margin-top: -4.3rem;
    padding-right: 1rem;
  }
  #hero .container .carousel .animate__fadeInUp {
    animation-name: none;
  }
  #hero .container .carousel .carousel-indicators {
    position: absolute;
    margin: 0;
    padding: 0;
    bottom: 3rem;
    left: 0rem;
    display: flex;
    justify-content: center;
    padding-left: 0;
    list-style: none;
  }
  #hero .container .carousel .carousel-indicators li {
    opacity: 1;
    background-color: #fff;
    margin: 0;
    width: 3.6rem;
    height: 2px;
  }
  #hero .container .carousel .carousel-indicators li.active {
    background-color: #2388ff;
    margin: 0;
  }
}
/*--------------------------------------------------------------
# Circles  Section
--------------------------------------------------------------*/
.circles {
  background-color: #ffffff;
}
.circles .child1 {
  display: none;
  position: absolute;
  left: 10rem;
  bottom: 1rem;
}
.circles .carousel-indicators li {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 44px;
  height: 4px;
  margin-right: 3px;
  margin-left: 3px;
  border-radius: 10px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
.circles .carousel-indicators .active {
  opacity: 1;
}
.circles .prev-div {
  width: 40%;
  height: 100vh;
  position: absolute;
  background-color: transparent;
}
.circles .next-div {
  width: 60%;
  height: 100vh;
  position: absolute;
  background-color: transparent;
  right: 0;
  top: 0;
}
.circles .fade {
  background-color: rgba(0, 0, 0, 0.8);
}
.circles .allstoreis {
  display: flex;
  gap: 60px;
}
.circles .allstoreis .frame1 {
  display: flex;
  width: 212px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.circles .allstoreis .frame1 p {
  color: var(--Black, #000);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  letter-spacing: 0.3px;
  font-family: Inter;
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0.015em;
  text-align: left;
}
.circles .allstoreis .frame1 .frame2 {
  display: flex;
  padding: 5px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 100px;
  background: linear-gradient(to top right, rgb(35, 136, 255), rgb(25, 33, 61));
  padding: 4px;
}
.circles .allstoreis .frame1 .frame2 .frame3 {
  border: 4px solid rgb(255, 255, 255);
  width: 120px;
  height: 120px;
  border-radius: 100px;
  border-width: 7px;
}
.circles .allstoreis .frame1 .frame2:hover {
  display: flex;
  padding: 5px;
  align-items: flex-start;
  gap: 8px;
  border-radius: 100px;
  background: linear-gradient(#f9ce34, #ee2a7b, #6228d7);
  padding: 4px;
}
.circles .wrapper {
  text-align: center;
}
.circles #open-modal-button {
  position: absolute;
  top: 30%;
}
.circles .carousel-indicators {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-top: 5px;
}
.circles .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #000;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1.3rem;
  outline: 0;
}
.circles .carousel-control-prev {
  position: absolute;
  top: 45%;
  left: -19%;
  bottom: 0%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  opacity: 1;
  transition: 0;
}
.circles .carousel1 .wrapper {
  text-align: center;
}
.circles .carousel1 #open-modal-button {
  position: absolute;
  top: 30%;
}
.circles .img-size {
  background-size: cover;
  overflow: hidden;
}
.circles .modal-content {
  width: 360px;
  height: 600px;
  border: none;
}
.circles .modal-body {
  padding: 0;
}
.circles .carousel-control-prev-icon {
  background-image: url("../assets/img/differentiators/leftarrow1.png");
  width: 40px;
  height: 40px;
}
.circles .carousel-control-next-icon {
  background-image: url("../assets/img/differentiators/rightarrow1.png");
  width: 40px;
  height: 40px;
}
.circles .carousel-control-prev-story-icon {
  background-image: url("../assets/img/circles/stories/Previous_story.png");
  width: 40px;
  height: 40px;
}
.circles .carousel-control-next-story-icon {
  background-image: url("../assets/img/circles/stories/Next_story.png");
  width: 40px;
  height: 40px;
}
.circles .carousel-control-next {
  position: absolute;
  top: 45%;
  left: 103%;
  bottom: 0%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  opacity: 1;
  transition: 0;
}
.circles .carousel-control-next-story {
  position: absolute;
  top: 45%;
  left: 118%;
  bottom: 0%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  opacity: 1;
  transition: 0;
}
.circles .carousel-control-prev-story {
  position: absolute;
  top: 45%;
  right: 118%;
  bottom: 0%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  opacity: 1;
  transition: 0;
}
.circles .modal-dialog {
  max-width: 360px;
  margin: 1.75rem auto;
}
.circles .custom-img-size {
  width: 100%;
}

@media (min-width: 768px) and (max-width: 1399px) {
  .circles .child1 {
    display: none;
    position: absolute;
    left: 1rem;
    bottom: 1rem;
  }
  .circles .allstoreis {
    gap: 16px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .circles .allstoreis .frame1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
  }
  .circles .allstoreis .frame1 p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: var(--Black, #000);
    text-align: center;
    text-overflow: ellipsis;
    /* Body/Body2 Medium */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.21px;
  }
  .circles .allstoreis .frame1 .frame2 {
    display: flex;
    padding: 4px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 100px;
    background: linear-gradient(to top right, rgb(35, 136, 255), rgb(25, 33, 61));
  }
  .circles .allstoreis .frame1 .frame2 .frame3 {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid #ffffff;
    border-width: 7px;
  }
  .circles .allstoreis::-webkit-scrollbar {
    display: none;
  }
  .circles .back-to-top {
    bottom: 15px;
  }
}
@media (max-width: 767px) {
  .circles .child1 {
    display: block;
    position: absolute;
    left: 1rem;
    bottom: 1rem;
  }
  .circles .allstoreis {
    gap: 16px;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .circles .allstoreis .frame1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
  }
  .circles .allstoreis .frame1 p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    align-self: stretch;
    overflow: hidden;
    color: var(--Black, #000);
    text-align: center;
    text-overflow: ellipsis;
    /* Body/Body2 Medium */
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: 0.21px;
  }
  .circles .allstoreis .frame1 .frame2 {
    display: flex;
    padding: 4px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 100px;
    background: linear-gradient(to top right, rgb(35, 136, 255), rgb(25, 33, 61));
  }
  .circles .allstoreis .frame1 .frame2 .frame3 {
    width: 80px;
    height: 80px;
    border-radius: 100px;
    border: 2px solid #ffffff;
    border-width: 7px;
  }
  .circles .allstoreis::-webkit-scrollbar {
    display: none;
  }
  .circles .back-to-top {
    bottom: 15px;
  }
}
@media (min-width: 401px) and (max-width: 480px) {
  .circles .modal-dialog {
    max-width: 370px;
    margin: 2rem auto;
  }
  .circles .custom-img-size {
    width: 100%;
  }
  .carousel-control-prev-icon {
    display: none !important;
  }
  .carousel-control-next-icon {
    display: none !important;
  }
}
@media (min-width: 360px) and (max-width: 400.98px) {
  .circles .modal-dialog {
    max-width: 360px;
    margin: 1.75rem auto;
  }
  .circles .custom-img-size {
    width: 100%;
  }
  .carousel-control-prev-icon {
    display: none !important;
  }
  .carousel-control-next-icon {
    display: none !important;
  }
}
@media (min-width: 320px) and (max-width: 359.98px) {
  .circles .modal-dialog {
    max-width: 305px;
    max-height: 540px;
    margin: 1.75rem auto;
  }
  .circles .custom-img-size {
    width: 100%;
  }
  .circles .modal-content {
    max-width: 300px;
    max-height: 540px;
  }
  .circles .carousel-control-prev-icon {
    display: none !important;
  }
  .circles .carousel-control-next-icon {
    display: none !important;
  }
}
@media (max-width: 320px) and (min-width: 100px) {
  .circles .modal-dialog {
    max-width: 300px;
    max-height: 540px;
    margin: 1.75rem auto;
  }
  .circles .custom-img-size {
    width: 100%;
  }
  .circles .modal-content {
    max-width: 300px;
    max-height: 540px;
  }
  .circles .carousel-control-prev-icon {
    display: none !important;
  }
  .circles .carousel-control-next-icon {
    display: none !important;
  }
}
.our-service {
  height: 720px;
  font-family: "inter", sans-serif;
  margin: auto;
}

.our-main-container {
  width: 1300px;
  height: 480px;
  margin: auto;
}

.our-service-heading {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 66px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.title-div {
  width: 75%;
}

#main-title {
  color: #2388ff;
  font-weight: 500;
  font-size: 40px;
  line-height: 57.6px;
  letter-spacing: 1.5%;
}

#slogan-container {
  width: 50%;
}

#our-service-slogan {
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 22.4px;
}

.grid-container {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.grid-item:hover {
  transform: scale(1);
}

.grid-item:hover .service-icon {
  justify-content: center;
}

.grid-item {
  background-color: #e3efff;
  color: black;
}

#grid1 {
  border-top-left-radius: 12px;
  border-bottom: 1px solid #8dc1ff;
}

#grid2 {
  border-right: 1px solid #8dc1ff;
  border-left: 1px solid #8dc1ff;
  border-bottom: 1px solid #8dc1ff;
}

#grid3 {
  border-top-right-radius: 12px;
  border-bottom: 1px solid #8dc1ff;
}

#grid4 {
  border-bottom: 1px solid #8dc1ff;
}

#grid5 {
  border-right: 1px solid #8dc1ff;
  border-left: 1px solid #8dc1ff;
  border-bottom: 1px solid #8dc1ff;
}

#grid6 {
  border-bottom: 1px solid #8dc1ff;
}

#grid8 {
  border-right: 1px solid #8dc1ff;
  border-left: 1px solid #8dc1ff;
}

#grid7 {
  border-bottom-left-radius: 12px;
}

#grid9 {
  border-bottom-right-radius: 12px;
}

.service-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 100%;
}

.arrow-icon {
  position: absolute;
  top: 26%;
  right: 0;
}

.service-icon-img {
  margin-left: 15px;
}

.service-icon-img1 {
  position: absolute;
  right: 0px;
  top: 0px;
}

.hoverblue,
.hoverwhite {
  display: none;
}

.grid-item:hover .hoverblue {
  display: block;
}

.grid-item:hover {
  overflow: hidden;
}

.grid-item:hover #imgblue,
.grid-item:hover .hoverwhite {
  display: none;
}

.grid-item:hover #imgwhite1 {
  display: inline;
}

#imgwhite1 {
  display: none;
  /* Hide the white image by default */
}

/* Show the white image when hovering over the container */
.grid-item:hover #imgwhite {
  display: inline;
}

/* Hide the blue image when hovering over the container */
.grid-item:hover #imgblue {
  display: none;
}

.all-services {
  margin: 0;
  height: 100%;
  font-size: 22px;
  padding-left: 12px;
}

.grid-item:hover .all-services {
  width: 100%;
  font-style: normal;
  height: 29px;
  line-height: 28.8px;
  font-size: 22px;
  padding-left: 12px;
  color: #fff;
  margin-left: -6px;
  cursor: pointer;
}

.grid-item:hover {
  background: #2388ff;
  color: white;
}

@media (min-width: 1350px) and (max-width: 1400px) {
  .our-service {
    height: 720px;
    margin: auto;
  }
  .our-main-container {
    width: 1100px;
    height: 480px;
    margin: auto;
  }
  .our-service-heading {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 66px;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 20px;
  }
  .title-div {
    width: 75%;
  }
  #main-title {
    color: #2388ff;
    font-weight: 500;
    font-size: 40px;
    line-height: 57.6px;
    letter-spacing: 1.5%;
  }
  #slogan-container {
    width: 50%;
  }
  #our-service-slogan {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px;
  }
  .grid-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .grid-item:hover {
    transform: scale(1);
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item {
    background-color: #e3efff;
    color: black;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid2 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 12px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid4 {
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid6 {
    border-bottom: 1px solid #8dc1ff;
  }
  #grid8 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
  }
  #grid7 {
    border-bottom-left-radius: 12px;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
  }
  .service-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
  }
  .arrow-icon {
    position: absolute;
    top: 26%;
    right: 0;
  }
  .service-icon-img {
    margin-left: 15px;
  }
  .service-icon-img1 {
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .hoverblue,
  .hoverwhite {
    display: none;
  }
  .grid-item:hover .hoverblue {
    display: block;
  }
  .grid-item:hover {
    overflow: hidden;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: none;
  }
  .grid-item:hover #imgwhite1 {
    display: inline;
  }
  #imgwhite1 {
    display: none;
    /* Hide the white image by default */
  }
  /* Show the white image when hovering over the container */
  .grid-item:hover #imgwhite {
    display: inline;
  }
  /* Hide the blue image when hovering over the container */
  .grid-item:hover #imgblue {
    display: none;
  }
  .all-services {
    margin: 0;
    height: 100%;
    font-size: 16px;
    padding-left: 12px;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 16px;
    padding-left: 12px;
    color: #fff;
    margin-left: -6px;
  }
  .grid-item:hover {
    background: #2388ff;
    color: white;
  }
}
@media (max-width: 1349.98px) and (min-width: 1200px) {
  .our-service {
    height: 720px;
    margin: auto;
  }
  .our-main-container {
    width: 1100px;
    height: 480px;
    margin: auto;
  }
  .our-service-heading {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 66px;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 20px;
  }
  .title-div {
    width: 75%;
  }
  #main-title {
    color: #2388ff;
    font-weight: 500;
    font-size: 40px;
    line-height: 57.6px;
    letter-spacing: 1.5%;
  }
  #slogan-container {
    width: 50%;
  }
  #our-service-slogan {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px;
  }
  .grid-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .grid-item:hover {
    transform: scale(1);
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item {
    background-color: #e3efff;
    color: black;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid2 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 12px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid4 {
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid6 {
    border-bottom: 1px solid #8dc1ff;
  }
  #grid8 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
  }
  #grid7 {
    border-bottom-left-radius: 12px;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
  }
  .service-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
  }
  .arrow-icon {
    position: absolute;
    top: 26%;
    right: 0;
  }
  .service-icon-img {
    margin-left: 15px;
  }
  .service-icon-img1 {
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .hoverblue,
  .hoverwhite {
    display: none;
  }
  .grid-item:hover .hoverblue {
    display: block;
  }
  .grid-item:hover {
    overflow: hidden;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: none;
  }
  .grid-item:hover #imgwhite1 {
    display: inline;
  }
  #imgwhite1 {
    display: none;
    /* Hide the white image by default */
  }
  /* Show the white image when hovering over the container */
  .grid-item:hover #imgwhite {
    display: inline;
  }
  /* Hide the blue image when hovering over the container */
  .grid-item:hover #imgblue {
    display: none;
  }
  .all-services {
    margin: 0;
    height: 100%;
    font-size: 18px;
    padding-left: 12px;
    font-family: "inter", sans-serif;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-family: "inter", sans-serif;
    height: 29px;
    line-height: 28.8px;
    font-size: 18px;
    padding-left: 12px;
    color: #fff;
    margin-left: -6px;
  }
  .grid-item:hover {
    background: #2388ff;
    color: white;
  }
}
@media (max-width: 1199.98px) and (min-width: 1040px) {
  .our-service {
    height: 720px;
    margin: auto;
  }
  .our-main-container {
    width: 1100px;
    height: 480px;
    margin: auto;
  }
  .our-service-heading {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 66px;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 20px;
  }
  .title-div {
    width: 75%;
  }
  #main-title {
    color: #2388ff;
    font-weight: 500;
    font-size: 40px;
    line-height: 57.6px;
    letter-spacing: 1.5%;
    margin-left: 74px;
  }
  #slogan-container {
    width: 50%;
  }
  #our-service-slogan {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px;
    margin-left: -93px;
  }
  .grid-container {
    width: 933px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin-left: 70px;
  }
  .grid-item:hover {
    transform: scale(1);
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item {
    background-color: #e3efff;
    color: black;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid2 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 12px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid4 {
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid6 {
    border-bottom: 1px solid #8dc1ff;
  }
  #grid8 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
  }
  #grid7 {
    border-bottom-left-radius: 12px;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
  }
  .service-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
  }
  .arrow-icon {
    position: absolute;
    top: 26%;
    right: 0;
  }
  .service-icon-img {
    margin-left: 15px;
  }
  .service-icon-img1 {
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .hoverblue,
  .hoverwhite {
    display: none;
  }
  .grid-item:hover .hoverblue {
    display: block;
  }
  .grid-item:hover {
    overflow: hidden;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: none;
  }
  .grid-item:hover #imgwhite1 {
    display: inline;
  }
  #imgwhite1 {
    display: none;
    /* Hide the white image by default */
  }
  /* Show the white image when hovering over the container */
  .grid-item:hover #imgwhite {
    display: inline;
  }
  /* Hide the blue image when hovering over the container */
  .grid-item:hover #imgblue {
    display: none;
  }
  .all-services {
    margin: 0;
    height: 100%;
    font-size: 15px;
    padding-left: 12px;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 19px;
    padding-left: 12px;
    color: #fff;
    margin-left: -6px;
  }
  .grid-item:hover {
    background: #2388ff;
    color: white;
  }
}
@media (max-width: 1039.98px) and (min-width: 1000px) {
  .our-service {
    height: 720px;
    margin: auto;
  }
  .our-main-container {
    width: 1100px;
    height: 480px;
    margin: auto;
  }
  .our-service-heading {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 66px;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 20px;
  }
  .title-div {
    width: 75%;
  }
  #main-title {
    color: #2388ff;
    font-weight: 500;
    font-size: 40px;
    line-height: 57.6px;
    margin-left: 46px;
  }
  #slogan-container {
    width: 50%;
  }
  #our-service-slogan {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 22.4px;
    margin-left: -136px;
  }
  .grid-container {
    width: 934px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin-left: 40px;
  }
  .grid-item:hover {
    transform: scale(1);
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item {
    background-color: #e3efff;
    color: black;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid2 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 12px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid4 {
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid6 {
    border-bottom: 1px solid #8dc1ff;
  }
  #grid8 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
  }
  #grid7 {
    border-bottom-left-radius: 12px;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
  }
  .service-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
  }
  .arrow-icon {
    position: absolute;
    top: 26%;
    right: 0;
  }
  .service-icon-img {
    margin-left: 15px;
  }
  .service-icon-img1 {
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .hoverblue,
  .hoverwhite {
    display: none;
  }
  .grid-item:hover .hoverblue {
    display: block;
  }
  .grid-item:hover {
    overflow: hidden;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: none;
  }
  .grid-item:hover #imgwhite1 {
    display: inline;
  }
  #imgwhite1 {
    display: none;
    /* Hide the white image by default */
  }
  /* Show the white image when hovering over the container */
  .grid-item:hover #imgwhite {
    display: inline;
  }
  /* Hide the blue image when hovering over the container */
  .grid-item:hover #imgblue {
    display: none;
  }
  .all-services {
    margin: 0;
    height: 100%;
    font-size: 15px;
    padding-left: 12px;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 19px;
    padding-left: 12px;
    color: #fff;
    margin-left: -6px;
  }
  .grid-item:hover {
    background: #2388ff;
    color: white;
  }
}
@media (max-width: 999.98px) and (min-width: 992px) {
  .our-service {
    height: 720px;
    margin: auto;
  }
  .our-main-container {
    width: 1100px;
    height: 480px;
    margin: auto;
  }
  .our-service-heading {
    display: flex;
    flex-direction: row;
    width: 88%;
    height: 68px;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 20px;
    margin-left: 48px;
  }
  .title-div {
    width: 75%;
  }
  #main-title {
    color: #2388ff;
    font-weight: 500;
    font-size: 40px;
    line-height: 57.6px;
    letter-spacing: 1.5%;
  }
  #slogan-container {
    width: 50%;
  }
  #our-service-slogan {
    width: 100%;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.4px;
    margin-left: -58px;
  }
  .grid-container {
    width: 930px;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    margin-left: 32px;
  }
  .grid-item:hover {
    transform: scale(1);
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item {
    background-color: #e3efff;
    color: black;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid2 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 12px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid4 {
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid6 {
    border-bottom: 1px solid #8dc1ff;
  }
  #grid8 {
    border-right: 1px solid #8dc1ff;
    border-left: 1px solid #8dc1ff;
  }
  #grid7 {
    border-bottom-left-radius: 12px;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
  }
  .service-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    height: 100%;
  }
  .arrow-icon {
    position: absolute;
    top: 26%;
    right: 0;
  }
  .service-icon-img {
    margin-left: 15px;
  }
  .service-icon-img1 {
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .hoverblue,
  .hoverwhite {
    display: none;
  }
  .grid-item:hover .hoverblue {
    display: block;
  }
  .grid-item:hover {
    overflow: hidden;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: none;
  }
  .grid-item:hover #imgwhite1 {
    display: inline;
  }
  #imgwhite1 {
    display: none;
    /* Hide the white image by default */
  }
  /* Show the white image when hovering over the container */
  .grid-item:hover #imgwhite {
    display: inline;
  }
  /* Hide the blue image when hovering over the container */
  .grid-item:hover #imgblue {
    display: none;
  }
  .all-services {
    margin: 0;
    height: 100%;
    font-size: 15px;
    padding-left: 12px;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 15px;
    padding-left: 12px;
    color: #fff;
    margin-left: -6px;
    cursor: pointer;
  }
  .grid-item:hover {
    background: #2388ff;
    color: white;
  }
}
@media (max-width: 991.98px) and (min-width: 768px) {
  /* Tablet view */
  .our-service {
    height: 970px;
  }
  .our-main-container {
    width: 680px;
    height: 638px !important;
  }
  .grid-item {
    padding: 16px;
  }
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(7, 1fr);
    margin-top: 60px;
    height: 700px;
  }
  .grid-item:nth-child(9) {
    grid-column: span 2;
  }
  .our-service-heading {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 88px;
  }
  #title-div {
    width: 100%;
    height: 38px;
  }
  #main-title {
    font-size: 32px;
    height: 100%;
  }
  #our-service-slogan {
    width: 200%;
    padding-right: 30%;
    font-size: 12px;
  }
  .our-service {
    height: auto;
    width: 100vw;
    margin: auto;
  }
  .our-main-container {
    height: 1562px;
    width: 700px;
    margin: auto;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border: 0;
    border-bottom: 1px solid #8dc1ff;
    border-right: 1px solid #8dc1ff;
  }
  #grid2 {
    border-top-right-radius: 12px;
    border: 0;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 0px;
    border: 0;
    border-bottom: 1px solid #8dc1ff;
    border-right: 1px solid #8dc1ff;
  }
  #grid4 {
    border: 0;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5 {
    border: 0;
    border-bottom: 1px solid #8dc1ff;
    border-right: 1px solid #8dc1ff;
  }
  #grid6 {
    border: 0;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid7 {
    border-bottom-left-radius: 0px;
    border-bottom: 1px solid #8dc1ff;
    border-right: 1px solid #8dc1ff;
  }
  #grid8 {
    border-bottom-left-radius: 0px;
    border-bottom: 1px solid #8dc1ff;
    border-right: none;
    border-left: none;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }
  .grid-item:hover {
    overflow: hidden;
  }
  .grid-item:not(:hover) {
    overflow: hidden;
  }
  .grid-item:hover {
    transform: none;
    border-radius: 0px;
  }
  .grid-item:not(:hover) {
    transform: none;
    border-radius: 0px;
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item:not(:hover) .service-icon {
    justify-content: center;
  }
  .grid-item:hover .hoverblue {
    display: none;
  }
  .grid-item:not(:hover) .hoverblue {
    display: none;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: inherit;
  }
  .grid-item:not(:hover) #imgblue,
  .grid-item:not(:hover) .hoverwhite {
    display: inherit;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgblue {
    display: inherit;
  }
  .grid-item:not(:hover) #imgblue {
    display: inherit;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 15px;
    color: black;
    padding-left: 12px;
    margin-left: -6px;
  }
  .grid-item:not(:hover) .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 15px;
    color: black;
    padding-left: 12px;
    margin-left: -6px;
  }
  .grid-item:hover {
    background: #e3efff;
    color: black;
  }
  .grid-item:not(:hover) {
    background: #e3efff;
    color: black;
  }
}
@media (min-width: 500px) and (max-width: 767.98px) {
  .grid-container {
    width: 343px;
    height: 1260px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
  }
  .our-service {
    height: 1487px;
    width: 100%;
  }
  #main-title {
    font-size: 32px;
    height: 100%;
  }
  #our-service-slogan {
    width: 100%;
    font-size: 12px;
    line-height: 16.8px;
  }
  .service-icon {
    padding-top: 10px;
  }
  .our-main-container {
    width: 343px;
    height: 1260px;
  }
  .grid-container {
    width: 485px;
    height: 100%;
    margin-top: 20px;
    margin-left: -65px;
  }
  .grid-item {
    width: 100%;
    padding: 16px;
    height: 140px;
    font-size: 20px;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  #grid2 {
    border-top-right-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 0px;
  }
  #grid7 {
    border-bottom-left-radius: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5,
  #grid8 {
    border: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top: none;
  }
  .our-service-heading {
    display: flex;
    flex-direction: column;
    width: 136%;
    height: 105px;
    justify-content: space-between;
    margin-bottom: 16px;
    margin-top: 40px;
    margin-left: -59px;
  }
  #slogan-container {
    width: 100%;
  }
  .grid-item:hover {
    transform: none;
    border-radius: 0px;
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item:not(:hover) .service-icon {
    justify-content: center;
  }
  .grid-item:hover .hoverblue {
    display: none;
  }
  .grid-item:not(:hover) .hoverblue {
    display: none;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgblue,
  .grid-item:not(:hover) .hoverwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgblue {
    display: inline;
    margin-bottom: auto;
  }
  .grid-item:not(:hover) #imgblue {
    display: inline;
    margin-bottom: auto;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 16px;
    padding-left: 12px;
    color: black;
    margin-left: -6px;
  }
  .grid-item:not(:hover) .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 16px;
    padding-left: 12px;
    color: black;
    margin-left: -6px;
  }
  .grid-item:hover {
    background: #e3efff;
    color: black;
  }
  .grid-item:not(:hover) {
    background: #e3efff;
    color: black;
  }
}
@media (min-width: 461px) and (max-width: 499.98px) {
  .grid-container {
    width: 343px;
    height: 1260px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
  }
  .our-service {
    height: 1487px;
    width: 100%;
  }
  #main-title {
    font-size: 32px;
    height: 100%;
  }
  #our-service-slogan {
    width: 100%;
    font-size: 12px;
    line-height: 16.8px;
  }
  .service-icon {
    padding-top: 10px;
  }
  .our-main-container {
    width: 343px;
    height: 1260px;
  }
  .grid-container {
    width: 450px;
    height: 100%;
    margin-top: 20px;
    margin-left: -46px;
  }
  .grid-item {
    width: 100%;
    padding: 16px;
    height: 140px;
    font-size: 20px;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  #grid2 {
    border-top-right-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 0px;
  }
  #grid7 {
    border-bottom-left-radius: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5,
  #grid8 {
    border: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top: none;
  }
  .our-service-heading {
    display: flex;
    flex-direction: column;
    width: 135%;
    height: 105px;
    justify-content: space-between;
    margin-bottom: 16px;
    margin-top: 40px;
    margin-left: -38px;
  }
  #slogan-container {
    width: 100%;
  }
  .grid-item:hover {
    transform: none;
    border-radius: 0px;
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item:not(:hover) .service-icon {
    justify-content: center;
  }
  .grid-item:hover .hoverblue {
    display: none;
  }
  .grid-item:not(:hover) .hoverblue {
    display: none;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgblue,
  .grid-item:not(:hover) .hoverwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgblue {
    display: inline;
    margin-bottom: auto;
  }
  .grid-item:not(:hover) #imgblue {
    display: inline;
    margin-bottom: auto;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 16px;
    padding-left: 12px;
    color: black;
    margin-left: -6px;
  }
  .grid-item:not(:hover) .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 16px;
    padding-left: 12px;
    color: black;
    margin-left: -6px;
  }
  .grid-item:hover {
    background: #e3efff;
    color: black;
  }
  .grid-item:not(:hover) {
    background: #e3efff;
    color: black;
  }
}
@media (max-width: 461px) and (min-width: 425px) {
  .grid-container {
    width: 343px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
  }
  .our-service {
    height: 1487px;
    width: 100%;
  }
  #main-title {
    font-size: 32px;
    height: 100%;
    margin-left: -20px;
  }
  #our-service-slogan {
    width: 100%;
    font-size: 12px;
    line-height: 16.8px;
    margin-left: -19px;
  }
  .service-icon {
    padding-top: 10px;
  }
  .our-main-container {
    width: 343px;
  }
  .grid-container {
    width: 403px;
    height: 100%;
    margin-left: -28px;
  }
  .grid-item {
    width: 100%;
    padding: 16px;
    height: 140px;
    font-size: 20px;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  #grid2 {
    border-top-right-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 0px;
  }
  #grid7 {
    border-bottom-left-radius: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5,
  #grid8 {
    border: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top: none;
  }
  .our-service-heading {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 105px;
    justify-content: space-between;
    margin-bottom: 16px;
    margin-top: 40px;
  }
  #slogan-container {
    width: 100%;
  }
  .grid-item:hover {
    transform: none;
    border-radius: 0px;
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item:not(:hover) .service-icon {
    justify-content: center;
  }
  .grid-item:hover .hoverblue {
    display: none;
  }
  .grid-item:not(:hover) .hoverblue {
    display: none;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgblue,
  .grid-item:not(:hover) .hoverwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgblue {
    display: inline;
    margin-bottom: auto;
  }
  .grid-item:not(:hover) #imgblue {
    display: inline;
    margin-bottom: auto;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 16px;
    padding-left: 12px;
    color: black;
    margin-left: -6px;
  }
  .grid-item:not(:hover) .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 16px;
    padding-left: 12px;
    color: black;
    margin-left: -6px;
  }
  .grid-item:hover {
    background: #e3efff;
    color: black;
  }
  .grid-item:not(:hover) {
    background: #e3efff;
    color: black;
  }
}
@media (max-width: 424.98px) and (min-width: 325px) {
  /* very small phone  */
  .our-main-container {
    width: 95%;
  }
  .grid-container {
    width: 343px;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
  }
  .our-service {
    height: 1346px;
    width: 100vw;
  }
  .service-icon {
    padding-top: 10px;
  }
  .grid-container {
    width: 100%;
  }
  .grid-item {
    width: 100%;
    padding: 16px;
    height: 125px;
    font-size: 20px;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  #grid2 {
    border-top-right-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 0px;
  }
  #grid7 {
    border-bottom-left-radius: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5,
  #grid8 {
    border: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top: none;
  }
  .our-service-heading {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 105px;
    justify-content: space-between;
    margin-bottom: 16px;
    margin-top: 40px;
  }
  #main-title {
    font-size: 32px;
    height: 100%;
  }
  #our-service-slogan {
    width: 100%;
    font-size: 12px;
    line-height: 16.8px;
  }
  #slogan-container {
    width: 100%;
  }
  .grid-item:hover {
    transform: none;
    border-radius: 0px;
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item:not(:hover) .service-icon {
    justify-content: center;
  }
  .grid-item:hover .hoverblue {
    display: none;
  }
  .grid-item:not(:hover) .hoverblue {
    display: none;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgblue,
  .grid-item:not(:hover) .hoverwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgblue {
    display: inline;
    margin-bottom: auto;
  }
  .grid-item:not(:hover) #imgblue {
    display: inline;
    margin-bottom: auto;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 13px;
    padding-left: 12px;
    color: black;
    margin-left: -6px;
  }
  .grid-item:not(:hover) .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 13px;
    padding-left: 12px;
    color: black;
    margin-left: -6px;
  }
  .grid-item:hover {
    background: #e3efff;
    color: black;
  }
  .grid-item:not(:hover) {
    background: #e3efff;
    color: black;
  }
}
@media (max-width: 325px) and (min-width: 100px) {
  /* very small phone  */
  .our-main-container {
    width: 95%;
  }
  .grid-container {
    width: 343px;
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(9, 1fr);
  }
  .our-service {
    height: 1347px;
    width: 100vw;
  }
  .service-icon {
    padding-top: 10px;
  }
  .grid-container {
    width: 100%;
  }
  .grid-item {
    width: 100%;
    padding: 16px;
    height: 124px;
  }
  #grid1 {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
  }
  #grid2 {
    border-top-right-radius: 0px;
    border: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid3 {
    border-top-right-radius: 0px;
  }
  #grid7 {
    border-bottom-left-radius: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid5,
  #grid8 {
    border: 0px;
    border-bottom: 1px solid #8dc1ff;
  }
  #grid9 {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-top: none;
  }
  .our-service-heading {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 105px;
    justify-content: space-between;
    margin-bottom: 16px;
    margin-top: 40px;
  }
  #main-title {
    font-size: 32px;
    height: 100%;
  }
  #our-service-slogan {
    width: 100%;
    font-size: 12px;
    line-height: 16.8px;
  }
  #slogan-container {
    width: 100%;
  }
  .grid-item:hover {
    transform: none;
    border-radius: 0px;
  }
  .grid-item:hover .service-icon {
    justify-content: center;
  }
  .grid-item:not(:hover) .service-icon {
    justify-content: center;
  }
  .grid-item:hover .hoverblue {
    display: none;
  }
  .grid-item:not(:hover) .hoverblue {
    display: none;
  }
  .grid-item:hover #imgblue,
  .grid-item:hover .hoverwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgblue,
  .grid-item:not(:hover) .hoverwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgwhite {
    display: none;
  }
  .grid-item:not(:hover) #imgwhite {
    display: none;
  }
  .grid-item:hover #imgblue {
    display: inline;
    margin-bottom: auto;
  }
  .grid-item:not(:hover) #imgblue {
    display: inline;
    margin-bottom: auto;
  }
  .grid-item:hover .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 12px;
    padding-left: 12px;
    color: black;
    margin-left: -6px;
  }
  .grid-item:not(:hover) .all-services {
    width: 100%;
    font-style: normal;
    height: 29px;
    line-height: 28.8px;
    font-size: 12px;
    padding-left: 12px;
    color: black;
    margin-left: -6px;
  }
  .grid-item:hover {
    background: #e3efff;
    color: black;
  }
  .grid-item:not(:hover) {
    background: #e3efff;
    color: black;
  }
}
/*--------------------------------------------------------------
# RGT Differentiators Section
--------------------------------------------------------------*/
.differentiators .btncard {
  padding: 40px;
  width: 100%;
  height: 100%;
}
.differentiators .card {
  border-radius: 12px;
}
.differentiators .card .card-body {
  padding: 0px;
}
.differentiators .card .card-body .whatset {
  display: flex;
  width: 183px;
  height: 36px;
  padding: 6px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  border-radius: 60px;
  background: var(--Primary-Primary-50, #f5f8fd);
  margin-bottom: 12px;
}
.differentiators .card .card-body .diff {
  color: #000;
  font-family: Inter;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.72px;
  margin-bottom: 12px;
  margin-top: 12px;
}
.differentiators .card .card-body .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.differentiators .card .card-body .image-container .overlay-text1 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  text-align: start;
  color: none;
  padding-top: 40px;
}
.differentiators .card .card-body .image-container .overlay-text1 a {
  color: #ffffff;
}
.differentiators .card .card-body .image-container .overlay-text1 h4 {
  color: white;
  font-family: Inter;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0.015em;
  text-align: left;
}
.differentiators .card .card-body .image-container .overlay-text1 .bhparagrap {
  display: none;
}
.differentiators .card .card-body .image-container .overlay-text1 .health4 {
  display: block;
}
.differentiators .card .card-body .image-container .overlay-text1 .arrowicon:hover {
  background-image: url(../img/differentiators/statehoverede1.svg);
  background-color: rgb(248, 251, 255);
  color: red;
}
.differentiators .card .card-body .image-container .overlay {
  padding: 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}
.differentiators .card .card-body .image-container .overlay .overlay-text .arrowicon {
  border-radius: 40px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 74%;
  left: 8%;
}
.differentiators .card .card-body .image-container .overlay .overlay-text .arrowicon:hover {
  background-image: url(../img/industries/State-Hoverednew.svg);
  background-color: rgb(248, 251, 255);
  color: red;
}
.differentiators .card .card-body .image-container:hover .overlay {
  background-color: #2388ff;
  opacity: 0.9;
  border-radius: 12px;
  padding: 40px 10px 40px 40px;
}
.differentiators .card .card-body .image-container:hover .overlay-text1 {
  display: block;
}
.differentiators .card .card-body .overlay-text {
  display: none;
  text-align: start;
  color: #fff;
}
.differentiators .card .card-body .overlay-text h4 {
  font-family: Inter;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0.015em;
  text-align: left;
  color: white;
}
.differentiators .card .card-body .overlay-text p {
  color: white;
  font-family: Inter;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-left: 10px;
}
.differentiators .card .card-body .overlay-text .vl1 {
  border-left: 3px solid #4e9fff;
  height: 130px;
  position: absolute;
  top: 25%;
  left: 13%;
}
.differentiators .card .card-body .overlay-text .vl2 {
  border-left: 3px solid #4e9fff;
  height: 88px;
  position: absolute;
  top: 25%;
  left: 13%;
}
.differentiators .card .card-body .overlay-text .vl3 {
  border-left: 3px solid #4e9fff;
  height: 42px;
  position: absolute;
  top: 24%;
  left: 7.5%;
}
.differentiators .card .card-body .overlay-text .vl4 {
  border-left: 3px solid #4e9fff;
  height: 108px;
  position: absolute;
  top: 26%;
  left: 13%;
}
.differentiators .card .card-body .overlay-text .vl5 {
  border-left: 3px solid #4e9fff;
  height: 88px;
  position: absolute;
  top: 25%;
  left: 9.5%;
}
.differentiators .card .card-body .image-container:hover .overlay-text {
  display: block;
}
.differentiators .card .card-body .image-container:hover .health4 {
  display: none;
}

@media (min-width: 1400px) {
  .differentiators .card .card-body .diff {
    font-size: 48px;
  }
  .differentiators .card .card-body .overlay .overlay-text p {
    font-size: 16px;
  }
  .differentiators .card .card-body .overlay .overlay-text h4 {
    font-size: 22px;
  }
  .differentiators .card .card-body .overlay .vl1 {
    border-left: 3px solid #4e9fff;
    height: 130px;
    position: absolute;
    top: 25%;
    left: 13%;
  }
  .differentiators .card .card-body .overlay .vl2 {
    border-left: 3px solid #4e9fff;
    height: 88px;
    position: absolute;
    top: 25%;
    left: 13%;
  }
  .differentiators .card .card-body .overlay .vl3 {
    border-left: 3px solid #4e9fff;
    height: 42px;
    position: absolute;
    top: 24%;
    left: 7.5%;
  }
  .differentiators .card .card-body .overlay .vl4 {
    border-left: 3px solid #4e9fff;
    height: 108px;
    position: absolute;
    top: 26%;
    left: 13%;
  }
  .differentiators .card .card-body .overlay .vl5 {
    border-left: 3px solid #4e9fff;
    height: 88px;
    position: absolute;
    top: 25%;
    left: 9.5%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 h4 {
    font-size: 22px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 {
    padding-left: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .differentiators .card .card-body .diff {
    font-size: 48px;
  }
  .differentiators .card .card-body .overlay .overlay-text p {
    font-size: 16px;
  }
  .differentiators .card .card-body .overlay .overlay-text h4 {
    font-size: 22px;
  }
  .differentiators .card .card-body .overlay .vl1 {
    border-left: 3px solid #4e9fff;
    height: 150px;
    position: absolute;
    top: 25%;
    left: 13%;
  }
  .differentiators .card .card-body .overlay .vl2 {
    border-left: 3px solid #4e9fff;
    height: 108px;
    position: absolute;
    top: 25%;
    left: 13%;
  }
  .differentiators .card .card-body .overlay .vl3 {
    border-left: 3px solid #4e9fff;
    height: 66px;
    position: absolute;
    top: 25%;
    left: 7.5%;
  }
  .differentiators .card .card-body .overlay .vl4 {
    border-left: 3px solid #4e9fff;
    height: 130px;
    position: absolute;
    top: 25%;
    left: 13%;
  }
  .differentiators .card .card-body .overlay .vl5 {
    border-left: 3px solid #4e9fff;
    height: 110px;
    position: absolute;
    top: 25%;
    left: 9.5%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 h4 {
    font-size: 22px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 {
    padding-left: 40px;
  }
}
@media ((min-width: 992px) and (max-width: 1199.98px)) {
  .differentiators .card .card-body .diff {
    font-size: 30px;
  }
  .differentiators .card .card-body .overlay .overlay-text p {
    font-size: 12px;
  }
  .differentiators .card .card-body .overlay .overlay-text h4 {
    font-size: 15px;
  }
  .differentiators .card .card-body .overlay .vl1 {
    border-left: 3px solid #4e9fff;
    height: 115px;
    position: absolute;
    top: 25%;
    left: 15%;
  }
  .differentiators .card .card-body .overlay .vl2 {
    border-left: 3px solid #4e9fff;
    height: 87px;
    position: absolute;
    top: 25%;
    left: 15%;
  }
  .differentiators .card .card-body .overlay .vl3 {
    border-left: 3px solid #4e9fff;
    height: 48px;
    position: absolute;
    top: 25%;
    left: 9.5%;
  }
  .differentiators .card .card-body .overlay .vl4 {
    border-left: 3px solid #4e9fff;
    height: 100px;
    position: absolute;
    top: 25%;
    left: 15%;
  }
  .differentiators .card .card-body .overlay .vl5 {
    border-left: 3px solid #4e9fff;
    height: 81px;
    position: absolute;
    top: 25%;
    left: 11.5%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .health4 {
    padding-left: 25px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 h4 {
    font-size: 19px;
  }
}
@media (min-width: 992px) {
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk {
    display: none;
  }
  .differentiators .card .card-body .image-container .img-fluid {
    height: 320px;
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .differentiators .col-md-12 {
    margin-top: 16px;
    flex: 0 0 auto;
    width: 100%;
  }
  .differentiators .card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container .img-fluid {
    height: 320px;
    width: 100%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 {
    padding: 20px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicontm {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 102px;
    position: absolute;
    top: 31%;
    left: 6%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 60px;
    position: absolute;
    top: 39%;
    left: 6%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 41px;
    position: absolute;
    top: 45%;
    left: 3%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 78px;
    position: absolute;
    top: 35%;
    left: 6%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 100px;
    position: absolute;
    top: 31%;
    left: 6%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .health4 {
    display: none;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .h4 {
    color: red;
    font-family: Inter;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .differentiators .card .card-body .image-container .overlay-text1 p {
    color: white;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    margin-left: 9px;
  }
  .differentiators .card .card-body .image-container:hover .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container:hover .overlay-text1 {
    display: block;
  }
  .differentiators .card .card-body .image-container:not(:hover) .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container:not(:hover) .overlay-text1 {
    display: block;
  }
}
@media (max-width: 829.98px) {
  .differentiators .col-md-12 {
    margin-top: 16px;
    flex: 0 0 auto;
    width: 100%;
  }
  .differentiators .card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container .img-fluid {
    height: 320px;
    width: 100%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk {
    padding: 20px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicontm {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 128px;
    position: absolute;
    top: 31%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 82px;
    position: absolute;
    top: 37%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 41px;
    position: absolute;
    top: 46%;
    left: 5%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 100px;
    position: absolute;
    top: 35%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 129px;
    position: absolute;
    top: 31%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .health4 {
    display: none;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .h4 {
    color: red;
    font-family: Inter;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk p {
    color: white;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    margin-left: 9px;
  }
  .differentiators .card .card-body .image-container .image-container:hover .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container .image-container:hover .overlay-text1 {
    display: block;
  }
  .differentiators .card .card-body .image-container .image-container:not(:hover) .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container .image-container:not(:hover) .overlay-text1 {
    display: block;
  }
}
@media (max-width: 767.98px) {
  .differentiators .col-md-12 {
    margin-top: 16px;
    flex: 0 0 auto;
    width: 100%;
  }
  .differentiators .card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  .differentiators .card .card-body .diff {
    font-family: Inter;
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .differentiators .card .card-body .image-container .img-fluid {
    height: 320px;
    width: 100%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 {
    padding: 20px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicontm {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 61px;
    position: absolute;
    top: 42%;
    left: 7%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 40px;
    position: absolute;
    top: 47%;
    left: 7%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 61px;
    position: absolute;
    top: 42%;
    left: 7%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 62px;
    position: absolute;
    top: 42%;
    left: 7%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 62px;
    position: absolute;
    top: 41%;
    left: 7%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .health4 {
    display: none;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .h4 {
    color: red;
    font-family: Inter;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .differentiators .card .card-body .image-container .overlay-text1 p {
    color: white;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    margin-left: 10px;
  }
  .differentiators .card .card-body .image-container:hover .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container:hover .overlay-text1 {
    display: block;
  }
  .differentiators .card .card-body .image-container:not(:hover) .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container:not(:hover) .overlay-text1 {
    display: block;
  }
}
@media (min-width: 445px) and (max-width: 537.98px) {
  .differentiators .col-md-12 {
    margin-top: 16px;
    flex: 0 0 auto;
    width: 100%;
  }
  .differentiators .card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  .differentiators .card .card-body .diff {
    font-family: Inter;
    font-size: 32px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .differentiators .card .card-body .image-container .img-fluid {
    height: 320px;
    width: 100%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 {
    padding: 20px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicontm {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 82px;
    position: absolute;
    top: 38%;
    left: 8%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 63px;
    position: absolute;
    top: 42%;
    left: 8%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 61px;
    position: absolute;
    top: 42%;
    left: 8%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 82px;
    position: absolute;
    top: 38%;
    left: 8%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 80px;
    position: absolute;
    top: 38%;
    left: 8%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .health4 {
    display: none;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .h4 {
    color: red;
    font-family: Inter;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .differentiators .card .card-body .image-container .overlay-text1 p {
    color: white;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    margin-left: 10px;
  }
  .differentiators .card .card-body .image-container:hover .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container:hover .overlay-text1 {
    display: block;
  }
  .differentiators .card .card-body .image-container:not(:hover) .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container:not(:hover) .overlay-text1 {
    display: block;
  }
}
@media (min-width: 401px) and (max-width: 444.98px) {
  .differentiators .card .card-body .diff {
    font-family: Inter;
    font-size: 22px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .differentiators .card .card-body .image-container {
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk {
    gap: 16px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowiconman {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 102px;
    position: absolute;
    top: 34%;
    left: 9%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 63px;
    position: absolute;
    top: 42%;
    left: 9%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 61px;
    position: absolute;
    top: 42%;
    left: 9%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 82px;
    position: absolute;
    top: 38%;
    left: 9%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 104px;
    position: absolute;
    top: 34%;
    left: 9%;
  }
}
@media (max-width: 400.98px) {
  .differentiators .card .card-body .diff {
    font-family: Inter;
    font-size: 22px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .differentiators .card .card-body .image-container {
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk {
    gap: 16px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowiconman {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 102px;
    position: absolute;
    top: 34%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 80px;
    position: absolute;
    top: 38%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 81px;
    position: absolute;
    top: 38%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 101px;
    position: absolute;
    top: 34%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 126px;
    position: absolute;
    top: 31%;
    left: 10%;
  }
}
@media (max-width: 320px) {
  .differentiators .card .card-body .diff {
    font-family: Inter;
    font-size: 22px;
    font-weight: 500;
    line-height: 38px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .differentiators .card .card-body .image-container {
    border-radius: 12px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk {
    gap: 16px;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowiconman {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 146px;
    position: absolute;
    top: 29%;
    left: 11%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 100px;
    position: absolute;
    top: 35%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 104px;
    position: absolute;
    top: 34%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 122px;
    position: absolute;
    top: 32%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 2px solid rgb(78, 159, 255);
    height: 167px;
    position: absolute;
    top: 33%;
    left: 10%;
  }
  .differentiators .card .card-body .image-container .overlay-text1 p {
    font-size: 14px;
    padding-right: 9px;
  }
}
/*--------------------------------------------------------------
# Clients  Section
--------------------------------------------------------------*/
#clients {
  background-color: #ffffff;
}
#clients .section_header {
  text-align: center;
}
#clients .section_header h2 {
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
}
#clients .clients_slider {
  overflow-x: hidden;
  margin-top: 25px;
}
#clients .overflow {
  display: flex;
  overflow: hidden;
  padding: 0.5rem 1rem;
}
#clients .client_wrapper {
  display: flex;
  justify-content: space-around;
  animation: clientLoop 50s linear infinite;
}
#clients .client_item {
  margin-left: 1rem;
  display: grid;
  place-items: center;
  border-radius: 1rem;
  position: relative;
  overflow: hidden;
}
#clients .client_item img {
  margin-inline: 2rem;
  max-height: 100%;
  height: auto;
  width: auto;
  transition: filter 0.3s ease;
  display: block;
  transform: none;
  opacity: 1;
  /* smooth transition effect */
}
#clients .client_item:hover img {
  filter: grayscale(100%) brightness(25%);
  opacity: 1;
  /* Reveal the actual color on hover */
}

@media (max-width: 768px) {
  section {
    padding: 25px 0;
    overflow: hidden;
  }
  #clients .clients_slider {
    overflow-x: hidden;
    margin-top: 2rem;
  }
  #clients .section_header h2 {
    text-align: center;
    font-weight: 500;
    font-size: 2rem;
  }
}
@media (max-width: 575px) {
  #clients .section_header h2 {
    text-align: center;
    font-weight: 500;
    font-size: 1.5rem;
  }
  #clients .clients_slider {
    overflow-x: hidden;
    margin-top: 2rem;
  }
}
/*--------------------------------------------------------------
# Our Process  Section
--------------------------------------------------------------*/
.ourprocess {
  background-color: #19213d;
  color: #fff;
}
.ourprocess .section-title {
  text-align: left;
  color: #fff;
  font-size: 48px;
  font-weight: 500;
}
.ourprocess .section-title p {
  line-height: 22.4px;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--Neutral-Neutral-300, #b4b9c9);
}
.ourprocess .section-title p span {
  color: var(--Primary-Blue-500, #2388ff);
}
.ourprocess .btn-get-started {
  border-radius: 8px;
  background: var(--Primary-Blue-500, #2388ff);
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.ourprocess .btn-get-started:hover {
  background: #e3efff;
  color: var(--Primary-Blue-500, #2388ff);
}
.ourprocess .icon-box {
  padding: 10px 5px;
  transition: all ease-in-out 0.4s;
  align-content: center;
}
.ourprocess .icon-box .icon {
  margin-bottom: 28px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.ourprocess .icon-box .icon i {
  color: #444444;
  font-size: 36px;
  transition: 0.3s;
}
.ourprocess .icon-box .icon .numb {
  background-color: #353e5c;
  text-align: center;
  padding: 10px;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: var(--Primary-Neutral-400, #4e9fff);
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.32);
}
.ourprocess .icon-box .icon .arrow-container {
  display: flex;
  align-items: center;
}
.ourprocess .icon-box .icon .left-arrow,
.ourprocess .icon-box .icon .right-arrow,
.ourprocess .icon-box .icon .up-arrow,
.ourprocess .icon-box .icon .down-arrow {
  display: inline-block;
  margin: 20px;
  width: 20px;
  height: 20px;
  border-top: 2px solid #2388ff;
  border-left: 2px solid #2388ff;
  fill: var(--Neutral-Neutral-700, #2388ff);
  transform-origin: center;
}
.ourprocess .icon-box .icon .right-arrow {
  transform: rotate(135deg);
}
.ourprocess .icon-box .icon .left-arrow {
  transform: rotate(-45deg);
}
.ourprocess .icon-box .icon .up-arrow {
  transform: rotate(45deg);
}
.ourprocess .icon-box .icon .down-arrow {
  transform: rotate(-135deg);
}
.ourprocess .icon-box .icon .right-arrow::after,
.ourprocess .icon-box .icon .left-arrow::after,
.ourprocess .icon-box .icon .up-arrow::after,
.ourprocess .icon-box .icon .down-arrow::after {
  content: "";
  display: block;
  width: 2px;
  height: 100px;
  background-color: #2388ff;
  transform: rotate(-45deg) translate(34px, 14px);
}
.ourprocess .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}
.ourprocess .icon-box h4 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}
.ourprocess .icon-box p {
  line-height: 22.4px;
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 400;
  color: var(--Neutral-Neutral-300, #b4b9c9);
}

.animate .animate-row .box-col:first-child .numb {
  position: relative;
  animation: _1nFOab96 0.15s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:first-child .icon-para {
  position: relative;
  animation: _-Igv5Bn 0.42s;
  animation-delay: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:first-child .arrow-container {
  position: relative;
  animation: HNovGioPline 0.2s linear;
  animation-delay: 0.9s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:first-child .arrow-container:first-child {
  animation-delay: 0ms;
}
.animate .animate-row .box-col:nth-child(2) .numb {
  animation: _1nFOab96 0.15s;
  animation-delay: 1.17s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:nth-child(2) .icon-para {
  animation: _-Igv5Bn 0.42s;
  animation-delay: 1.32s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:nth-child(2) .arrow-container {
  position: relative;
  animation: HNovGioPline 0.2s linear;
  animation-delay: 1.74s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:nth-child(2) .arrow-container:first-child {
  animation-delay: 0ms;
}
.animate .animate-row .box-col:nth-child(3) .numb {
  animation: _1nFOab96 0.15s;
  animation-delay: 2.04s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:nth-child(3) .icon-para {
  animation: _-Igv5Bn 0.42s;
  animation-delay: 2.19s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:nth-child(3) .arrow-container {
  position: relative;
  animation: HNovGioPline 0.2s linear;
  animation-delay: 2.61s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:nth-child(3) .arrow-container:first-child {
  animation-delay: 0ms;
}
.animate .animate-row .box-col:nth-child(4) .numb {
  animation: _1nFOab96 0.15s;
  animation-delay: 2.91s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:nth-child(4) .icon-para {
  animation: _-Igv5Bn 0.42s;
  animation-delay: 3.06s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:nth-child(4) .arrow-container {
  position: relative;
  animation: HNovGioPline 0.2s linear;
  animation-delay: 3.48s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.animate .animate-row .box-col:nth-child(4) .arrow-container:first-child {
  animation-delay: 0ms;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .ourprocess .section-title h3 {
    font-size: 34px;
  }
  .ourprocess .section-title p {
    font-size: 14px;
  }
  .ourprocess .icon-box {
    align-content: center;
    display: flex;
    flex-direction: column;
  }
  .ourprocess .icon-box h4 {
    font-size: 20px;
  }
  .ourprocess .icon-box p {
    font-size: 14px;
  }
  .ourprocess .icon-box .icon {
    margin-right: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .ourprocess .icon-box .icon .right-arrow {
    transform: rotate(135deg);
    margin: 5px;
  }
  .ourprocess .icon-box .icon .numb {
    width: 40px;
    height: 40px;
    font-size: 20px;
    padding: 6px;
  }
  .ourprocess .icon-box .icon .right-arrow::after {
    height: 45px;
    transform: rotate(-45deg) translate(15px, 5px);
  }
  .ourprocess .btn-get-started {
    width: 90%;
  }
}
@media (min-width: 100px) and (max-width: 767.98px) {
  .ourprocess .section-title h3 {
    font-size: 34px;
  }
  .ourprocess .section-title p {
    font-size: 14px;
  }
  .ourprocess .icon-box {
    align-content: center;
    display: flex;
    flex-direction: row;
  }
  .ourprocess .icon-box h4 {
    font-size: 20px;
  }
  .ourprocess .icon-box p {
    font-size: 14px;
  }
  .ourprocess .icon-box .icon {
    margin-right: 20px;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .ourprocess .icon-box .icon .right-arrow {
    transform: rotate(225deg);
    margin: 5px;
  }
  .ourprocess .icon-box .icon .numb {
    width: 40px;
    height: 40px;
    font-size: 20px;
    padding: 6px;
    margin-bottom: 30px;
  }
  .ourprocess .icon-box .icon .right-arrow::after {
    height: 45px;
    transform: rotate(-45deg) translate(15px, 5px);
  }
  .ourprocess .btn-get-started {
    width: 90%;
  }
}
/*--------------------------------------------------------------
# counter  Section
--------------------------------------------------------------*/
#counter .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#counter .gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 1280px;
  border-radius: 18px;
}
#counter .img-box {
  width: 260px;
  height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: width 0.5s, opacity 0.5s;
  overflow: hidden;
}
#counter .img-box:nth-child(1) {
  position: relative;
  background: url("../assets/img/counter/global.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  width: 520px;
  opacity: 0.9;
  border-right: 10px solid white;
}
#counter .img-box:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(25, 33, 61, 0.6);
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  z-index: -1;
}
#counter .img-box:nth-child(1) h2 {
  color: #fff;
  position: absolute;
  top: 51%;
  left: 48.5%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-family: Inter;
  font-size: 96px;
}
#counter .img-box:nth-child(1) .expand-text {
  display: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
  left: 49.8%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-size: 20px;
  font-weight: 500;
  top: 67.4%;
  font-family: Inter;
  width: 500px;
  height: 64px;
  line-height: 24px;
}
#counter .img-box:nth-child(1) h5 {
  color: transparent;
  position: absolute;
  left: 46.8%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-size: 20px;
  font-weight: 500;
  top: 72.4%;
  font-family: Inter;
  width: 156px;
  height: 24px;
}
#counter .img-box:nth-child(2) {
  background: url("../assets/img/counter/accelerator.jpg");
  background-size: cover;
  background-position: center;
  border-right: 10px white solid;
  border-left: 10px white solid;
}
#counter .img-box:nth-child(2) {
  background: url("../assets/img/counter/accelerator.jpg");
  background-size: cover;
  background-position: center;
  border-right: 10px white solid;
  border-left: 10px white solid;
}
#counter .img-box:nth-child(3) {
  background: url("../assets/img/counter/truimphs.jpg");
  background-size: cover;
  background-position: center;
  border-right: 10px white solid;
  border-left: 10px white solid;
}
#counter .img-box:nth-child(4) {
  background: url("../assets/img/counter/locations.jpg");
  background-size: cover;
  background-position: center;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-left: 10px white solid;
}
#counter h2 {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-size: 68px;
}
#counter h5 {
  color: #fff;
  position: absolute;
  left: 59%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-size: 20px;
  font-weight: 500;
  top: 72.4%;
  font-family: Inter;
  width: 156px;
  height: 24px;
  display: none;
}
#counter .expand-text {
  display: none;
  color: #fff;
  position: absolute;
  left: 59%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-size: 20px;
  font-weight: 500;
  top: 82.4%;
  font-family: Inter;
  width: 156px;
  height: 24px;
}
#counter .gallery:hover .img-box {
  width: 260px;
  opacity: 100%;
}
#counter .gallery:hover .img-box .expand-text {
  display: none;
  color: #fff;
  position: absolute;
  left: 59%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-size: 20px;
  font-weight: 500;
  top: 82.4%;
  font-family: Inter;
  width: 156px;
  height: 24px;
}
#counter .gallery:hover .img-box h2 {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-size: 68px;
}
#counter .gallery:hover .img-box h5 {
  color: #fff;
  position: absolute;
  left: 59%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-size: 20px;
  font-weight: 500;
  top: 72.4%;
  font-family: Inter;
  width: 156px;
  height: 24px;
}
#counter .gallery .img-box {
  transition: width 0.5s, opacity 0.5s;
}
#counter .gallery .img-box:hover {
  width: 520px;
  cursor: pointer;
  opacity: 0.9;
}
#counter .gallery .img-box:hover::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(25, 33, 61, 0.6);
  z-index: -1;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
#counter .gallery .img-box:hover .expand-text {
  display: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  position: absolute;
  left: 49.8%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-size: 20px;
  font-weight: 500;
  top: 67.4%;
  font-family: Inter;
  width: 500px;
  height: 24px;
  line-height: 24px;
  height: 64px;
}
#counter .gallery .img-box:hover h5 {
  display: none;
  opacity: 1;
  font-size: 20px;
  bottom: 22%;
  left: 45%;
  font-weight: 500;
  font-family: Inter;
  text-align: center;
}
#counter .gallery .img-box:hover h2 {
  color: #fff;
  position: absolute;
  top: 51%;
  left: 48.5%;
  transform: translate(-50%, -50%);
  transition: bottom 0.5s, opacity 0.5s;
  font-family: Inter;
  font-size: 96px;
}
#counter .gallery .img-box:hover h5 {
  opacity: 1;
  font-size: 20px;
  bottom: 22%;
  left: 45%;
  font-weight: 500;
  font-family: Inter;
  text-align: center;
}

@media (min-width: 1399px) and (max-width: 1440px) {
  #counter .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #counter .gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 1280px;
    border-radius: 18px;
  }
  #counter .img-box {
    width: 260px;
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s, opacity 0.5s;
    overflow: hidden;
  }
  #counter .img-box:nth-child(1) {
    position: relative;
    background: url("../assets/img/counter/global.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    width: 520px;
    opacity: 0.9;
    border-right: 10px solid white;
  }
  #counter .img-box:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    z-index: -1;
  }
  #counter .img-box:nth-child(1) h2 {
    color: #fff;
    position: absolute;
    top: 51%;
    left: 48.5%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-family: Inter;
    font-size: 96px;
  }
  #counter .img-box:nth-child(1) .expand-text {
    display: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 49.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 67.4%;
    font-family: Inter;
    width: 500px;
    height: 64px;
    line-height: 24px;
  }
  #counter .img-box:nth-child(1) h5 {
    color: transparent;
    position: absolute;
    left: 46.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
    border-right: 10px white solid;
    border-left: 10px white solid;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
    border-right: 10px white solid;
    border-left: 10px white solid;
  }
  #counter .img-box:nth-child(3) {
    background: url("../assets/img/counter/truimphs.jpg");
    background-size: cover;
    background-position: center;
    border-right: 10px white solid;
    border-left: 10px white solid;
  }
  #counter .img-box:nth-child(4) {
    background: url("../assets/img/counter/locations.jpg");
    background-size: cover;
    background-position: center;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-left: 10px white solid;
  }
  #counter h2 {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 68px;
  }
  #counter h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .expand-text {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 82.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:hover .img-box {
    width: 260px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 82.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:hover .img-box h2 {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 68px;
  }
  #counter .gallery:hover .img-box h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery .img-box {
    transition: width 0.5s, opacity 0.5s;
  }
  #counter .gallery .img-box:hover {
    width: 520px;
    cursor: pointer;
    opacity: 0.9;
  }
  #counter .gallery .img-box:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:hover .expand-text {
    display: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 49.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 67.4%;
    font-family: Inter;
    width: 500px;
    height: 24px;
    line-height: 24px;
    height: 64px;
  }
  #counter .gallery .img-box:hover h5 {
    display: none;
    opacity: 1;
    font-size: 20px;
    bottom: 22%;
    left: 45%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:hover h2 {
    color: #fff;
    position: absolute;
    top: 51%;
    left: 48.5%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-family: Inter;
    font-size: 96px;
  }
  #counter .gallery .img-box:hover h5 {
    opacity: 1;
    font-size: 20px;
    bottom: 22%;
    left: 45%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
}
@media (min-width: 1200px) and (max-width: 1399px) {
  #counter .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #counter .gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 1280px;
    border-radius: 18px;
  }
  #counter .img-box {
    width: 220px;
    height: 470px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s, opacity 0.5s;
    overflow: hidden;
  }
  #counter .img-box:nth-child(1) {
    position: relative;
    background: url("../assets/img/counter/global.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    width: 470px;
    opacity: 0.9;
    border-right: 10px solid white;
  }
  #counter .img-box:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    z-index: -1;
  }
  #counter .img-box:nth-child(1) h2 {
    color: #fff;
    position: absolute;
    top: 51%;
    left: 48.5%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-family: Inter;
    font-size: 96px;
  }
  #counter .img-box:nth-child(1) .expand-text {
    display: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 49.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 18px;
    font-weight: 500;
    top: 67.4%;
    font-family: Inter;
    width: 500px;
    height: 64px;
    line-height: 24px;
  }
  #counter .img-box:nth-child(1) h5 {
    color: transparent;
    position: absolute;
    left: 46.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
    border-right: 10px white solid;
    border-left: 10px white solid;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
    border-right: 10px white solid;
    border-left: 10px white solid;
  }
  #counter .img-box:nth-child(3) {
    background: url("../assets/img/counter/truimphs.jpg");
    background-size: cover;
    background-position: center;
    border-right: 10px white solid;
    border-left: 10px white solid;
  }
  #counter .img-box:nth-child(4) {
    background: url("../assets/img/counter/locations.jpg");
    background-size: cover;
    background-position: center;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-left: 10px white solid;
  }
  #counter h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 68px;
  }
  #counter h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .expand-text {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 82.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:hover .img-box {
    width: 220px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 82.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:hover .img-box h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 68px;
  }
  #counter .gallery:hover .img-box h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery .img-box {
    transition: width 0.5s, opacity 0.5s;
  }
  #counter .gallery .img-box:hover {
    width: 470px;
    cursor: pointer;
    opacity: 0.9;
  }
  #counter .gallery .img-box:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:hover .expand-text {
    display: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 49.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 18px;
    font-weight: 500;
    top: 67.4%;
    font-family: Inter;
    width: 500px;
    height: 24px;
    line-height: 24px;
    height: 64px;
  }
  #counter .gallery .img-box:hover h5 {
    display: none;
    opacity: 1;
    font-size: 20px;
    bottom: 22%;
    left: 45%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:hover h2 {
    color: #fff;
    position: absolute;
    top: 51%;
    left: 48.5%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-family: Inter;
    font-size: 96px;
  }
  #counter .gallery .img-box:hover h5 {
    opacity: 1;
    font-size: 20px;
    bottom: 22%;
    left: 45%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #counter .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #counter .gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 1280px;
    border-radius: 18px;
    gap: 13px;
  }
  #counter .img-box {
    width: 165px;
    height: 460px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s, opacity 0.5s;
    overflow: hidden;
  }
  #counter .img-box:nth-child(1) {
    position: relative;
    background: url("../assets/img/counter/global.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    width: 417px;
    opacity: 0.9;
    border-right: none;
  }
  #counter .img-box:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    z-index: -1;
  }
  #counter .img-box:nth-child(1) h2 {
    color: #fff;
    position: absolute;
    top: 51%;
    left: 48.5%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-family: Inter;
    font-size: 90px;
  }
  #counter .img-box:nth-child(1) .expand-text {
    display: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 48.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 16px;
    font-weight: 500;
    top: 67.4%;
    font-family: Inter;
    width: 500px;
    height: 64px;
    line-height: 24px;
  }
  #counter .img-box:nth-child(1) h5 {
    color: transparent;
    position: absolute;
    left: 46.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
    border-right: none;
    border-left: none;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
    border-right: none;
    border-left: none;
  }
  #counter .img-box:nth-child(3) {
    background: url("../assets/img/counter/truimphs.jpg");
    background-size: cover;
    background-position: center;
    border-right: none;
    border-left: none;
  }
  #counter .img-box:nth-child(4) {
    background: url("../assets/img/counter/locations.jpg");
    background-size: cover;
    background-position: center;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-left: none;
  }
  #counter h2 {
    color: rgb(255, 255, 255);
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s ease 0s, opacity 0.5s ease 0s;
    font-family: Inter;
    font-size: 60px;
  }
  #counter h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .expand-text {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 82.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:hover .img-box {
    width: 165px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 82.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:hover .img-box h2 {
    color: rgb(255, 255, 255);
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s ease 0s, opacity 0.5s ease 0s;
    font-family: Inter;
    font-size: 60px;
  }
  #counter .gallery:hover .img-box h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery .img-box {
    transition: width 0.5s, opacity 0.5s;
  }
  #counter .gallery .img-box:hover {
    width: 417px;
    cursor: pointer;
    opacity: 0.9;
  }
  #counter .gallery .img-box:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:hover .expand-text {
    display: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 48.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 16px;
    font-weight: 500;
    top: 67.4%;
    font-family: Inter;
    width: 500px;
    height: 64px;
    line-height: 24px;
  }
  #counter .gallery .img-box:hover h5 {
    display: none;
    opacity: 1;
    font-size: 20px;
    bottom: 22%;
    left: 45%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:hover h2 {
    color: #fff;
    position: absolute;
    top: 51%;
    left: 48.5%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-family: Inter;
    font-size: 90px;
  }
  #counter .gallery .img-box:hover h5 {
    opacity: 1;
    font-size: 20px;
    bottom: 22%;
    left: 45%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #counter .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #counter .gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #counter .img-box {
    width: 155px;
    height: 400px;
    margin: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s, opacity 0.5s;
    overflow: hidden;
  }
  #counter .img-box:nth-child(1) {
    position: relative;
    background: url("../assets/img/counter/global.jpg");
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    opacity: 0.9;
    border-right: none;
  }
  #counter .img-box:nth-child(1)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    z-index: -1;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
    border-left: none;
    border-right: none;
  }
  #counter .img-box:nth-child(3) {
    background: url("../assets/img/counter/truimphs.jpg");
    background-size: cover;
    background-position: center;
    border-left: none;
    border-right: none;
  }
  #counter .img-box:nth-child(4) {
    background: url("../assets/img/counter/locations.jpg");
    background-size: cover;
    background-position: center;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-left: none;
    border-right: none;
  }
  #counter h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 32px;
  }
  #counter h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 14px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:hover .img-box {
    width: 155px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 46.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 14px;
    font-weight: 500;
    top: 59.9%;
    font-family: Inter;
    width: 114px;
    height: auto;
    line-height: 24px;
  }
  #counter .gallery:hover .img-box .top_stats {
    color: #fff;
    margin-left: 20%;
    margin-top: -30%;
  }
  #counter .gallery:hover .img-box .truimp {
    margin-top: -30%;
  }
  #counter .gallery:hover .img-box .location {
    margin-top: -30%;
  }
  #counter .gallery:hover .img-box h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:not(:hover) .img-box {
    width: 155px;
    opacity: 100%;
  }
  #counter .gallery:not(:hover) .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:not(:hover) .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 46.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 14px;
    font-weight: 500;
    top: 59.9%;
    font-family: Inter;
    width: 114px;
    height: auto;
    line-height: 24px;
  }
  #counter .gallery:not(:hover) .img-box .top_stats {
    color: #fff;
    margin-left: 20%;
    margin-top: -30%;
  }
  #counter .gallery:not(:hover) .img-box .truimp {
    margin-top: -30%;
  }
  #counter .gallery:not(:hover) .img-box .location {
    margin-top: -30%;
  }
  #counter .gallery:not(:hover) .img-box h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery .img-box {
    transition: width 0.5s, opacity 0.5s;
  }
  #counter .gallery .img-box:hover {
    width: 155px;
    cursor: pointer;
    opacity: 0.9;
  }
  #counter .gallery .img-box:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:not(:hover) {
    width: 155px;
    cursor: pointer;
    opacity: 0.9;
  }
  #counter .gallery .img-box:not(:hover)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:hover h2 {
    opacity: 1;
    font-size: 32px;
    bottom: -24.5%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:not(:hover) h2 {
    opacity: 1;
    font-size: 32px;
    bottom: -24.5%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:hover h5 {
    display: none;
    opacity: 1;
    font-size: 14px;
    left: 45%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:not(:hover) h5 {
    display: none;
    opacity: 1;
    font-size: 14px;
    left: 45%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
}
@media (min-width: 550px) and (max-width: 767.98px) {
  #counter {
    margin: 0;
    padding: 0;
  }
  #counter .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #counter .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #counter .img-box {
    width: 494px;
    height: 170px;
    margin: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s;
    opacity: 40%;
  }
  #counter .img-box:nth-child(1) {
    background: url("../assets/img/counter/global.jpg");
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0px;
    border-right: none;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
    border-left: none;
    border-right: none;
  }
  #counter .img-box:nth-child(3) {
    background: url("../assets/img/counter/truimphs.jpg");
    background-size: cover;
    background-position: center;
    border-left: none;
    border-right: none;
  }
  #counter .img-box:nth-child(4) {
    background: url("../assets/img/counter/locations.jpg");
    background-size: cover;
    background-position: center;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-left: none;
    border-right: none;
  }
  #counter h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 32px;
  }
  #counter h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 14px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:hover .img-box {
    width: 494px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 46.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 67.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 24px;
  }
  #counter .gallery:hover .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:not(:hover) .img-box {
    width: 494px;
    opacity: 100%;
  }
  #counter .gallery:not(:hover) .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:not(:hover) .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 50.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 14px;
    font-weight: 500;
    top: 73.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 20px;
  }
  #counter .gallery:not(:hover) .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:hover .img-box {
    width: 494px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 50.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 14px;
    font-weight: 500;
    top: 73.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 20px;
  }
  #counter .gallery:hover .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery .img-box {
    transition: width 0.5s, opacity 0.5s;
  }
  #counter .gallery .img-box:hover {
    width: 494px;
    height: 170px;
    cursor: pointer;
    opacity: 0.9;
  }
  #counter .gallery .img-box:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:not(:hover) {
    width: 494px;
    height: 170px;
    cursor: pointer;
    opacity: 0.9;
  }
  #counter .gallery .img-box:not(:hover)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:hover h2 {
    opacity: 1;
    font-size: 44px;
    top: 42%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:not(:hover) h2 {
    opacity: 1;
    font-size: 44px;
    top: 42%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:hover h5 {
    display: none;
    opacity: 1;
    font-size: 14px;
    left: 48%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    top: 92%;
  }
  #counter .gallery .img-box:not(:hover) h5 {
    display: none;
    opacity: 1;
    font-size: 14px;
    left: 48%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    top: 92%;
  }
}
@media (min-width: 480px) and (max-width: 550px) {
  #counter {
    margin: 0;
    padding: 0;
  }
  #counter .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #counter .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #counter .img-box {
    width: 456px;
    height: 170px;
    margin: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s;
    opacity: 40%;
  }
  #counter .img-box:nth-child(1) {
    background: url("../assets/img/counter/global.jpg");
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0px;
    border-right: none;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
    border-left: none;
    border-right: none;
  }
  #counter .img-box:nth-child(3) {
    background: url("../assets/img/counter/truimphs.jpg");
    background-size: cover;
    background-position: center;
    border-left: none;
    border-right: none;
  }
  #counter .img-box:nth-child(4) {
    background: url("../assets/img/counter/locations.jpg");
    background-size: cover;
    background-position: center;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-left: none;
    border-right: none;
  }
  #counter h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 32px;
  }
  #counter h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 14px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:hover .img-box {
    width: 456px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 46.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 67.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 24px;
  }
  #counter .gallery:hover .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:not(:hover) .img-box {
    width: 456px;
    opacity: 100%;
  }
  #counter .gallery:not(:hover) .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:not(:hover) .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 50.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 14px;
    font-weight: 500;
    top: 73.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 20px;
  }
  #counter .gallery:not(:hover) .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:hover .img-box {
    width: 456px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 50.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 14px;
    font-weight: 500;
    top: 73.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 20px;
  }
  #counter .gallery:hover .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery .img-box {
    transition: width 0.5s, opacity 0.5s;
  }
  #counter .gallery .img-box:hover {
    width: 494px;
    height: 170px;
    cursor: pointer;
    opacity: 0.9;
  }
  #counter .gallery .img-box:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:not(:hover) {
    width: 456px;
    height: 170px;
    cursor: pointer;
    opacity: 0.9;
  }
  #counter .gallery .img-box:not(:hover)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:hover h2 {
    opacity: 1;
    font-size: 44px;
    top: 42%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:not(:hover) h2 {
    opacity: 1;
    font-size: 44px;
    top: 42%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:hover h5 {
    display: none;
    opacity: 1;
    font-size: 14px;
    left: 48%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    top: 92%;
  }
  #counter .gallery .img-box:not(:hover) h5 {
    display: none;
    opacity: 1;
    font-size: 14px;
    left: 48%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    top: 92%;
  }
}
@media (max-width: 480px) {
  #counter .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #counter .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  #counter .img-box {
    width: 343px;
    height: 134px;
    margin: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s;
    opacity: 40%;
  }
  #counter .img-box:nth-child(1) {
    background: url("../assets/img/counter/global.jpg");
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0px;
    border-right: none;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
    border-left: none;
    border-right: none;
  }
  #counter .img-box:nth-child(3) {
    background: url("../assets/img/counter/truimphs.jpg");
    background-size: cover;
    background-position: center;
    border-left: none;
    border-right: none;
  }
  #counter .img-box:nth-child(4) {
    background: url("../assets/img/counter/locations.jpg");
    background-size: cover;
    background-position: center;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    border-left: none;
    border-right: none;
  }
  #counter h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 32px;
  }
  #counter h5 {
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 14px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:hover .img-box {
    width: 343px;
    cursor: pointer;
    height: 128px;
    opacity: 0.9;
    margin: 5px;
  }
  #counter .gallery:hover .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 46.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 67.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 24px;
  }
  #counter .gallery:hover .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:not(:hover) .img-box {
    width: 343px;
    opacity: 100%;
  }
  #counter .gallery:not(:hover) .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:not(:hover) .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 50.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 12px;
    font-weight: 500;
    top: 73.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 20px;
  }
  #counter .gallery:not(:hover) .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:hover .img-box {
    width: 350px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 50.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 12px;
    font-weight: 500;
    top: 73.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 20px;
  }
  #counter .gallery:hover .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery .img-box {
    transition: width 0.5s, opacity 0.5s;
  }
  #counter .gallery .img-box:hover {
    width: 350px;
    cursor: pointer;
    height: 128px;
    opacity: 0.9;
    margin: 5px;
  }
  #counter .gallery .img-box:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:not(:hover) {
    width: 350px;
    cursor: pointer;
    height: 128px;
    opacity: 0.9;
    margin: 5px;
  }
  #counter .gallery .img-box:not(:hover)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  #counter .gallery .img-box:hover h2 {
    opacity: 1;
    font-size: 32px;
    top: 42%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:not(:hover) h2 {
    opacity: 1;
    font-size: 32px;
    top: 42%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .gallery .img-box:hover h5 {
    display: none;
    opacity: 1;
    font-size: 14px;
    left: 48%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    top: 92%;
  }
  #counter .gallery .img-box:not(:hover) h5 {
    display: none;
    opacity: 1;
    font-size: 14px;
    left: 48%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    top: 92%;
  }
}
@media (min-width: 321px) and (max-width: 360px) {
  #counter {
    margin: 0;
    padding: 0;
  }
  #counter .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #counter .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 19px;
  }
  #counter .img-box {
    width: 300px;
    height: 100px;
    margin: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s;
    opacity: 40%;
  }
  #counter .img-box:nth-child(1) {
    background: url("../assets/img/counter/global.jpg");
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0px;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
  }
  #counter .img-box:nth-child(3) {
    background: url("../assets/img/counter/truimphs.jpg");
    background-size: cover;
    background-position: center;
  }
  #counter .img-box:nth-child(4) {
    background: url("../assets/img/counter/locations.jpg");
    background-size: cover;
    background-position: center;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }
  #counter .img-box h2 {
    opacity: 1;
    font-size: 32px;
    bottom: 22.5%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .img-box h5 {
    width: 123px;
    height: 20px;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:not(:hover) .img-box {
    width: 343px;
    opacity: 100%;
  }
  #counter .gallery:not(:hover) .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:not(:hover) .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 48.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 10px;
    font-weight: 500;
    top: 75.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 19px;
  }
  #counter .gallery:not(:hover) .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:hover .img-box {
    width: 343px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 48.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 10px;
    font-weight: 500;
    top: 75.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 19px;
  }
  #counter .gallery:hover .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:hover .img-box {
    width: 300px;
  }
  #counter .gallery:not(:hover) .img-box {
    width: 300px;
  }
  #counter .gallery .img-box:hover {
    width: 320px;
    cursor: pointer;
    opacity: 0.9;
    margin-right: 25px;
  }
  #counter .gallery .img-box:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    /* Place the overlay behind the content */
    border-radius: 0px;
  }
  #counter .gallery .img-box:not(:hover) {
    width: 320px;
    cursor: pointer;
    opacity: 0.9;
    margin-right: 25px;
  }
  #counter .gallery .img-box:not(:hover)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    /* Place the overlay behind the content */
    border-radius: 0px;
  }
  #counter .gallery .img-box:hover h2 {
    opacity: 1;
    top: 39%;
    font-size: 32px;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    /* Center the text */
  }
  #counter .gallery .img-box:not(:hover) h2 {
    opacity: 1;
    top: 39%;
    font-size: 32px;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    /* Center the text */
  }
  #counter .gallery .img-box:hover h5 {
    opacity: 1;
    font-size: 14px;
    top: 76%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    margin-top: 10px;
  }
  #counter .gallery .img-box:not(:hover) h5 {
    opacity: 1;
    font-size: 14px;
    top: 76%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    margin-top: 10px;
  }
}
@media (max-width: 320px) {
  #counter {
    margin: 0;
    padding: 0;
  }
  #counter .container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #counter .gallery {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: 19px;
  }
  #counter .img-box {
    width: 300px;
    height: 100px;
    margin: 10px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: width 0.5s;
    opacity: 40%;
  }
  #counter .img-box:nth-child(1) {
    background: url("../assets/img/counter/global.jpg");
    background-size: cover;
    background-position: center;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0px;
  }
  #counter .img-box:nth-child(2) {
    background: url("../assets/img/counter/accelerator.jpg");
    background-size: cover;
    background-position: center;
  }
  #counter .img-box:nth-child(3) {
    background: url("../assets/img/counter/truimphs.jpg");
    background-size: cover;
    background-position: center;
  }
  #counter .img-box:nth-child(4) {
    background: url("../assets/img/counter/locations.jpg");
    background-size: cover;
    background-position: center;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }
  #counter .img-box h2 {
    opacity: 1;
    font-size: 32px;
    bottom: 22.5%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
  }
  #counter .img-box h5 {
    width: 123px;
    height: 20px;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
  }
  #counter .gallery:not(:hover) .img-box {
    width: 343px;
    opacity: 100%;
  }
  #counter .gallery:not(:hover) .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:not(:hover) .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 48.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 10px;
    font-weight: 500;
    top: 75.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 19px;
  }
  #counter .gallery:not(:hover) .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:hover .img-box {
    width: 343px;
    opacity: 100%;
  }
  #counter .gallery:hover .img-box h2 {
    color: #fff;
    position: absolute;
    top: 60.9%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 48px;
  }
  #counter .gallery:hover .img-box .expand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 48.8%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 10px;
    font-weight: 500;
    top: 75.4%;
    font-family: Inter;
    width: 436px;
    height: 64px;
    line-height: 19px;
  }
  #counter .gallery:hover .img-box h5 {
    display: none;
    color: #fff;
    position: absolute;
    left: 59%;
    transform: translate(-50%, -50%);
    transition: bottom 0.5s, opacity 0.5s;
    font-size: 20px;
    font-weight: 500;
    top: 72.4%;
    font-family: Inter;
    width: 156px;
    height: 24px;
    margin-top: -17px;
  }
  #counter .gallery:hover .img-box {
    width: 300px;
  }
  #counter .gallery:not(:hover) .img-box {
    width: 300px;
  }
  #counter .gallery .img-box:hover {
    width: 300px;
    cursor: pointer;
    opacity: 0.9;
    margin-right: 20px;
  }
  #counter .gallery .img-box:hover::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    /* Place the overlay behind the content */
    border-radius: 0px;
  }
  #counter .gallery .img-box:not(:hover) {
    width: 300px;
    cursor: pointer;
    opacity: 0.9;
    margin-right: 20px;
  }
  #counter .gallery .img-box:not(:hover)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(25, 33, 61, 0.6);
    z-index: -1;
    /* Place the overlay behind the content */
    border-radius: 0px;
  }
  #counter .gallery .img-box:hover h2 {
    opacity: 1;
    top: 39%;
    font-size: 32px;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    /* Center the text */
  }
  #counter .gallery .img-box:not(:hover) h2 {
    opacity: 1;
    top: 39%;
    font-size: 32px;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    /* Center the text */
  }
  #counter .gallery .img-box:hover h5 {
    opacity: 1;
    font-size: 14px;
    top: 76%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    margin-top: 10px;
  }
  #counter .gallery .img-box:not(:hover) h5 {
    opacity: 1;
    font-size: 14px;
    top: 76%;
    font-weight: 500;
    font-family: Inter;
    text-align: center;
    margin-top: 10px;
  }
}
/*--------------------------------------------------------------
# About RGT & Who we are  Section
--------------------------------------------------------------*/
.about {
  background-color: #ffffff;
}
.about .about-right-section .about-img-md {
  display: none;
}
.about .col-left-section {
  background-color: #ffffff;
}
.about .about-left-section {
  padding: 60px 0px 60px 70px;
  border-radius: 12px 0px 0px 12px;
  background-color: #ffffff;
  position: relative;
  z-index: 3;
  right: 200px;
}
.about .about-left-section .top-tag {
  border-radius: 60px;
  background: var(--Primary-Primary-50, #f5f8fd);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  height: 36px;
  padding: 6px 20px;
  align-items: center;
  color: var(--Primary-Blue-500, #2388ff);
}
.about .about-left-section h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  margin-top: 12px;
}
.about .about-left-section p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin: 24px 0px;
}
.about .about-left-section .btn-get-started {
  border-radius: 8px;
  background: var(--Primary-Blue-500, #2388ff);
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.about .about-left-section .btn-get-started:hover {
  background: #e3efff;
  color: var(--Primary-Blue-500, #2388ff);
}

@media (min-width: 1201px) and (max-width: 1380px) {
  .about .about-right-section .about-img-md {
    display: block;
  }
  .about .about-right-section .img-fluid {
    width: 85%;
  }
  .about .about-right-section .about-img-lg-sm {
    display: none;
  }
  .about .about-left-section {
    padding: 80px 0px 80px 80px;
    border-radius: 12px 0px 0px 12px;
    background-color: #ffffff;
    position: relative;
    z-index: 3;
    right: 200px;
  }
  .about .about-left-section h3 {
    font-size: 32px;
  }
  .about .about-left-section p {
    font-size: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .about .about-right-section .about-img-md {
    display: block;
  }
  .about .about-right-section .about-img-lg-sm {
    display: none;
  }
  .about .about-left-section {
    padding: 60px 0px 60px 70px;
    border-radius: 12px 0px 0px 12px;
    background-color: #ffffff;
    position: relative;
    z-index: 3;
    right: 150px;
  }
  .about .about-left-section h3 {
    font-size: 32px;
  }
  .about .about-left-section p {
    font-size: 16px;
  }
}
@media (max-width: 991.98px) {
  .about .about-right-section .about-img-md {
    display: block;
  }
  .about .about-right-section .about-img-lg-sm {
    display: none;
  }
  .about .about-left-section {
    padding: 32px 0px 32px 32px;
    border-radius: 12px;
    position: relative;
    z-index: 3;
    left: -100px;
    right: 0;
    width: 400px;
  }
  .about .about-left-section h3 {
    font-size: 24px;
  }
  .about .about-left-section p {
    font-size: 12px;
  }
}
@media (min-width: 641px) and (max-width: 767.98px) {
  .about .col-left-section {
    background-color: rgba(255, 255, 255, 0);
    height: 260px;
  }
  .about .about-right-section .about-img-lg-sm {
    display: block;
  }
  .about .about-right-section .about-img-md {
    display: none;
  }
  .about .about-left-section {
    padding: 16px;
    border-radius: 12px;
    z-index: 3;
    top: -100px;
    right: 0;
    left: 0;
    margin: 18px;
    width: 95%;
  }
  .about .about-left-section .btn-get-started {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .about .col-left-section {
    background-color: rgba(255, 255, 255, 0);
    height: 260px;
  }
  .about .about-right-section .about-img-lg-sm {
    display: block;
  }
  .about .about-right-section .about-img-md {
    display: none;
  }
  .about .about-left-section {
    padding: 16px;
    border-radius: 12px;
    z-index: 3;
    top: -100px;
    right: 0;
    left: 0;
    margin: 10px;
    width: 95%;
  }
  .about .about-left-section .btn-get-started {
    width: 100%;
  }
}
/*--------------------------------------------------------------
# Our Partners Section
--------------------------------------------------------------*/
.partners {
  width: auto;
  height: 660px;
  background-color: #19213d;
}
@keyframes scrollPartners {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-1400px);
  }
}
@keyframes scrollPartnersReverse {
  from {
    transform: translateY(-1400px);
  }
  to {
    transform: translateY(0px);
  }
}

@media (min-width: 1400px) {
  .partners {
    height: 663px;
  }
  .partners .col-lg-5 {
    margin-right: 90px;
  }
  .partners .section_partner {
    padding: 14rem 0rem;
  }
  .partners .section_header h2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 3rem;
    gap: 12px;
  }
  .partners .patnerHeading a {
    width: auto;
    border-radius: 3.75rem;
    padding: 0.375rem 1.25rem 0.375rem 1.25rem;
    color: #2388ff;
    font-weight: 400;
    font-size: 1rem;
    background-color: #f5f8fd;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .partners .patnerHeading a:hover {
    color: #2388ff;
  }
  .partners .section_header span {
    font-weight: 400;
    font-size: 1.0625rem;
    color: #b4b9c9;
    font-family: Inter;
    box-sizing: content-box;
  }
  .partners #upwardsWrapper {
    display: block;
  }
  .partners .partner_slider {
    overflow: hidden;
    height: 663px;
    display: flex;
  }
  .partners .partner_column {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .partners .partner_columns {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-right: 0px;
  }
  .partners .partner_item {
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partners .partner_item img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .partners .scroll_vertical_upwards {
    animation: scrollPartners 30s linear infinite;
  }
  .partners .scroll_vertical_downwards {
    animation: scrollPartnersReverse 30s linear infinite;
  }
}
@media (min-width: 1200px) {
  .partners {
    height: 663px;
  }
  .partners .col-lg-5 {
    margin-right: 75px;
  }
  .partners .section_partner {
    padding: 14rem 0rem;
  }
  .partners .section_header h2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 3rem;
    gap: 12px;
  }
  .partners .patnerHeading a {
    width: auto;
    border-radius: 3.75rem;
    padding: 0.375rem 1.25rem 0.375rem 1.25rem;
    color: #2388ff;
    font-weight: 400;
    font-size: 1rem;
    background-color: #f5f8fd;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .partners .patnerHeading a:hover {
    color: #2388ff;
  }
  .partners .section_header span {
    font-weight: 400;
    font-size: 1.0625rem;
    color: #b4b9c9;
    font-family: Inter;
    box-sizing: content-box;
  }
  .partners #upwardsWrapper {
    display: block;
  }
  .partners .partner_slider {
    overflow: hidden;
    height: 663px;
    display: flex;
  }
  .partners .partner_column {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .partners .partner_columns {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-right: 0px;
  }
  .partners .partner_item {
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partners .partner_item img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .partners .scroll_vertical_upwards {
    animation: scrollPartners 30s linear infinite;
  }
  .partners .scroll_vertical_downwards {
    animation: scrollPartnersReverse 30s linear infinite;
  }
}
@media (max-width: 1200px) {
  .partners {
    height: 663px;
  }
  .partners .col-lg-5 {
    margin-right: 75px;
  }
  .partners .section_partner {
    padding: 14rem 0rem;
  }
  .partners .section_header h2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 3rem;
    gap: 12px;
  }
  .partners .patnerHeading a {
    width: auto;
    border-radius: 3.75rem;
    padding: 0.375rem 1.25rem 0.375rem 1.25rem;
    color: #2388ff;
    font-weight: 400;
    font-size: 1rem;
    background-color: #f5f8fd;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .partners .patnerHeading a:hover {
    color: #2388ff;
  }
  .partners .section_header span {
    font-weight: 400;
    font-size: 1.0625rem;
    color: #b4b9c9;
    font-family: Inter;
    box-sizing: content-box;
  }
  .partners #upwardsWrapper {
    display: block;
  }
  .partners .partner_slider {
    overflow: hidden;
    height: 663px;
    display: flex;
  }
  .partners .partner_column {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .partners .partner_columns {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-right: 0px;
  }
  .partners .partner_item {
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partners .partner_item img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .partners .scroll_vertical_upwards {
    animation: scrollPartners 30s linear infinite;
  }
  .partners .scroll_vertical_downwards {
    animation: scrollPartnersReverse 30s linear infinite;
  }
}
@media (max-width: 1024px) {
  .partners {
    height: 663px;
  }
  .partners .col-lg-5 {
    margin-right: 60px;
  }
  .partners .section_partner {
    padding: 14rem 0rem;
  }
  .partners .section_header h2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 3rem;
    gap: 12px;
  }
  .partners .patnerHeading a {
    width: auto;
    border-radius: 3.75rem;
    padding: 0.375rem 1.25rem 0.375rem 1.25rem;
    color: #2388ff;
    font-weight: 400;
    font-size: 1rem;
    background-color: #f5f8fd;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
  .partners .patnerHeading a:hover {
    color: #2388ff;
  }
  .partners .section_header span {
    font-weight: 400;
    font-size: 1.0625rem;
    color: #b4b9c9;
    font-family: Inter;
    box-sizing: content-box;
  }
  .partners #upwardsWrapper {
    display: none;
  }
  .partners .partner_slider {
    overflow: hidden;
    height: 663px;
    display: flex;
  }
  .partners .partner_column {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .partners .partner_columns {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .partners .partner_item {
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partners .partner_item img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .partners .scroll_vertical_upwards {
    animation: scrollPartners 30s linear infinite;
  }
  .partners .scroll_vertical_downwards {
    animation: scrollPartnersReverse 30s linear infinite;
  }
}
@media (min-width: 992px) {
  .partners {
    height: 663px;
  }
  .partners .col-lg-5 {
    margin-right: 40px;
  }
  .partners .section_partner {
    padding: 14rem 0rem;
  }
  .partners .section_header h2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 3rem;
    gap: 12px;
  }
  .partners .section_header span {
    font-weight: 400;
    font-size: 1.0625rem;
    color: #b4b9c9;
    font-family: Inter;
    box-sizing: content-box;
  }
  .partners #upwardsWrapper {
    display: block;
  }
  .partners .partner_slider {
    overflow: hidden;
    height: 663px;
    display: flex;
  }
  .partners .partner_column {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .partners .partner_columns {
    flex: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-right: 0px;
  }
  .partners .partner_item {
    height: auto;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .partners .partner_item img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .partners .scroll_vertical_upwards {
    animation: scrollPartners 30s linear infinite;
  }
  .partners .scroll_vertical_downwards {
    animation: scrollPartnersReverse 30s linear infinite;
  }
}
@media (max-width: 991.98px) {
  .partners {
    height: 480px;
  }
  .partners .section_partner {
    display: flex;
    padding: 0px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
  }
  .partners .patnerHeading a {
    width: auto;
    border-radius: 3.75rem;
    padding: 6px 20px;
    color: #2388ff;
    font-weight: 400;
    font-size: 12px;
    background-color: #f5f8fd;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.18px;
  }
  .partners .patnerHeading a:hover {
    color: #2388ff;
  }
  .partners .section_header h2 {
    color: #ffffff;
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0.48px;
    font-style: normal;
  }
  .partners .section_header span {
    color: #b4b9c9;
    box-sizing: content-box;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: 0.18px;
  }
  .partners ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .partners ul > li {
    grid-area: 1/1;
    animation: infiniteScroll 30s linear infinite;
    font-size: 1.3rem;
    padding: 1rem;
    text-align: center;
    border-radius: 1rem;
  }
  .partners ul > li > img {
    width: 160px;
    max-height: 80px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .partners ul > li:nth-child(2) {
    animation-delay: -4.284s;
  }
  .partners ul > li:nth-child(3) {
    animation-delay: -8.571s;
  }
  .partners ul > li:nth-child(4) {
    animation-delay: -12.855s;
  }
  .partners ul > li:nth-child(5) {
    animation-delay: -17.142s;
  }
  .partners ul > li:nth-child(6) {
    animation-delay: -21.426s;
  }
  .partners ul > li:nth-child(7) {
    animation-delay: -25.713s;
  }
  .partners ul.alt li {
    animation-direction: reverse;
  }
  .partners #upwardsWrapper {
    display: none;
  }
  .partners #downwardsWrapper {
    display: none;
  }
}
/*--------------------------------------------------------------
# Our Industries  Section
--------------------------------------------------------------*/
.ourindustries .section_header {
  text-align: center;
  margin-bottom: 25px;
}
.ourindustries .section_header h2 {
  text-align: center;
  font-weight: 500;
  font-size: 3rem;
}
.ourindustries .card {
  border-radius: 12px;
}
.ourindustries .card .card-body {
  padding: 0px;
}
.ourindustries .card .card-body .image-container {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.ourindustries .card .card-body .image-container .overlay-text1 {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  text-align: start;
  color: none;
  padding-left: 40px;
  padding-top: 40px;
}
.ourindustries .card .card-body .image-container .overlay-text1 a {
  color: #ffffff;
}
.ourindustries .card .card-body .image-container .overlay-text1 h4 {
  color: white;
  font-family: Inter;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0.015em;
  text-align: left;
}
.ourindustries .card .card-body .image-container .overlay-text1 .bhparagrap {
  display: none;
}
.ourindustries .card .card-body .image-container .overlay-text1 .health4 {
  display: block;
}
.ourindustries .card .card-body .image-container .overlay {
  padding: 40px 10px 40px 40px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}
.ourindustries .card .card-body .image-container .overlay .overlay-text .arrowicon {
  border-radius: 40px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 74%;
  background-image: url("../assets/img/industries/More-arrow.svg");
}
.ourindustries .card .card-body .image-container .overlay .overlay-text .arrowicon:hover {
  background-image: url("../assets/img/industries/State-Hoverednew.svg");
  background-color: rgb(248, 251, 255);
  color: red;
}
.ourindustries .card .card-body .image-container:hover .overlay {
  background-color: #2388ff;
  opacity: 0.8;
  border-radius: 12px;
  padding: 40px;
}
.ourindustries .card .card-body .image-container:hover .overlay-text1 {
  display: block;
}
.ourindustries .card .card-body .image-container:hover .overlay-text1 .health4 {
  display: none;
}
.ourindustries .card .card-body .overlay-text {
  display: none;
  text-align: start;
  color: #fff;
}
.ourindustries .card .card-body .overlay-text h4 {
  font-family: Inter;
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
  letter-spacing: 0.015em;
  text-align: left;
  color: white;
}
.ourindustries .card .card-body .overlay-text p {
  padding-right: 13px;
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-left: 13px;
}
.ourindustries .card .card-body .overlay-text .vl1 {
  border-left: 3px solid #4e9fff;
  height: 82px;
  position: absolute;
  top: 26%;
  left: 8%;
}
.ourindustries .card .card-body .overlay-text .vl2 {
  border-left: 3px solid #4e9fff;
  height: 46px;
  position: absolute;
  top: 25%;
  left: 5.5%;
}
.ourindustries .card .card-body .overlay-text .vl3 {
  border-left: 3px solid #4e9fff;
  height: 104px;
  position: absolute;
  top: 25%;
  left: 10%;
}
.ourindustries .card .card-body .overlay-text .vl4 {
  border-left: 3px solid #4e9fff;
  height: 62px;
  position: absolute;
  top: 26%;
  left: 10%;
}
.ourindustries .card .card-body .overlay-text .vl5 {
  border-left: 3px solid #4e9fff;
  height: 67px;
  position: absolute;
  top: 25%;
  left: 10%;
}
.ourindustries .card .card-body .image-container:hover .overlay-text {
  display: block;
}

@media (min-width: 992px) {
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk {
    display: none;
  }
  .ourindustries .img-fluid {
    height: 320px;
    width: 100%;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .ourindustries .card .card-body .image-container:hover .overlay {
    padding: 40px 0px 40px 35px;
  }
  .ourindustries .card .card-body .overlay-text .vl1 {
    border-left: 3px solid #4e9fff;
    height: 82px;
    position: absolute;
    top: 26%;
    left: 8%;
  }
  .ourindustries .card .card-body .overlay-text .vl2 {
    border-left: 3px solid #4e9fff;
    height: 63px;
    position: absolute;
    top: 25%;
    left: 5.5%;
  }
  .ourindustries .card .card-body .overlay-text .vl3 {
    border-left: 3px solid #4e9fff;
    height: 104px;
    position: absolute;
    top: 25%;
    left: 10%;
  }
  .ourindustries .card .card-body .overlay-text .vl4 {
    border-left: 3px solid #4e9fff;
    height: 62px;
    position: absolute;
    top: 26%;
    left: 10%;
  }
  .ourindustries .card .card-body .overlay-text .vl5 {
    border-left: 3px solid #4e9fff;
    height: 67px;
    position: absolute;
    top: 25%;
    left: 10%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .ourindustries .card .card-body .overlay-text p {
    font-size: 14px;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 {
    padding-left: 24px;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 h4 {
    font-size: 22px;
  }
  .ourindustries .card .card-body .overlay-text h4 {
    font-size: 22px;
  }
  .ourindustries .card .card-body .image-container:hover .overlay {
    padding: 40px 0px 40px 25px;
  }
  .ourindustries .card .card-body .overlay-text .vl1 {
    border-left: 3px solid #4e9fff;
    height: 75px;
    position: absolute;
    top: 25%;
    left: 8%;
  }
  .ourindustries .card .card-body .overlay-text .vl2 {
    border-left: 3px solid #4e9fff;
    height: 60px;
    position: absolute;
    top: 25%;
    left: 5.5%;
  }
  .ourindustries .card .card-body .overlay-text .vl3 {
    border-left: 3px solid #4e9fff;
    height: 97px;
    position: absolute;
    top: 25%;
    left: 10%;
  }
  .ourindustries .card .card-body .overlay-text .vl4 {
    border-left: 3px solid #4e9fff;
    height: 57px;
    position: absolute;
    top: 25%;
    left: 10%;
  }
  .ourindustries .card .card-body .overlay-text .vl5 {
    border-left: 3px solid #4e9fff;
    height: 57px;
    position: absolute;
    top: 25%;
    left: 10%;
  }
}
@media (max-width: 991.98px) {
  .ourindustries .card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  .ourindustries .card .card-body .image-container .img-fluid {
    height: 320px;
    width: 100%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 {
    padding: 20px;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon.res {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicontm {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .health4 {
    display: none;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .h4 {
    color: red;
    font-family: Inter;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 p {
    color: white;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    margin-left: 16px;
  }
  .ourindustries .card .card-body .overlay {
    display: none;
  }
  .ourindustries .card .card-body .image-container:hover .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .ourindustries .card .card-body .image-container:hover .overlay-text1 {
    display: block;
  }
  .ourindustries .card .card-body .image-container:not(:hover) .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .ourindustries .card .card-body .image-container:not(:hover) .overlay-text1 {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 105px;
    position: absolute;
    top: 31%;
    left: 5%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 103px;
    position: absolute;
    top: 32%;
    left: 5%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 45px;
    position: absolute;
    top: 44%;
    left: 3%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 60px;
    position: absolute;
    top: 40%;
    left: 5%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 60px;
    position: absolute;
    top: 40%;
    left: 5%;
  }
}
@media (min-width: 535px) and (max-width: 767.98px) {
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 61px;
    position: absolute;
    top: 40%;
    left: 4%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 64px;
    position: absolute;
    top: 39%;
    left: 4%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 57px;
    position: absolute;
    top: 41%;
    left: 4%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 40px;
    position: absolute;
    top: 45%;
    left: 4%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 42px;
    position: absolute;
    top: 45%;
    left: 4%;
  }
}
@media (min-width: 400px) and (max-width: 534.98px) {
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 83px;
    position: absolute;
    top: 34%;
    left: 5%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 84px;
    position: absolute;
    top: 34%;
    left: 5%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 82px;
    position: absolute;
    top: 34%;
    left: 4%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 59px;
    position: absolute;
    top: 40%;
    left: 5%;
  }
  .ourindustries .card .card-body .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 60px;
    position: absolute;
    top: 39%;
  }
}
@media (min-width: 375px) and (max-width: 399.98px) {
  .ourindustries .col-md-12 {
    margin-top: 16px;
    flex: 0 0 auto;
    width: 100%;
  }
  .ourindustries .card .card-body .image-container {
    border-radius: 12px;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk {
    gap: 16px;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon.res {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowiconman {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 92px;
    position: absolute;
    top: 35%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 84px;
    position: absolute;
    top: 36%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 80px;
    position: absolute;
    top: 35%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 59px;
    position: absolute;
    top: 41%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 62px;
    position: absolute;
    top: 40%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 p {
    font-size: 14px;
    padding-right: px;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 h4 {
    font-size: 20px;
  }
  .ourindustries .card .card-body .overlay {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 374.98px) {
  .ourindustries .col-md-12 {
    margin-top: 16px;
    flex: 0 0 auto;
    width: 100%;
  }
  .ourindustries .card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  .ourindustries .card .card-body .image-container .img-fluid {
    height: 320px;
    width: 100%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 {
    padding: 20px;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon.res {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicontm {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 138px;
    position: absolute;
    top: 25%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 132px;
    position: absolute;
    top: 27%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 68px;
    position: absolute;
    top: 37%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 86px;
    position: absolute;
    top: 34%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 86px;
    position: absolute;
    top: 34%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .health4 {
    display: none;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .h4 {
    color: red;
    font-family: Inter;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 p {
    color: white;
    font-family: Inter;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    margin-left: 18px;
    width: 280px;
    padding-right: 16px;
  }
  .ourindustries .card .card-body .overlay {
    display: none;
  }
  .ourindustries .card .card-body .image-container:hover .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .ourindustries .card .card-body .image-container:hover .overlay-text1 {
    display: block;
  }
  .ourindustries .card .card-body .image-container:not(:hover) .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .ourindustries .card .card-body .image-container:not(:hover) .overlay-text1 {
    display: block;
  }
}
@media (max-width: 320px) {
  .ourindustries .col-md-12 {
    margin-top: 16px;
    flex: 0 0 auto;
    width: 100%;
  }
  .ourindustries .card {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }
  .ourindustries .card .card-body .image-container .img-fluid {
    height: 320px;
    width: 100%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 {
    padding: 20px;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicon.res {
    top: 113%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .arrowicontm {
    top: 137%;
    left: 7%;
    position: absolute;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl1 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 138px;
    position: absolute;
    top: 25%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl2 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 132px;
    position: absolute;
    top: 27%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl3 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 68px;
    position: absolute;
    top: 37%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl4 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 86px;
    position: absolute;
    top: 34%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .hidefromdesk .resvl5 {
    border-left: 3px solid rgb(78, 159, 255);
    height: 86px;
    position: absolute;
    top: 34%;
    left: 6.5%;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .health4 {
    display: none;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 .h4 {
    color: red;
    font-family: Inter;
    font-size: 24px;
    font-weight: 500;
    line-height: 29px;
    letter-spacing: 0.015em;
    text-align: left;
  }
  .ourindustries .card .card-body .image-container .overlay-text1 p {
    color: white;
    font-family: Inter;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0em;
    text-align: left;
    margin-left: 18px;
    width: 280px;
    padding-right: 16px;
  }
  .ourindustries .card .card-body .overlay {
    display: none;
  }
  .ourindustries .card .card-body .image-container:hover .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .ourindustries .card .card-body .image-container:hover .overlay-text1 {
    display: block;
  }
  .ourindustries .card .card-body .image-container:not(:hover) .overlay {
    background-color: none;
    opacity: 0;
    border-radius: 12px;
  }
  .ourindustries .card .card-body .image-container:not(:hover) .overlay-text1 {
    display: block;
  }
}
/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  background: var(--Neutral-Neutral-900, #19213d);
}
.cta .cta-left h3 {
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  color: #ffffff;
}
.cta .cta-left h3 span {
  color: var(--Primary-Blue-500, #2388ff);
}
.cta .cta-left p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  color: var(--Neutral-Neutral-300, #b4b9c9);
}
.cta .cta-left .btn-get-started {
  border-radius: 8px;
  background: var(--Primary-Blue-500, #2388ff);
  padding: 15px 30px;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.cta .cta-left .btn-get-started:hover {
  background: #e3efff;
  color: var(--Primary-Blue-500, #2388ff);
}
.cta .cta-right img {
  box-shadow: 15px 15px #353e5c;
  border-radius: 12px;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
#footer {
  background: #19213d;
  color: #333333;
  font-size: 1rem;
  font-family: "inter", sans-serif;
}
#footer .footer-top {
  background-color: #e1e4ed;
  padding: 40px 0px;
}
#footer .footer-top .imagefooter {
  margin-top: 0px;
  padding-bottom: 10px;
}
#footer .footer-top .footer-links p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
#footer .footer-top .followFooter {
  display: flex;
  gap: 20px;
}
#footer .footer-top .followFooter h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}
#footer .footer-top .followLinks {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#footer .footer-top .countryLOC {
  display: flex;
  flex-direction: column;
}
#footer .footer-top .countryItem {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
#footer .footer-top .countryItem .countryCan {
  padding-left: 0px;
}
#footer .footer-top .countryItem .indiaimg {
  border-radius: 10%;
  padding-left: 2px;
}
#footer .footer-top .countryItem .indiaimg span {
  font-weight: normal !important;
  padding-left: 4px;
}
#footer .footer-top .countryItem img {
  max-width: 100px;
  height: auto;
  margin-right: 10px;
}
#footer .footer-top .countryItem span {
  font-weight: normal;
  text-align: center;
}
#footer .footer-top .inidaimg {
  border-radius: 10%;
}
#footer .footer-top .companyFooter {
  display: flex;
  flex-direction: column;
}
#footer .footer-top .companyLinks {
  display: flex;
  margin-bottom: 12px;
}
#footer .footer-top .companyLinks div {
  margin-right: 10px;
}
#footer .footer-top .companyLinks div:not(:last-child)::after {
  content: "|";
  margin-left: 10px;
  color: rgba(35, 136, 255, 0.8196078431);
}
#footer .footer-top .serviceFooter {
  display: flex;
  flex-direction: column;
}
#footer .footer-top .serviceLinks {
  display: flex;
  flex-wrap: wrap;
  /* Allows items to wrap to the next line */
  margin-bottom: 12px;
}
#footer .footer-top .serviceLinks div {
  white-space: nowrap;
  margin-right: 10px;
}
#footer .footer-top .serviceLinks div::after {
  content: "|";
  margin-left: 10px;
  color: rgba(35, 136, 255, 0.8196078431);
}
#footer .footer-top .serviceLinks div:last-child::after {
  content: "";
  /* Remove the "|" after the last item */
}
#footer .footer-top .footer-links {
  font-size: 1rem;
  margin-bottom: 10px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #333333;
}
#footer .footer-top .footer-links ul li {
  padding: 5px 0;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #4d4d4f;
  display: inline-block;
  transition: width 0.3s;
}
#footer .footer-top .footer-links ul a:after {
  content: "";
  display: block;
  width: 0;
  height: 1.3px;
  background: #4d4d4f;
  transition: width 0.3s;
}
#footer .footer-top .footer-links ul a:hover {
  color: #000000;
  font-weight: 400;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}
#footer .footer-top .footer-contact p {
  line-height: 26px;
}
#footer .copyright {
  text-align: left;
  padding-top: 25px;
  color: #fff;
  font-size: 16px;
  width: -moz-max-content;
  width: max-content;
}
#footer .credits {
  float: right;
  font-size: 16px;
  padding-top: 30px;
  color: #fff;
  font-size: 16px;
  margin-right: 30px;
  position: relative;
  top: -18px;
}
#footer .credits .fa {
  color: #ffdd00;
}
#footer .credits li {
  float: left;
  list-style: none;
  padding-left: 10px;
}
#footer .credits li a {
  color: #fff;
}

@media (min-width: 1440px) {
  #footer {
    background: #19213d;
    color: #333333;
    font-size: 1rem;
  }
  #footer .Follows {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1439.98px) {
  #footer {
    background: #19213d;
    color: #333333;
    font-size: 1rem;
  }
  #footer .footer-top {
    background-color: #e1e4ed;
    padding: 30px 0px 0px 0px;
  }
  #footer .footer-top .footer-links p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
  }
  #footer .footer-top .countryLOC {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .countryItem {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  #footer .footer-top .countryItem .countryCan {
    padding-left: 0px;
  }
  #footer .footer-top .countryItem .indiaimg {
    border-radius: 10%;
    padding-left: 2px;
  }
  #footer .footer-top .countryItem .indiaimg span {
    padding-left: 4px;
  }
  #footer .footer-top .countryItem img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
  }
  #footer .footer-top .countryItem span {
    font-weight: normal;
    text-align: center;
  }
  #footer .footer-top .inidaimg {
    border-radius: 10%;
  }
  #footer .footer-top .companyFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .companyLinks {
    display: flex;
    margin-bottom: 12px;
  }
  #footer .footer-top .companyLinks div {
    margin-right: 10px;
  }
  #footer .footer-top .companyLinks div:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .serviceLinks {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line */
    margin-bottom: 12px;
  }
  #footer .footer-top .serviceLinks div {
    white-space: nowrap;
    margin-right: 10px;
  }
  #footer .footer-top .serviceLinks div::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceLinks div:last-child::after {
    content: "";
    /* Remove the "|" after the last item */
  }
  #footer .footer-top .footer-links {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #333333;
  }
  #footer .footer-top .footer-links ul li {
    padding: 5px 0;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #4d4d4f;
    display: inline-block;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:after {
    content: "";
    display: block;
    width: 0;
    height: 1.3px;
    background: #4d4d4f;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:hover {
    color: #000000;
    font-weight: 400;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  #footer .Follows {
    display: none;
  }
  #footer .copyright {
    text-align: left;
    padding-top: 30px;
    color: #fff;
    font-size: 14px;
    width: -moz-max-content;
    width: max-content;
  }
  #footer .credits {
    float: right;
    font-size: 14px;
    padding-top: 30px;
    color: #fff;
  }
  #footer .credits .fa {
    color: #ffdd00;
  }
  #footer .credits li {
    float: left;
    list-style: none;
    padding-left: 10px;
  }
  #footer .credits li a {
    color: #fff;
  }
}
@media (min-width: 840px) and (max-width: 991.98px) {
  #footer {
    background: #19213d;
    color: #333333;
    font-size: 1rem;
  }
  #footer .footer-top {
    background-color: #e1e4ed;
    padding: 30px 0px 0px 0px;
  }
  #footer .footer-top .footer-links p {
    display: block;
  }
  #footer .footer-top .imagefooter {
    margin-top: 0px;
  }
  #footer .footer-top .countryLOC {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  #footer .footer-top .countryLOC a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #footer .footer-top .countryItem {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  #footer .footer-top .countryItem .countryCan {
    padding-left: 3px;
  }
  #footer .footer-top .countryItem .indiaimg {
    border-radius: 10%;
    padding-left: 2px;
  }
  #footer .footer-top .countryItem .indiaimg span {
    padding-left: 4px;
  }
  #footer .footer-top .countryItem img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
  }
  #footer .footer-top .countryItem span {
    font-weight: normal;
    text-align: center;
  }
  #footer .footer-top .inidaimg {
    border-radius: 10%;
  }
  #footer .footer-top .companyFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .companyLinks {
    display: flex;
    margin-bottom: 12px;
  }
  #footer .footer-top .companyLinks div {
    margin-right: 10px;
  }
  #footer .footer-top .companyLinks div:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .serviceLinks {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line */
    margin-bottom: 12px;
  }
  #footer .footer-top .serviceLinks div {
    white-space: nowrap;
    margin-right: 10px;
  }
  #footer .footer-top .serviceLinks div::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceLinks div:last-child::after {
    content: "";
    /* Remove the "|" after the last item */
  }
  #footer .footer-top .footer-links {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #333333;
  }
  #footer .footer-top .footer-links ul li {
    padding: 5px 0;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #4d4d4f;
    display: inline-block;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:after {
    content: "";
    display: block;
    width: 0;
    height: 1.3px;
    background: #4d4d4f;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:hover {
    color: #000000;
    font-weight: 400;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  #footer .Follows {
    display: none;
  }
  #footer .copyright {
    padding-top: 26px;
    color: #fff;
    width: -moz-max-content;
    width: max-content;
    font-size: 12px;
  }
  #footer .credits {
    float: right;
    font-size: 12px;
    padding-top: 30px;
    color: #fff;
    margin-right: 27px;
    position: relative;
  }
  #footer .credits .fa {
    color: #ffdd00;
  }
  #footer .credits li {
    float: left;
    list-style: none;
    padding-left: 10px;
  }
  #footer .credits li a {
    color: #fff;
  }
}
@media (min-width: 768px) and (max-width: 839.98px) {
  #footer {
    background: #19213d;
    color: #333333;
    font-size: 1rem;
  }
  #footer .footer-top {
    background-color: #e1e4ed;
    padding: 30px 0px 10px 0px;
  }
  #footer .footer-top .footer-links p {
    display: block;
  }
  #footer .footer-top .Follows {
    display: none;
  }
  #footer .footer-top .imagefooter {
    margin-top: 0px;
  }
  #footer .footer-top .countryLOC {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
  }
  #footer .footer-top .countryLOC a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #footer .footer-top .countryItem {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  #footer .footer-top .countryItem .countryCan {
    padding-left: 3px;
  }
  #footer .footer-top .countryItem .indiaimg {
    border-radius: 10%;
    padding-left: 2px;
  }
  #footer .footer-top .countryItem .indiaimg span {
    padding-left: 4px;
  }
  #footer .footer-top .countryItem img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
  }
  #footer .footer-top .countryItem span {
    font-weight: normal;
    text-align: center;
  }
  #footer .footer-top .inidaimg {
    border-radius: 10%;
  }
  #footer .footer-top .companyFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .companyLinks {
    display: flex;
    margin-bottom: 12px;
  }
  #footer .footer-top .companyLinks div {
    margin-right: 10px;
  }
  #footer .footer-top .companyLinks div:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .serviceLinks {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line */
    margin-bottom: 12px;
  }
  #footer .footer-top .serviceLinks div {
    white-space: nowrap;
    margin-right: 10px;
  }
  #footer .footer-top .serviceLinks div::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceLinks div:last-child::after {
    content: "";
    /* Remove the "|" after the last item */
  }
  #footer .footer-top .footer-links {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #333333;
  }
  #footer .footer-top .footer-links ul li {
    padding: 5px 0;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #4d4d4f;
    display: inline-block;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:after {
    content: "";
    display: block;
    width: 0;
    height: 1.3px;
    background: #4d4d4f;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:hover {
    color: #000000;
    font-weight: 400;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  #footer .copyright {
    padding-top: 21px;
    color: #fff;
    width: -moz-max-content;
    width: max-content;
    font-size: 12px;
    margin-left: 0px;
  }
  #footer .credits {
    float: right;
    font-size: 12px;
    padding-top: 30px;
    color: #fff;
    margin-top: -9px;
    margin-right: 27px;
    position: relative;
    top: -12px;
  }
  #footer .credits .fa {
    color: #ffdd00;
  }
  #footer .credits li {
    float: left;
    list-style: none;
    padding-left: 10px;
  }
  #footer .credits li a {
    color: #fff;
  }
}
@media (min-width: 600px) and (max-width: 767.98px) {
  #footer {
    background: #19213d;
    color: #333333;
    font-size: 1rem;
  }
  #footer .footer-top {
    background-color: #e1e4ed;
    padding: 30px 0px 10px 0px;
  }
  #footer .footer-top .footer-links p {
    display: none;
  }
  #footer .footer-top .imagefooter {
    margin-top: 0px;
    display: none;
  }
  #footer .footer-top .countryLOC {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 49px;
    margin-top: 10px;
  }
  #footer .footer-top .countryLOC a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #footer .footer-top .countryItem {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  #footer .footer-top .countryItem .countryCan {
    padding-left: 3px;
  }
  #footer .footer-top .countryItem .indiaimg {
    border-radius: 10%;
    padding-left: 2px;
  }
  #footer .footer-top .countryItem .indiaimg span {
    padding-left: 4px;
  }
  #footer .footer-top .countryItem img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
  }
  #footer .footer-top .countryItem span {
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
  }
  #footer .footer-top .inidaimg {
    border-radius: 10%;
  }
  #footer .footer-top .companyFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .companyLinks {
    display: flex;
    margin-bottom: 12px;
  }
  #footer .footer-top .companyLinks div {
    margin-right: 10px;
  }
  #footer .footer-top .companyLinks div:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .serviceLinks {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line */
    margin-bottom: 12px;
  }
  #footer .footer-top .serviceLinks div {
    white-space: nowrap;
    margin-right: 10px;
  }
  #footer .footer-top .serviceLinks div::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceLinks div:last-child::after {
    content: "";
    /* Remove the "|" after the last item */
  }
  #footer .footer-top .footer-links {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #333333;
  }
  #footer .footer-top .footer-links ul li {
    padding: 5px 0;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #4d4d4f;
    display: inline-block;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:after {
    content: "";
    display: block;
    width: 0;
    height: 1.3px;
    background: #4d4d4f;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:hover {
    color: #000000;
    font-weight: 400;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  #footer .Follows {
    display: block;
  }
  #footer .Follow {
    display: none;
  }
  #footer .followFooters {
    display: flex;
    gap: 20px;
  }
  #footer .followFooters h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
  }
  #footer .followlinks {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  #footer .copyright {
    text-align: left;
    padding-top: 9px;
    color: #fff;
    width: 301px;
    margin-left: 0px;
    font-size: 12px;
  }
  #footer .credits {
    font-size: 12px;
    padding-top: 30px;
    color: #fff;
    margin-left: -41px;
    float: left;
  }
  #footer .credits .fa {
    color: #ffdd00;
  }
  #footer .credits li {
    float: left;
    list-style: none;
    padding-left: 10px;
  }
  #footer .credits li a {
    color: #fff;
  }
}
@media (min-width: 575px) and (max-width: 599.98px) {
  #footer {
    background: #19213d;
    color: #333333;
    font-size: 1rem;
  }
  #footer .footer-top {
    background-color: #e1e4ed;
    padding: 30px 0px 10px 0px;
  }
  #footer .footer-top .footer-links p {
    display: none;
  }
  #footer .footer-top .imagefooter {
    margin-top: 0px;
    display: none;
  }
  #footer .footer-top .countryLOC {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 49px;
    margin-top: 10px;
  }
  #footer .footer-top .countryLOC a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #footer .footer-top .countryItem {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  #footer .footer-top .countryItem .countryCan {
    padding-left: 3px;
  }
  #footer .footer-top .countryItem .indiaimg {
    border-radius: 10%;
    padding-left: 2px;
  }
  #footer .footer-top .countryItem .indiaimg span {
    padding-left: 4px;
  }
  #footer .footer-top .countryItem img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
  }
  #footer .footer-top .countryItem span {
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
  }
  #footer .footer-top .inidaimg {
    border-radius: 10%;
  }
  #footer .footer-top .companyFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .companyLinks {
    display: flex;
    margin-bottom: 12px;
  }
  #footer .footer-top .companyLinks div {
    margin-right: 10px;
  }
  #footer .footer-top .companyLinks div:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .serviceLinks {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line */
    margin-bottom: 12px;
  }
  #footer .footer-top .serviceLinks div {
    white-space: nowrap;
    margin-right: 10px;
  }
  #footer .footer-top .serviceLinks div::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceLinks div:last-child::after {
    content: "";
    /* Remove the "|" after the last item */
  }
  #footer .footer-top .footer-links {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #333333;
  }
  #footer .footer-top .footer-links ul li {
    padding: 5px 0;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #4d4d4f;
    display: inline-block;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:after {
    content: "";
    display: block;
    width: 0;
    height: 1.3px;
    background: #4d4d4f;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:hover {
    color: #000000;
    font-weight: 400;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  #footer .Follows {
    display: block;
  }
  #footer .Follow {
    display: none;
  }
  #footer .followFooters {
    display: flex;
    gap: 20px;
  }
  #footer .followFooters h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
  }
  #footer .followlinks {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  #footer .copyright {
    text-align: left;
    padding-top: 9px;
    color: #fff;
    width: 301px;
    margin-left: 0px;
    font-size: 12px;
  }
  #footer .credits {
    font-size: 12px;
    padding-top: 30px;
    color: #fff;
    margin-left: -40px;
    float: left;
  }
  #footer .credits .fa {
    color: #ffdd00;
  }
  #footer .credits li {
    float: left;
    list-style: none;
    padding-left: 10px;
  }
  #footer .credits li a {
    color: #fff;
  }
}
@media (min-width: 320px) and (max-width: 575px) {
  #footer {
    background: #19213d;
    color: #333333;
    font-size: 1rem;
  }
  #footer .footer-top {
    background-color: #e1e4ed;
    padding: 30px 0px 0px 0px;
    font-size: 12px;
  }
  #footer .footer-top .footer-links p {
    display: none;
  }
  #footer .footer-top .imagefooter {
    margin-top: 0px;
    display: none;
  }
  #footer .footer-top .countryLOC {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 49px;
    margin-top: 10px;
  }
  #footer .footer-top .countryLOC a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
  #footer .footer-top .countryItem {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  #footer .footer-top .countryItem .countryCan {
    padding-left: 3px;
  }
  #footer .footer-top .countryItem .indiaimg {
    border-radius: 10%;
    padding-left: 2px;
  }
  #footer .footer-top .countryItem .indiaimg span {
    padding-left: 4px;
  }
  #footer .footer-top .countryItem img {
    max-width: 100px;
    height: auto;
    margin-right: 0px;
  }
  #footer .footer-top .countryItem span {
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
  }
  #footer .footer-top .inidaimg {
    border-radius: 10%;
  }
  #footer .footer-top .companyFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .companyLinks {
    display: flex;
    margin-bottom: 12px;
  }
  #footer .footer-top .companyLinks div {
    margin-right: 10px;
  }
  #footer .footer-top .companyLinks div:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.7294117647);
  }
  #footer .footer-top .serviceFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .serviceLinks {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line */
    margin-bottom: 12px;
  }
  #footer .footer-top .serviceLinks div {
    white-space: nowrap;
    margin-right: 10px;
  }
  #footer .footer-top .serviceLinks div::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceLinks div:last-child::after {
    content: "";
    /* Remove the "|" after the last item */
  }
  #footer .footer-top .footer-links {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #333333;
  }
  #footer .footer-top .footer-links ul li {
    padding: 5px 0;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #4d4d4f;
    display: inline-block;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:after {
    content: "";
    display: block;
    width: 0;
    height: 1.3px;
    background: #4d4d4f;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:hover {
    color: #000000;
    font-weight: 400;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  #footer .Follows {
    display: block;
  }
  #footer .Follow {
    display: none;
  }
  #footer .followFooters {
    display: flex;
    gap: 20px;
  }
  #footer .followFooters h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
  }
  #footer .followlinks {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  #footer .copyright {
    text-align: left;
    padding-top: 9px;
    color: #fff;
    width: 294px;
    margin-left: 0px;
    font-size: 10px;
  }
  #footer .credits {
    font-size: 10px;
    padding-top: 30px;
    color: #fff;
    margin-left: -41px;
    float: left;
  }
  #footer .credits .fa {
    color: #ffdd00;
  }
  #footer .credits li {
    float: left;
    list-style: none;
    padding-left: 10px;
  }
  #footer .credits li a {
    color: #fff;
  }
}
@media (min-width: 100px) and (max-width: 320px) {
  #footer {
    background: #19213d;
    color: #333333;
    font-size: 1rem;
  }
  #footer .footer-top {
    background-color: #e1e4ed;
    padding: 30px 0px 10px 0px;
    font-size: 12px;
  }
  #footer .footer-top .footer-links p {
    display: none;
  }
  #footer .footer-top .imagefooter {
    margin-top: 0px;
    display: none;
  }
  #footer .footer-top .countryLOC {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 49px;
    margin-top: 10px;
  }
  #footer .footer-top .countryLOC a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #footer .footer-top .countryItem {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }
  #footer .footer-top .countryItem .countryCan {
    padding-left: 3px;
  }
  #footer .footer-top .countryItem .indiaimg {
    border-radius: 10%;
    padding-left: 2px;
  }
  #footer .footer-top .countryItem .indiaimg span {
    padding-left: 4px;
  }
  #footer .footer-top .countryItem img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
  }
  #footer .footer-top .countryItem span {
    font-weight: normal;
    display: flex;
    justify-content: flex-start;
  }
  #footer .footer-top .inidaimg {
    border-radius: 10%;
  }
  #footer .footer-top .companyFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .companyLinks {
    display: flex;
    margin-bottom: 12px;
  }
  #footer .footer-top .companyLinks div {
    margin-right: 10px;
  }
  #footer .footer-top .companyLinks div:not(:last-child)::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceFooter {
    display: flex;
    flex-direction: column;
  }
  #footer .footer-top .serviceLinks {
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line */
    margin-bottom: 12px;
  }
  #footer .footer-top .serviceLinks div {
    white-space: nowrap;
    margin-right: 10px;
  }
  #footer .footer-top .serviceLinks div::after {
    content: "|";
    margin-left: 10px;
    color: rgba(35, 136, 255, 0.8196078431);
  }
  #footer .footer-top .serviceLinks div:last-child::after {
    content: "";
    /* Remove the "|" after the last item */
  }
  #footer .footer-top .footer-links {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #footer .footer-top .footer-links ul i {
    padding-right: 8px;
    color: #333333;
  }
  #footer .footer-top .footer-links ul li {
    padding: 5px 0;
  }
  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }
  #footer .footer-top .footer-links ul a {
    color: #4d4d4f;
    display: inline-block;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:after {
    content: "";
    display: block;
    width: 0;
    height: 1.3px;
    background: #4d4d4f;
    transition: width 0.3s;
  }
  #footer .footer-top .footer-links ul a:hover {
    color: #000000;
    font-weight: 400;
  }
  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }
  #footer .footer-top .footer-contact p {
    line-height: 26px;
  }
  #footer .Follows {
    display: block;
  }
  #footer .Follow {
    display: none;
  }
  #footer .followFooters {
    display: flex;
    gap: 20px;
  }
  #footer .followFooters h5 {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
  }
  #footer .followlinks {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  #footer .copyright {
    text-align: left;
    padding-top: 9px;
    color: #fff;
    width: 294px;
    margin-left: 0px;
    font-size: 10px;
  }
  #footer .credits {
    font-size: 10px;
    padding-top: 30px;
    color: #fff;
    margin-left: -41px;
    float: left;
  }
  #footer .credits .fa {
    color: #ffdd00;
  }
  #footer .credits li {
    float: left;
    list-style: none;
    padding-left: 10px;
  }
  #footer .credits li a {
    color: #fff;
  }
}
/*--------------------------------------------------------------
# Responsive Please add your section names
--------------------------------------------------------------*/
@media (max-width: 991.98px) {
  #header .logo {
    font-size: 28px;
  }
  .nav-menu {
    display: none;
  }
}
@media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
  .nav-menu {
    display: none;
  }
  .ourprocess .icon-box .icon .right-arrow::after {
    content: "";
    display: block;
    width: 2px;
    height: 50px;
    transform: rotate(-45deg) translate(17px, 7px);
  }
  .cta {
    background: var(--Neutral-Neutral-900, #19213d);
  }
  .cta .cta-left h3 {
    font-size: 24px;
  }
  .cta .cta-left h3 span {
    color: var(--Primary-Blue-500, #2388ff);
  }
  .cta .cta-left p {
    font-size: 12px;
  }
  .cta .cta-left .btn-get-started {
    border-radius: 8px;
    background: var(--Primary-Blue-500, #2388ff);
    padding: 15px 30px;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  .cta .cta-left .btn-get-started:hover {
    background: #e3efff;
    color: var(--Primary-Blue-500, #2388ff);
  }
  .cta .cta-right img {
    box-shadow: 15px 15px #353e5c;
    border-radius: 12px;
  }
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }
}
@media (max-width: 640px) {
  .nav-menu {
    display: none;
  }
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
  }
  #preloader:before {
    content: "";
    position: fixed;
    top: calc(45% - 30px);
    left: calc(46% - 30px);
    border: 6px solid #4d4d4f;
    border-top-color: #e2eefd;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: animate-preloader 1s linear infinite;
  }
  .cta .cta-left .btn-get-started {
    width: 100%;
    color: #ffffff;
  }
  .cta .margin-top-sm {
    margin-top: 20px;
  }
}/*# sourceMappingURL=styles.css.map */