.banner_wrapper {
  /* background-image: url("../images/hero-bg2.webp"); */
  background-size: cover;
  background-repeat: no-repeat;
  padding: 200px 0 100px 0;
  color: var(--white-color);
  background-color: var(--main-color);
  background-position: bottom;

  background: linear-gradient(60deg, #302e6e, #1c3543);
}

header {
  position: fixed;
  top: 0;
  z-index: 99;
  background-color: transparent;
  /* box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.07); */
  width: 100%;
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
  padding: 4px;
}

header.header-sticky {
  box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.07);
  background-color: #fff;
}

header.header-sticky .menu ul li a {
  color: #000;
}

.myNav_content {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.myNav_content .menu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  border-radius: 50px;
}

.header_btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.myNav {
  padding: 0px 1rem;
}

/* .myNav {
  position: absolute;
  left: 2rem;
  width: 96%;
  top: 1rem;
  z-index: 3;
} */

.myNav.sticky {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  width: 100%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid #ccc;
  background-color: var(--white-color);
}
.menu ul {
  display: flex;
  gap: 10px;
  align-items: center;
}

.logo {
  background-color: var(--white-color);
  border-radius: 100%;
  padding: 10px;
  width: 112px;
  height: 112px;
}

.logo img {
  /* background-color: var(--white-color); */
  /* border-radius: 100px; */
  width: 180px;
}

.menu ul li a {
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  padding: 5px 15px;
  border-radius: 8px;
}

.menu ul li a:hover {
  background-color: var(--main-color);
}

.menu ul li a::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: var(--main-color);
  left: 0;
  transition: 0.5s all;
}

.menu ul li a.active {
  background-color: var(--main-color);
}

.logo img {
  width: 100px;
}

/* banner_wrapper__content */
.banner_wrapper__content h1 {
  font-size: 45px;
}
.banner_wrapper__content p {
  margin-top: 1rem;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
}
.myBtn {
  margin-top: 2rem;
}

.banner_img,
.about_content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 5px solid #fff;
  border-radius: 10px;
}

/* about css start */
.global_wrapper {
  padding: 70px 0;
  background-color: #f6f6f6;
}

.about_img img {
  width: 100%;
}

.section-name {
  max-width: max-content;
  background-color: var(--blue-color);
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 15px;
  border-radius: 100px;
  padding: 3px 10px;
  font-weight: 500;
}
.about_content h2 {
  font-size: 36px;
  font-weight: 500;
  margin-top: 1rem;
}

.about_content {
  padding-left: 30px;
}
.about_content p {
  margin-top: 1rem;
  font-size: 18px;
}

/* client_wrapper */
.client_wrapper {
  padding: 60px 0;
  text-align: center;
  /* background-color: var(--main-color); */
}

.main_heading h2 {
  text-transform: capitalize;
  font-size: 36px;
  font-weight: bold;
}
.main_heading p {
  margin-top: 7px;
  font-size: 18px;
  line-height: 1.4;
  text-wrap: wrap;
}

.clients_box {
  display: flex !important;
  justify-content: center;
  align-items: center;
  /* background-color: #fff; */
  margin-inline: 10px;
}
.clients_box img {
  width: 190px;
  aspect-ratio: 3/2;
  object-fit: contain;
}

.global_content {
  margin-top: 3rem;
}

/* services */
.main_heading {
  text-align: center;
}
.main_heading h2 {
  text-transform: capitalize;
  font-size: 36px;
  margin-top: 1rem;
}

.main_heading p {
  margin: 0 auto;
  margin-top: 12px;
  max-width: 880px;
}
.service_box__img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service_box__content {
  /* background-color: var(--blue-color); */
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  color: var(--white-color);
  width: 100%;
  text-align: center;
  z-index: 3;
}
.service_box__content h3 {
  text-transform: capitalize;
  font-size: 24px;
  margin-bottom: 3px !important;
}
.service_box__content a {
  color: var(--white-color);
  text-transform: capitalize;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
  outline: 0;
  border: 0;

  font-weight: 300;
}

.service_box__content a i {
  font-size: 12px;
}

.service_box {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ccc;
  outline: none;
  margin-bottom: 24px;
  position: relative;
}

.service_box::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

/* cta_wrapper */
.cta_wrapper {
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/cta.jpg");
  background-position: 50% 40%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  background-attachment: fixed;
  text-align: center;
}

.cta_content {
  color: var(--white-color);
}
.cta_content h2 {
  font-size: 48px;
}
.cta_content p {
  max-width: 900px;
  margin: 0 auto;

  margin-top: 1rem;
  font-size: 18px;
}

