* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

#video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
}

#video-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#video-section .content {
  width: 50%;
  height: 100%;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  animation: slide-in 1s forwards; /* Animation added */
  opacity: 0; /* Hide initially */
}

@keyframes slide-in {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

#video-section .content-left {
  position: relative;
  background-color: rgba(14, 7, 59, 0.6);
  z-index: 1; /* Bring the overlay to the front */
  padding: 6%;
}

#video-section .content-left:before {
  content: "";
  position: absolute;
  top: 0;
  left: -9999px;
  right: -9999px;
  bottom: 0;
  z-index: -1; /* Send the overlay behind the video */
}

#video-section .content h1 {
  font-size: 3.125vw;
  margin-bottom: 10px;
  text-align: left;
  position: relative;
  z-index: 2; /* Bring the text to the front */
}

#video-section .content p {
  font-size: 1.1vw;
  text-align: left;
  position: relative;
  z-index: 2;
  line-height:1.5 !important;
}

#video-section .content h3 {
  font-size: 1.0416666666666667vw;
  text-align: left;
  position: relative;
  z-index: 2;
  font-family:"Protipo W00 Bold";
}

/* Media Queries */
@media (max-width: 767px) {
  /* Mobile devices */
  #video-section {
    height: 50vh;
    flex-direction: column;
    align-items: center;
  }

  #video-section .content {
    width: 100%;
  }

  #video-section .content-left:before {
    left: 0;
    right: 0;
  }

  #video-section .content-right {
    display: none;
  }

  #video-section .content h1 {
    font-size: 4vw !important;
  }

  #video-section .content p {
    font-size: 2vw !important;
  }
  #hs_cos_wrapper_widget_1686220669362 .hs-video-wrapper, #vjs_video_3_html5_api{
    height: 100vw!important;
  }
  .hs-video-wrapper iframe .vjs-tech{
    height: 100vw!important;
    object-fit:cover!important
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  /* Tablet-sized screens */
  
  #video-section .content-left {
    padding: 7% 4% 6% 4%;
  }
  
  #video-section {
    height: 60vh;
    flex-direction: row;
  }

  #video-section .content {
    width: 50%;
  }

  #video-section .content h1 {
    font-size: 3vw;
  }

  #video-section .content p {
    font-size: 1.5vw;
  }
}

@media (min-width: 1200px) {
  /* Desktop-sized monitors */
  #video-section {
    height: 768px;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
  max-width: 100%;
}

@media (min-width: 1600px) {
  #video-section .content-left {
    padding-left: 8%;
    padding-right: 3%;
    padding-top: 1%;
    padding-bottom: 0;

  }
}

@media (min-width: 1400px) and (max-width:1599px) {
  #video-section .content-left {
    padding-left: 10%;
    padding-right: 3%;
    padding-top: 1%;
    padding-bottom: 0;

  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  #video-section .content-left {
    padding: 1% 5% 0 8%;
  }
