* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  transition: all 0.5s ease;
  font-family: "Gilroy-Regular";
}

a {
  display: inline-block;
  text-decoration: none;
}

ul {
  padding: 0;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  box-shadow: none;
}

.btn-primary:focus-visible {
  background-color: var(--primary-color) !important;
  outline: none !important;
  box-shadow: none !important;
  offset: none !important;
}

.btn-primary:hover {
  background-color: #369ac9de;
}

@font-face {
  font-family: "Impact";
  src: url("../fonts/impact.ttf");
}

@font-face {
  font-family: "Gilroy-Light";
  src: url("../fonts/Gilroy-Light.ttf");
}

@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.ttf");
}

@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy-Medium.ttf");
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy-Bold.ttf");
}

@font-face {
  font-family: "Gilroy-Heavy";
  src: url("../fonts/Gilroy-Heavy.ttf");
}

@font-face {
  font-family: "Gilroy-ExtraBold";
  src: url("../fonts/Gilroy-ExtraBold.ttf");
}

body {
  font-family: "Gilroy-Regular" !important;
}

html,
body {
  overflow-x: hidden;
}

:root {
  --primary-color: #369bc9;
  --text-color: #666666;
  --white: #fff;
  --secondary-color: #252525;
}

.title {
  font-family: "Gilroy-Bold";
  font-size: 40px;
  line-height: 50.48px;
  color: var(--text-color);
}

.title span {
  color: var(--primary-color);
  font-family: "Gilroy-Bold";
}

.subtitle {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 4px;
  color: var(--text-color);
  font-family: "Gilroy-Medium";
}

.subtitle01 {
  font-size: 20px;
  line-height: 23px;
  color: var(--text-color);
  font-family: "Gilroy-Medium";
}

.mt5 {
  margin-top: 5rem;
}

/* **************************************************************************** */
/*********************************************************** HEADER CSS START  */
/* ************************************************************************** */

.header {
  box-shadow: 0px 2px 10px 0px #0000001a;
}

.navbar-logo img {
  width: 165px;
}

.nav_menu li a.main-menu {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
  font-family: "Gilroy-Regular";
  padding: 1rem 0.5rem;
  position: relative;
  display: inline-block;
}

.nav_menu li a.main-menu.active::after {
  width: 100%;
  left: 0;
}

.nav_menu li a.main-menu:after {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  left: 50%;
  bottom: 0;
  background-color: var(--primary-color);
  transition: all ease-in-out 0.2s;
}

.nav_menu li a.main-menu:hover::after {
  width: 100%;
  left: 0;
}

.nav_menu li a.main-menu i {
  color: var(--primary-color);
}

.dropdown_content .row ul li {
  margin-bottom: 0;
  border-radius: 5px;
  position: relative;
  padding: 0.26rem 0.45rem;
}

ul.dropdown_items li:hover {
  background: #ceeeffbb;
}

.nav_menu {
  gap: 16px;
}

.navbar-static {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: var(--white);
}

ul.dropdown_content {
  display: none;
  position: absolute;
  background: #fff;
  z-index: 99;
  padding-left: 22px;
  padding-right: 40px;
  width: 25%;
  padding-top: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
}

.nav_item:hover .dropdown_content {
  display: block;
}

ul.dropdown_items li a {
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  cursor: pointer;
  color: #393939;
  font-family: "Gilroy-Regular" !important;
}

ul.dropdown_items li a:hover {
  color: #1b90c7;
}

/* ****************************************************************************** */
/* ************************* MOBILE MENU CSS ************************************ */
/* ****************************************************************************** */

.mobileMenu {
  display: none;
}

