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

.hero_qs h1 {
  width: 100%;
  height: 150px;
  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;
}

.product-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  gap: 50px;
}
.description {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 50px;
  gap: 10px;
}
.description h2 {
  width: 100%;
  display: flex;
  font-family: var(--bebas-font);
  font-size: 5rem;
  font-weight: 500;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.description p {
  width: 100%;
  display: flex;
  font-family: var(--roboto-font);
  font-size: 1.8rem;
  text-align: justify;
}
.img-contianer {
  width: 100%;
  max-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
}
.img-contianer img {
  width: 100%;
  max-height: 600px;
}
.divisor-product {
  width: 100%;
  margin: 20px 0;
}
.divisor-product img {
  width: 100%;
  object-fit: contain;
}

.characteristics {
  display: flex;
  justify-content: space-evenly;
  align-items: start;
  padding: 30px 50px;
}
.characteristics-img {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
}
.characteristics-img  img{
  width: 70%;
}
.characteristics-img p {
  position: absolute;
  font-family: var(--roboto-font);
  font-size: 2.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: white;
  text-align: center;
}
.radio-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.radio-group input[type="radio"] {
  appearance: none;
}
.radio-group input[type="radio"] + label::before {
  content: " ";
  border-radius: 50%;
  background-color: #888888;
  display: flex;
  width: 16px;
  height: 16px;
  line-height: 16px;
  text-align: center;
}
.radio-group input[type="radio"]:checked + label::before {
  background-color: var(--color-orange);
}
.characteristics-content {
  width: 70%;
  display: flex;
  justify-items: center;
  align-items: center;
  border-radius: 20px;
  box-shadow: 4px 6px 5px 2px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.characteristics-content img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.buttons {
  width: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 30px;
  padding: 0px 150px 0px 0px;
}
.btn-quote,
.btn-download {
  width: 200px;
  text-decoration: none;
  text-align: center;
  font-family: var(--roboto-font);
  font-size: 1.8rem;
  padding: 6px 20px;
  border-radius: 6px;
  margin-top: 30px;
  margin-bottom: 30px;
  cursor: pointer;
}
.btn-download {
  width: 30%;
  color: var(--color-orange);
  border: 1px solid var(--color-orange);
}
.btn-quote {
  color: white;
  background-color: var(--color-orange);
}
.btn-download:hover {
  color: white;
  background-color: var(--color-orange);
}
.btn-quote:hover {
  color: var(--color-orange);
  background-color: white;
  border: 1px solid var(--color-orange);
}

/*=============== BREAKPOINTS ===============*/
@media screen and (max-width: 390px) {
  .hero_qs {
    padding: 30px 10px;
    height: auto;
  }
  .hero_qs h1 {
    font-size: 5rem;
    text-align: center;
  }
  .product-container {
    height: 100%;
    flex-direction: column;
  }
  .description {
    width: 100%;
    padding: 10px;
  }
  .description p {
    font-size: 1.5rem;
    text-align: justify;
  }
  .img-contianer {
    padding: 0;
  }
  .characteristics {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
  .characteristics-img {
    width: 100%;
  }
  .characteristics-img img {
    width: 100%;
  }
  .characteristics-content {
    width: 100%;
  }
  .buttons {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .btn-download,
  .btn-quote {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 391px) and (max-width: 767px) {
  .hero_qs {
    padding: 30px 10px;
    height: auto;
  }
  .hero_qs h1 {
    font-size: 5rem;
    text-align: center;
  }
  .product-container {
    height: 100%;
    flex-direction: column;
  }
  .description {
    width: 100%;
    padding: 10px;
  }
  .img-contianer {
    padding: 0;
  }
  .characteristics {
    flex-direction: column;
    gap: 20px;
    padding: 15px;
  }
  .characteristics-img {
    width: 100%;
  }
  .characteristics-img img {
    width: 100%;
  }
  .characteristics-content {
    width: 100%;
  }
  .buttons {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .btn-download,
  .btn-quote {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
  .cards-container .card {
    width: 250px;
    height: 350px;
  }
  .cards-container .card p {
    font-size: 1.8rem;
  }
  .btn-ver-producto {
    width: 80%;
    padding: 5px;
    font-family: var(--roboto-font);
    font-size: 1.5rem;
  }
  .img-contianer {
    height: 500px;
  }
  .description p{
    font-size: 1.5rem;
  }
  
}
