.videoSection {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 87px);
}

.videoSection_innerSec {
  position: relative;
  width: 100%;
  height: 100%;
}

.videoSection_innerSec video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.videoSection_innerSec .Skip_btn {
  position: absolute;
  bottom: 50px;
  right: 50px;
  z-index: 9;
  /* padding-inline: 49px; */
  z-index: 1;
  /* height: 44px; */
  /* width: 140px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1679px) {
  .videoSection_innerSec .Skip_btn {
    /* width: 80px; */
    margin: 50px auto 0;
  }
}

@media (max-width: 1399px) {
  .videoSection_innerSec .Skip_btn {
    /* padding-inline: 30px; */
    /* height: 45px; */
    /* width: 140px; */
    margin: 40px auto 0;
  }
}

@media (max-width: 1199px) {
  .videoSection_innerSec .Skip_btn {
    margin: 30px auto 0;
  }
}

@media (max-width: 991px) {
  .videoSection_innerSec .Skip_btn {
    /* padding-inline: 20px; */
    /* height: 40px; */
    /* width: 140px; */
    margin: 20px auto 0;
  }
}
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-out;
}

.page-transition.active {
  opacity: 1;
}

/* Loader spinner */
.loader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 6px solid #fff;
  border-top: 6px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}