@font-face {
  font-family: "montserrat_regular";
  src: url("../../fonts/Montserrat-Regular.ttf");
}
@font-face {
  font-family: "montserrat_medium";
  src: url("../../fonts/Montserrat-Medium.ttf");
}
@font-face {
  font-family: "montserrat_bold";
  src: url("../../fonts/Montserrat-Bold.ttf");
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

:root {
  --banner-color: #fff;
  --about-bg: #f6f8f9;
  --content-text-color: #4a4d60;
  --faq-color: #2a2f53;
  --faq-bg: #f6f8f9;
  --main-services-bg: #fafbfc;
  --company-milestones-bg: #f0f4f6;
  --portfolio-bg: #f5f7f8;
  --core-team-bg: #e6edf2;
  --contact-us-left-bg: #e6edf2;
  --contact-us-right-bg: #2a2f53;
  --footer-bg: #2a2f53;
  --label-color: #2a2f53;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #fff #f0f0f0;
}

html::-webkit-scrollbar-track {
  background: #f0f0f0;
}

html::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

.header {
  position: fixed;
  width: 100%;
  height: 70px;
  background-color: transparent;
  top: 0;
  transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  z-index: 1000;
}

.header.scrolled {
  background-color: white;
}
.header.scrolled .navbar a {
  color: #000;
  font-family: "montserrat_medium";
}
.logo_color {
  display: none;
}
.header.scrolled .logo_color {
  display: block;
}
.header.scrolled .logo_white {
  display: none;
}
.header.scrolled .navbar a::after {
  background: #000;
}
.header.scrolled .bar {
  background: #000;
}

.header .inner_header {
  width: 1060px;
  /* width: 1168px; */
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo_text,
.logo_text_after {
  width: 227px;
  height: 38px;
  text-decoration: none;
  overflow: hidden;
}
.logo_text img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: fill;
  -moz-object-fit: fill;
  -o-object-fit: fill;
  object-fit: fill;
}
.logo_container {
  width: 227px;
  height: 38px;
}
.logo_container img {
  width: 100%;
  height: 100%;
  -webkit-object-fit: fill;
  -moz-object-fit: fill;
  -o-object-fit: fill;
  object-fit: fill;
}

.logo_color img {
  /* width: 227px;
  height: 38px;
  -webkit-object-fit: fill;
  -moz-object-fit: fill;
  -o-object-fit: fill;
  object-fit: fill; */
}
.navbar {
  display: flex;
  gap: 20px;
}

.navbar a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  font-family: "montserrat_regular";
  position: relative;
  /* padding-bottom: 5px; */

  transition: font-family 0.5s ease;
}
.navbar a::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: -webkit-translateX(-50%);
  transform: -ms-translateX(-50%);
  transform: translateX(-50%);
  width: 0px;
  height: 0px;
  height: 1.5px;
  background: #fff;
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 18px;
  height: 3px;
}
/* latest */

.navbar a.scrolled {
  color: #2a2f53;
  font-family: "montserrat_medium";
}

.navbar a.scrolled::after {
  background: #2a2f53;
}

.header.scrolled,
.inner_header.scrolled {
  color: #2a2f53;
}
.navbar a.scrolled:hover {
  /* font-family: "montserrat_bold"; */
}

/* latest */
.navbar a:hover {
  /* font-family: "montserrat_medium"; */
}
/* .navbar .active {
  font-family: "montserrat_bold";
  margin-top: -1px;
} */
.link.active {
  font-family: "montserrat_bold";
}

/* hamburger */

.hamburger {
  display: none;

  padding: 10px;
}

.bar {
  height: 3px;
  width: 35px;
  background-color: #fff;
  margin: 5px 0;
}

