/* =========================================
   Customers Page Styles
   ========================================= */

.company-hero {
  position: relative;
  width: 100%;
  background: transparent;
  color: var(--color-white);
  padding-top: 220px;
  padding-bottom: 100px;
  text-align: center;
  overflow: hidden;
}

.company-hero__bg-text {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.08);
  z-index: 0;
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
}

.company-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.company-hero__title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .company-hero {
    padding-top: 230px;
    padding-bottom: 150px;
  }

  .company-hero__title {
    font-size: 36px;
  }

  .company-hero__bg-text {
    font-size: 80px;
    top: 50%;
  }
}

.customers-section {
  padding: 80px 0 100px;
  background-color: #f5f5f5;
}

.customers-list {
  padding: 40px 30px;
  margin: 0 auto 30px;
}

.customer-item {
  padding: 20px 0;
  border-bottom: 1px solid #bcbcbc;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.31;
  color: #000;
}

.customer-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .customers-section {
    padding: 46px 0 63px;
  }

  .customers-list {
    padding: 0;
    margin: 0 20px;
    margin-bottom: 0;
    border: 1px solid #545454;
  }

  .customer-item {
    padding: 31px 20px;
    font-size: 14px;
    border-bottom: 1px solid #545454;
  }
}
