@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0px;
  margin: 0px;
}

:root {
  --theme_gray: #3d4844;
  --theme_light_green: #b3c9ad;
  --font_worksans: "Work Sans", sans-serif;
  --font_libre: "Libre Baskerville", serif;
  --heading_color: #2e2e2e;
  --theme_para_color: #4d4d4d;
  --theme_green: #40912b;
  --light_bg: #f6fafb;
}
body {
  font-family: var(--font_worksans);
}
a {
  text-decoration: none;
  display: inline-block;
}
ul {
  padding: 0px;
  margin: 0px;
}
ul li {
  list-style: none;
  line-height: 21px;
  color:#6e6e6e;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
}
h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  font-family: var(--font_libre);
  color: var(--heading_color);
}
h4 {
  color: #2e2e2e;
  font-size: 20px;
  font-weight: 600;
  /*text-transform: capitalize;*/
}
address {
  margin: 0px;
}
p {
  color: #6e6e6e;
  line-height: 19px;
  font-weight: 400;
  margin: 0px;
  font-size: 16px;
}
.full_img {
  width: 100%;
}
section {
  padding: 72px 0px;
}
.singel_heading {
  margin-bottom: 50px;
}
.navbar > .container {
  position: relative;
}
.btn-primary {
  background: #fff;
  padding: 5px 20px;
  border: 0px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--theme_gray);
}
.btn-primary p {
    color: var(--theme_gray);
}
.btn-round {
  background-color: var(--theme_gray);
  color: white;
  border-radius: 50px;
  padding: 12px 30px;
}
.btn-primary:hover {
  background-color: var(--theme_light_green);
  color: var(--theme_gray);
}

.custom_btn {
    background-color: var(--theme_gray)!important;
    padding: 12px 45px 12px 25px;
    color: #fff!important;
    border-radius: 50px;
    line-height: 24px;
    font-weight: 400;
    transition: 0.5s;
    position: relative;
}
/*.custom_btn:hover {*/
/*  background-color: var(--theme_light_green);*/
/*  color: var(--theme_gray);*/
/*}*/
.custom_btn i {
  position: absolute;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
.custom_btn:hover i {
  right: 15px;
}
.btn.custom_btn.white_btn {
    color: var(--theme_gray)!important;
    background: #fff!important;
}
.swiper {
  padding: 5px;
}
/* main heading */
.main_heading {
  margin-bottom: 50px;
}
.main_heading h2 { text-transform: capitalize;
  font-size: 32px;
  color: var(--heading_color);
  padding-left: 50px;
  line-height: 40px;
  position: relative;
  font-weight: 700;
  font-family: var(--font_libre);
}
.main_heading h2::after {
  content: "";
  height: 2px;
  width: 32px;
  background: #40912b;
  position: absolute;
  top: 17px;
  /* transform: translatey(-50%); */
  left: 0px;
}
/* main heading */
/* header start */
.header .navbar {
  background: var(--theme_gray);
  padding: 14px 0px;
  position: absolute;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 999;
}
.header .navbar-brand img {
    width: 110px;
}
.header .navbar-expand-lg .navbar-nav .nav-item {
  position: relative;
}
.drop_down {
  position: absolute;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 8px 20px rgb(0 0 0 / 8%);
  width: 220px;
  top: 100%;
  left: 0px;
  transform: scaleY(0);
  transition: 0.5s;
  transform-origin: top;
  z-index:9;
}
.header .navbar-expand-lg .navbar-nav .nav-item:hover .drop_down {
  transform: scaleY(1);
}
.drop_down li .drop-link {
  padding: 10px;
  color: #2e2e2e;
  display: block;
  transition: 0.5s;
  border-radius: 5px;
}
.drop_down li .drop-link:hover {
  background-color: #dbfdd28a;
}
.header .navbar-expand-lg .navbar-nav .nav-link {
  padding-right: 25px;
  padding-left: 0px;
  color: white;
}
.header .navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #fff;
}
.header .navbar.sticky {
  animation: slideDown 0.35s ease-out;
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 999;
}
@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* header end */

