.wa-service-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}
.wa-service-gallery-content-inner {
  border-radius: var(--radius-s);
  position: relative;
  height: 20rem;
  min-height: 20rem;
  max-height: 20rem;
  overflow: hidden;
  width: auto;
  transition: 0.2s all ease-in-out;
}
@media (max-width: 550px) {
  .wa-service-gallery-content-inner {
    max-height: 15rem;
    min-height: 15rem;
  }
}
@media (max-width: 487px) {
  .wa-service-gallery-content-inner {
    max-height: 12rem;
    min-height: 12rem;
  }
}
.wa-service-gallery-content-inner img, .wa-service-gallery-content-inner a {
  transition: 0.2s all ease-in-out;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (min-width: 767px) {
  .wa-service-gallery-content-inner:hover {
    transform: translateY(-5px);
  }
}
.wa-services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-l);
}
.wa-services-list-content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-s);
}
.wa-services-list-box {
  background-color: var(--shade-ultra-light);
  padding: var(--space-xs) var(--space-s);
  border-radius: var(--radius-xs);
  color: var(--base);
  transition: 0.2s all ease-in-out;
  font-weight: 700;
  z-index: 1;
  position: relative;
  overflow: hidden;
}
.wa-services-list-box:hover {
  color: var(--white);
}
.wa-services-list-box:after {
  background-color: var(--secondary);
  border-radius: 50%;
  content: "";
  display: block;
  height: 8rem;
  width: 8rem;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(100%, 100%);
  transform-origin: bottom right;
  transition: 0.4s all ease-in-out;
  z-index: -1;
}
.wa-services-list-box:hover::after {
  right: 40%;
  transform: translate(0, 0) scale(8);
  transform-origin: center center;
}
@media (max-width: 767px) {
  .wa-services-list-box {
    width: 100%;
  }
}

