.hero-e-commerce {
  padding-bottom: 128px;
}

@media (max-width: 1023px) {
  .hero-e-commerce {
    padding-bottom: 48px;
  }
}

.hero-e-commerce .section-title {
  max-width: 650px;
}

.hero-e-commerce .hero-meta {
  margin: 72px 0;
}

@media (max-width: 1023px) {
  .hero-e-commerce .hero-meta {
    margin: 48px 0;
  }
}

.hero-e-commerce .e-commerce-form {
  max-width: 552px;
  margin: 0 auto;
}

.hero-e-commerce .partners-inner-light {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 72px auto 0;
}

@media (max-width: 1023px) {
  .hero-e-commerce .partners-inner-light {
    margin: 48px auto 0;
  }
}

.hero-e-commerce .partners-inner-light p {
  color: var(--slate-500);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-500);
  line-height: var(--line-height-30);
  text-align: center;
}

.e-commerce-info {
  padding: 128px 0;
  background-color: var(--white);
}

.e-commerce-info .section-title {
  max-width: 500px;
}

@media (max-width: 1023px) {
  .e-commerce-info {
    padding: 48px 0;
  }
}

.e-commerce-info .intro-text {
  text-align: center;
  max-width: 800px;
  margin: 72px auto;
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-400);
  line-height: var(--line-height-34);
  color: var(--slate-800);
}

@media (max-width: 1023px) {
  .e-commerce-info .intro-text {
    margin: 48px auto;
    font-size: var(--font-size-16);
    line-height: var(--line-height-24);
  }
}

.contact-info-section-e-commerce .hero-contact-info-light {
  margin: 0;
}

.e-commerce-benefits {
  padding-top: 128px;
  background-color: var(--white);
}

@media (max-width: 1023px) {
  .e-commerce-benefits {
    padding-top: 48px;
  }
}

.e-commerce-benefits .container > .section-title {
  max-width: 510px;
}

.e-commerce-benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 72px 0 128px;
}

@media (max-width: 1023px) {
  .e-commerce-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 48px 0;
  }
}

@media (max-width: 767px) {
  .e-commerce-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.e-commerce-benefits-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  background-color: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.e-commerce-benefits-card:hover {
  background-color: var(--slate-100);
  border-color: var(--slate-300);
}

@media (min-width: 1024px) {
  .e-commerce-benefits-card:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .e-commerce-benefits-card:nth-child(n + 4) {
    grid-column: span 3;
  }
}

.e-commerce-benefits-card-text {
  padding: 48px 32px;
}

.e-commerce-benefits-card-text h3 {
  margin-bottom: 12px;
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-600);
  line-height: var(--line-height-32);
  color: var(--slate-700);
  text-align: center;
}

.e-commerce-benefits-card-text p {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-400);
  line-height: var(--line-height-22);
  text-align: center;
  color: var(--slate-500);
}

.e-commerce-benefits-card img {
  width: 100%;
}

.e-commerce-setup {
  display: flex;
  gap: 64px;
  padding: 128px 0 0;
}

@media (max-width: 1023px) {
  .e-commerce-setup {
    flex-direction: column-reverse;
    padding: 48px 0 0;
  }
}

.e-commerce-setup-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 610px;
}

@media (max-width: 767px) {
  .e-commerce-setup-text {
    max-width: 100%;
  }
}

.e-commerce-setup-text .section-title {
  max-width: 100%;
  align-items: flex-start;
  text-align: left;
}

.e-commerce-setup-text ul {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

@media (max-width: 767px) {
  .e-commerce-setup-text ul {
    gap: 24px;
  }
}

.e-commerce-setup-text h3 {
  font-size: var(--font-size-24);
  font-weight: var(--font-weight-600);
  line-height: var(--line-height-32);
  color: var(--slate-800);
}

@media (max-width: 767px) {
  .e-commerce-setup-text h3 {
    font-size: var(--font-size-20);
    line-height: var(--line-height-28);
  }
}

.e-commerce-setup-text p {
  font-size: var(--font-size-14);
  font-weight: var(--font-weight-400);
  line-height: var(--line-height-22);
  color: var(--slate-500);
}

@media (max-width: 767px) {
  .e-commerce-setup-text p {
    font-size: var(--font-size-12);
    line-height: var(--line-height-20);
  }

  .e-commerce-setup-text .button {
    max-width: 100%;
    width: 100%;
  }
}

.e-commerce-setup img {
  width: 100%;
  max-width: 454px;
  border-radius: 34px;
}

@media (max-width: 1023px) {
  .e-commerce-setup img {
    max-width: 100%;
    max-height: 450px;
    object-fit: cover;
    object-position: center;
  }
}

.advantages-e-commerce {
  padding-bottom: 56px;
}

@media (max-width: 1023px) {
  .advantages-e-commerce {
    padding-bottom: 32px;
  }
}