/* banner start */
.banner {
    padding: 180px 0px 90px;
    background-color: #f6fafb;
    background-image: url(../images/bannar-grp-shape.svg);
    background-repeat: no-repeat;
    background-size: 44%;
    background-position: left top;
    background-position-y: 45%;
}
.banner_caption {
  padding-right: 80px;
}
.banner_caption h1 {
  color: var(--heading_color);
  font-size: 56px;
  font-family: var(--font_libre);
  font-weight: 400;
  line-height: 75px;
}
.banner_caption h1 span {
  position: relative;
}
.banner_caption h1 span::after {
  position: absolute;
  content: "";
  background: url(../images/text-shape.svg) no-repeat center;
  background-size: contain;
  width: 360px;
  height: 100px;
  top: -7px;
  left: -11px;
  z-index: 9;
}
.banner_caption p {
  margin: 45px 0px 30px;
}
/* banner end */
/* brand start */
.brand_section {
    margin-top: -58px;
    padding-bottom: 72px;
    padding-top: 0;
}
.brand_slider {
  padding: 29px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 12px 20px rgb(241 250 247);
}

.brand_section .swiper {
  width: 100%;
  height: 100%;
}

.brand_section .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

/* .brand_section .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */
.brand_section .swiper-wrapper {
  transition-timing-function: linear !important;
}
.brand_item {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  padding: 5px;
}
.brand_item img {
  height: 28px;
  transition: 0.5s;
  transition-delay: 0.5s;
}
.color {
  display: none;
  transition: 0.5s;
}
.brand_item:hover {
  transform: scale(1.1);
}
.brand_item:hover .color {
  display: block;
}
.brand_item:hover .gray {
  display: none;
}
/* brand end */

/* unique solution start*/
.unique_slider .swiper {
  padding: 30px 20px 20px;
}
.unique_heading h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #4e4e4e;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}
.unique_heading h4::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 32px;
  background-color: #40912b;
  left: 0px;
  top: 50%;
}
.unique_heading h2 {
    text-transform: capitalize;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--font_libre);
  color: var(--heading_color);
  margin-bottom: 10px;
  line-height: 40px;
}
.unique-slider_item {
  text-align: center;
  box-shadow: 0px 8px 20px rgb(0 0 0 / 8%);
  border-radius: 16px;
  padding: 30px 20px 40px;
}
.unique-slider-img {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.unique-slider-img img {
    width: auto;
    max-width: 100%;
    height: 250px;
}
.unique_slider {
  position: relative;
}
.unique_slider .swiper-button-next,
.unique_slider .swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: 44px;
  height: 44px;
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  background: #fff;
  box-shadow: 0px 5px 4px rgb(0, 0, 0, 25%);
  border-radius: 50px;
  padding: 10px;
}
.unique_slider .swiper-button-next {
  right: -4px;
  opacity: 1;
  background: var(--theme_gray);
  color: white;
}
.unique_slider .swiper-button-prev {
  left: -4px;
  opacity: 1;
}
.unique_slider .swiper-button-next:after,
.unique_slider .swiper-button-prev:after {
  font-size: 14px;
}
.swiper-button-next.swiper-button-disabled {
  background: var(--theme_gray);
  color: white;
}
.unique-slider-info {
  margin-top: 15px;
}
.unique-slider-info h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 15px;
}
.unique-slider-info a {
  color: var(--theme_green);
  font-weight: 400;
  line-height: 18px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
/* unique solution  end*/

/* testimonial solution  start*/
.testimonials .swiper-autoheight .swiper-wrapper {
    align-items: stretch;
    transition-property: transform,height;
}
.testimonial_item {
    box-shadow: 0px 4px 4px rgb(0, 0, 0, 25%);
    padding: 30px;
    border-radius: 16px;
    /* min-height: 248px; */
    height: 100%;
}
.testimonial_header {
  display: flex;
  gap: 20px;
  align-items: center;
}
.star_rating {
  display: flex;
  gap: 5px;
}

.testimonial_img img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
}
.testi_info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2e2e2e;
  line-height: 23px;
  margin-bottom: 5px;
}
.testi_info h5 {
  color: #6e6e6e;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 5px;
}
.star_rating li {
  color: #eca500;
  font-size: 17px;
}
.testi_body p {
  margin: 0px;
  margin-top: 20px;
  text-align: justify;
}
/* testimonial solution  end*/