.offcanvas {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /* background-color: #fff; */
  background: rgba(255, 255, 255, 0.6);
  z-index: 10000;
  transition: left 0.4s ease-in-out;
  justify-content: center;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
.offcanvas_content {
  width: 90%;
  height: 100%;
  background: #fff;
}
.empty_offcanvas {
  width: 10%;
  height: 100%;
  /* background: rgba(255, 255, 255, 0.6); */
}

.offcanvas.open {
  left: 0%;
}
.inner_offcanvas {
  width: 90%;
  padding-top: 20px;
  padding-top: 120px;
  padding-left: 40px;
}
.offcanvas_logo {
  width: 240px;
  height: 40px;
}
.offcanvas_logo img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.offcanvas_social_icons {
  position: absolute;
  bottom: 0;
  left: 0%;
  width: 100%;
  padding: 35px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: -10%;
}
.offcanvas_social_icons p {
  color: #465d66;
  font-size: 15px;
  font-family: "montserrat_medium";
  margin: 0;
  padding-top: 7px;
}
.offcanvas_social_icons div {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-bottom: 10px;
}
.social_icon_offcanvas {
  width: 35px;
  height: 35px;
  border-radius: 5px;
}
.social_icon_offcanvas img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.inner_offcanvas .offcanvas_menu {
  display: flex;
  align-items: center;
  gap: 12px;

  /* padding-left: 40px; */

  height: 50px;
  border-radius: 4px;
  padding-left: 10px;
  background: transparent !important;
  box-shadow: none !important;
}
/* .inner_offcanvas .offcanvas_menu:hover {
  background: #ecf9fd;
} */
.inner_offcanvas .offcanvas_menu img {
  width: 25px;
  height: 25px;
}

.cross_div {
  width: 90%;
  background-color: #004a75;
  height: 105px;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-size: 32px;
  font-weight: bolder;
  padding-left: 40px;
  padding-right: 20px;
  border-bottom: 7px solid #55ccfe;
}
.cross_div small {
  font-size: 16px;
}
.cross {
  padding-right: 18px;
}
.offcanvas .link {
  display: block;
  color: #024f9e;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  font-family: "montserrat_medium";
  margin: 0;
  padding-top: 8px;
  background: transparent;
  box-shadow: none !important;
}
.offcanvas a.link:active,
.offcanvas a.link:focus {
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.inner_offcanvas a {
  padding-bottom: 4px;
}

.offcanvas_contact {
  position: absolute;
  bottom: 10px;
  color: #fff;
  left: 27%;
}

/* header end  */
/* old version */
/* .banner_container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      180deg,
      rgba(40, 61, 97, 0.8) 0%,
      rgba(127, 131, 137, 0.2) 100%
    ),
    url("../images/banner.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  animation: zoomInOut 15s infinite ease-in-out;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.banner_content {
  width: 1060px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  color: var(--banner-color);
  padding-top: 80px;
}
.banner_content .banner_title {
  font-size: 20px;
  font-family: "montserrat_medium";
  margin: 0;
}
.banner_content .banner_header {
  font-size: 80px;
  font-family: "montserrat_bold";
  margin: 0;
  line-height: 80px;
  overflow: hidden;
  padding-top: 12px;
  display: block !important;
  padding-bottom: 20px;
}
.banner_content .banner_sub_header {
  font-size: 25px;
  font-family: "montserrat_medium";
  margin-bottom: 45px;
  line-height: 42px;
}
.banner_content a {
  text-decoration: none;
  color: #252739;
  background-color: #ffffff;
  height: 53px;
  padding: 0px 38px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 29px;
  cursor: pointer;
  font-family: "montserrat_medium";
  transition: background 0.5s ease;
}

.banner_content a:hover {
  background: #2563a3;
  outline: 3px solid rgba(255, 255, 255, 0.4);
  color: #fff;
} */
/* new version 2 */
/* .banner_container {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner_container {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(29, 60, 78, 1) 0%,
    rgba(0, 71, 111, 1) 100%
  );
}

@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.banner_content {
  width: 1168px;
  display: flex;
  justify-content: space-between;
  height: 100%;
  color: var(--banner-color);
  padding-top: 150px;
  padding-bottom: 160px;
  margin-left: 108px;
}
.banner_content .banner_left {
  padding-top: 10px;
  width: 48%;
}
.banner_content .banner_right {
  width: 50%;
  overflow: hidden;
}
.banner_content .banner_right img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.banner_left .banner_title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 4.8px;
  font-family: "montserrat_bold";
  padding-bottom: 5px;
}
.banner_left .banner_header {
  margin: 0;
  font-size: 55px;
  font-family: "montserrat_bold";
  padding-bottom: 22px;
}
.banner_left .banner_sub_header {
  margin: 0;
  font-size: 20px;
  font-family: "montserrat_medium";
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 50px;
}
.banner_left a {
  text-decoration: none;
  color: #092d42;
  background-color: #ffffff;
  height: 53px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  outline: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 29px;
  cursor: pointer;
  font-family: "montserrat_bold";
  transition: background 0.5s ease;
  max-width: 200px;
  margin-left: 3px;
  margin-bottom: 3px;
}

.banner_left a:hover {
  background: #2563a3;
  outline: 3px solid rgba(255, 255, 255, 0.4);
  color: #fff;
} */
/* version 3 */
.banner_container {
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
      180deg,
      rgba(0, 86, 134, 1) 0%,
      rgba(0, 43, 67, 0.93) 100%
    ),
    url("../images/banner_bg_updated.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 150px;
}

.banner_content {
  width: 1180px;
  display: flex;
  justify-content: space-between;
  height: 100%;
  color: var(--banner-color);
  padding-top: 160px;
  margin-left: 110px;
}
.banner_content .banner_left {
  width: 52%;
  /* padding-top: 20px; */
}
.banner_content .banner_right {
  width: 44%;
  height: 360px;
  overflow: hidden;
}

.banner_content .banner_right img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.banner_left .banner_title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 4.8px;
  font-family: "montserrat_bold";
  padding-bottom: 5px;
}
.banner_left .banner_header {
  margin: 0;
  font-size: 55px;
  font-family: "montserrat_bold";
  padding-bottom: 22px;
}
.banner_left .banner_sub_header {
  margin: 0;
  font-size: 20px;
  font-family: "montserrat_medium";
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 30px;
  line-height: 31px;
}
.banner_left .banner_button {
  width: 100%;
  padding: 20px 0px;
}
.banner_left a {
  text-decoration: none;
  color: #fff;
  background: transparent linear-gradient(90deg, #49aafd 0%, #5ce0e6 100%) 0% 0%
    no-repeat padding-box;
  height: 53px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  outline: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 29px;
  cursor: pointer;
  font-family: "montserrat_bold";
  max-width: 200px;
  margin-left: 3px;
  margin-bottom: 3px;
  transition: background 0.5s ease;
}

.banner_left a:hover {
  /* background: #2563a3; */
  /* background: transparent linear-gradient(90deg, #49aafd 100%, #5ce0e6 0%) 0% 0%
    no-repeat padding-box; */
  background: linear-gradient(
    -45deg,
    #49aafd,
    #5ce0e6,
    #49aafd,
    #5ce0e6,
    #49aafd
  );
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
  color: #fff;

  outline: 3px solid rgba(255, 255, 255, 0.4);
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ===================About Section ==================== */

.about_container {
  width: 100%;
  background: var(--about-bg);
  position: relative;
  padding-top: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.about_shape_mobile {
  position: absolute;
  width: 100%;
  height: 140px;
  background: #a7bfd1;
  top: 0;
  display: none;
}
.about_header {
  width: 100%;
  text-align: center;
  padding-bottom: 20px;
}
.about_header h1 {
  font-family: "montserrat_bold";
  font-size: 55px;
  color: #024f9e;
  margin: 0;
  padding-bottom: 15px;
}
.about_header p {
  font-family: "montserrat_medium";
  font-size: 20px;
  /* color: var(--content-text-color); */
  color: #2a2f53;
  margin: 0;
}

.about_content {
  width: 1060px;
  display: flex;
  justify-content: space-between;
  /* gap: 6%; */
  z-index: 2;
  overflow: hidden;
}
.about_content .about_left {
  width: 44%;
  min-height: 570px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  padding-top: 40px;
  /* transition: transform 0.5s ease; */
}
/* .about_content .about_left:hover {
  transform: scale(1.03);
} */
.about_shape {
  width: 267px;
  height: 200px;
  position: absolute;
  top: 0;
  left: 90px;
  background-color: #e5e9ee;
  z-index: -1;
}
.about_content .about_right {
  width: 50%;
  padding-top: 70px;
  z-index: 9;
  padding-bottom: 130px;
}
.about_left img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.about_right .about_label {
  font-size: 22px;
  color: #024f9e;
  font-family: "montserrat_bold";
  padding-bottom: 15px;
  margin: 0;
}
/* .about_right h3 {
  font-size: 36px;
  color: #024f9e;
  font-family: "montserrat_bold";
  padding-bottom: 20px;
} */

.about_right .about_text {
  color: var(--content-text-color);
  font-size: 16.3px;
  font-family: "montserrat_regular";
  line-height: 24px;
  margin: 0;
}
.about_ctrl_btns {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 40px;
}
.about_more {
  /* margin-top: 30px; */
  border: none;
  outline: none;
  padding: 0px 25px;
  height: 45px;
  background: transparent linear-gradient(90deg, #49aafd 0%, #5ce0e6 100%) 0% 0%
    no-repeat padding-box;
  border-radius: 29px;
  border: none;
  outline: none;
  font-size: 16px;
  color: rgba(255, 255, 255, 1);
  font-family: "montserrat_medium";
  cursor: pointer;
  transition: background 0.5s ease;
  min-width: 150px;
}
.about_more:hover {
  /* background: transparent linear-gradient(90deg, #49aafd 100%, #5ce0e6 0%) 0% 0%
    no-repeat padding-box; */
  background: linear-gradient(
    -45deg,
    #49aafd,
    #5ce0e6,
    #49aafd,
    #5ce0e6,
    #49aafd
  );
  background-size: 400% 400%;
  animation: gradient 7s ease infinite;
}
.about_consultantation {
  border: none;
  outline: none;
  padding: 0px 20px;
  height: 45px;
  background: transparent;
  border-radius: 29px;
  border: none;
  outline: none;
  font-size: 16px;
  /* color: #1e5c9b; */
  color: #092d42;
  font-family: "montserrat_medium";
  cursor: pointer;
  border: 1px solid #1e5c9b;
  transition: background 1s linear, color 0.5s ease;
}
.about_consultantation:hover {
  border: none;
  /* background: #1e5c9b; */
  /* background: transparent linear-gradient(90deg, #49aafd 0%, #5ce0e6 100%) 0% 0%
    no-repeat padding-box; */
  background: linear-gradient(
    -45deg,
    #49aafd,
    #5ce0e6,
    #49aafd,
    #5ce0e6,
    #49aafd
  );
  background-size: 400% 400%;
  animation: gradient 7s ease infinite;

  color: rgba(255, 255, 255, 1);
}

.about_bottom_shape {
  position: relative;
  width: 100%;
  height: 150px;
  background: transparent;
  margin-top: -80px;
  display: flex;
}
.about_shape_left {
  width: 55%;
  height: 142px;
  background: #a7bfd1;
  overflow-x: visible;
  position: relative;
}
.path_shape {
  position: absolute;
  width: 40px;
  height: 10px;
  right: 0;
  top: 0;
}
.about_shape_right {
  position: absolute;
  width: 47.5%;
  height: 142px;
  background: #4974a1;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10%;
  color: #fff;
  font-family: "montserrat_regular";
  font-size: 16px;
  z-index: 1;
  padding-left: 150px;
}
.about_shape_right .performance_box {
  display: flex;
  gap: 12px;
  flex-direction: column;
  align-items: center;
}
.performance_box p {
  font-size: 15px;
  font-family: "montserrat_regular";
}

/* .modalAbout {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
} */

/* Modal content */
.no-scroll {
  overflow: hidden;
}
.modalAbout {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999999999999999999999;
  padding-bottom: 30px;
}
.about_modal_content {
  /* background-color: #f5f7f8; */
  /* background-color: #e7eaea; */
  background: #fafbfc;
  margin: 2% auto;
  /* padding: 20px 30px 50px 30px; */
  border: 1px solid #888;
  width: 70%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  animation: modalopen 0.5s;
  border-radius: 8px;
}

/* Close button */
.closeAboutModal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.closeAboutModal:hover,
.closeAboutModal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* Animation */
@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.about_modal_content {
  padding-top: 40px;
}
.about_modal_header {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid gray;
  padding-left: 50px;
  padding-right: 30px;
  padding-bottom: 20px;
  text-transform: uppercase;
}
.about_modal_header h2 {
  font-size: 36px;
  font-family: "montserrat_bold";
  /* color: #5ce1e6; */
  color: #024f9e;
}
.close_about_modal {
  background: rgba(128, 128, 128, 0.1);
  color: #2a2f53;
  /* color: #4a4d60; */
  float: right;
  font-size: 30px;
  font-family: "montserrat_medium";
  /* background-color: rgba(255, 255, 255, 1); */
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: background 0.5s ease;
  margin-top: -30px;
  margin-right: -20px;
}
/* .close_about_modal:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  cursor: pointer;
  color: #000;
} */
.close_about_modal:hover,
.close_about_modal:focus {
  text-decoration: none;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.3);
  color: #000;
}
.about_modal_body {
  padding: 30px 50px 70px 50px;
  height: 400px;
  overflow-y: auto;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  scrollbar-width: thin;
  scrollbar-color: gray #f0f0f0;
  margin-bottom: 40px;
}

.about_modal_body::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.about_modal_body::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}
.about_modal_body .about_intro_text {
  font-size: 18px;
  font-family: "montserrat_medium";
  padding-bottom: 15px;
  line-height: 30px;
  letter-spacing: 0.4px;
  /* color: #4a4d60; */
  color: #2a2f53;
}

.why_we_text {
  list-style-type: disc;
  /* color: #4a4d60; */
  color: #2a2f53;
}
.our_process {
  list-style-type: decimal;
}

.our_process li {
  list-style-type: decimal outside;
  overflow-x: visible;
  margin-left: 25px;
  color: #2a2f53;
}
.why_we_text li {
  list-style-type: disc outside;
  overflow-x: visible;
  margin-left: 25px;
  /* color: #4a4d60; */
  color: #2a2f53;
  margin-left: 20px;
}

.why_we_text .why_we_header,
.our_process .our_process_header {
  font-size: 20px;
  font-family: "montserrat_bold";
  padding-bottom: 16px;
  /* color: #4a4d60; */
  color: #2a2f53;
}
.why_we_text li,
.our_process li {
  font-size: 16.3px;
  font-family: "montserrat_regular";
  padding-bottom: 12px;
  line-height: 26px;
}
.why_we_text li span,
.our_process li span {
  font-family: "montserrat_bold";
  /* color: #4a4d60; */
  color: #2a2f53;
}

/* about end  */
.performance_image {
  width: 58px;
  height: 58px;
  background-image: url(../images/about_circle_latest.png);
  background-size: cover;
  object-fit: fill;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
}

.performance_image img {
  width: 25px;
  height: 15px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: animation 0.5s ease;
}

.performance_image:hover img {
  animation: rotateIcon 2s linear;
}

@keyframes rotateIcon {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(180deg);
  }
}

/* ====================main services ==================== */

.main_services_container {
  width: 100%;
  background: var(--main-services-bg);
  padding: 70px 0px 100px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.main_services_heading {
  text-align: center;
  padding-bottom: 60px;
}
.services_category {
  width: 1060px;
  display: grid;
  grid-template-columns: repeat(3, 30%);
  grid-template-rows: repeat(2, auto);
  row-gap: 30px;
  justify-content: space-between;
}
.service {
  position: relative;
  height: 300px;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  overflow: hidden;
}
.service img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  transition: transform 0.6s linear;
  position: relative;
}
.empty_style {
  position: absolute;
  width: 100%;
  height: 0%;
  top: 0;
  /* background-color: rgba(0, 0, 0, 0.4); */
  background: transparent linear-gradient(180deg, #283d61 0%, #2a303a 100%) 0%
    0% no-repeat padding-box;
  opacity: 0.3;
  z-index: 0;
  transition: height 0.5s ease;
  cursor: pointer;
}
.service:hover .empty_style {
  height: 100%;
}

.service:hover img {
  transform: scale(1.05);
}
/*  */

.about_service {
  position: absolute;
  bottom: 10px;
  background: transparent linear-gradient(180deg, #283d61 0%, #2a303a 100%) 0%
    0% no-repeat padding-box;
  border-radius: 7px;
  opacity: 0.93;
  width: 95%;
  height: 20%;
  padding: 15px 20px;
  color: #fff;
  transition: height 0.5s ease;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}

.about_service .services_title {
  font-size: 20px;
  font-family: "montserrat_medium";
}
.about_service .service_text {
  opacity: 1;
  padding-top: 20px;
  font-size: 16px;
  font-family: "montserrat_regular";
  line-height: 22.4px;
  padding-bottom: 25px;
}
.about_service:hover {
  height: 95%;
}
.about_service:hover .service_text {
  opacity: 1;
}
.title_one,
.title_two {
  font-size: 16px;
  font-family: "montserrat_medium";
  color: rgba(213, 221, 234, 0.8);
  margin: 0;
  padding-bottom: 6px;
}
.title_one_tools,
.title_two_tools {
  font-size: 15px;
  font-family: "montserrat_bold";
  color: #fff;
  margin: 0;
  padding-bottom: 15px;
  line-height: 23px;
}

/* Modal styles */
.main_services_modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;

  background-color: rgba(0, 0, 0, 0.8);
  z-index: 99999999999999999999999;
  padding-bottom: 30px;
}

.modal-content {
  /* background-color: #f5f7f8; */
  /* background: #e7eaea; */
  background: #fafbfc;
  margin: 2% auto;
  /* padding: 20px 30px 50px 30px; */
  border: 1px solid #888;
  width: 70%;
  min-height: 500px;
  border-radius: 8px;
}
.service_modal_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid gray;
  padding-top: 40px;
  padding-left: 50px;
  padding-right: 30px;
  color: #024f9e;
  text-transform: uppercase;
}
#serviceModalTitle {
  font-size: 36px;
  font-family: "montserrat_bold";
}

.close_service_modal {
  background: rgba(128, 128, 128, 0.1);
  color: #2a2f53;
  float: right;
  font-size: 30px;
  font-family: "montserrat_medium";

  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: transform 0.5s ease;
  margin-top: -45px;
  margin-right: -15px;
}

.close_service_modal:hover,
.close_service_modal:focus {
  transform: scale(1.05);
  text-decoration: none;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.3);
  color: #000;
}

