/* demo-video-section */
.demo-video-section{
  background: linear-gradient(to top, var(--qj-secondary-dark), var(--qj-secondary));
  padding: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
  display: flex;
}
.video-section-text, .highlight-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.video-section-text h1, .highlight-text h1{
  color: var(--qj-primary-dark);
  font-size: 30px;
  font-weight: 600;
}
.video-section-text h4, .highlight-text h4{
  color: var(--qj-primary);
  font-size: 18px;
}
.video-section-text a{
  text-decoration: none;
  background-color: var(--qj-primary);
  border-radius: 20px;
  padding: 10px 20px;
  margin-top: 30px;
  color: white;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.demo-video{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.demo-video video {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
}

@media (max-width:700px) {
  .video-section-text h1{
    font-size: 23px;
  }
  .video-section-text h4{
    font-size: 15px;
  }
  .video-section-text a{
    padding: 8px 10px;
    margin-top: 15px;
    width: 100px;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width:500px) {
  .demo-video-section{
    flex-direction: column;
  }
  .video-section-text a{
    display: none;
  }
  .demo-video{
    padding: 10px;
  }
}