.taxio-service {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #f9f9f9;
  padding: 120px 0;
}

.taxio-service .site-heading {
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.taxio-service .site-title-tagline {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--title-font-family);
}

.taxio-service .site-title-tagline::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 100%;
  background: var(--color-primary);
  opacity: 0.2;
  left: -2px;
  bottom: 0;
}

.taxio-service .site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 45px;
  color: #000;
  margin-bottom: 0;
}

.taxio-service .site-title span {
  color: var(--color-primary);
}

.taxio-service .service-item {
  position: relative;
  padding: 0 20px 20px 20px;
  margin-bottom: 25px;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.taxio-service .service-item::before {
  content: "";
  position: absolute;
  background: #fff;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  border-radius: 20px;
  width: 100%;
  left: 0px;
  top: 130px;
  bottom: 0px;
  z-index: -1;
}

.taxio-service .service-item:hover {
  transform: translateY(-10px);
}

.taxio-service .service-img img {
  border-radius: 30px;
}

.taxio-service .service-content {
  position: relative;
  margin-top: 5px;
}

.taxio-service .service-icon {
  position: absolute;
  width: 90px;
  height: 90px;
  line-height: 82px;
  background: var(--color-primary);
  text-align: center;
  border-radius: 50%;
  margin-top: -50px;
  right: 40px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.taxio-service .service-icon img {
  width: 50px;
}

.taxio-service .service-arrow {
  margin-top: 25px;
}

.taxio-service .service-arrow .theme-btn {
  display: inline-block;
  font-size: 14px;
  color: var(--text-color);
  padding: 14px 25px;
  transition: all 0.5s;
  text-transform: uppercase;
  position: relative;
  border-radius: var(--button-radius);
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  border: none;
  background: var(--color-primary);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  z-index: 1;
}

.taxio-service .service-arrow .theme-btn::before {
  content: "";
  height: 300px;
  width: 300px;
  background: var(--bg-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(0);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.taxio-service .service-arrow .theme-btn:hover {
  color: #fff;
}

.taxio-service .service-arrow .theme-btn:hover::before {
  transform: translateY(-50%) translateX(-50%) scale(1);
}

.taxio-service .service-arrow .theme-btn i {
  margin-left: 5px;
}

.taxio-service .service-arrow .theme-btn span {
  margin-right: 5px;
}

.taxio-service .service-title a {
  display: inline-block;
  font-size: 22px;
  margin: 20px 0;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
}

.taxio-service .service-title a:hover {
  color: var(--color-primary);
}

.taxio-service .service-arrow .theme-btn {
  padding: 10px 22px;
}

.taxio-service .heading-divider {
  display: inline-block;
  position: relative;
  border: 3px solid var(--color-primary);
  width: 90px;
  height: 10px;
  border-radius: var(--button-radius);
}

.taxio-service .heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 7px;
  width: 15px;
  border-radius: var(--button-radius);
  background: var(--color-primary);
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(72px);
  }
  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }
  50% {
    transform: translateX(72px);
  }
  100% {
    transform: translateX(-1px);
  }
}