.service_modal_body {
  padding-top: 30px;
  padding-bottom: 50px;
  padding-left: 50px;
  padding-right: 50px;
  height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: gray #f0f0f0;
  margin-bottom: 40px;
}
.service_modal_body::-webkit-scrollbar-track {
  background: #f0f0f0;
}

.service_modal_body::-webkit-scrollbar-thumb {
  background: #fff;
  border-radius: 10px;
}

#modalIntroText {
  font-size: 18px;
  font-family: "montserrat_medium";
  padding-bottom: 15px;
  line-height: 30px;
  letter-spacing: 0.6px;
  /* color: #4a4d60; */
  color: #2a2f53;
}
#modalServiceList {
  list-style-type: disc;
  /* color: #4a4d60; */
  color: #2a2f53;
}
#modalServiceList li {
  list-style-type: disc outside;
  overflow-x: visible;
  margin-left: 25px;
  /* color: #4a4d60; */
  color: #2a2f53;
  margin-left: 20px;
}

#modalServiceList h3 {
  font-size: 20px;
  font-family: "montserrat_bold";
  padding-bottom: 12px;
}
#modalServiceList li {
  font-size: 16.3px;
  /* color: #4a4d60; */
  font-family: "montserrat_regular";
  padding-bottom: 12px;
  line-height: 26px;
  color: #2a2f53;
}
#modalServiceList li span {
  font-size: 16px;
  /* color: #4a4d60; */
  font-family: "montserrat_bold";
  color: #2a2f53;
}

