.homepage-video-section{
    padding-bottom: 116px;
}

.homepage-video-container{
    position: relative;
    /* aspect-ratio: 16/9; */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 116px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .homepage-hidden-video-container {
    background: rgba(0, 0, 0, 0.533);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    transition: all 0.6s ease-in-out;
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
  }
  
  .close-animation {
    clip-path: polygon(100% 100%, 100% 100%, 100% 100%, 100% 100%);
    pointer-events: none;
    z-index: -10;
    visibility: hidden;
  }
  
  .presizeVideo {
    margin: 48px;
    width: calc(100% - 96px);
    visibility: hidden;
  }
  
  .close-video-btn-container {
    height: 48px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-color: #ffffff;
    padding-right: 10px;
    padding-left: 10px;
  }
  
  .close-video-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  
  .homepage-video-logo {
    height: 34px;
  }
  
  .close-btn-text {
    font-family: "Roboto Bold", sans-serif;
    font-weight: 500;
    color: #000000;
    font-size: 16px;
    margin: 0px;
    padding: 0px;
  }
  
  .hidden-video-wraper {
    background: #222121;
    position: absolute;
    width: 100%;
    max-height: 100%;
  }
  
  .content-video-wraper {
    /* margin: 48px; */
    /* width: calc(100% - 96px); */
    /* height: calc(100% - 96px); */
    aspect-ratio: 16 / 9;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #content-video {
      width: auto;
      height: 100%;
      object-fit: contain;
  
  }
  
  .homepage-play-btn-div {
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
      max-height: 44px !important;
      display: flex ;
      align-items: center !important;
      justify-content: space-between !important;
      cursor: pointer !important;
      z-index: 20;
      padding-left: 15px;
      padding-right: 15px;
  }
  
  .homepage-play-btn-text-container {
      display: flex;
      align-items: center;
      width: 100%;
      height: 100%;
      max-height: 46px;
      overflow: hidden;
      position: relative;
      margin-top: 0.5px;
      background: rgba(245, 245, 245, 1) !important;
  }
    
  .homepage-play-btn-text-container::before {
      content: "";
      position: absolute;
      top: 0;
      left: 100%;
      width: 100%;
      height: 100%;
      background-color: #000000;
      transition: left 0.3s ease;
  }
  
  .homepage-play-btn-text-container:hover::before {
    left: 0;
  }
  
  .homepage-play-btn-text {
      font-family: "Roboto Medium", sans-serif;
      font-size: 16px;
      color: #000000;
      padding: 10px 0px 10px 16px;
      margin: 0px;
      transition: color 0.3s ease;
  }
  
  .homepage-play-btn-text-container:hover .homepage-play-btn-text {
    transition: color 0.3s ease;
    color: #ffffff;
    z-index: 10;
  }
  
  .top-content-video-wraper {
    margin: 48px;
    width: calc(100% - 96px);
    height: calc(100% - 96px);
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  #top-content-video {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  
  .videoControls {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
  
    .playButton,
    .pauseButton,
    .replayButton {
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 48px;
      height: 48px;
    }
  
    .playButton.hidden,
    .pauseButton.hidden,
    .replayButton.hidden {
      display: none;
    }
  
    .pauseButton svg,
    .replayButton svg {
      width: 12px;
    }
  
    .pauseButton img,
    .replayButton img {
      width: 14px;
    }
  
   .progressBar {
      cursor: pointer;
      display: flex;
      align-items: center;
      font-family: "Roboto Bold", sans-serif;
      font-size: 16px;
      font-weight: bold;
      width: calc(100% - 96px);
      height: 100%;
      position: relative;
    }
  
    .progressBar .progressBarCurrent {
      background: white;
      color: black;
      display: flex;
      align-items: center;
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      overflow: hidden;
    }
  
    .progressBar .progressBarCurrent .time {
      display: flex;
      padding: 16px;
    }
  
    /* Progress bar timer */
    .progressBar .timer {
      display: flex;
      align-items: center;
      padding: 16px;
    }
  }
  
    .homepage-play-btn-div-hidden{
      display: none;
    }
  
    .video-controls-div-display{
      display: flex;
    }
  
@media (max-width: 768px) {
  .videoControls .progressBar {
    width: calc(100% - 48px);
  }

  .homepage-video-container,
  .homepage-play-btn-div{
     padding: 0px;
  }

  .homepage-hidden-container{
      padding-top: 8%;
  }

  .content-video-wraper {
    margin-top: 48px;
    aspect-ratio: 1 / 1;
  }
  
}
