/* 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 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}
.video-section-text h1 {
  color: var(--qj-primary-dark);
  font-size: 30px;
  font-weight: 600;
}
.video-section-text h4 {
  color: var(--qj-primary);
  font-size: 18px;
}
.watch-now-btn{
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.watch-now-btn a{
  text-decoration: none;
  background-color: var(--qj-primary);
  border-radius: 20px;
  padding: 10px;
  color: white;
  width: 180px;
  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:768px) {
  .video-section-text h1{
    font-size: 23px;
  }
  .video-section-text h4{
    font-size: 15px;
  }
  .watch-now-btn {
    margin : 15px 15px 15px 5px;
  }
  .watch-now-btn a{
    padding: 8px 10px;
    margin-top: 15px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width:500px) {
  .demo-video-section{
    flex-direction: column;
  }
  .watch-now-btn{
    justify-content: center;
    align-items: center;
  }
  .demo-video{
    padding: 10px;
  }
}

@media (max-width:320px) {
  .watch-now-btn{
    flex-direction: column;
  }
}