/* testimonials */
.testimonial_box {
  background-color: var(--light-color);
  padding: 20px;
  border: 1px solid #ccc;
  margin: 0 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
}
.testimonial_box:nth-child(even) {
  background-color: #cccdf4;
}
.rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.rating i {
  color: goldenrod;
}

.testimonial_box__parra p {
  margin: 12px 0 !important;
}
.user-info h3 {
  text-transform: capitalize;
  font-weight: bold;
  font-size: 22px;
}
.user-info p {
  text-transform: capitalize;
  font-size: 16px;
  font-style: italic;
}

/* contact css */
.contact-section .container {
  max-width: 1200px;
  margin: auto;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1 1 45%;
}

.contact-info h2 {
  color: var(--main-color);
  font-size: 32px;
  font-weight: 600;
}

.contact-info p {
  font-size: 15px;
  margin-top: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 10px !important;
}

.info-boxes {
  margin-top: 30px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-box .icon {
  background-color: var(--blue-color);
  padding: 15px;
  border-radius: 50%;
  margin-right: 15px;
  font-size: 20px;
  color: var(--white-color);
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-box h4 {
  margin-bottom: 5px !important;
  color: #000;
  font-size: 18px;
}

hr {
  margin: 30px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.social {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social h5 {
  font-weight: 600;
  color: #000;
}

.social-icons a {
  background-color: var(--blue-color);
  color: var(--white-color);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
}
.social-icons a:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  transition: 0.3s ease all;
}

.contact-form {
  flex: 1 1 45%;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px;
  border: 1px solid var(--main-color);
}

.contact-form h4 {
  font-size: 25px;
  margin-bottom: 20px !important;
  /* color: var (--white-color); */
  font-weight: 600;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  outline: none;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  background-color: whitesmoke;
}

.form-row {
  display: flex;
  gap: 15px;
}

.form-row input {
  flex: 1;
}

/* journey_box */
.journey_box {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.journey_box::-webkit-scrollbar {
  display: none;
}

.journey-image {
  flex: 0 0 50%;
}

.journey-image img {
  width: 100%;
  height: auto;
  display: block;
}
.journey_wrapper {
  background-color: whitesmoke;
}

.hero-banner {
  position: relative;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
}

.hero-banner .banner_wrapper__content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 4;
  color: #fff;
}

/* Facts counter */
.fact-two {
  padding: 5rem 0;
  background-size: cover;
  background-position: center;
  /* background: url(../images/counter.jpg); */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.fact-two .counter-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(4px);
}

.fact-two::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--black-color);
  opacity: 0.6;
  z-index: 1;
}

.fact-two-single {
  padding: 22px 0px;
  text-align: center;
  border: 1px dashed rgba(237, 237, 237, 0.99);
  border-radius: 135px;
  transition: 0.3s;
}

.fact-two-detail-box {
  position: relative;
  z-index: 6;
}

.counter1 {
  display: flex;
  gap: 12px;
  justify-content: space-around;
  padding: 0 16px 0 12px;
  align-items: center;
}

.fact-two-single-top-icon-one {
  background-color: #e9d175;
}
.fact-two-single-top-icon {
  position: relative;
  width: 72px;
  height: 72px;
  background-color: #e9d175;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
}

.fact-two-single-top-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #ffffff;
  z-index: 9;
}

.fact-two-single-title h2 {
  color: #fff;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 37px;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.fact-two-single-detail p {
  color: #fff;
  font-size: 17px;
  font-weight: 400;
  line-height: 9px;
  font-family: "Jost", sans-serif;
  margin-bottom: 0;
}

.fact-two-single-top-icon-two {
  background-color: #ca0d1a;
}

.fact-two-single-top-icon-three {
  background-color: #00c39a;
}

.fact-two-single-top-icon-four {
  background-color: #f8466d;
}

.fact-two-single-detail {
  margin-top: 15px;
}

.why-choose-us-two {
  position: relative;
  padding: 85px 0 20px;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .why-choose-us-two {
    padding: 90px 0 24px;
  }
}
.why-choose-us-two .icon-dots-3 {
  position: absolute;
  top: 0;
  right: 0;
  width: 357px;
  height: 357px;
  background-image: url(../images/icons/icon-dots-3.png);
}
@media (max-width: 991.98px) {
  .why-choose-us-two .icon-dots-3 {
    opacity: 0.5;
  }
}
.why-choose-us-two .float-image {
  position: absolute;
  right: 30px;
  bottom: -30px;
}
@media (max-width: 575.98px) {
  .why-choose-us-two .float-image {
    display: none;
  }
}
.why-choose-us-two .content-column {
  position: relative;
}
.why-choose-us-two .content-column .inner-column {
  position: relative;
}
@media (max-width: 767.98px) {
  .why-choose-us-two .content-column .inner-column {
    text-align: center;
  }
}

