.hero_qs {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background: black;
}

.hero_qs h1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--bebas-font);
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: white;
  z-index: 2;
}

.hero_qs img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit:cover;
  z-index: 1;
}
.products{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 50px;
}
.products h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--bebas-font);
  font-weight: 100;
  letter-spacing: 2px;
  font-size: 5rem;
  color: var(--color-gray);
  margin-top: 20px;
}
.products
.cards-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  justify-content: space-around;
  padding: 10px;
}
.cards-container .card {
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  box-shadow: 4px 6px 5px 2px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
}
.cards-container .card p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 120px;
  font-family: var(--roboto-font);
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  color: black;
}
.btn-ver-producto {
  width: 90%;
  padding: 5px;
  font-family: var(--roboto-font);
  font-size: 2.5rem;
  border: 1.5px solid var(--color-orange);
  border-radius: 10px;
  color: var(--color-orange);
  background-color: white;
  cursor: pointer;
  text-align: center;
  margin-bottom: 20px;
}
.btn-ver-producto:hover {
  color: white;
  background-color: var(--color-orange);
}
.img-container {
  width: 100%;
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #424547;
  background-image: url(../assets/images/Fondo-Productos.webp);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px 20px 0 0;
  padding: 20px;
}
.pagination {
  width: 50%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 50px;
  font-family: var(--bebas-font);
  font-size: 1.5rem;
}
.pagination a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20%;
  text-align: center;
  background-color: var(--color-orange);
  color: white;
  border: none;
}
.pagination a:hover {
  background-color: white;
  color: var(--color-orange);
  border: 1.5px solid var(--color-orange);
}
a.pag-active {
  background-color: white;
  color: var(--color-orange);
  border: 1.5px solid var(--color-orange);
}

/*=============== BREAKPOINTS ===============*/
@media screen and (max-width: 767px) {  
  .hero_qs h1 {
    text-align: center;
  }

  .pagination {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
  .cards-container .card {
    width: 350px;
    height: 530px;
  }
  .cards-container .card p {
    font-size: 1.5rem;
  }
  .btn-ver-producto {
    width: 80%;
    padding: 5px;
    font-family: var(--roboto-font);
    font-size: 1.5rem;
  }
  .img-container {
    height: 900px;
  }
}
@media screen and (min-width: 1367px) {
  .pagination {
    font-size: 2rem;
  }
  .pagination a{
    width: 60px;
    height: 60px;
  }
}
