.taxio-service {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #f9f9f9;
 padding: clamp(30px, 5.208vw, 100px) 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: clamp(14px, 0.94vw, 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-size: clamp(24px, 2.08vw, 40px);
    color:#000000;
    line-height: 1.2;
    font-weight: 700;
    text-transform: lowercase;
    margin-bottom: 0;
    margin-top: 10px;
}
.taxio-service .site-title:first-line {

    text-transform: capitalize;
 
}

.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: -64px;
  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: #000;
  padding: 10px 22px;
  transition: all 0.5s;
  text-transform: capitalize;
  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: #000;
}

.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-text{
  font-size:clamp(14px, 0.83vw, 16px)
}

.taxio-service .service-title a {
  display: inline-block;
  font-size: clamp(16px, 1.15vw, 22px);
  margin: 20px 0;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-color);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

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



.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);
  }
}


@media(max-width:991px){
  .taxio-service .service-title a {
    -webkit-line-clamp: 2;
  }
  .taxio-service .service-text {
    overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  }
}