.body {
  font-family: "Mulish", sans-serif;
}

.header {
  background-size: cover;
  background-repeat: no-repeat;
}
.header img {
  padding-top: 400px;
}

.gradient-yellow {
  color: rgb(249, 148, 59);
  color: linear-gradient(125deg, rgb(249, 148, 59) 0%, rgb(255, 187, 0) 100%);
}

.bg-gradient-yellow {
  background: rgb(249, 148, 59);
  background: linear-gradient(125deg, rgb(249, 148, 59) 0%, rgb(255, 187, 0) 100%);
}

.testimony-image {
  border-radius: 100%;
  width: 70px;
  height: 70px;
  overflow: hidden; /* Ensures that overflowing parts of the image are hidden */
}

.testimony-image img {
  width: 100%; /* Make the image fill the container horizontally */
  height: 100%; /* Make the image fill the container vertically */
  -o-object-fit: cover;
     object-fit: cover; /* Ensures the image scales and fills the container while cropping evenly */
}

.store-head h1 {
  margin-left: 10px;
  font-weight: 700;
  color: #f07508;
}
.store-head .left h5,
.store-head .right h5 {
  font-weight: 800;
  font-size: 25px;
}
.store-head .right {
  border-left: 2px solid rgb(249, 148, 59);
}
.store-head .btn-loc {
  border-radius: 20px;
}

.service-card {
  margin: 15px;
  border-radius: 20px;
  font-family: "Mulish", sans-serif;
  width: 350px;
  box-shadow: -2px 1px 39px -4px rgba(0, 0, 0, 0.38);
}
.service-card img {
  border-radius: 20px 20px 0 0;
}
.service-card .service-card-top {
  height: 200px;
  border-radius: 20px 20px 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.rating {
  background-color: #000;
}
.rating .see-rating {
  text-decoration: none;
  color: white;
  font-size: 20px;
}
.rating .rating-card {
  margin: 20px;
  width: 600px;
  background-color: white;
  border-radius: 20px 0 20px 0;
}

.grid-wrapper > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-wrapper > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

.grid-wrapper {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
}

.grid-wrapper .wide {
  grid-column: span 2;
}

.grid-wrapper .tall {
  grid-row: span 2;
}

.grid-wrapper .big {
  grid-column: span 2;
  grid-row: span 2;
}

.cta_card {
  background-image: none;
  box-shadow: -3px -3px 38px -9px rgba(0, 0, 0, 0.31);
  text-align: center;
}

@media (max-width: 576px) {
  .header img {
    width: 200px;
  }
  .store-head h1 {
    font-size: 23px;
  }
  .store-head .right {
    border-left: none;
    border-top: #f07508 2px solid;
  }
}
@media (max-width: 1200px) {
  .gallery-image .image-2 {
    margin-top: 20px;
    height: 100%;
    width: 100% !important;
  }
}/*# sourceMappingURL=service-detail.css.map */