.mobileMenu #sidebarMenu {
  top: 3.5rem;
  z-index: 99;
  height: 100%;
  position: fixed;
  right: 0;
  width: 250px;
  transform: translateX(250px);
  transition: transform 250ms ease-in-out;
  background: linear-gradient(
    183deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
}
.navbar-fixed-top ~ .mobileMenu #sidebarMenu {
  margin-top: 48px;
}
.mobileMenu .sidebarMenuInner {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobileMenu .sidebarMenuInner li {
  list-style: none;
  padding: 12px 20px;
  border-bottom: 1px solid rgb(181 181 181 / 27%);
  position: relative;
}
.mobileMenu .sidebarMenuInner li ul {
  margin: 0;
  padding: 5px 0 8px;
}
.mobileMenu .sidebarMenuInner li span {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.mob_menu-dropdown > a {
  display: block;
  position: relative;
}
.mob_menu-dropdown a i,
.mob_menu-dropdown i {
  position: absolute;
  right: 0;
}
.mob_menu-dropdown i {
  right: 20px;
}
.submob_menu-dropdown i {
  right: 0;
}
.sidebarMenuInner li a {
  color: var(--white);
  cursor: pointer;
  text-decoration: none;
}
.mobileMenu .sidebarMenuInner li ul li {
  padding: 5px 7px;
  border-bottom: 0;
  color: var(--white);
}
.mobileMenu input[type="checkbox"]:checked ~ #sidebarMenu {
  transform: translateX(0);
  overflow-y: scroll;
}

.mobileMenu input[type="checkbox"] {
  transition: all 0.3s;
  box-sizing: border-box;
  display: none;
}
.mobMenu-list {
  display: none;
}
.mobileMenu .sidebarIconToggle {
  transition: all 0.3s;
  box-sizing: border-box;
  cursor: pointer;
  position: fixed;
  z-index: 99;
  height: 100%;
  width: 100%;
  top: 1.1rem;
  right: 1.5rem;
  height: 22px;
  width: 34px;
}
.mobileMenu .spinner {
  margin-bottom: 2px;
  transition: all 0.3s;
  box-sizing: border-box;
  position: absolute;
  height: 3px;
  width: 80%;
  background-color: var(--primary-color);
}
.mobileMenu .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
.mobileMenu .diagonal.part-1 {
  position: relative;
  transition: all 0.3s;
  box-sizing: border-box;
  float: left;
}
.mobileMenu .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  position: relative;
  float: left;
  margin-top: 3px;
}
.mobileMenu input[type="checkbox"]:checked ~ .sidebarIconToggle > .horizontal {
  transition: all 0.3s;
  box-sizing: border-box;
  opacity: 0;
}
.mobileMenu
  input[type="checkbox"]:checked
  ~ .sidebarIconToggle
  > .diagonal.part-1 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(135deg);
  margin-top: 8px;
}
.mobileMenu
  input[type="checkbox"]:checked
  ~ .sidebarIconToggle
  > .diagonal.part-2 {
  transition: all 0.3s;
  box-sizing: border-box;
  transform: rotate(-135deg);
  margin-top: -13px;
}

/* **************************************************************************** */
/*********************************************************** BANNER CSS START  */
/* ************************************************************************** */

