/* Customer Start */
.customer {
  position: relative;
  padding: 30px 0;
  margin-top: 0px;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.customer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
  padding-bottom: 15px;

  z-index: 1;
}

.egg,
.squer,
.circule,
.squer-bor-right,
.squer-bor-left,
.squer-bor-but-left,
.squer-bor-but-right,
.circule,
.squer,
.squer-bor-but-top,
.squer-bor-right {
  /* width: 150px;
  height: 150px; */
  /* background-color: var(--bg-newsletter); */
  border-radius: 7px;
  object-fit: cover;
  transition: all 1s ease-in-out;
  /* border: 1px solid rgb(238, 238, 238); */
  overflow: hidden;
}

.customer-grid img {
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
}

/* .egg {
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 7%;
}

.circule {
  border-radius: 50%;
}

.squer-bor-right {
  border-top-right-radius: 60%;
}

.squer-bor-left {
  border-top-left-radius: 60%;
}

.squer-bor-but-right {
  border-bottom-right-radius: 60%;
}

.squer-bor-but-left {
  border-bottom-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 7%;
  border-top-left-radius: 7%;
}

.squer-bor-but-top {
  border-bottom-left-radius: 7%;
  border-top-right-radius: 7%;
  border-bottom-right-radius: 50%;
  border-top-left-radius: 50%;
} */

/* Customer End */

.center-box {
  text-align: center;
  max-width: 770px;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 0 15px;
}

.center-box h1 {
  font-weight: 800;
  font-size: 34px;
  margin-bottom: 10px;

  color: var(--title-color);
}

.center-box h4 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

@media (min-width: 1002px) and (max-width: 1085px) {
  .customer-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
  }

  .customer-grid > *:nth-child(n + 61) {
    display: none;
  }
}

@media (min-width: 807px) and (max-width: 1001px) {
  .customer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-right: 20px;
    margin-left: 20px;
  }

  .customer-grid > *:nth-child(n + 55) {
    display: none;
  }
}

@media (min-width: 699px) and (max-width: 807px) {
  .customer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-right: 20px;
    margin-left: 20px;
  }

  .customer-grid > *:nth-child(n + 57) {
    display: none;
  }

}

@media (min-width: 620px) and (max-width: 699px) {
  .customer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-right: 20px;
    margin-left: 20px;
  }

  .customer-grid > *:nth-child(n + 57) {
    display: none;
  }

}

@media (min-width: 525px) and (max-width: 620px) {
  .customer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-right: 20px;
    margin-left: 20px;
  }

  .customer-grid > *:nth-child(n + 61) {
    display: none;
  }

}

@media (min-width: 435px) and (max-width: 525px) {
  .customer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-right: 20px;
    margin-left: 20px;
  }

  .customer-grid > *:nth-child(n + 31) {
    display: none;
  }

}

@media (min-width: 405px) and (max-width: 435px) {
  .customer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-right: 10px;
    margin-left: 10px;
    gap: 10px;
  }

  .customer-grid > *:nth-child(n + 31) {
    display: none;
  }
}

@media (max-width: 405px) {
  .customer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-right: 10px;
    margin-left: 10px;
    gap: 10px;
  }

  .customer-grid > *:nth-child(n + 31) {
    display: none;
  }

}


.customer-grid > div:empty {
  display: none;
}




.customer-grid div {
  transition: transform 0.45s cubic-bezier(.22,1,.36,1),
              box-shadow 0.45s ease,
              filter 0.45s ease;
  will-change: transform;
}

.customer-grid div.is-active {
  /* box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.1); */
  filter: grayscale(5%);
}


