/* Tutaj jest miejsce na Twoje style */
.promo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
}

@media (min-width: 992px) {
  .promo__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.promo {
  background-color: #112741;
  padding: 120px 0;
}

.promo__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid white;
  border-radius: 16px;
  height: 100%;
  padding: 32px;
}

.promo__item img {
  margin-top: -80px;
  max-width: 320px;
}

@media (min-width: 576px) {
  .promo__item img {
    max-width: 100%;
  }
}

.promo__item-price {
  display: flex;
  gap: 16px;
  align-items: center;
}

.promo__item-price span:first-child {
  text-decoration: line-through;
  font-size: 1.8rem;
  font-weight: 400;
}

.promo__item-price span:last-child {
  font-weight: 600;
  font-size: 3rem;
}

.promo__counter {
  margin-top: 32px;
}

@media (min-width: 576px) {
  .promo__counter {
    margin-top: 100px;
  }
}

.products {
  background: linear-gradient(#102842, transparent);
  padding: 120px 0;
}

.footer {
  position: relative;
  background: url("../../img/main/footer-bg.jpg");
  background-size: cover;
  padding: 200px 0;
}

.footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.footer h2,
.footer .cta {
  position: relative;
  z-index: 1;
}

.copyright p {
  color: #cacace;
  margin-bottom: 0;
}

.copyright {
  margin: 80px 0;
}
