.section-video {
  margin-bottom: 100px;
}

.section-video .bg-area {
  color: #fff;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  height: 550px;
}

.video-wrap {
  position: relative; 
  height: 550px;
}

.video-button {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background: rgba(0,49,70,0.8);
  border-radius: 10px;
  padding: 18px 30px;
  display: flex;
  max-width: inherit;
  align-items: center;
}

.video-button a {
  margin-right: 25px;
  display: inline-block;
  cursor: pointer;
}

.video-button .content-text h4, .video-button .content-text p {
  margin-bottom: 0; 
  color: #fff;
}

.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.5s;
}
.video-popup.show {
  visibility: visible;
  opacity: 1;
}
.video-popup video {
  max-width: 80%;
  max-height: 80%;
}
.video-popup button {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 10px 20px;
  background-color: #fff;
  color: #0077ff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 1260px) {
  .section-video .bg-area, .video-wrap {
    height: 475px; 
  }
}

@media (max-width: 1024px) {
  .section-video .bg-area, .video-wrap {
    height: 405px; 
  } 
}

@media (max-width: 767px) {
  
  .section-video {
    margin-bottom: 40px; 
  }
  
  .section-video .bg-area, .video-wrap {
    height: 295px; 
  } 
}

@media (max-width: 600px) {
  .section-video .bg-area {
    height: 200px;
    background-position: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-wrap {
    position: relative;
    height: auto;
  }
  
  .video-wrap .video-button {
    background: transparent;
    max-width: none;
    position: relative;
    top: 0;
    left: 0;
  }
  
  .video-wrap .content-text {
    display: none; 
  }
  
  .video-wrap #watchVideo {
    margin-right: 0; 
  }
  
}