/* Section Services */
.section-services .main .box {
  margin-bottom: 0px;
  overflow: hidden;
  position: relative;
}
.section-services .main .box img {
  transition: transform 0.3s;
  border-radius: 1rem;
}
.section-services .main .box figcaption {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  background-color: rgba(var(--cta-color-rgb), 0.85);
  padding: 1rem;
}
.section-services .main .box figcaption::before, .section-services .main .box figcaption::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(var(--primary-color-rgb), 0.55);
  width: calc(100% + 2rem);
  height: calc(100% + 2rem);
  transition: all 0.3s;
  pointer-events: none;
}
.section-services .main .box figcaption::before {
  top: -1.25rem;
  left: -1.25rem;
}
.section-services .main .box figcaption::after {
  top: -0.75rem;
  left: -0.75rem;
}
.section-services .main .box figcaption:hover::before, .section-services .main .box figcaption:hover::after {
  top: -1rem;
  left: -1rem;
}
.section-services .main .box figcaption h3 {
  font-size: 1.1rem;
  color: var(--white-color);
}
.section-services .main .box figcaption .icon {
  height: 2rem;
  line-height: 2rem;
  transition: line-height 0.3s;
}
.section-services .main .box figcaption:hover .icon {
  line-height: 1.5rem;
}
.section-services .main .box:hover img {
  transform: scale(1.05);
}

/* Section Services Single */
.section-service-single .main .right {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.section-service-single .main .right .item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  transition: background-color 0.3s;
  padding: 2rem 1rem;
}
.section-service-single .main .right .item:nth-child(odd) {
  background-color: rgba(var(--cta-color-rgb), 1);
}
.section-service-single .main .right .item:nth-child(even) {
  background-color: rgba(var(--cta-color-rgb), 0.85);
}
.section-service-single .main .right .item:hover {
  background-color: rgba(var(--cta-color-rgb), 0.75);
}
.section-service-single .main .video-service img {
  height: 300px;
  object-fit: cover;
}
.section-service-single .main .swiper-services .swiper-button-prev,
.section-service-single .main .swiper-services .swiper-button-next {
  color: var(--cta-color);
  transition: color 0.3s ease;
}
.section-service-single .main .swiper-services .swiper-button-prev:hover,
.section-service-single .main .swiper-services .swiper-button-next:hover {
  color: var(--primary-color);
}/*# sourceMappingURL=services.css.map */