.service-section {
  position: relative;
  z-index: 9;
  background-position: center;
  background-color: #1f2024;
}
.light > .service-section {
  background-color: #fff;
  --white: #222;
  --header: #ddd;
}
.service-section h2 {
  color: var(--white);
}
.service-section .swiper-slide {
  height: auto;
}
.service-section .link-btn {
  text-align: start;
}
.service-section .container-fluid {
  padding: 0 175px;
}
.service-section .array-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1600px) {
  .service-section .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 1199px) {
  .service-section .container-fluid {
    padding: 0 20px;
  }
  .service-section .array-button {
    display: none;
  }
}
.service-section .array-button .array-prev {
  background-color: var(--white);
  color: var(--header);
  /* position: absolute;
  inset-inline-start: 18%;
  top: 20%;
  transform: translate(-50%, -50%); */
  z-index: 99;
  font-size: 16px;
}
.service-section .array-button .array-prev:hover {
  background-color: var(--header);
  color: var(--white);
}
.service-section .array-button .array-next {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  /* position: absolute;
  inset-inline-end: 18%;
  top: 20%;
  transform: translate(-50%, -50%); */
  z-index: 99;
  font-size: 16px;
}
.service-section .array-button .array-next:hover {
  background-color: var(--theme);
}
.service-section .array-button.style-2 .array-prev {
  background-color: var(--white);
  color: var(--header);
  border: none;
}
.service-section .array-button.style-2 .array-prev:hover {
  background-color: var(--theme);
  color: var(--white);
}
.service-section .array-button.style-2 .array-next {
  background-color: var(--theme);
  color: var(--white);
  border: none;
}
.service-section .array-button.style-2 .array-next:hover {
  background-color: var(--white);
  color: var(--header);
}
.service-section .bg-shape {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: -1;
}

.service-box-items {
  margin-top: 30px;
  background-color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-box-items .service-thumb {
  padding: 18px 18px 65px;
  position: relative;
  height: 300px;
}
.service-box-items .service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-box-items .service-thumb .icon {
  position: absolute;
  bottom: 30px;
  inset-inline-start: 40px;
  width: 68px;
  height: 68px;
  text-align: center;
  background-color: var(--white);
  box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.06);
  padding: 14px;
  font-size: 30px;
  color: var(--theme);
}
.service-box-items .service-content {
  margin-bottom: 30px;
  padding: 0 30px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.service-box-items .service-content .number {
  text-align: end;
  -webkit-text-stroke: 1px hsla(0, 0%, 40%, 0.5);
  -webkit-text-fill-color: transparent;
  transition: all 0.4s ease-in-out;
  font-size: 50px;
  font-weight: 700;
  position: absolute;
  inset-inline-end: 30px;
  top: -50px;
}
.service-box-items .service-content .number:hover {
  -webkit-text-stroke: 1px rgba(245, 91, 31, 0.5);
}
.service-box-items .service-content h3 {
  margin-bottom: 15px;
}
.service-box-items .service-content h3 a:hover {
  color: var(--theme);
}
.service-box-items .service-content p {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}
.service-box-items:hover .service-content .number {
  -webkit-text-stroke: 1px rgba(245, 91, 31, 0.5);
}