/* case studies solution  start*/
.case_studies_item {
    height: 100%;
}
.case_studies_item_img {
  margin-bottom: 25px;
}
.case_studies_item_img img {
  border-radius: 8px;
  box-shadow: 0px 4px 16px rgb(0, 0, 0, 25%);
}
.case_studies_item_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100% - 277px);
    align-items: self-start;
}
.case_studies_item_info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2e2e2e;
    line-height: 23px;
    margin-bottom: 30px;
}
.case_studies_item_info p {
    margin-bottom: 35px;
    text-align: justify;
    min-height: 76px;
}
/* case studies solution  end*/

/* review start*/

.review_section .testimonial_header {
  justify-content: space-between; max-width: 745px;
 margin: 0px auto;
}
.review_section .unique_heading h2 {
  margin-bottom: 30px;
}
.swiper-pagination {
  position: relative;
  margin-top: 30px;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
  width: 12px;
  height: 12px;
  background: #606060;
  opacity: 1;
}
.swiper-pagination-clickable
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme_green);
}
/* review end*/

/* why choose us */
.whychoose_us_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: #f6fafb;
  align-items: center;
}
.whychoose_us_list {
  display: inline-grid;
  row-gap: 60px;
  padding-left: 100px;
}
.whychoose_us_list li {
  display: flex;
  gap: 20px;
}
.whychoose_us_icon {
  width: 75px;
  height: 75px;
  border-radius: 5px;
  border: var(--theme_green) 1px solid;
  background-color: rgb(64, 145, 43, 5%);
  display: flex;
  justify-content: center;
  padding: 10px;
}
.whychoose_us_info h2 {
  font-size: 48px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: var(--font_worksans);
}
.whychoose_us_info p {
  margin-bottom: 0px;
  font-size: 20px;
  line-height: 23px;
  font-weight: 400;
}
/* why choose us */

/* quote form start*/

.quote_form_container {
  background: #f6fafb;
  background-size: cover;
  padding: 115px 50px 50px;
  border-radius: 20px;
  position: relative;
}

.before_shape {
  width: 70%;
  background: #fff;
  height: 75px;
  position: absolute;
  top: 0;
  border-radius: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.before_shape::after,
.before_shape::before {
  --border_radious: 2rem;
  content: "";
  position: absolute;
  width: var(--border_radious);
  height: var(--border_radious);
  background-color: #f6fafb;
  top: 0px;
  border-radius: 100vw;
}
.before_shape::after {
  left: calc(var(--border_radious) * -1);
  border-radius: 0 100vw 0 0;
  box-shadow: 20px -20px 0px 20px #ffffff;
}
.before_shape::before {
  right: calc(var(--border_radious) * -1);
  box-shadow: -20px -20px 0px 20px #ffffff;
  border-radius: 100vw 0 0 0;
}
.before_shape::before .quote_form_heading h4 {
  font-size: 20px;
  color: #3f3f3f;
  font-weight: 600;
  margin-bottom: 15px;
}
.quote_form_heading h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2e2e2e;
  margin-bottom: 8px;
}
.quote_form_heading p {
    max-width: 790px;
    margin: 0px auto 25px;
}
.quote_form .form-control {
  height: 56px;
  border-radius: 34px;
  border: none;
  background: #d9d9d9 !important;
  padding: 15px 32px;
  box-shadow: none !important;
  outline: none;
  font-size: 20px;
}
.quote_form textarea.form-control {
  height: 89px;
}
.quote_form .form-group {
  margin-bottom: 15px;
}

.check_box input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.check_box label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: #6e6e6e;
}

.check_box label:before {
  content: "";
  -webkit-appearance: none;
  background-color: white;
  border: 2px solid #c9cbcc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 3px;
}

