.service__item {
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  overflow: hidden;
  transition: 0.4s;
  padding: 30px 20px;
  position: relative;
}
.service__item:hover {
  z-index: 99;
}
.service__single__item .service__posterr {
  display: block;
  width: 100%;
  border-radius: 5px 5px 0px 0px;
}
.service_image_overlay {
  position: relative;
  overflow: hidden;
}
.service__single__item .service__posterr::before {
  transition: 0.5s;
  height: 0%;
  border-radius: 5px 5px 0px 0px;
}
.service_image_overlay::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--theme-primary-color);
  transition: 0.5s;
  opacity: 0.7;
}
.service__single__item:hover .service__posterr::before {
  height: 100%;
}
.service_one .service__item {
  display: flex;
  gap: 20px;
}
.service__item h5 {
  transition: .5s;
}
.service__icon_warrp i {
  font-size: 40px;
  color: var(--theme-primary-color);
  transition: 0.6s;
  display: inline-block;
  text-align: center;
}
.service__single__item .service__item .service__item__content h5 {
  color: var(--theme-secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
}
.service__single__item .service__item .service__item__content a {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  margin-top: 10px;
}
.service_one .service_number {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0px 0px 49px 0px rgba(12, 62, 185, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease-in;
}
.service_one .service_number::after {
  content: "";
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.service_one .service_number::before {
  content: "";
  width: 55px;
  height: 55px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.3);
  animation-delay: 0s;
  z-index: -2;
}
.service__single__item:hover .service_number {
  top: 50%;
}
.service_icon_img {
  display: inline-block;
  text-align: center;
  transition: .5s
}
.service_one .service__icon_warrp {
  flex: 0 0 auto;
}
/* --------------------------------services styles 03--------------------------------*/
.service__single__item.service_three {
    text-align: center;
}
.service__single__item.service_three .service__item {
    display: inherit;
}
.service__poster__wrapper .service__poster {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}
.service__poster__wrapper .service__poster::before {
    height: 0%;
    transition: 0.5s;
}
.service__poster.service_image_overlay img {
    width: 100%;
    height: 100%;
}
.service__single__item:hover
    .service__poster::before {
    height: 100%;
}

/* =================================================================Responses =================================================================*/

@media (max-width: 767px) {
  .service__single__item .service__item {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service__single__item .service__item {
    padding: 30px 20px;
  }
  .service_item_icon {
    margin-bottom: 20px;
  }
}
