/* red: "#DE0B15",
blue-dark: "#0D274D",
blue: "#203e7e",
yellow: "#FFDB00",
green: "#B3CC06;",
orange: "#f4951d", */

:root {
  --blue-dark-color: #0d274d;
  --blue-color: #203e7e;
}

.text-blue-dark {
  color: var(--blue-dark-color);
}

.bg-blue-dark {
  background-color: var(--blue-dark-color);
}

.bg-blue {
  background-color: var(--blue-color);
}

table {
  width: 80%;
  margin: 2rem auto;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 16px;
  border: 1px solid black;
}

th,
td {
  border: 1px solid black;
  padding: 12px 16px;
  text-align: left;
}

thead {
  background-color: #eee;
}

.swiper-pagination {
  bottom: -10px;
}
.swiper {
  height: 28vw;
  /* max-height: 208px; */
}

.collection {
  /* translateY("-23%kkkkkkkkkk"); */
  margin-top: -23%;
  /* margin-bottom: 6%; */
  /* transform: translateY(-230%); */
  margin-inline: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.collection .content {
  padding: 1rem;
  height: 22vw;
  /* max-height: 160px; */
  /* width: 30rem; */
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 2.5rem;
  margin-top: 1rem;
  overflow: hidden;
}

/* .swiper-wrapper {
  margin-inline: -60px;
} */

.swiper-slide img {
  width: 18vw;
  /* max-width: 160px; */
}

.text-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.text-content h3 {
  font-size: 1.6vw;
  font-weight: 500;
}
.text-content p {
  max-width: 22rem;
  font-size: 0.8rem;
  font-weight: 400;
  text-align: center;
}
.btn {
  background-color: #0099ff;
  padding: 0.2rem;
  border: 2px solid #0099ff;
  outline: none;
  font-size: 0.8rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
  cursor: pointer;
}

@media (max-width: 768px) {
  .swiper {
    height: auto;
    padding-bottom: 2rem;
  }

  .text-content h3 {
    font-size: 0.8rem;
    font-weight: 500;
  }

  .collection {
    margin-top: -2rem;
    margin-inline: 0%;
  }

  .collection .content {
    width: 90%;
    max-width: 350px;
    height: auto;
  }

  .swiper-slide img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }
}