.check_box input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid var(--theme_green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.submit_btn {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.submit_btn .custom_btn {
  padding: 12px 30px 12px 30px;
}
.submit_btn .custom_btn:hover {
  background-color: var(--theme_gray);
  color: #fff;
}
/* quote form end*/

/* ==================INNER PAGES=============== */

.inner_banner {
  /*background: linear-gradient(rgb(0 0 0 / 31%), rgb(0 0 0 / 27%)),*/
  /*  url(../images/inner-banner.jpg) center;*/
  /*background-size: cover;*/
  margin-top: 86px;
  height: 336px;
  display: flex;
  align-items: center;
}
.app-banner {
     background: linear-gradient(rgb(0 0 0 / 31%), rgb(0 0 0 / 27%)),
    url(../images/app-banner.jpg) center;
  background-size: cover;
}
.inner_banner_caption p {
  font-weight: 400;
  color: #fff;
  margin-bottom: 10px;
}
.inner_banner_caption h1 {
    font-size: 32px;
    color: #fff;
    line-height: 37px;
    text-transform: uppercase;
    font-weight: 700;
}
/* APP DEVELOPMENT */
.ma_list_mdl {
  padding-right: 50px;
}
.ma_list_mdl ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 50px 0px;
}
.ma_list_mdl ul li {
  display: flex;
  gap: 10px;
  font-weight: 400;
}
.ma_list_mdl ul li i {
  color: var(--theme_green);
  font-size: 20px;
}
.standout_item {
  box-shadow: 0px 4px 20px rgb(0, 0, 0, 25%);
  padding: 44px;
  border-radius: 12px;
  height: 100%;
}
.standout_item_icon {
  text-align: center;
}
.standout_item_icon img {
    width: 126px;
}
.standout_item_info h4 {
  font-size: 20px;
  font-weight: 600;
  color: #2e2e2e;
  margin: 15px 0px 30px;
  text-align: center;
}
.standout_item_info p {
  text-align: justify;
  margin: 0px;
}
.btn_cont {
  margin: 50px auto 0px;
  display: table;
}

.android_section {
  background: var(--light_bg);
}
.android_items {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.android_icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
}
.android_content {
  display: flex;
  gap: 15px;
}
.android_info {
  flex: 1;
}
.android_info h4 {
  margin-bottom: 15px;
}

.uiux_section .main_heading {
  margin-bottom: 35px;
}
.uiux_heading article {
  padding-left: 50px;
}
.uiux_heading article p {
  margin-bottom: 40px;
}
.uiux_card {
  box-shadow: 0px 4px 20px rgb(0, 0, 0, 25%);
  padding: 30px;
  border-radius: 12px;
  height: 100%;
  min-height: 241px;
}
.uiux_card h4 {
  margin-bottom: 15px;
}
.uiux_card ol {
  padding-left: 20px;
  margin: 0px;
}
.uiux_card ol li {
  color: #6e6e6e;
}
.ctan_cont {
  background: #e3e7e2;
  padding: 70px 50px;
  border-radius: 30px;
  position: relative;
  padding-right: 245px;
  isolation: isolate;
}
.cta_btn_cont {
    background: #fff;
    display: inline-block;
    padding: 25px;
    border-radius: 30px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 233px;
}
.ctan_cont p {
  margin-top: 26px;
  color: #4b4b4b;
  max-width: 666px;
}
.ctan_cont::after,
.ctan_cont::before {
  --border_radious: 2rem;
  content: "";
  position: absolute;
  width: var(--border_radious);
  height: var(--border_radious);
  background-color: #e3e7e2;
  top: 0px;
  border-radius: 100vw;
}
.ctan_cont::after {
  right: 0;
  border-radius: 0 0 100vw 0;
  box-shadow: 15px 15px 0px 15px #ffffff;
  bottom: 99.6px;
  top: auto;
}
.ctan_cont::before {
  right: 233px;
  box-shadow: 15px 15px 0px 15px #ffffff;
  border-radius: 0 0 100vw 0;
  bottom: 0px;
  top: auto;
}
.ctan_cont::before .quote_form_heading h4 {
  font-size: 20px;
  color: #3f3f3f;
  font-weight: 600;
  margin-bottom: 15px;
}

/* APP DEVELOPMENT */

/* staff start */
.staff_banner {
  background: linear-gradient(rgb(0 0 0 / 31%), rgb(0 0 0 / 27%)),
    url(../images/staff-banner.jpg) no-repeat center;
  background-size: cover;
}
.staff_container {
  margin-block-start: 80px;
}
.staff_item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.staff_img {
  width: 202px;
  height: 202px;
  border-radius: 50%;
  background: var(--theme_gray);
  border: #fff 1px solid;
  box-shadow: 0px 0px 0px 10px var(--theme_gray);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.5s;
}
.staff_img::before {
  content: "";
  width: 286px;
  height: 140px;
  background-size: 100%;
  position: absolute;
  top: -40px;
}
.staff_section .col-xl-3:nth-child(odd) .staff_img::before {
  background: url(../images/subtract-1.png) no-repeat top center;
}
.staff_section .col-xl-3:nth-child(even) .staff_img::before {
  background: url(../images/subtract-2.png) no-repeat bottom center;
  top: auto;
  bottom: -40px;
}
/*.staff_item:hover .staff_img {*/
/*  background: var(--theme_light_green);*/
/*}*/
.staff_info {
  margin-top: 80px;
}
.count {
  width: 54px;
  height: 54px;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 25%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #011627;
  position: absolute;
  right: -40px;
  background: #fff;
  z-index: 99;
  top: 73px;
}
.staff_info h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 23px;
}
.btn_cnt {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* staff end */

.standard_tab .nav-pills {
  display: flex;
  justify-content: center;
  margin: 0px 50px;
  gap: 30px;
}
.standard_tab .nav-item {
  flex: 1;
}
.standard_tab .nav-pills .nav-link {
  border-radius: 16px;
  width: 100%;
  height: 135px;
  background: var(--theme_light_green);
  color: #fff;
}
.standard_tab .nav-pills .nav-link span {
  font-size: 32px;
  line-height: 37px;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  color: var(--theme_gray);
}
.standard_tab .nav-pills .nav-link h4 {
  color: var(--theme_gray);
  font-size: 20px;
  font-weight: 600;
}
.standard_tab .nav-pills .nav-link.active h4,
.standard_tab .nav-pills .nav-link:hover h4,
.standard_tab .nav-pills .nav-link.active span,
.standard_tab .nav-pills .nav-link:hover span {
  color: white;
}
.standard_tab .nav-pills .nav-link.active,
.standard_tab .nav-pills .nav-link:hover {
  background: var(--theme_gray);
  color: white;
}
.standard_tab .tab-content {
    padding: 120px 100px 60px;
    box-shadow: 0px 5px 20px rgb(0 0 0 / 12%);
    border-radius: 20px;
    margin-top: -78px;
    height: 100%;
}
.tab-content > .tab-pane p {
  text-align: justify;
  line-height: 22px;
}
.tab-content > .tab-pane p:first-child {
  margin-bottom: 30px;
}
.staffing_solutions {
  position: relative;
  isolation: isolate;
  margin-bottom: 72px;
}
.staffing_solutions::after {
  position: absolute;
  content: "";
  right: 0px;
  top: 0px;
  height: 100%;
  max-width: 867px;
  width: 100%;
  z-index: -1;
  background-color: var(--theme_gray);
  border-radius: 16px;
}
.staffing_solutions_img {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.staffing_solutions_img img {
  border-radius: 16px;
}
.staffing_solutions_img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 54%);
  top: 0px;
  left: 0px;
}
.staffing_solutions_img h2 {
    color: #fff;
    position: absolute;
    top: 50%;
    z-index: 999;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 510px;
    width: 100%;
    border-bottom: #fff 3px solid;
    padding-bottom: 20px;
    text-transform: capitalize;
}
.staffing_solutions_info h4 {
  margin-bottom: 25px;
}
.ctan_cont h2 {
  color: #3d4844;
}
.ctan_cont h2 a {
  color: var(--theme_green);
}
.staffing_solutions_info p {
  margin-bottom: 30px;
  text-align: justify;
  color: #d8d8d8;
}
.accordion_mobile {
  display: none;
}