.home_banner {
  margin-top: 3rem;
  padding: 5rem 0 5rem;
  background-image: url("../img/Group\ 501.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  margin-bottom: 80px;
}

.banner_left {
  max-width: 550px;
  margin: 0 auto 0 0;
}

.homeSlide h4 {
  font-family: "Gilroy-Light";
  font-size: 35px;
  line-height: 44px;
  color: var(--text-color);
  margin-bottom: 0;
}

.homeSlide h2 {
  color: var(--text-color);
  font-size: 45px;
  line-height: 53px;
  font-family: "Gilroy-Bold";
  margin-top: 0;
}

.homeSlide h2 span {
  color: var(--primary-color);
  font-family: "Gilroy-Bold";
}

.homeSlide p {
  color: var(--text-color);
  font-family: "Gilroy-Medium";
  font-size: 18px;
  line-height: 21px;
}

.homeSlide a {
  display: inline-block;
  color: var(--text-color);
  font-family: "Gilroy-Medium";
  font-size: 25px;
  line-height: 29px;
  position: relative;
}

.homeSlide a:before {
  position: absolute;
  content: "";
  bottom: -5px;
  width: 100%;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 15px;
  transform: scaleX(-1);
  transition: transform 600ms ease-in-out;
  transform-origin: 0 50%;
  right: -100%;
}

.homeSlide a:hover:before {
  transform: scaleX(0);
}

.swiper.banner_text {
  padding-bottom: 50px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #e1e1e1;
  border-radius: 50%;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
  width: 10px;
}

.home_banner .swiper-pagination {
  margin-top: 5rem;
  text-align: left;
}

.banner_image .swiper-slide img {
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.banner_image .swiper-slide.swiper-slide-active img {
  opacity: 1;
}

/* **************************************************************************** */
/********************************************************** ABOUTUS CSS START  */
/* ************************************************************************** */

.aboutUs {
  padding: 6rem 0 3rem;
}

.aboutus h1,
.aboutus h1 .title {
  font-family: "Gilroy-Heavy";
}

.abouTop {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.aboutBottom {
  position: absolute;
  right: 0;
  bottom: -5rem;
  z-index: -1;
}

.aboutImg:before {
  left: 3rem;
  top: -1rem;
  content: "";
  position: absolute;
  width: 447px;
  height: 447px;
  border-radius: 50%;
  background: linear-gradient(108.59deg, #ffffff 0%, #f5fcff 100%);
  box-shadow: 0px 0px 20px 0px #c5c5c537;
  z-index: -1;
}

.about_content p {
  font-size: 18px;
  line-height: 24px;
  color: var(--text-color);
  font-family: Gilroy-Medium;
}

.read-more1 {
  font-size: 18px;
  padding: 0.7rem 1.4rem;
  display: inline-block;
  color: var(--text-color);
  font-family: "Gilroy-Medium";
  position: relative;
  border-radius: 0.4rem;
  overflow: hidden;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: color 800ms ease-in-out;
}

.read-more1:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.read-more1:before {
  position: absolute;
  content: "";
  left: -100%;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: var(--primary-color);
  transition: left 600ms ease-in-out;
  z-index: -1;
}

.read-more1:hover:before {
  left: 0%;
}

.read-more1:hover {
  color: white;
}

/* **************************************************************************** */
/***************************************************** WORK PROCESS CSS START  */
/* ************************************************************************** */

.workProcess {
  padding: 4rem 0;
}

.workProcess-top-img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.technologiesTop {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.workProcessSec {
  margin-top: 66px;
}

.processCardWrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.workProcessCard_img {
  width: 225px;
  height: 225px;
  background: linear-gradient(158.48deg, #ffffff 14.14%, #f1fdff 119.21%);
  box-shadow: 0px 0px 20px 0px #aad4dd71;
  border-radius: 50%;
}

.workProcessCard_content {
  margin-top: 1rem;
}

.workProcessCard_content h4 {
  font-size: 22px;
  line-height: 22px;
  color: var(--text-color);
  font-family: Gilroy-ExtraBold;
  text-align: center;
}

.workProcessCard_content h4 span {
  color: var(--primary-color);
  font-family: Gilroy-ExtraBold;
}

.workProcessCard_content p {
  font-family: Gilroy-Medium;
  font-size: 12px;
  line-height: 14px;
  color: var(--text-color);

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
  transition: all 0.5s ease;
}

.mt58 {
  top: 58%;
}

.bgBluePattern {
  position: absolute;
  right: 0;
  top: 30%;
  z-index: -1;
}

/* **************************************************************************** */
/******************************************************* TECHNOLOGY CSS START  */
/* ************************************************************************** */

.technologies {
  padding: 5rem 0;
}

.technologies p {
  font-family: Gilroy-Medium;
  font-size: 20px;
  line-height: 23px;
  color: var(--text-color);
}

.technologies_bubble_wrapper {
  margin-top: 55px;
}

.technologies_bubble_wrapper_inner {
  gap: 66px;
}

.technologies_bubble_wrapper_inner02 {
  padding-left: 12%;
}

.technologies_bubble {
  width: 250px !important;
  height: 250px !important;
  padding: 2.5rem 1rem 1.5rem 1rem;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0px 0px 20px 0px #c5c5c537;
  border: 1px solid transparent;
  background: linear-gradient(108.59deg, #ffffff 0%, #f5fcff 100%);
  transition: all 0.5s ease;
  cursor: pointer;
}

.technologies_bubble:hover {
  box-shadow: none;
  border-color: #369bc9;
}

.technologies_bubble_box h5 {
  font-size: 18px;
  line-height: 24px;
  margin: 7px 0;
  text-align: center;
  color: var(--text-color);
  font-family: "Gilroy-Bold";
}

.technologies_bubble_box h5 span {
  color: var(--primary-color);
  font-family: "Gilroy-Bold";
}

/* **************************************************************************** */
/********************************************************** HISTORY CSS START  */
/* ************************************************************************** */

.history {
  padding: 4rem 0;
}

.historyTop {
  top: -10%;
  left: 0;
  z-index: -1;
}

.historyBubbleWrapper {
  width: 369px;
  height: 369px;
  border-radius: 50%;
  background: linear-gradient(158.48deg, #f1fdff 14.14%, #ffffff 119.21%);
  box-shadow: 0px 0px 20px 0px #aad4dd66;
}

.historyBubbleInner h1 {
  font-family: Impact;
  font-size: 120px;
  line-height: 133px;
  text-align: left;
  color: var(--primary-color);
}

.historyBubbleInner p {
  font-family: "Gilroy-Medium";
  font-size: 22px;
  line-height: 26px;
  color: var(--text-color);
}

.historyBubbleInnerXs {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: linear-gradient(158.48deg, #f1fdff 14.14%, #ffffff 119.21%);
  box-shadow: 0px 0px 20px 0px #aad4dd66;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.historyBubbleInnerXs h1 {
  font-family: Impact;
  font-size: 45px;
  font-weight: 400;
  line-height: 54.89px;
  color: var(--primary-color);
}

.historyBubbleInnerXs p {
  font-family: "Gilroy-Medium";
  font-size: 20px;
  line-height: 24.5px;
  color: var(--text-color);
}

/* **************************************************************************** */
/************************************************** RECENT PROJECTS CSS START  */
/* ************************************************************************** */

.recent-projects {
  background-image: url("../img/recent-projects-bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 700px;
}

.banner_image01 {
  height: 700px;
}

.banner_image01 .swiper-slide {
  border-radius: 2rem 0 0 2rem;
  overflow: hidden;
}

.banner_text01 .homeSlide a:before {
  background-color: var(--secondary-color);
}

.recent-projects .banner_left {
  /* max-width: 100%;
  margin: 0 auto;
  padding-left: 16%; */
  max-width: 80%;
  margin: 0 auto;
  padding-left: 11%;
}

.banner_right .banner_image01 .swiper-wrapper .swiper-slide img {
  height: 100%;
  object-fit: cover !important;
}

/* .banner_right .banner_image01 */

.banner_text01 {
  padding: 15rem 0;
}

.homeSlide .subtitle,
.homeSlide .title {
  color: var(--secondary-color);
}

.banner_text01 .homeSlide p,
.banner_text01 .homeSlide a {
  color: var(--secondary-color);
}

.banner_text01 .swiperProgessbar {
  top: 90%;
  height: 6px;
  border-radius: 10px;
  overflow: hidden;
  background: white;
}

.banner_text01
  .swiperProgessbar.swiper-pagination-progressbar
  .swiper-pagination-progressbar-fill {
  background-color: var(--secondary-color);
}

.banner_text01 .swiper-button-prev:after,
.banner_text01 .swiper-button-next:after {
  content: "";
}

.navigationBtnWrapper {
  position: absolute;
  width: 100%;
  bottom: 1.5rem;
}

.swiperNextBtn,
.swiperPrevBtn {
  color: #252525;
  width: max-content;

  font-size: 18px;
  letter-spacing: 4px;
  text-align: left;
  font-family: Gilroy-Light;
}

.swiperNextBtn i,
.swiperPrevBtn i {
  font-size: 14px;
  margin-right: 0.5rem;
}

.banner_text01 .swiper-wrapper {
  padding-right: 5rem;
}

/* **************************************************************************** */
/************************************************** OUR CLIENTS CSS START  *****/
/* ************************************************************************** */

.our_clients {
  padding: 11rem 0 4rem;
}

.our_clients .title {
  margin: 1rem 0;
}

.clientsSaysCard {
  background-image: url("../img/client-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 4rem 7rem;
  border-radius: 3rem;
}

.clientsSaysCard_img {
  width: 60%;
}

.clientsSaysCard_content h2 {
  font-size: 40px;
  line-height: 49px;
  color: var(--white);
  font-family: Gilroy-Bold;
}

.clientsSaysCard_content p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 400;
  color: var(--white);
  font-family: Gilroy-Medium;
}
.clientsSaysCard_content {
  padding-right: 2rem;
}
.clientTag {
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.clientsTop {
  position: absolute;
  left: 0;
  top: 8rem;
  z-index: -1;
}

.clientsBottom {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.clientsTopDot {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.clientsSaysCard_img {
  margin-right: 3rem;
  background: #ffffffba;
  position: relative;
  max-width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clientsSaysCard_img:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #ffffffba;
  left: 0;
  top: 0;
  transform: rotate(45deg);
  z-index: -1;
}

.swiper.clientSays.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  padding: 2rem 0 1rem 3rem;
}

/* **************************************************************************** */
/************************************************** FACTS & FIGURE CSS START  **/
/* ************************************************************************** */

.facts-figure {
  padding: 4rem 0;
}

.factBottomBgDot {
  right: 11rem;
  bottom: -3rem;
  z-index: -1;
}

.facts-figure .title {
  margin: 1rem 0;
}

.factBubble-lg {
  padding: 1.5rem 1.5rem;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  padding: 1.5rem 1.5rem;
  background: linear-gradient(139.78deg, #f1fdff 21.07%, #b9e6fb 205.54%);
  position: relative;
}

.factBubble-lg:after {
  position: absolute;
  content: "";
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(139.78deg, #ffffff 21.07%, #6347d0 205.54%);
  filter: blur(24px);
  -webkit-filter: blur(24px);
  z-index: 0;
  bottom: 4rem;
  right: 3rem;
}

.factBubble-sm {
  padding: 1rem;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  background: linear-gradient(139.78deg, #f1fdff 21.07%, #b9e6fb 205.54%);
  position: relative;
}

.bgCsm {
  background: #b9e6fb;
}

.factBubble_inner h5 {
  margin: 1rem 0;
  font-family: Gilroy-Bold;
  font-size: 28px;
  font-weight: 400;
  line-height: 34.66px;
  color: #0c0c0c;
}

.factBubble_inner h5 {
  margin: 1rem 0;
  font-size: 28px;
  font-weight: 400;
  line-height: 34px;
  text-align: center;
  color: #0c0c0c;
  font-family: "Gilroy-Bold";
}

.factBubble_inner p {
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #0c0c0c;
  font-family: "Gilroy-Bold";
}

.factBubbleInner p {
  font-family: Gilroy-Bold;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  color: #0c0c0c;
}

.factBubbleInner h6 {
  margin: 0.4rem 0 0.2rem;
  font-family: Gilroy-Bold;
  font-size: 28px;
  font-weight: 400;
  line-height: 34.66px;
}

/* **************************************************************************** */
/************************************************** COMPANIES CSS START  *******/
/* ************************************************************************** */

.companies {
  padding: 4rem 0;
}

.companiesTopBgDot {
  left: 0;
  top: 0;
  z-index: -1;
}

.companiesInner01 {
  padding-top: 50%;
}

.companiesSwiper .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}

.companiesInnerBox {
  background: linear-gradient(180deg, #f9fcfd 0%, #ffffff 100%);
  box-shadow: 0px 0px 20px 0px #c5c5c571;
  width: 196px;
  height: 196px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  margin: 0 auto 2rem;
}

/* **************************************************************************** */
/************************************************** FOOTER CSS START  **********/
/* ************************************************************************** */

.footer {
  margin-top: 8rem;
  padding: 8rem 0 4rem;
  border-radius: 7rem 7rem 0 0;
  background: linear-gradient(180.8deg, #004362 6.84%, #0089c8 99.76%);
}

.footer-top {
  top: -12rem;
  padding: 2rem 3rem;
  box-shadow: 0px 0px 20px 0px #c5c5c571;
  background-color: white;
  border-radius: 1.4rem;
  position: absolute;
  width: 100%;
}

.footer-top h3 {
  font-family: Gilroy-Bold;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0.0075em;
  text-align: left;
  color: var(--text-color);
  margin: 0;
}

.footer-top h3 span {
  color: var(--primary-color);
  font-family: Gilroy-Bold;
}

.btn.btn_enquiry {
  background-color: #369bc9;
  color: white;
  font-size: 22px;
  line-height: 16px;
  text-align: center;
  padding: 21px 59px;
  border-radius: 13px;
  transition: all 0.4s ease;
  text-wrap: nowrap;
}

.btn.btn_enquiry:hover {
  background-color: #2a7b9c;
}

.footerAbout li p {
  font-size: 14px;
  line-height: 16px;
  text-align: left;
  color: var(--white);
  font-family: Gilroy-Medium;
}

li.footer_head {
  font-family: Gilroy-Bold;
  font-size: 20px;
  line-height: 24.76px;
  text-align: left;
  color: white;
  margin-bottom: 18px;
}

.footer-items li a {
  font-family: Gilroy-Medium;
  font-size: 14px;
  line-height: 25px;
  text-align: left;
  color: white;
  position: relative;
}

li.infoTxt {
  font-family: Gilroy-Medium;
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  color: white;
}

.footerBgPattern {
  position: absolute;
  right: 0;
  z-index: -1;
}

.footerAbout_badge h5 {
  font-size: 20px;
  line-height: 30px;
  text-align: left;
  color: var(--white);
  font-family: Gilroy-Medium;
}

.footer_social_media i {
  font-size: 20px;
  background: var(--white);
  border-radius: 50%;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
}
.footer_social_media h5 {
  font-size: 25px;
  font-weight: 700;
  color: white;
  text-align: end;
}

.footer-bottom {
  padding: 2rem 0;
  background-color: #004362;
}

.footer-bottom p {
  font-family: Gilroy-Medium;
  font-size: 14px;
  line-height: 16px;
  color: var(--white);
  margin: 0;
}

.modal-body .title {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

ul.services_points li {
  font-family: Gilroy-Medium;
  font-size: 20px;
  line-height: 26px;
  color: var(--text-color);
  margin-bottom: 0.3rem;
  list-style-type: disc;
}

.more_content {
  display: none;
}

.aboutus {
  padding: 7rem 0;
  background: #00557c;
}

.clientsSaysCard .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #c86237;
}

.contact-details {
  padding: 140px 0 30px;
  position: relative;
}

.contact-detail-form label {
  font-family: "Gilroy-Light";
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0.32rem;
  line-height: 18px;
  color: #666;
}

.contact-detail-form input {
  height: 45px;
  border-radius: 10px;
  color: #9b9b9b;
  font-family: "Gilroy-Medium";
}

.contact-detail-form textarea {
  height: 140px;
  border-color: #979797;
  border-radius: 10px;
  resize: none;
}

.location-section {
  padding: 3rem 0;
}

.address-box-img img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.address-box-content h5 {
  color: var(--primary-color);
  font-family: "Gilroy-ExtraBold";
}

/* ABOUT US PAGE CSS START FROM HERE  */

.main-sec {
  padding: 3rem 0;
}

.title_desc {
  margin-top: 0.6rem;
  font-size: 20px;
  line-height: 29px;
}

.careersSec1 {
  padding: 65px 0;
  background: #1e2222;
}

.form-control:focus {
  border-color: #369bc9;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(54 155 201 / 25%);
}

.careers {
  padding-top: 5rem;
}

.careersBanner {
  height: 400px;
  width: 100%;
  object-fit: contain;
}

.piPattern {
  z-index: -1;
  bottom: 0;
  left: 0;
}

/* SERVICES PAGE CSS START FROM HERE  */

.services {
  padding: 5rem 0;
}

.services_card {
  padding: 2rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.services .col {
  margin-bottom: 1rem;
}

.services_card:before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 1.4rem;
  border-radius: 0 0 10px 0;
  background: linear-gradient(180.8deg, #004362 6.84%, #0089c8 99.76%);
  z-index: -1;
  opacity: 0;
  right: -3rem;
  bottom: -2.4rem;

  transition: all 0.7s ease;
}

.services_card:hover::before {
  opacity: 1;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.servicesIc {
  height: 64px;
  width: 64px;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid #080c0e;
}

.services_content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1rem 0;
  color: var(--primary-color);
  text-transform: capitalize;
}

.services_card:hover .servicesIc {
  border-color: #fff;
}

.services_card:hover .servicesIc img {
  filter: invert(1);
  -webkit-filter: invert(1);
}

.services_card:hover h3,
.services_card:hover p,
.services_card:hover ul li {
  color: #fff;
}

.services_card ul {
  padding-left: 1rem;
}

.services_card ul li {
  list-style: disc;
}

/* WHAT WE DO PAGE CSS START FROM HERE  */

.services-main {
  padding: 5rem 0;
  background-color: #f3fbff;
}

.wwd_card {
  padding: 1.2rem;
  border-radius: 0.9rem;
  background: #fff;
  height: 100%;
}

.services-main .col {
  margin-bottom: 1rem;
}

.wwd_img img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.9rem;
  transition: all 0.5s;
}

.wwd_img {
  width: 40%;
}

.wwd_content {
  width: 55%;
}

.wwd_content h3 {
  font-size: 24px;
  color: var(--primary-color);
  font-family: "Gilroy-Bold";
}

.wwd_content p {
  line-height: 20px;
  color: #717275;
}

.wwd_content ul {
  padding-left: 17px;
}

.wwd_content ul li {
  font-size: 14px;
  list-style: disc;
}

.whyChooseUs {
  padding: 5rem 0;
}

.whyChooseUs_card {
  padding: 2rem 2rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(100, 100, 111, 0.2);
  background: #fff;
  height: 100%;
  transition: all 0.5s ease;
}

.whyChooseUs_card:hover {
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-color: transparent;
}

.whyChooseUs_card h4 {
  font-size: 24px;
  color: var(--primary-color);
  font-family: "Gilroy-Bold";
}

.ppolicy_content {
  margin-bottom: 1.5rem;
}

.ppolicy_content h1 {
  font-size: 28px;
  color: var(--primary-color);
  font-family: "Gilroy-Bold";
}

.ppolicy_content ul li {
  font-size: 20px;
  list-style: disc;
}

.ppolicy_content ul {
  padding-left: 2rem;
}

/* ********************************************************************************** */
/* ******************************RESPONSIVE CSS START FROM HERE ********************* */
/* ********************************************************************************** */

@media (max-width: 1664px) {
  .banner_image01 .swiper-wrapper img {
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1200px) {
  .technologies_bubble_wrapper_inner02 {
    padding-left: 11%;
  }
  .technologies_bubble_wrapper_inner {
    gap: 30px;
  }

  .technologies_bubble {
    width: calc(100% - 70%) !important;
  }

  .factBubble-lg {
    width: 320px;
    height: 320px;
  }

  .factBubble-sm {
    width: 176px;
    height: 176px;
  }

  .workProcessCard_img {
    width: 165px;
    height: 165px;
    padding: 1.5rem;
  }

  .banner_image01 .swiper-slide {
    border-radius: 2rem 0 0 2rem;
  }
}

@media (max-width: 991px) {
  .header {
    padding: 1rem 0;
  }

  .mobileMenu {
    display: block;
  }

  .navbar-logo img {
    width: 100px;
  }

  .mt58 {
    top: 0;
  }

  .home_banner .row {
    flex-direction: column-reverse;
  }

  .banner_left {
    max-width: 100%;
  }

  .home_banner .swiper-pagination {
    margin-top: 2rem;
  }

  .homeSlide,
  .about_content {
    margin-top: 2rem;
  }

  .technologies_bubble_wrapper_inner02 {
    margin-top: 2rem;
    padding-left: 0;
  }

  .technologies_bubble_wrapper_inner {
    gap: 13px;
  }

  .technologies_bubble {
    width: 220px !important;
    height: 220px !important;
  }

  .technologies_bubble_box img {
    width: 44px;
  }

  .technologies_bubble_box h5 {
    font-size: 18px;
    line-height: 24px;
    margin: 6px 0;
  }

  .recent-projects .row {
    flex-direction: column-reverse;
  }

  .bgPinkPattern {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }

  .processCardWrapper {
    margin-top: 3rem;
    position: unset;
    transform: none;
    width: 100%;
  }

  .workProcessCard {
    margin-bottom: 2rem;
  }

  .workProcessCard_content {
    margin-top: 1rem;
  }

  .recent-projects {
    height: auto;
  }

  .banner_image01 {
    height: auto;
  }

  .banner_text01 {
    padding: 2rem 0 10rem;
  }

  .banner_text01 .swiperProgessbar {
    top: 83%;
  }

  .recent-projects .banner_left {
    margin: 0 3rem 0px 2rem;
    padding-left: 2rem;
  }

  .clientsSaysCard {
    padding: 4rem 3rem;
  }

  .clientsSaysCard_img {
    width: 100%;
  }

  .clientTag {
    width: 160px;
  }

  .clientsSaysCard_content h2,
  .footer-top h3 {
    font-size: 28px;
    line-height: 39px;
  }

  .clientsSaysCard_content p {
    font-size: 16px;
    line-height: 24px;
  }

  .banner_image01 .swiper-slide {
    border-radius: 0 0 4rem 4rem;
  }

  .footer-top {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 767px) and (max-width: 991px) {
  .footer_social_media i {
    font-size: 15px;
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 600px) {
  .title {
    font-size: 30px;
    line-height: 38px;
  }

  .subtitle01 {
    font-size: 16px;
    line-height: 22px;
  }

  .title_desc {
    font-size: 16px;
    line-height: 25px;
  }

  .navbar_header {
    position: absolute;
    left: 0;
    top: 113px;
    padding: 2rem 2rem;
    background-color: white;
    width: 60%;
  }

  .homeSlide a {
    font-size: 20px;
  }

  .homeSlide a:before {
    height: 4px;
  }

  .home_banner {
    margin-top: 0;
  }

  .homeSlide {
    margin-top: 2rem;
  }

  .homeSlide h4 {
    font-size: 18px;
    line-height: 26px;
  }

  .homeSlide h2 {
    font-size: 26px;
    line-height: 36px;
  }

  .about_content {
    margin-top: 1.5rem;
  }

  .workProcessCard_content {
    text-align: center;
  }

  .technologies_bubble {
    width: 300px !important;
    height: 300px !important;
    position: relative;
  }

  .technologies_bubble_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
  }

  .technologies_bubble_wrapper_inner {
    gap: 20px;
  }

  .technologies_bubble_box h5 {
    font-size: 16px;
    line-height: 20px;
    margin: 6px 0;
  }

  .aboutImg:before {
    left: 1rem;
    top: -3rem;
    width: 347px;
    height: 347px;
  }

  .workProcessCard_content h4 {
    font-size: 18px;
  }

  .recent-projects .row {
    flex-direction: column-reverse;
  }

  .recent-projects,
  .banner_image01 {
    height: auto;
  }

  .banner_text01 {
    padding: 0rem 0 7rem;
  }

  .banner_text01 .swiperProgessbar {
    top: 82%;
  }

  .swiper.clientSays.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding: 2rem 0 0rem 0rem;
  }

  .clientsSaysCard_img {
    margin: 1rem 0 3rem 3rem;
  }

  .clientsSaysCard {
    padding: 4rem 1rem;
  }

  .ps0 {
    padding-right: 0;
    background-color: #f5c64f;
  }

  .recent-projects .banner_left {
    padding-left: 0;
  }
  .recent-projects .banner_left {
    margin: 0 1rem 0px 1rem;
  }

  .ps-md-5.border-start.border-light.mt-md-0.mt-4 {
    border: none !important;
  }

  .form-group {
    margin-bottom: 4px;
  }

  .footer {
    margin-top: 8rem;
    padding: 12rem 0 4rem;
    border-radius: 2rem 2rem 0 0;
  }

  .footer-top {
    top: -17rem;
  }

  .footer_social_media h5 {
    text-align: start;
    margin-top: 1rem;
  }

  .wwd_card .wwd_img,
  .wwd_card .wwd_content {
    width: 100%;
  }

  .wwd_card .wwd_img img {
    aspect-ratio: 0/1;
    margin-bottom: 0.7rem;
  }

  .careersBanner {
    height: 200px !important;
  }

  .title_desc {
    font-size: 16px;
  }

  .banner_right .banner_image01 .swiper-wrapper .swiper-slide img {
    height: 400px !important;
  }

  .clientsTop,
  .clientsTopDot,
  .clientsBottom,
  .companiesTopBgDot,
  .historyTop,
  .workProcess-top-img,
  .aboutBottom,
  .technologiesTop {
    width: 45%;
  }

  .factBottomBgDot {
    width: 45%;
    right: 0;
  }

  .modal-body .title {
    font-size: 20px;
    line-height: 25px;
  }

  .ppolicy_content h1 {
    font-size: 24px;
  }

  .ppolicy_content ul li {
    font-size: 17px;
  }

  .clientsSaysCard_content h2,
  .footer-top h3 {
    font-size: 22px;
    line-height: 29px;
  }

  .btn.btn_enquiry {
    font-size: 18px;
    line-height: 16px;
    text-align: center;
    padding: 14px 30px;
    border-radius: 10px;
  }

  .footer_social_media h5 {
    font-size: 20px;
  }

  .footer_social_media i {
    font-size: 15px;
    width: 30px;
    height: 30px;
  }

  .whyChooseUs_card h4 {
    font-size: 20px;
  }
  .location-section {
    padding: 3rem 0 0;
  }

  .contact-details {
    padding: 50px 0 30px;
  }
  .address-box {
    margin-bottom: 1rem;
  }
}

/* CUSTOM CSS ANIMATION  */

.ripple {
  animation: ripple 2s linear infinite alternate;
}
.updown {
  animation: updown 0.8s infinite alternate;
}
.swing {
  animation: swing 0.9s forwards infinite alternate;
}
.rotate {
  animation: rotate 6s linear infinite;
}
@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}
@keyframes courseHover {
  100% {
    left: 125%;
  }
}
@keyframes updown {
  0% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes swing {
  0% {
    -webkit-transform: rotate(6deg);
    -moz-transform: rotate(6deg);
    -ms-transform: rotate(6deg);
    -o-transform: rotate(6deg);
    transform: rotate(6deg);
  }
  100% {
    -webkit-transform: rotate(-6deg);
    -moz-transform: rotate(-6deg);
    -ms-transform: rotate(-6deg);
    -o-transform: rotate(-6deg);
    transform: rotate(-6deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

#toast {
  visibility: hidden;
  min-width: 250px;
  margin: 0 auto;
  background-color: #4caf50; /* Green */
  color: white;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 17px;
}

#toast.show {
  visibility: visible;
  animation: fadeInOut 3s;
}

@keyframes fadeInOut {
  0% {
    bottom: 0;
    opacity: 0;
  }
  30% {
    bottom: 30px;
    opacity: 1;
  }
  100% {
    bottom: 0;
    opacity: 0;
  }
}

#apiAndMicroservices .modal-dialog .modal-body ul li {
  list-style: disc;
  margin-bottom: 13px;
}
button.clearFile1 {
  font-size: 14px;
  border: 1px solid;
  border-radius: 3px;
  padding: 3px 5px;
  background: transparent;
}


#waitBtn1,
#waitBtn2,
#waitBtn3,
#waitBtn4 {
  display: none;
}
#wspan {
  margin-top: 6px;
  margin-left: 15px;
  float: right;
}
#spne {
  width: 23px;
  height: 23px;
  margin-top: 7px;
}
.toast {
  visibility: hidden;
  min-width: 250px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 16px;
  position: fixed;
  z-index: 1000;
  right: 0%;
  bottom: 30px;
  font-size: 17px;
  transition: visibility 0.5s, opacity 0.5s ease;
  opacity: 0;
}

.toast.show {
  visibility: visible;
  opacity: 1;
  animation: fadeInOut 4s;
}

p.error {
  color: red;
  font-size: 13px;
  font-style: italic;
  font-weight: 600 !important;
}

.footer-items li a:after {
  width: 20px;
  height: 2px;
  background: #eb8b2a;
  z-index: 999;
  position: absolute;
  content: "";
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.5s ease;
}

.footer-items li a:hover {
  padding-left: 25px;
  color: #eb8b2a;
}

.footer-items li a:hover:after {
  left: 0;
  opacity: 1;
}
.footer-items li a{
position:relative:
}

@keyframes fadeInOut {
  0% {
    bottom: 0;
    opacity: 0;
  }
  30% {
    bottom: 30px;
    opacity: 1;
  }
  100% {
    bottom: 0;
    opacity: 0;
  }
}
