:root {
  --themedeepyellow: #c6aa64;
  --themelightyellow: #dac77c;
  --background: #f9fdff;
  --themegray: rgba(0, 0, 0, 0.03);
  --themeblack: #32373b;
}

.herosection {
  min-height: 476px;
}
.herosection .carousel-inner {
  min-height: 476px;
}
.herosection .carousel-inner .carousel-item {
  min-height: 476px;
  background: linear-gradient(90deg, rgba(50, 55, 59, 0.82) 9.51%, rgba(50, 55, 59, 0.42) 82.19%), url("../img/serviceherobg.webp") no-repeat;
}

#service {
  background: white;
}
#service .container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px 20px;
}
#service .container .service-card {
  position: relative;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 16px 0px #dceff8;
}
#service .container .service-card .badge {
  position: absolute;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 45%;
  left: 7%;
  border-radius: 50%;
  background: var(--themedeepyellow);
  transform: translate(0px, -50%);
}

@media (max-width: 1200px) {
  #service .container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  #service .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .herosection {
    min-height: 306px;
  }
  .herosection .carousel-inner {
    min-height: 306px;
  }
  .herosection .carousel-inner .carousel-item {
    min-height: 306px;
    background: linear-gradient(90deg, rgba(50, 55, 59, 0.82) 9.51%, rgba(50, 55, 59, 0.42) 82.19%), url("../img/serviceherobgmobile.webp") no-repeat;
    background-size: cover;
  }
  #service .container {
    grid-template-columns: 1fr;
  }
  #service .container .service-card .badge {
    width: 66px;
    height: 66px;
  }
}/*# sourceMappingURL=service.css.map */