/* **************** hero section **************  */

.hero {
}

.hero-content {
  padding: 15px 15px;
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 15px;
  /* align-items: center; */
}

.hero-content .left {
  align-self: flex-start;
  overflow: hidden;
  border-radius: 15px;
  font-size: 0;
}


.hero-content .left .swiper{
  height: 100%;
}
.hero-content .left .swiper-wrapper{
  height: 100%;
}
.hero-content .left .swiper .swiper-wrapper .swiper-slide{
  height: 100%;
  font-size: 0px;
}
.hero-content .left .swiper .swiper-wrapper .swiper-slide a{
  height: 100%;
  font-size: 0px;
}
.hero-content .left .swiper .swiper-wrapper .swiper-slide a img{
  height: 100%;
}

.swiper-button-prev{
  color: var(--color-bg-light);
}
.swiper-button-next{
  color: var(--color-bg-light);
}
.swiper-pagination-bullet-active {
  background-color: var(--color-bg-light) !important;
}


.hero-content .left img {
  height: 100%;
  object-fit: cover;
}

.hero-content .right {
  /* background: #ffffff;
    background: linear-gradient(160deg, rgba(255, 255, 255, 1) 1%, #fcd8c6 99%); */
  padding: 25px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.hero-content .right h1 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.hero-content .right>p {
  text-align: center;
  margin-bottom: 20px;
}
.hero-content .right i{
  color: white;
}
.hero-content .right .call {
  margin-bottom: 15px;
  width: 100%;
}

.hero-content .right .whatsapp {
  margin-bottom: 30px;
  width: 100%;
  background: #00ffea;
  background: linear-gradient(240deg, rgba(0, 255, 234, 1) 0%, rgba(0, 176, 6, 1) 46%);
}





.hero-content .right .rating {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-content .right .rating>div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-content .right .rating>div i {
  font-size: 25px;
  color: goldenrod;
}

.hero-content .right .rating>div h4 {}

.hero-content .right .rating>div p {
  font-size: 12px;
}


.hero-content .right .callnow {
  padding: 10px;
  width: 100%;
  border: none;
  background-color: var(--color-bg);
  color: white;
  border-radius: 7px;
  background: #00ffea;
  background: linear-gradient(240deg, rgba(0, 255, 234, 1) 0%, rgba(0, 176, 6, 1) 46%);
  font-size: 15px;
  font-weight: 500;
}

.hero-content .right .callnow a {
  color: white;
}





/* Responsive  */


@media screen and (max-width:992px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }

  .hero-content .left {
    border-radius: 0px;
  }

  .hero-content .right {
    border-radius: 0px;
    border: none;
  }




}