/* start of video modal */
#videoModal.modal {
  --bs-modal-width: 50%;
  --bs-modal-border-width: 0px;
  --bs-modal-border-radius: 8px;
  --bs-modal-box-shadow: 0px 1px 24px rgba(0, 0, 0, 0.25);
}
#videoModal .modal-content {
  padding: 0px;
  background-color: white;
}

#videoModal .video-btn-close {
  padding: 8px;
}

#videoModal .video-btn-close:hover {
  background-color: #F2F2F2;
}

.video-js {
  color: black !important;
  width: 100% !important;
  height: 50vh !important;
}

.video-js .vjs-tech {
  object-fit: cover !important;
}

.video-js .vjs-big-play-button,
.video-js .vjs-menu-button .vjs-menu-content {
  background-color: #ffd600 !important;
}
.video-js .vjs-big-play-button {
  transform: scale(0.7);
  transition: 0.2s ease-in-out !important;
}
.video-js .vjs-big-play-button:hover {
  background-color: black !important;
  color: #ffd600;
}

.video-js .vjs-control-bar {
  background-color: #fff !important;
  height: 1.5rem !important;
}
/* .video-js .vjs-slider {
  background-color: rgba(255, 255, 255, 0.65) !important;
} */
.video-js .vjs-volume-level,
.video-js .vjs-play-progress,
.video-js .vjs-slider-bar {
  background: #ffd600 !important;
}

.video-js .vjs-load-progress {
  background: #fff !important;
}

.video-js .vjs-load-progress div {
  background: #fff !important;
}

.vjs-theme-sea .vjs-button > .vjs-icon-placeholder:before {
  line-height: 1.5rem !important;
}

.vjs-theme-sea .vjs-time-control {
  line-height: 1.6rem !important;
}

/* end of video modal */

.img-top-container {
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

.video-top {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center !important;
}

.img-top {
  max-width: 1512px;
  margin: auto;
  width: 100%;
  height: 426px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 60px 70px;
}

.img-top > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.img-top > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.img-top > div:last-child > div {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.img-top > div:last-child > div:hover {
  background: rgba(255, 255, 255, 0.3);
}

.img-top h1 {
  font-family: "Campus 700";
  font-feature-settings: "case" on;
  font-size: 36px;
  line-height: 54px;
  text-transform: capitalize;
  color: #ffffff;
  margin: 0px;
}

@media screen and (max-width: 1199px) {
  section .img-top {
    padding: 60px 45px 60px;
    height: 400px;
  }

  #videoModal.modal {
    --bs-modal-width: 60%;
  }

  .video-js {
    height: 60vh !important;
  }
}

@media screen and (max-width: 768px) {
  section .img-top {
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    height: 150px;
  }

  .img-top > div:first-child {
    justify-content: space-between;
  }

  .img-top > div:last-child {
    display: none;
  }

  section .img-top h1 {
    font-size: 20px;
    line-height: 30px;
  }
}