/* Happy Customer Start */
.happy-customer {
  width: 100%;
  background-color: var(--light-blue);
  z-index: 10;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.container-customer .customer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.container-customer .customer-content .content:not(:first-child)::before {
  content: "";
  height: 40px;
  width: 1px;
  background-color: rgb(255, 255, 255);
  margin-left: 20px;
  border-radius: 100px;
}

.container-customer .customer-content .content {
  display: flex;
  align-items: center;
  color: white;
}

.container-customer .customer-content .content h3 {
  color: white;
  font-size: 25px;
  font-weight: bolder;
}

.container-customer .customer-content .content h6 {
  margin-top: -8px;
  font-weight: bold;
}

.container-customer .customer-content .content img {
  padding-left: 30px;
  width: 80px;
}

.container-customer .customer-content .line {
  width: 1px;
  border-radius: 4px;
  height: 40px;
  background-color: white;
  margin-left: -90px;
}

@media (min-width: 680px) and (max-width: 743px) {
  .container-customer .line {
    display: none;
  }

  .container-customer .customer-content .content img {
    padding-left: 10px;
    width: 50px;
  }

  .container-customer .customer-content .content h3 {
    font-size: 20px;
  }

  .container-customer .customer-content .content:not(:first-child)::before {
    margin-left: 10px;
  }
}

@media (min-width: 616px) and (max-width: 679px) {
  .container-customer .customer-content .content img {
    padding-left: 10px;
    width: 40px;
  }

  .container-customer .customer-content .content h3 {
    font-size: 18px;
  }

  .container-customer .customer-content .content:not(:first-child)::before {
    margin-left: 10px;
  }
}

@media (max-width: 615px) {
  /* .container-customer .customer-content {

    align-items: center;
    justify-content: center;
  } */

  .container-customer .customer-content .content:not(:first-child)::before {
    display: none;
  }
  .container-customer .customer-content .content {
    display: block;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

    .container-customer .customer-content .content .content-text{
      align-items: center;
      justify-content: center;
      text-align: center;
    }
  .container-customer .customer-content .content img {
    display: none;
  }

  .container-customer .customer-content .content h3 {
    font-size: 20px;
    color: gold;
    font-weight: 800;
  }

  .container-customer .customer-content .content h6 {
    font-size: 12px;
  }
}

/* Happy Customer End */
