body {
  font-family: Arial;
  background: #eee;
}

.barfiller {
  width: 100%;
  height: 12px;
  background: #fcfcfc;
  border: 1px solid #ccc;
  position: relative;
  margin-bottom: 20px;
  box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
}

.barfiller .fill {
  display: block;
  position: relative;
  width: 0px;
  height: 100%;
  background: #333;
  z-index: 1;
}

.barfiller .tipWrap {
  display: none;
}

.barfiller .tip {
  margin-top: -30px;
  padding: 2px 4px;
  font-size: 11px;
  color: #fff;
  left: 0px;
  position: absolute;
  z-index: 2;
  background: #333;
}

.barfiller .tip:after {
  border: solid;
  border-color: rgba(0, 0, 0, 0.8) transparent;
  border-width: 6px 6px 0 6px;
  content: "";
  display: block;
  position: absolute;
  left: 9px;
  top: 100%;
  z-index: 9;
}

/* revies css */
.main-reviews {
  padding-top: 50px;
}
.review-header {
  display: flex;
  gap: 20px;
  background: linear-gradient(
    170deg,
    var(--primary-color),
    var(--secondary-color)
  );
  padding: 20px;
  border-radius: 30px;
  align-items: center;
  justify-content: space-between;
}
.google-header {
  display: flex;
  gap: 20px;
  align-items: center;
}

.google-image img {
  width: 20px;
}
.google-header p {
  margin: 0px;
  font-size: 16px;
  font-weight: 500;
  color: white;
}

/*  */
.review-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 35px;
  padding-bottom: 50px;
  justify-content: center;
  align-items: center;
}
.section-title {
  text-align: center;
  padding-bottom: 20px;
}
.main-reviews .section-title span,
.faq-section .section-title span {
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 1px;
}
.cards {
  background: linear-gradient(
    170deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  color: white;
  padding: 20px;
  margin-top: 20px;
  border: none;
}
.rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rating img {
  max-width: 30px;
}

.reviewer {
  font-weight: bold;
}

.rating-person-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 50%;
  background-color: maroon;
  color: #ffffff;
}
.rating-person-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 50%;
  background-color: purple;
  color: #ffffff;
}
.rating-person-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 50%;
  background-color: green;
  color: #ffffff;
}
.rating-person-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 50%;
  background-color: orchid;
  color: #ffffff;
}
.rating-person-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 50%;
  background-color: skyblue;
  color: #ffffff;
}
.rating-person-6 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 50%;
  background-color: brown;
  color: #ffffff;
}
.rating-person-7 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 50%;
  background-color: rgb(0, 213, 255);
  color: #ffffff;
}
.rating-person-8 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 50%;
  background-color: black;
  color: #ffffff;
}
.rating-person-9 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  gap: 5px;
  margin-bottom: 0px;
  padding: 10px;
  border-radius: 50%;
  background-color: red;
  color: #ffffff;
}
.review-text {
  margin-top: 10px;
}

.item2 {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 35px;
  column-gap: 35px;
}
/* Reviews responsive */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) {
  .review-container {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .card {
    margin-top: 20px;
  }
}
@media only screen and (max-device-width: 767px) {
  .review-container {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .card {
    margin-top: 20px;
  }
}
/* --------------- */
.faq-section {
  padding: 80px 0px 50px 0px;
}
.faq-section .accordion {
  width: 100%;
}

.accordion-button:not(.collapsed) {
  /* background-color: #c5e5d8;*/
  background-color: #e9fff3;
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
  display: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:before {
  content: "";
  position: absolute;
  /*   right: 0.75rem; */
  right: 0.75rem;
  top: 1.25rem;
  height: 2px;
  width: 1rem;
  background-color: #333333;
}
.accordion-button.collapsed:after {
  content: "";
  position: absolute;
  /*   right: 1.1875rem; */
  right: 1.1875rem;
  top: 0.8125rem;
  height: 1.0625rem;
  width: 0.125rem;
  border-style: none;
  background-color: #333333;
}

.faq-section .accordion-button h5 {
  /*   color: #7dbc9e; */
  color: #333333;
  margin-right: 13px;
}
.accordion-body {
  background-color: #e9fff3;
}
/* button:focus:not(:focus-visible) {
    outline: 0;
} */

@media screen and (min-width: 768px) {
  /*   .faq-section .accordion {
    width: 50%;
    margin: 0 auto;
  } */

  .accordion-button:before {
    right: 0.75rem;
  }

  .accordion-button.collapsed:after {
    right: 1.1875rem;
  }

  .faq-section .accordion-button h5 {
    margin-right: 0px;
  }
}
