.banner {
  height: calc(100vh - 129px);
}

/* .banner .img-overlay::before{
  background: rgba(2, 6, 23, 0.95);
} */

.banner-service-container {
  bottom: 5%;
}

.banner-service {
  /* background-color: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(5px);
}


.home-about ul li {
  list-style: none;
  display: flex;
  align-items: center;
}

.home-about ul li::before {
  content: "";
  height: 28px;
  width: 90px;
  background-image: url('../img/icons/badge-check 1.png');
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 10px;
}


.horoscope-card svg {
  width: 112px;
  height: 128px;
}

.horoscope-card:hover svg path {
  transition: all var(--transition);
}

.horoscope-card:hover svg path {
  fill: #ffffff;
}


.service-card svg,
.service-card img {
  width: 112px;
  /* height: 128px; */
}

.service-card:hover svg path,
.service-card:hover img {
  transition: all var(--transition);
}

.service-card:hover svg path {
  fill: #ffffff;
}

.service-card:hover img {
  filter: brightness(0) invert(1);
}


.expect-card:hover {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
  color: var(--color-1);
}


.testimonials .card .card-body img {
  height: 80px;
  width: 80px;
  margin-bottom: -60px;
}

.testimonials .swiper-slide.swiper-slide-next .card .card-body {
  background-color: var(--color-2) !important;
  color: #ffffff !important;
  transition: var(--transition);
  transition-delay: .2s;
}

.testimonials .swiper-slide.swiper-slide-next {
  z-index: 1;
}

.testimonials .swiper-slide.swiper-slide-next .card {
  transition: .4s;
  transform: scale(1.25);
}

.testimonials .swiper-button-prev {
  left: -65px;
}

.testimonials .swiper-button-next {
  right: -65px;
}






.circle-inner-img {
  border-top-left-radius: 7rem;
  border-top-right-radius: 7rem;
  border-bottom-left-radius: 7rem;
  border-bottom-right-radius: 7rem;
}

.circle-img {
  animation: spin 20s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


.gallery-img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all .4s;
}

.gallery-img-box .icon {
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.gallery-img-box:hover:before,
.gallery-img-box:hover .icon {
  opacity: 1;
  visibility: visible;
}


.blog-title,
.blog-btn svg {
  transition: .4s;
}

.blog-title:hover,
.blog-btn:hover {
  color: var(--bs-primary);
}

.blog-btn:hover svg {
  transform: translateX(5px);
}

.blog-cat-link:hover {
  text-decoration: underline;
}

.blog-cat-card ul li a {
  transition: .4s;
}

.blog-cat-card ul li a:before {
  content: "\f101";
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  font-size: 15px;
  margin-right: 5px;
  display: inline-block;
  color: var(--bs-primary);
}

.blog-cat-card ul li a:hover {
  color: var(--bs-primary);
  padding-left: 5px;
}

.blog-details-descr p {
  color: inherit;
}





/* responsive */

@media screen and (min-width: 992px) {

  .banner {
    /* height: calc(100vh - 145px); */
    min-height: 650px;
  }

  .banner .heading {
    font-size: 3.5rem;
  }

}

@media only screen and (max-width: 768px) {

  .banner {
    height: 110vh;
  }

  /* .banner-content-container {
    top: 40% !important;
  } */

  .testimonials .swiper-slide.swiper-slide-next .card {
    transform: none;
  }

}