.ecommerce_banner {
  background: linear-gradient(rgb(0 0 0 / 31%), rgb(0 0 0 / 27%)),
    url(../images/ecommerce-banner.jpg) no-repeat center;
  background-size: cover;
}
.eommerce_service .unique_heading h2 {
  margin-bottom: 50px;
}
.eommerce_list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 32px;
}
.eommerce_list ul li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.eommerce_list_icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.dev_pl_info p {
    text-align: justify;
}
.eommerce_list ul li p {
  flex: 1;
}
.red_bg {
  background-color: #ffdadc;
}
.violet_bg {
  background-color: #d8cfff;
}
.yellow_bg {
  background-color: #fff1d2;
}
.green_bg {
  background-color: #dbfdd2;
}
.ecommerce_zigzag_con .row:nth-child(even) {
  flex-direction: row-reverse;
}
.ecommerce_zigzag_info h4 {
  margin-bottom: 10px;
}
.ecommerce_zigzag_info h2 {
  margin-bottom: 20px;
  color: #2e2e2e;
}
.ecommerce_zigzag_info ul {
  display: grid;
  row-gap: 10px;
  padding-left: 16px;
}
.ecommerce_zigzag_info ul li {
  list-style: disc;
}
.ecommerce_zigzag_info {
  padding-left: 60px;
}
.ecommerce_zigzag_con .row:last-child .ecommerce_zigzag_info {
  padding-left: 0px;
}
.dev_items {
  display: grid;
  gap: 20px;
}
.dev_item {
  display: flex;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0px 4px 20px rgb(0, 0, 0, 25%);
}
.dev_pl_info {
  flex: 1;
}
.dev_pl_info h4 {
  margin-bottom: 20px;
}
.dev_pl_img img {
  width: 174px;
  height: 171px;
  object-fit: cover;
  border-radius: 12px;
}

