.divider {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 48px;
}

.divider-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 56px;
}

.divider-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 150px; 
}

.divider-icon {
  height: 80px;
  width: auto;
  margin-bottom: 12px;
}

.divider-text {
  font-weight: 400;
  font-size: 17px;
  line-height: 22px;
  text-align: center;
  word-break: break-word;
}

@media (max-width: 768px) {
  .divider {
    background-color: var(--color-secondary);
    padding-top: 0;
    padding-bottom: 0;
  }

  .divider-items {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .divider-item {
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 1rem;
    flex: auto;
  }

  .divider-icon {
    height: 3.5rem;
    width: auto;
    margin-bottom: 0;
  }
}