body {
  background-color: black;
}

.fit-picture {    
    height:80px;
}

.pco-badge {  
  top: 20px;
  right: 20px;
  height: 80px;
}

.partner-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 130px;  
  z-index: 3; /* Above video and overlay */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.video-section {
  position: relative;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: opacity 2s ease-in-out;
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.overlay-content {
  position: relative;
  z-index: 2;
}