.finance_banner {
  background: linear-gradient(rgb(0 0 0 / 18%), rgb(0 0 0 / 29%)), url(../images/finance-banner.jpg) no-repeat center;
  background-size: cover;
}

.following_service {
  position: relative;
  padding-top: 0px;
}
.following_service_abslt {
  max-width: 1050px;
  background-color: var(--theme_gray);
  padding: 60px 38px;
  border-radius: 10px;
  position: absolute;
  width: 100%;
  top: 80px;
  right: 0px;
}
.following_service_col {
  max-width: 630px;
}
.following_service_col img {
  border-radius: 5px;
}
.radio_list {text-transform: capitalize;
  display: grid;
  gap: 30px;
}
.radio_list li {
  padding-left: 35px;
  position: relative;
}
.radio_list li p {
  color: #fff;
}
.radio_list li::after {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #e0e0e0;
  border: var(--theme_gray) 1px solid;
  box-shadow: 0px 0px 0px 2px #e0e0e0;
  position: absolute;
  top: 0px;
  left: 0px;
}
.benefits_item {
  box-shadow: 0px 4px 20px rgb(0, 0, 0, 25%);
  border-radius: 23px;
  padding: 26px 26px 70px;
  text-align: center;
  background: url(../images/benifit-bg.svg) no-repeat center;
  background-size: 102%;
  background-position: left;
  min-height: 305px;
  background-size: cover;
}
.benefits_icon {
  margin-bottom: 30px;
}


.finance_invoice {
  background: linear-gradient(#3d4844, rgb(61, 72, 68, 92%)),
    url(../images/invoice-bg.png) no-repeat center;
  background-size: cover;
}
.finance_invoice_para {
  margin: 54px 0px;
}
.finance_invoice_para p {
  color: #d8d8d8;
  margin-bottom: 20px;
}
.finance_invoice .unique_heading h4 {
  padding-left: 0px;
}
.finance_invoice .unique_heading h4::after {
  display: none;
}
.data_zigzag {
  position: relative;
}
.data_zigzag::after {
  height: 85%;
  content: "";
  border-left: var(--theme_green) 1px dashed;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
.data_zigzag .row:nth-child(even) {
  justify-content: flex-end;
}
.data_zigzag .row:nth-child(even) .col-sm-12 {
  padding-left: 52px;
}
.data_zigzag .row:nth-child(odd) .col-sm-12 {
  padding-right: 52px;
}
.data_zigzag .row:not(:last-child) {
  margin-bottom: 37px;
}
.data_zigzag .row:nth-child(odd) .col-sm-12 .data_zigzag_item::after {
  left: auto;
  right: -61px;
}
.data_zigzag_item {
  display: flex;
  gap: 18px;
  box-shadow: 0px 4px 20px rgb(0, 0, 0, 25%);
  padding: 20px;
  min-height: 97px;
  border-radius: 12px;
  position: relative;
}
.data_zigzag_item::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--theme_green);
  border: #fff 1px solid;
  box-shadow: 0px 0px 0px 1px var(--theme_green);
  border-radius: 50%;
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.data_zigzag_item span {
  width: 30px;
  height: 30px;
  background-color: var(--theme_green);
  color: #fff;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}
.data_zigzag_item p {
  flex: 1;
}
.healthcare_banner {
  background: linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 33%)), url(../images/healthcare-banner.jpg) no-repeat center;
  background-size: cover;
}
.healthcare_heading {
  margin-bottom: 30px;
}
.healthcare_heading h2 {
  margin-bottom: 10px;
}
.lead {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #6e6e6e;
    text-align: justify;
}
.healthcare_cont {
  position: relative;
  margin-top: 45px;
}
.healthcare_col {
  max-width: 482px;
}
.healthcare_datalist_cont {
  max-width: 847px;
  background-color: #363636;
  padding: 70px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}