@media (max-width: 767.98px) {
  .why-choose-us-two .content-column .inner-column .exp-box {
    margin-bottom: 20px;
  }
}
.why-choose-us-two .content-column .inner-column .exp-box .inner {
  position: relative;
  width: 169px;
  height: 189px;
  border: 3px solid #ebebeb;
  padding: 2px 10px 1px 20px;
}
@media (max-width: 1199.98px) {
  .why-choose-us-two .content-column .inner-column .exp-box .inner {
    padding: 2px 10px 1px;
    width: 160px;
  }
}
@media (max-width: 767.98px) {
  .why-choose-us-two .content-column .inner-column .exp-box .inner {
    margin: 0 auto;
    padding: 10px 10px;
  }
}
.why-choose-us-two .content-column .inner-column .exp-box .count {
  font-size: 110px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-image: url(../images/mask.webp);
  background-size: cover;
  margin-bottom: 0;
  line-height: 1em;
  letter-spacing: -0.01em;
  font-weight: bolder;
  background-position: right;
}
.why-choose-us-two .content-column .inner-column .exp-box .title {
  font-size: 18px;
  letter-spacing: -0.01em;
  padding-left: 5px;
  line-height: 22px;
  margin-top: 6px;
  font-family: "Outfit", sans-serif;
  color: var(--main-color);
  font-weight: 500;
}
.why-choose-us-two .tabs-column {
  position: relative;
}
.why-choose-us-two .tabs-column .inner-column {
  position: relative;
}
.why-choose-us-two .tabs-column .inner-column .image {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .why-choose-us-two .tabs-column .inner-column .image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.inner-box .content {
  margin-bottom: 15px;
}

.inner-box .title {
  color: var(--main-color);
}

.bold-text {
  font-weight: 600;
  color: #262626;
}

.about-image-box {
  width: 470px;
  text-align: center;
}

.about_wrapper {
  padding: 60px 0;
}

.wrapper {
  margin-top: 20px;
}

.gallery {
  column-count: 1;
  column-gap: 0.5rem;
  list-style-type: none;
}

@media (min-width: 500px) {
  .gallery {
    column-count: 2;
  }
}

@media (min-width: 900px) {
  .gallery {
    column-count: 3;
  }
}

.gallery li {
  break-inside: avoid;
  min-height: 30vmin;
  margin-bottom: 0.5rem;
  background-color: #222;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery li::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.gallery li img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.gallery .industry-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  width: 70%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
  text-transform: uppercase;
}

/* Timeline css */

.timeline {
  white-space: nowrap;
  overflow-x: hidden;
  background-color: #f6f8fc;
}

.timeline ol {
  font-size: 0;
  width: 100vw;
  padding: 165px 0;
  transition: all 1s;
  margin-bottom: 0;
}

.timeline ol li {
  position: relative;
  display: inline-block;
  list-style-type: none;
  width: 160px;
  height: 3px;
  background: var(--blue-color);
}

.timeline ol li:last-child {
  width: 280px;
}

.timeline ol li:not(:first-child) {
  margin-left: 14px;
}

.timeline ol li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 1px);
  bottom: 0;
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--main-color);
}

.timeline ol li div {
  position: absolute;
  left: calc(100% + 7px);
  width: 280px;
  padding: 15px;
  font-size: 1rem;
  white-space: normal;
  color: black;
  background: white;
  box-shadow: 0px 2px 20px rgb(159 159 159 / 40%);
}

.timeline ol li div::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
}

.timeline ol li:nth-child(odd) div {
  top: -16px;
  transform: translateY(-100%);
}

.timeline ol li:nth-child(odd) div::before {
  top: 100%;
  border-width: 8px 8px 0 0;
  border-color: white transparent transparent transparent;
}

.timeline ol li:nth-child(even) div {
  top: calc(100% + 16px);
}

.timeline ol li:nth-child(even) div::before {
  top: -8px;
  border-width: 8px 0 0 8px;
  border-color: transparent transparent transparent white;
}

.timeline time {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}

/* TIMELINE ARROWS
–––––––––––––––––––––––––––––––––––––––––––––––––– */

/* .timeline .arrows {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.timeline .arrows .arrow__prev {
  margin-right: 20px;
}

.timeline .disabled {
  opacity: 0.5;
}

.timeline .arrows img {
  width: 45px;
  height: 45px;
} */