/* ===============Counter code ============== */
.company_milestones_counter_container {
  width: 100%;
  display: flex;
  height: 380px;
  background: var(--company-milestones-bg);
  position: relative;
  overflow: hidden;
  display: none;
}
.shape_counter {
  width: 60%;
  height: 95%;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
.shape_counter img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.milestones_content_left {
  width: 42%;
  height: 100%;
  background: linear-gradient(
      rgba(40, 61, 97, 0.6) 100%,
      rgba(85, 89, 97, 0.7) 80%
    ),
    url(../images/counter_left_bg.png);

  background-repeat: no-repeat;
  background-size: cover;
  margin: 0;
  overflow-x: hidden;
  color: #fff;
  display: flex;
  justify-content: flex-end;
}
.counter_left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  justify-items: center;
  width: 410px;
  height: 100%;
}
.milestones_content_left h3 {
  margin: 0;
  font-size: 100px;
  font-family: "montserrat_bold";
}
.milestones_content_left p {
  margin: 0;
  font-size: 30px;
  font-family: "montserrat_medium";
}

.milestones_content_right {
  width: 45%;
  background-color: #f0f4f6;
  background-repeat: no-repeat;
  background-size: fill;
  margin: 0;
  overflow-x: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.milestones_content_right .counter_right {
  width: 100%;
  height: 65%;
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: center;
  column-gap: 100px;
}

.milestones_content_right div h3 {
  font-size: 50px;
  color: #024f9e;
  font-family: "montserrat_bold";
}
.milestones_content_right div p {
  font-size: 18px;
  color: #4a4d60;
  font-family: "montserrat_medium";
}

/* =================Portfolio Start=================== */

.portfolio_container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--portfolio-bg);
  padding: 70px 0px 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* .label_shape {
  width: 5px;
  height: 3px;
  background-color: red;
} */
.portfolio_slider_container {
  overflow: hidden;
  width: 1060px;
  position: relative;
  padding: 0px 0px 100px 0px;
}
.portfolio_slider {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
  display: none;
  transition: display 0.5s linear;
}