.healthcare_datalist_cont ul {
  display: grid;
  gap: 24px;
}
.healthcare_datalist_cont ul li {
  display: flex;
  gap: 24px;
}
.healthcare_datalist_cont ul li i {
  color: var(--theme_green);
  font-size: 20px;
}
.healthcare_datalist_cont ul li p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    text-align: justify;
}
.healthcare_medical_cont {
  position: relative;
}
.healthcare_medical_cont::after {
  content: "";
  width: 52%;
  height: 73%;
  position: absolute;
  bottom: 40px;
  border: var(--theme_green) 1px dashed;
  border-radius: 0px 0px 0px 74px;
  left: 8px;
  border-top: none;
  border-right: none;
  z-index: -1;
}
.healthcare_medical_list {
  padding-right: 130px;
  padding-top: 50px;
}
.healthcare_medical_list ul {
  display: grid;
  gap: 100px;
}
.healthcare_medical_list ul li {
  position: relative;
  padding-left: 35px;
}
.healthcare_medical_list ul li::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: var(--theme_green);
  border: #fff 1px solid;
  box-shadow: 0px 0px 0px 1px var(--theme_green);
  border-radius: 50%;
  left: 0;
  top: 4px;
}
.healthcare_medical_img img {
  border-radius: 0px 74px 0px 0px;
}
.softwere_banner {
    background: linear-gradient(rgb(0 0 0 / 30%), rgb(0 0 0 / 33%)), url(../images/healthcare-banner.jpg) no-repeat center;
    background-size: cover;
}
.softwere_customize_cont {
  display: grid;
  row-gap: 50px;
}
.softwere_customize_cont .ma_services_img img {
  border-radius: 16px;
}
.softwere_customize .ma_list_mdl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.softwere_customize .ma_list_mdl ul {
  margin: 30px 0px 0px;
  grid-template-columns: 1fr;
}
.ma_services_img img {
  border-radius: 0px 80px 0px 0px;
  width: 100%;
}

.softwere_implementation {
  background-color: var(--theme_gray);
  position: relative;
  isolation: isolate;
}
.softwere_implementation::after {
  content: "";
  position: absolute;
  background-color: #e3e7e2;
  right: 0px;
  top: 0px;
  width: 30%;
  height: 100%;
  z-index: -1;
}
.softwere_implementation_info {
  padding-right: 60px;
}
.softwere_implementation_list {
  display: grid;
  gap: 38px;
  margin: 38px 0px;
}
.softwere_implementation_list li {
  display: flex;
  gap: 17px;
  align-items: flex-start;
}

.softwere_implementation_list li h4 {
  color: #ffffff;
  margin-bottom: 10px;
}
.softwere_implementation_list li p {
  color: #d8d8d8;
}
.softwere_implementation_img.text-center img {
  border-radius: 28px;
}
.softwere_outsourcing_info ul {
  display: grid;
  gap: 50px;
  margin-bottom: 0px;
}
.softwere_outsourcing_img img {
  border-radius: 16px;
}
.softwere_outsourcing_info li h4 {
  margin-bottom: 16px;
}
.order_list {
  padding-left: 20px;
}
.order_list li {
    list-style: auto;
    color: #6e6e6e;
    text-align: justify;
}

.softwere_integration .dev_items .dev_item:nth-child(even) {
  flex-direction: row-reverse;
}
.softwere_integration .dev_item {
  align-items: center;
}
.softwere_integration .dev_pl_img img {
  width: 253px;
  height: 253px;
  object-fit: cover;
  border-radius: 12px;
}
.softwere_integration .order_list {
  gap: 7px;
  display: grid;
  margin: 0px;
}

/* contact page */

.contact-descrp {
  padding: 32px 70px 84px;
  border: 1px solid #d4d4d4;
  border-radius: 16px;
  text-align: center;
  height: 100%;
}

.contact-descrp h2 {
  margin-bottom: 54px;
}

