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

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

#video-section img {
  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%;
  animation: slide-in 1s forwards; /* Animation added */
  opacity: 0; /* Hide initially */
}

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

#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 !important;
  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 */
  #hs_cos_wrapper_module_16862137343776_ img, #hs_cos_wrapper_module_16862197999216_ img,
  #hs_cos_wrapper_module_16862181026939_ img, #hs_cos_wrapper_module_16862128083128_ img,
  #hs_cos_wrapper_module_16862154098169_ img, #hs_cos_wrapper_module_16862132203866_ img,
  #hs_cos_wrapper_module_16862175298846_ img, #hs_cos_wrapper_module_16862215068239_ img,
  #hs_cos_wrapper_module_16862321035716_ img, #hs_cos_wrapper_module_16862144320148_ img,
  #hs_cos_wrapper_widget_1686210783253_ img, #hs_cos_wrapper_module_16862181026939_ img,
  #hs_cos_wrapper_module_16862152484818_ img, #hs_cos_wrapper_module_16862200307318_ img,
  #hs_cos_wrapper_module_16862118381269_ img{
    height:100vw!important;
    object-fit:cover;
  }
  #video-section{
    flex-direction:column-reverse;
    height:100%
  }
  #video-section .content h1{
    font-size:7vw
  }
  #video-section .content h3{
    font-size:3.5vw
  }
  #video-section img{
    position:relative;
    height:100vw
  }
  #video-section .content-left{
    width:100%;
    background-color: rgba(14, 7, 59, 1)
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  /* Tablet-sized screens */
  #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: 1024px) {
  /* 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%;
  }