.portfolio_content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.portfolio_slider.actived_slide {
  display: block;
}

.portfolio_image {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 47.5%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
}
.empty_div {
  position: absolute;
  top: 0%;
  width: 100%;
  height: 0%;

  background: transparent linear-gradient(180deg, #283d61 0%, #2a303a 100%) 0%
    0% no-repeat padding-box;
  opacity: 0.5;
  transition: height 0.5s ease;
}
/* .portfolio_image:hover .empty_div {
  height: 100%;
} */
.portfolio_image .portfolio_slide_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease, filter 0.5s ease;
}
.portfolio_image:hover .portfolio_slide_img {
  transform: scale(1.03);
  filter: brightness(0.8);
}

.tooltip {
  width: 95%;
  height: 0px;
  /* background-color: #29303d; */
  /* color: #fff; */
  /* background: transparent linear-gradient(0deg, #1e5c9b 0%, #2c6aaa 100%) 0% 0%
    no-repeat padding-box; */
  background: transparent
    linear-gradient(180deg, rgba(40, 61, 97, 0.4) 0%, #2a303a 100%) 0% 0%
    no-repeat padding-box;

  color: #fff;
  text-align: center;
  border-radius: 12px;

  position: absolute;
  z-index: 1;
  /* bottom: 44%;
  left: 35%; */
  left: 2.5%;
  bottom: 3%;
  overflow: hidden;
  /* font-family: "montserrat_regular"; */
  /* opacity: 0; */
  transition: opacity 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0px;
  font-family: "montserrat_medium";
  transition: height 0.4s ease;
}
.tooltip .hyperlink_icon {
  width: 30px;
  height: 25px;
  object-fit: fill;
  visibility: hidden;
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 35%;
  /* margin-left: -5px; */
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.portfolio_image:hover {
}

.portfolio_image:hover .tooltip {
  /* visibility: visible;
  opacity: 1; */

  height: 94%;
  font-size: 18px;
}
.portfolio_image:hover .tooltip .hyperlink_icon {
  visibility: visible;
}
.click_to_more {
  position: absolute;
  display: none;
}

.portfolio_stories {
  width: 47.5%;
}

.portfolio_stories div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.label_shape {
  width: 15px;
  height: 2px;
  background-color: #024f9e;
  margin-top: -4px;
}
.category {
  color: #024f9e;
  font-size: 12px;
  font-family: "montserrat_medium";
  margin: 0;
  padding-bottom: 6px;
}
.portfolio_content h3 {
  color: #024f9e;
  font-size: 22px;
  font-family: "montserrat_bold";
  padding-bottom: 14px;
}
.portfolio_content .portfolio_text {
  color: var(--content-text-color);
  font-size: 16.3px;
  line-height: 24px;
  font-family: "montserrat_regular";
  margin: 0;
  /* padding-bottom: 21px; */

  margin-bottom: 15px;
  /* border-bottom: 10px solid #fff;
  border-top: 10px solid #fff;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #e6edf2 #e6edf2; */
  height: 160px;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #e6edf2 #e6edf2;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
}

/* .portfolio_text_container::-webkit-scrollbar-track {
  background: #000;
}
.portfolio_text_container::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 10px;
} */
.utilized {
  display: flex;
  align-items: center;
}
.utilized .technology {
  padding: 8px 11px;
  background: #e4eaee;
  font-size: 14px;
  font-family: "montserrat_medium";
  border-radius: 9px;
  transition: background 0.5s ease;
  color: #024f9e;
  margin-right: 5px;
}
.utilized .technology:hover {
  background: #d2d9de;
}
.portfolio_content button {
  margin-top: 40px;
  width: 121px;
  height: 38px;
  background: transparent linear-gradient(90deg, #49aafd 0%, #5ce0e6 100%) 0% 0%
    no-repeat padding-box;

  border-radius: 29px;
  border: none;
  outline: none;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-family: "montserrat_medium";
  cursor: pointer;
  transition: background 0.5s linear;
}
.portfolio_content button:hover {
  /* background: transparent linear-gradient(90deg, #49aafd 100%, #5ce0e6 0%) 0% 0%
    no-repeat padding-box; */
  background: linear-gradient(
    -45deg,
    #49aafd,
    #5ce0e6,
    #49aafd,
    #5ce0e6,
    #49aafd
  );
  background-size: 400% 400%;
  animation: gradient 7s ease infinite;
}
/* .carousel_controls {
  position: absolute;
  bottom: 140px;
  right: 26%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
} */
.portfolio_container .prev {
  position: absolute;
  top: 52%;
  left: 5%;
}
.portfolio_container .next {
  position: absolute;
  top: 52%;
  right: 5%;
}
.prev,
.next {
  height: 35px;
  width: 35px;
  cursor: pointer;
  /* padding: 10px 20px; */
  background-color: #2c6aaa;
  color: #eee;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-family: "montserrat_bold";
  display: flex;
  align-items: center;
  justify-content: center;
  transition: font-family 0.5s ease;
  cursor: pointer;
}

button.prev:hover:not(.disabled),
button.next:hover:not(.disabled) {
  font-family: "montserrat_bold";
  background-color: #0b4a88;
}

button.disabled {
  cursor: not-allowed;
  opacity: 0.8;
}
.current_slide_number {
  font-size: 17px;
  font-family: "montserrat_bold";
  color: #3d3d85;
  opacity: 0;
}
.current_number {
  font-size: 20px;
}
.indicators {
  position: absolute;
  bottom: 30px;
  left: 46%;
  display: flex;
  gap: 10px;
}

.indicator {
  width: 11px;
  height: 5px;
  background-color: #024f9e;
  border-radius: 3px;
  cursor: pointer;
}

.indicator.actived_slide {
  width: 35px;
}
.portfilo_live_btn {
  cursor: pointer;
}
/*  for image slide*/
.modal_portfolio {
  display: block;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.modal_portfolio_content {
  position: relative;
  margin: 5% auto;
  padding: 20px;
  width: 52%;
  border-radius: 5px;
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.modal_portfolio_images {
  width: 95%;
  height: 95%;
}
.image_portfolio {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.modal_portfolio_images img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.prev_image {
  position: absolute;
  left: 50px;
  top: 45%;
}
.next_image {
  position: absolute;
  right: 50px;
  top: 45%;
}

.prev_image,
.next_image {
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 1);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  font-size: 20px;
  color: #000;
  z-index: 99;
  cursor: pointer;
}
.prev_image:hover,
.next_image:hover {
  background: rgba(255, 255, 255, 0.8);
}
.prev_image.disabled,
.next_image.disabled {
  color: gray;
  background: rgba(255, 255, 255, 0.6);
}

.close_portfolio_modal {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #2a2f53;
  /* float: right; */
  font-size: 26px;
  font-family: "montserrat_bold";
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 1);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  text-align: center;
}
.close_portfolio_modal:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
}

/* =================Testimonial=================== */
.testimonial_container {
  background: linear-gradient(
      rgba(42, 47, 83, 0.5) 100%,
      rgba(42, 47, 83, 0.5) 80%
    ),
    url(../images/testimonial_bg.png);

  width: 100%;
  height: 750px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 70px 0px 100px 0px;
  overflow: hidden;
  display: none;
}
.testimonial_heading {
  padding-bottom: 40px;
  text-align: center;
  text-align: center;
}
.testimonial_heading p,
.testimonial_heading h2 {
  color: #fff;
  text-align: center;
}
/* slick slider code  */
.testimonial_slider {
  width: 100%;
  overflow: hidden;
  padding-top: 30px;
  position: relative;
  padding-bottom: 70px;
  overflow: hidden !important;
}
.testimonial_slide {
  min-height: 290px !important;
  width: 700px !important;
  background: #2a2f53 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 0.48;
  margin: 0px 70px;
  z-index: 9;
  box-sizing: border-box;
  display: flex !important;
  justify-content: center;
  overflow: hidden;
  margin-top: 40px;
}
.testimonial_content {
  width: 70%;
  height: 100%;
  margin-top: 50px;
  overflow: hidden;
}
.quote {
  width: 44px;
  height: 38px;
}
.author_shape {
  width: 67px;
  height: 68px;
  border-radius: 25px 25px 0px 25px;
  background: #515673;
  display: flex;
  justify-content: center;
  align-items: center;
}
.author_shape img {
  width: 53px;
  height: 53px;
  border-radius: 50%;
}
.autor_section {
  display: flex;
  gap: 90px;
  align-items: center;
  padding-left: 20px;
  padding-bottom: 20px;
}
.author {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-family: "montserrat_medium";
  color: #fff;
}
.author_review {
  font-size: 16px;
  font-family: "montserrat_regular";
  color: rgba(255, 255, 255, 0.8);
  line-height: 25.2px;
  text-align: center;
}

.slick-next {
  right: 50px !important;
}
.slick-prev {
  left: 50px !important;
  z-index: 999;
}
.slick-slide .testimonial_slide {
  transition: all 0.4s ease-in-out;
}

.slick-center {
  transform: scale(1.2);
  background: #2a2f53 0% 0% no-repeat padding-box;
  border-radius: 10px;
  opacity: 1;
  z-index: 9999;
}
.slick-slider .slick-track {
  min-height: 100% !important;
  overflow-y: hidden;
  padding-bottom: 50px !important;
}
.slick-dots {
  position: absolute;
  bottom: 0px !important;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.slick-dots li {
  margin: 0 5px;
  width: 10px !important;
}

.slick-dots li button {
  width: 6px !important;
  height: 6px !important;
  padding: 0 !important;
  border: none;
  border-radius: 50% !important;
  background: #fff !important;
  cursor: pointer;
}
.slick-dots li button:before {
  display: none !important;
}
.slick-dots li.slick-active {
  width: 30px !important;
}
.slick-dots li.slick-active button {
  width: 30px !important;
  height: 4px !important;
  border-radius: 10% !important;
}

.slick-prev {
  width: 50px !important;
  height: 50px !important;
}
.slick-prev:before {
  font-size: 40px !important;
}
.slick-next {
  width: 50px !important;
  height: 50px !important;
}
.slick-next:before {
  font-size: 40px !important;
}
/* =========================Our process start ======================== */
.our_process_container {
  width: 100%;
  background: #f7f9fc;
  /* background: #fff; */
  padding: 70px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.our_process_container .process_header {
  width: 100%;
  text-align: center;
}
.process_header h1 {
  font-family: "montserrat_bold";
  font-size: 55px;
  color: #024f9e;
  margin: 0;
  padding-bottom: 13px;
}

.process_header p {
  font-family: "montserrat_medium";
  font-size: 20px;
  /* color: var(--content-text-color); */
  margin: 0;
  color: #2a2f53;
}
.our_process_container .process_content {
  width: 1060px;
  padding-top: 70px;
  display: flex;
  justify-content: center;
  justify-content: space-between;
  overflow: hidden;
  padding-bottom: 100px;
}
.process_content .process_left_content {
  width: 47%;
}
.process_left_content h3 {
  font-size: 30px;
  color: #024f9e;
  font-family: "montserrat_bold";
  margin: 0;
  padding-bottom: 7px;
}
.process_left_content .process_quote {
  font-size: 16px;
  color: #4a4d60;
  font-family: "montserrat_medium";
  margin: 0;
  padding-bottom: 20px;
  line-height: 24px;
}
.process_left_content .process_step {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-bottom: 15px;
  gap: 15px;
}
.process_step .process_icon {
  /* width: 72px;
  height: 72px; */
  /* margin-right: 20px; */
  /* border: 1px solid red; */
}
.process_icon_wrapper {
  width: 36px;
  height: 36px;
  background: rgba(230, 237, 245, 0.5);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.5s ease;
}
.process_icon_wrapper img {
  max-width: 20px;
  max-height: 20px;
}
/* .process_details_one {
  margin-left: 8px;
} */
.process_step {
  cursor: pointer;
}
.process_step .process_details h4 {
  font-size: 19px;
  color: #2a2f53;
  margin: 0;
  padding-bottom: 5px;
  font-family: "montserrat_bold";
  transition: color 0.5s ease;
}
.process_step .process_details p {
  font-size: 16.3px;
  color: #4a4d60;
  margin: 0;
  font-family: "montserrat_regular";
}
.show-more,
.show-less {
  font-size: 16px;
  color: #4a4d60;
  font-family: "montserrat_medium";
  cursor: pointer;
}

/* .process_step:hover .process_details h4 {
  color: #024f9e;
} */
/* .process_step:hover .process_icon_wrapper {
  background: transparent linear-gradient(90deg, #49aafd 0%, #5ce0e6 100%) 0% 0%
    no-repeat padding-box;
}
.icon_after {
  display: none;
  transition: display 0.5s ease;
}
.process_step:hover .icon_after {
  display: block;
}
.process_step:hover .icon_before {
  display: none;
} */
/* .icon_after {
  display: none;
} */

.process_content .process_right_img {
  width: 48%;
  align-self: flex-start;
  /* min-height: 550px; */

  transition: transform 0.5s ease;
  /* object-fit: fill; */
  border-radius: 21px;
}
.process_content .process_right_img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 21px;
}

/*  */
.icon_details_wrapper {
  display: flex;
}
.process_img {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.process_img.active_process_img {
  display: block;
  opacity: 1;
}
.process_step.active_step .process_icon_wrapper {
  background: transparent linear-gradient(90deg, #49aafd 0%, #5ce0e6 100%) 0% 0%
    no-repeat padding-box;
}
/* .process_step.active_step .process_icon_wrapper .icon_after {
  display: block;
} */
.process_step.active_step .process_icon_wrapper .icon_before {
  display: none;
}

.process_step.active_step .process_details h4 {
  color: #024f9e;
}
/* for mobile  */
.process_for_mobile {
  display: none;
  width: 450px;
  max-height: 350px;
}
.process_for_mobile img {
  width: 100%;
  height: 350px;
  object-fit: fill;
}

/* ===================Our team Section ================== */
.our_team_container {
  width: 100%;
  background: var(--core-team-bg);
  padding: 110px 0px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  z-index: 0;
  display: none;
}
.team_heading {
  text-align: center;
  padding-bottom: 45px;
}
.core_members_section {
  width: 1060px;
  display: grid;
  grid-template-columns: repeat(4, auto);
  column-gap: 35px;
}

.core_member img {
  filter: grayscale(80%);
  transition: filter 0.5s ease;
  margin-bottom: 12px;
}

.core_member:hover img {
  filter: grayscale(0%);
}

.member_intro h3 {
  color: #024f9e;
  font-size: 22px;
  font-family: "montserrat_bold";
  padding-bottom: 6px;
}
.member_intro p {
  margin: 0;
  color: #121936;
  font-size: 16px;
  font-family: "montserrat_regular";
}
.team_bg_shape {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.team_bg_shape img {
  width: 80%;
  height: 80%;
}
/* =====================Service Faq accordion =================*/
.services_faq_container {
  width: 100%;
  /* background-color: var(--faq-bg); */
  /* background: #e6edf2; */
  background: #f6f8f9;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 0;
  padding-top: 70px;
  overflow: hidden;
  padding-bottom: 100px;
  display: none;
}
.services_heading {
  text-align: center;
  padding-bottom: 70px;
}
.label {
  color: var(--label-color);
  font-size: 16px;
  font-family: "montserrat_bold";
  margin: 0;
}
.section_heading {
  font-size: 55px;
  color: #024f9e;
  font-family: "montserrat_bold";
  /* padding: 10px 0px; */
  margin: 0;
  padding-bottom: 15px;
}
.sub_heading {
  font-size: 20px;
  color: #2a2f53;
  font-family: "montserrat_medium";
}
.services_faq_container .services_content {
  width: 1060px;
  display: flex;
  justify-content: space-between;
}
.services_content .services_text_container {
  width: 42%;
  text-align: left;
}
.services_text_container .services_text_header {
  font-size: 22px;
  font-family: "montserrat_medium";
  color: #024f9e;
  line-height: 30px;
}
.services_text_container .services_text {
  font-size: 16.3px;
  color: var(--faq-color);
  font-family: "montserrat_regular";
  padding: 12px 0px;
  line-height: 22.4px;
}
.services_text_container div {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16.3px;
  color: var(--faq-color);
  font-family: "montserrat_regular";
  padding: 5px 0px;
}
.services_text_container div p {
  margin: 0;
}
.services_text_container div p:first-child {
  color: #024f9e;
  font-size: 12px;
  padding-top: 3px;
}

.services_accordion {
  width: 48.6%;
  padding-bottom: 20px;
}
.accordion_box {
  border: 1px solid #829195;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  margin-bottom: 12px;
  padding: 0px 14px;
  color: var(--faq-color);
}
.accordion_box:hover {
  border-color: #0d0d0d;
}
.accordion_box:hover .accordion_trigger {
  color: #0d0d0d;
}

.accordion_trigger {
  padding-top: 13px;
  padding-bottom: 15px;
  padding-right: 25px;
  margin: 0;
  position: relative;
  color: var(--faq-color);
  font-size: 16.3px;
  line-height: 24px;
  font-family: "montserrat_medium";
  transition: color 0.3s ease;
  cursor: pointer;
}
.accordion_trigger i {
  position: absolute;
  right: 10px;
  top: 16px;
  font-weight: bold;
  font-size: 20px;
}
.accordion_container {
  display: none;
}

.accordion_container p {
  margin-top: 0px;
  color: var(--faq-color);
  font-size: 14.3px;
  font-family: "montserrat_regular";
  line-height: 21px;
  padding-bottom: 12px;
}

.see-more,
.see-less {
  color: #4b4b4b;
  font-size: 18px;
  text-decoration-line: underline;
  padding-top: 32px;
  font-family: "montserrat_medium";
  cursor: pointer;
}

/* ================ Contact Form Section  =============== */
.contact_us_container {
  width: 100%;
  display: flex;
  position: relative;
  z-index: 1;
}
.contact_shape {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 47%;
  height: 140px;
  overflow: hidden;
}
.contact_shape img .contact_shape {
  width: 100%;
  height: 100%;
}

.contact_us_container .contact_us_left {
  width: 47%;
  /* background: var(--contact-us-left-bg); */
  /* background-color: var(--faq-bg); */
  background: #e6edf2;
  display: flex;
  justify-content: flex-end;
  padding: 80px 0px;
}
.contact_us_left div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  justify-items: center;
  width: 480px;
  height: 100%;
  padding-right: 60px;
}

.contact_us_left .contact_label {
  font-size: 16px;
  font-family: "montserrat_medium";
  padding-bottom: 6px;
  color: #024f9e;
}
.contact_us_left h3 {
  font-size: 20px;
  font-family: "montserrat_bold";
  padding-bottom: 24px;
  color: #024f9e;
}
.contact_us_left .contact_text {
  font-size: 16.3px;
  font-family: "montserrat_regular";
  color: var(--content-text-color);
  padding-bottom: 20px;
  line-height: 24px;
}
.contact_us_left span {
  font-size: 16.3px;
  font-family: "montserrat_medium";
  color: var(--content-text-color);
  line-height: 24px;
}

.contact_us_container .contact_us_right {
  width: 53%;
  background: var(--contact-us-right-bg);
  padding: 70px 0px 50px 0px;
  padding-left: 60px;
  color: #fff;
}
.contact_us_right .form_title {
  font-size: 16px;
  font-family: "montserrat_regular";
  padding-bottom: 5px;
  padding-left: 10px;
}
.contact_us_right .form_header {
  font-size: 36px;
  font-family: "montserrat_medium";
  padding-bottom: 20px;
  padding-left: 10px;
}
.contact_us_right form {
  width: 430px;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.contact_us_right form input {
  margin-bottom: 20px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 12px 8px;
}
.contact_us_right form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-family: "montserrat_regular";
}
.contact_us_right form input:focus::placeholder {
  color: rgba(255, 255, 255, 1);
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  background: transparent;
  transition: background-color 5000s ease-in-out 0s;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  -ms-appearance: none !important;
  margin: 0 !important;
}
input[type="number"] {
  -moz-appearance: textfield;
}

input[type="number"] {
  -ms-appearance: textfield;
}

.contact_us_right form textarea {
  min-width: 99%;
  max-width: 99%;
  min-height: 90px;
  max-height: 150px;
  background: transparent;
  padding: 8px 6px 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}
.contact_us_right form button {
  margin-top: 22px;
  width: 110px;
  height: 40px;
  /* background: transparent
    linear-gradient(180deg, #eaeaee 0%, #e9e9ed 9%, #acbfcd 90%, #aabbc7 100%)
    0% 0% no-repeat padding-box; */
  background: transparent linear-gradient(90deg, #49aafd 0%, #5ce0e6 100%) 0% 0%
    no-repeat padding-box;
  box-shadow: 2px 12px 25px #0306264d;
  border-radius: 29px;
  opacity: 0.9;
  border: none;
  outline: none;
  /* color: #2a2f53; */
  color: #fff;
  font-family: "montserrat_medium";
  cursor: pointer;
  font-size: 14px;
  transition: background 0.5s ease;
}
.contact_us_right form button:hover {
  /* background: transparent
    linear-gradient(0deg, #eaeaee 0%, #e9e9ed 9%, #acbfcd 90%, #aabbc7 100%) 0%
    0% no-repeat padding-box; */
  /* background: transparent linear-gradient(90deg, #49aafd 100%, #5ce0e6 0%) 0% 0%
    no-repeat padding-box; */
  background: linear-gradient(
    -45deg,
    #49aafd,
    #5ce0e6,
    #49aafd,
    #5ce0e6,
    #49aafd
  );
  background-size: 400% 400%;
  animation: gradient 7s ease infinite;
}
.business_info_field {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.business_info_field input {
  width: 45%;
}
/* ================ Footer Start ================= */
.footer_container {
  background: var(--footer-bg);
  padding: 85px 0px 40px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_content {
  width: 1060px;
  display: flex;
  gap: 30px;
}
.footer_logo {
  width: 227px;
  height: 38px;
  object-fit: fill;
}

.footer_left {
  width: 35%;
}
.footer_left .logo_footer {
  /* width: 180px; */
  width: 227px;
  /* width: 100%; */
  /* height: 40px; */
  overflow: hidden;
  margin-bottom: 30px;
}
.logo_footer a {
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  font-family: "montserrat_bold";
}
.logo_footer a span {
  color: #5ce1e6;
}
.footer_left .logo_footer img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}
.footer_left p {
  font-size: 14px;
  line-height: 22.6px;
  color: rgba(255, 255, 255, 0.7);
  font-family: "montserrat_regular";
  transition: color 0.5s ease;
}
.footer_left p:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer_menu {
  width: 25%;
  /* padding-left: 50px; */
  color: rgba(255, 255, 255, 0.8);
  padding-left: 7%;
}

.footer_menu {
  display: flex;
  flex-direction: column;
}
.footer_menu_container {
  display: flex;
  padding-top: 15px;
  gap: 30px;
}
.footer_menu_container div {
  display: grid;
  gap: 10px;
}

.footer_menu_container div a:hover {
  font-weight: bold;
}
.footer_menu h3 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "montserrat_bold";
}

.footer_menu a {
  font-size: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-family: "montserrat_regular";
}

.footer_menu_container div:nth-child(2) {
  height: fit-content;
  gap: 10px;
}
.footer_menu_container div a {
  position: relative;
  padding-bottom: 5px;
}
.footer_menu_container div a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #ffff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease;
}

.footer_menu_container div a:hover::after {
  width: 100%;
  color: rgba(255, 255, 255, 1);
}

.address_section {
  position: relative;
  width: 40%;
  padding-left: 5%;
}
.services_footer p {
  font-size: 14px;
  font-family: "montserrat_regular";
  padding-bottom: 10px;
}
.services_footer p a {
  text-decoration: none;
  font-size: 14px;
  font-family: "montserrat_regular";
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.5s ease;
}
.services_footer p a:hover {
  color: rgba(255, 255, 255, 1);
}
.address_section a {
  text-decoration: none;
}
.address_section h3 {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "montserrat_bold";
  padding-bottom: 14px;
}
.contact_address {
  color: rgba(255, 255, 255, 0.8);
}
.contact_address .address_title {
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-family: "montserrat_regular";
}
.address_title div {
  width: 80px;
  display: flex;
  justify-content: space-between;
}
.contact_address .address_title p {
  padding-bottom: 5px;
}
.social_address {
  display: flex;
  align-items: center;
  gap: 10px;
  /* padding-top: 30px; */
  margin-top: 30px;
  height: 50px;
}
.social_address .social_icon {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background: #23284a;
  transition: background 0.5s ease;
}

.social_icon img {
  width: 80%;
  height: 70%;
  object-fit: fill;
}
.social_address .email_ico img {
  width: 60%;
  height: 50%;
  object-fit: fill;
}
.social_icon:hover {
  background: rgba(65, 70, 102, 0.7);
}

.address_section button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
  width: 28px;
  height: 28px;
  background: #b9ccd5;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  transition: background 1s ease;
  font-size: 18px;
}
.address_section button:hover {
  background: transparent
    linear-gradient(180deg, #eaeaee 0%, #e9e9ed 9%, #acbfcd 90%, #aabbc7 100%)
    0% 0% no-repeat padding-box;
}

/* .address_section button img {
  width: 15px;
  height: 15px;
} */

.bottom_footer {
  width: 100%;
  height: 56px;
  background: #21264d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inner_bottom_footer {
  width: 1060px;
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "montserrat_regular";
  font-size: 14px;
}
.inner_bottom_footer a {
  font-size: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: "montserrat_regular";
}
.inner_bottom_footer div {
  display: flex;
  gap: 30px;
}
.address_title br {
  display: none;
}