.phon-eml-add li {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 26px;
}

.phon-eml-add p {
  font-size: 16px;
  font-weight: 400;
  text-align: start;
  color: #6e6e6e;
}

.phon-eml-add a {
  font-size: 16px;
  font-weight: 400;
  color: #6e6e6e;
}
.phon-eml-add li h4 {
  margin-bottom: 8px;
}
.partner_banner {
  background: linear-gradient(rgb(0 0 0 / 31%), rgb(0 0 0 / 27%)),
    url(../images/partner-banner.jpg) no-repeat center;
  background-size: cover;
}
.partner_cont .row:nth-child(even) {
  flex-direction: row-reverse;
  margin-top: 50px;
}
.partner_heading {
  margin: 0px auto 70px;
  max-width: 1023px;
}
.partner_heading h2 {
  margin-bottom: 32px;
}
.partner_info {
  max-width: 603px;
}
.partner_info h2 {     text-transform: capitalize;
  margin: 16px 0px 32px;
}
.partner_info p, .partner_heading p {
    color: #6e6e6e; 
}
.text-center {text-align: center;}
.partner_img {
  text-align: center;
}


.contact_banner {
  background: linear-gradient(rgb(0 0 0 / 31%), rgb(0 0 0 / 27%)),
    url(../images/contact-banner.jpg) no-repeat center;
  background-size: cover;
}
.contact-social {
  margin-top: 50px;
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}
.contact-social li a i {
  font-size: 32px;
  color: #3d4844;
}

.contact-form .form-group {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-question {
  padding: 32px 50px 32px;
  height: 100%; text-transform: capitalize;
}

.contact_sec .form-control {
  border: none;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  font-weight: 400;
  color: #6e6e6e;
  padding: 6px 16px 10px;
  margin-bottom: 20px;
}
.contact_sec .form-control::placeholder {
    color: #6e6e6e;
}
.contact-msg-btn {
  margin-top: 25px;
}
.map_section iframe {
  width: 100%;
  height: 393px;
  border-radius: 16px;
}
/* contact page */
.privecy_banner {
    background: linear-gradient(rgb(0 0 0 / 31%), rgb(0 0 0 / 27%)),
    url(../images/privacy-banner.jpg) no-repeat center;
    background-size: cover;
}
.privecy_cont:not(:last-child) {
    margin-bottom: 25px;
}
.privecy_cont h4 {
    margin-bottom: 10px;
}
.blogdtl_img img {
    width: 100%;
   
    border-radius: 10px;
    margin-bottom: 30px;
}
.list-unstyled.blog-details__meta {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.list-unstyled.blog-details__meta li a {
    color:#6e6e6e;
}
.blog_banner {
    background: linear-gradient(rgb(0 0 0 / 31%), rgb(0 0 0 / 27%)),
    url(../images/blog-banner.jpg) no-repeat center;
    background-size: cover;
}
.blogdtl_info h2 {
    margin-bottom: 30px;
}
.blogdtl_info h4, .blogdtl_info p {
    margin-bottom: 20px;
}
/* ==================INNER PAGES=============== */

.footer {
  padding: 72px 0px 30px;
  background-color: var(--theme_gray);
}
.footer a,
.footer p {
  color: #adb2b1;
  margin: 0px;
  transition: 0.3s;
}
.footer a:hover {
  color: var(--theme_green);
}
.ftr_title {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 23px;
  margin-bottom: 20px;
}
.ftr_logo {
  margin-bottom: 20px;
}
.ftr_logo img {
    width: 150px;
}
.ftr_info {
  max-width: 300px;
}
.ftr_links {
  display: grid;
  row-gap: 8px;
}
.contact_info {
  display: grid;
  row-gap: 20px;
}
.contact_info li {
    display: flex;
    gap: 10px;
    align-items: center;
}
.contact_info li:not(:first-child) {
  align-items: center;
}
.contact_info li i {
    color: #ffffff;
    font-size: 25px;
}
.copyright {
  display: flex;
  flex-flow: wrap;
  justify-content: space-between;
  margin-top: 80px;
  gap: 10px;
}
.copyright p {
        font-family: 'Work Sans';
    font-size: 12px;
}
.standout_item_info h4, .android_info h4 , .softwere_outsourcing_info h4, .dev_pl_info h4 {
    text-transform: capitalize; }