/* GENERAL MEDIA QUERIES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (max-width: 599px) {
  .timeline ol,
  .timeline ol li {
    width: auto;
  }

  .timeline ol {
    padding: 0;
    transform: none !important;
  }

  .timeline ol li {
    display: block;
    height: auto;
    background: transparent;
  }

  .timeline ol li:first-child {
    margin-top: 25px;
  }

  .timeline ol li:not(:first-child) {
    margin-left: auto;
  }

  .timeline ol li div {
    position: static;
    width: 94%;
    height: auto !important;
    margin: 0 auto 25px;
  }

  .timeline ol li:nth-child(odd) div {
    transform: none;
  }

  .timeline ol li:nth-child(odd) div::before,
  .timeline ol li:nth-child(even) div::before {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    border: none;
    border-left: 1px solid white;
    height: 25px;
  }

  .timeline ol li:last-child,
  .timeline ol li:nth-last-child(2) div::before,
  .timeline ol li:not(:last-child)::after,
  .timeline .arrows {
    display: none;
  }
}

.timeline-wrapper {
  margin-top: 30px;
}

/* certifications */

.certifications .main_heading {
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  align-items: start;
}

.certifications .main_heading p {
  text-align: left;
}

.certifications .certi-wrapper {
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #dedede;
}

.certifications .certification-points {
  padding-left: 20px !important;
  margin-top: 10px;
}

.certifications .certification-points li {
  position: relative;
  text-align: left;
}

.certifications .certification-points li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--main-color);
  min-width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* Work process */
.work-porcess-area {
  background: #f6f8fc;
}

.work-porcess-area.white {
  background: #ffffff;
}

.work-porcess-area .process-info {
  margin-top: 7px;
}

.work-porcess-area .process-info .single-process {
  width: 170px;
  height: 170px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  padding-top: 53px;
  margin: 0 auto;
  background: #ffffff;
  -webkit-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
  -o-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
  -moz-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
  -ms-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
  box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.work-porcess-area .process-info .single-process:hover {
  -webkit-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
  -o-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
  -moz-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
  -ms-box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
  box-shadow: 0 10px 30px 0 rgba(248, 32, 72, 0.4);
}

.work-porcess-area .process-info .single-process:after {
  position: absolute;
  content: "\f101";
  font-family: "fontawesome";
  top: 50%;
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -65px;
  color: var(--main-color);
}

.work-porcess-area .process-info .single-process.first {
  background: var(--main-color);
}

.work-porcess-area .process-info .single-process.first i:before {
  color: #ffffff;
}

.work-porcess-area .process-info .single-process.first h4 {
  color: #ffffff;
}

.work-porcess-area .process-info .single-process.thard {
  background: var(--main-color);
}

.work-porcess-area .process-info .single-process.thard i:before,
.work-porcess-area .process-info .single-process.last i:before {
  color: #ffffff;
}

.work-porcess-area .process-info .single-process.thard h4,
.work-porcess-area .process-info .single-process.last h4 {
  color: #ffffff;
}

.work-porcess-area .process-info .single-process.last {
  background-color: var(--main-color);
}

.work-porcess-area .process-info .single-process.last:after {
  display: none;
}

.work-porcess-area .process-info .single-process i {
  display: inline;
  line-height: 25px;
  margin-bottom: 12px;
}

.work-porcess-area .process-info .single-process i:before {
  font-size: 36px;
  color: var(--main-color);
}

.work-porcess-area .process-info .single-process h4 {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--main-color);
}

@media only screen and (max-width: 767px) {
  .work-porcess-area .process-info .single-process::after {
    display: none;
  }

  .work-porcess-area .process-info .single-process {
    margin-top: 30px;
  }

  .work-porcess-area .section-title h2 {
    margin-bottom: 5px;
  }

  .section-header h2 {
    font-size: 30px;
  }
}

.work-porcess-area .about_content {
  align-items: center;
}

header.header-sticky .menu ul li a.active {
  color: #fff;
}

header.header-sticky .menu ul li a:hover {
  color: var(--white-color);
}

.services-section .service-box {
  margin-top: 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 400px;
  height: 200px;
}

.services-section .service-box::after {
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.services-section .service-box h4 {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  z-index: 4;
  text-align: center;
  font-size: 20px;
  width: 100%;
}

.client-img {
  /* border: 1px solid #e7e7e7; */
  padding: 2rem;
  margin-bottom: 2rem;
  width: 200px;
  height: 200px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 130px; */
  margin-inline: auto;
  background-color: #fff;
}

.client-img img {
  width: 100%;
  /* height: 100%; */
  background-color: #fff;
}

.desktop-header {
  padding-top: 6px;
}

.desktop-header.header-sticky {
  padding-top: 0;
}

.client-img {
  flex-direction: column;
  gap: 5px;
  border: 1px solid #dedede;
  position: relative;
}

.client-img h6 {
  font-size: 14px;
  color: #444;
  width: 100%;
}
