/* Tutaj jest miejsce na Twoje style */
.top__logos {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .top__logos {
    min-width: 320px;
  }
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 56px;
}

@media screen and (min-width: 576px) {
  .features {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1200px) {
  .features {
    grid-template-columns: repeat(8, 1fr);
  }
}

.features div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.features div p {
  margin-top: 6px;
  margin-bottom: 0;
}

.features img {
  border-radius: 6px;
}

.main {
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  padding: 64px 0;
}

.banner {
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .banner {
    min-height: 360px;
  }
}

.banner img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  object-fit: cover;
  object-position: 50% 80%;
}

.banner h2 {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 600;
}

.banner__overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
}

.table-wrapper {
  overflow-x: scroll;
}

table {
  min-width: 500px;
}

table img {
  height: 100px;
}

@media screen and (min-width: 576px) {
  table img {
    height: 164px;
  }
}

table p {
  font-weight: 800;
  margin-top: 12px;
}

table td {
  padding: 10px 32px;
  text-align: center;
}

table td:first-child {
  text-align: start;
}
table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.05);
}
