.qs-img-container {
  width: 100%;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.qs-img-container img{
  width: 100%;
  height: 100%;
}
.qs-container {
  width: 100%;
  display: flex;
  gap: 25px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 120px;
}
.descripcion-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.btn-descripcion {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 3rem;
  font-weight: bold;
  color: var(--blue-strong);
  text-decoration: none;
  border: none;
  background: transparent;
  cursor: pointer;
}
.btn-descripcion img {
  width: 60px;
}
.descripcion {
  width: 100%;
  background: var(--blue-strong);
  color: white;
  font-size: 1.8rem;
  padding: 50px;
  border-radius: 50px;
  text-align: justify;
}
.disable {
  display: none;
}
/*=============== BREAKPOINTS ===============*/
@media screen and (min-width: 250px) and (max-width: 767px) {
  .qs-img-container{
    height: auto;
  }
  .qs-container{
    padding: 10px;
  }
  .descripcion{
    padding: 20px;
    font-size: 1rem;
  }
  .btn-descripcion{
    font-size: 2.2rem;
  }
  .btn-descripcion img{
    width: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1366px) {
}
@media screen and (min-width: 1367px) and (max-width: 1919px) {
  
}