
@font-face {
  font-family: "AbolitionTest-Regular";
  src: url("../fonts/AbolitionTest/AbolitionTest-Regular.otf");
}
/* @font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/Avenir.ttc");
} */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir/AvenirLTStd-Light.otf");
}
@font-face {
  font-family: "AvenirLTStd-MediumOblique";
  src: url("../fonts/Avenir/AvenirLTStd-MediumOblique.otf");
}

/* --- Page loader animation---------- */
body {
  /* overflow: hidden;  */
}

/* #loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
} */

/* Spinner Animation */
/* .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
} */

/* Spinner Animation Keyframes */
/* @keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
} */

/* Hide Content Initially */
/* header, main, footer {
  display: none;
} */
/* ---------Page loader animation end ---------- */
button:focus, button:active {
  outline: none; /* Remove the outline (default border) */
  box-shadow: none; /* Remove any shadow that appears when active */
}
.inner_container {
  max-width: 1600px;
  margin: 0 auto;
}
.wrapper {
  width: 100%;
  height: 100%;
  background: white;
}

.spacer-2 {
  margin: 2rem 0;
}
.spacer-3 {
  margin: 3rem 0;
}
.spacer-4 {
  margin: 4rem 0;
}
.spacer-5 {
  margin: 5rem 0;
}
.spacer-7 {
  margin: 7rem 0;
}
.spacer-8 {
  margin: 8rem 0;
}
.spacer-10 {
  margin: 10rem 0;
}
.spacer-14 {
  margin: 14rem 0;
}
.w-full {
  width: 100%;
}
.h-full {
  height: 100%;
}
.w-h-full {
  width: 100%;
  height: 100%;
}

.absolute {
  position: absolute;
}

/* Loader css */
/* Full-page loader */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.bar-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.bar-container .bar {
  width: 10px;
  height: 50px;
  background: linear-gradient(45deg, #ff0080, #ff8c00);
  border-radius: 5px;
  animation: wavyBounce 1.2s infinite ease-in-out;
}

.bar-container .bar:nth-child(1) {
  animation-delay: 0s;
}
.bar-container .bar:nth-child(2) {
  animation-delay: 0.2s;
}
.bar-container .bar:nth-child(3) {
  animation-delay: 0.4s;
}
.bar-container .bar:nth-child(4) {
  animation-delay: 0.6s;
}
.bar-container .bar:nth-child(5) {
  animation-delay: 0.8s;
}

/* .play-btn {
  position: absolute;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  z-index: 2;
  right: 4%;
  bottom: 3%;
  background: transparent;
} */
.play-btn {
  position: absolute;
  color: white;
  border: none;
  /* padding: 10px 20px; */
  /* font-size: 16px; */
  /* z-index: 2; */
  /* right: 4%; */
  /* bottom: 3%; */
  border-radius: 50%;
  background: transparent;
  opacity: 0.8;
  bottom: 2%;
  right: 5%;
  left: inherit !important;
  top: inherit !important;
}
.play-btn svg {
  border-radius: 50%;
  /* width: 80px;
  height: 80px; */
  width: 3vw ;
  height: 3vw ;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
}
/* .play-btn svg {
  width: 4vw ;
  height: 4vw ;
} */

/* .video-loader {
  display: none;
  color: black;
} */
.visible {
  visibility: visible !important;
}
.videoLoaderParent{
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: hidden;

 }
 #videoLoaderParent{
  position: absolute;
  width: 100%;
  height: 100%;
  visibility: visible ;

 }
.video-loader-container{
  display: flex;
  justify-content: center;
  align-items: center;
  background: black
}
.video-loader {
  width: 50px;
  --b: 8px; 
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 1px;
  background: red;
  /* background: conic-gradient(#0000 10%,#284a06) content-box; */
  background: conic-gradient(#0000 10%,#ffffff) content-box;
  -webkit-mask:
    repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),
    radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
  -webkit-mask-composite: destination-in;
          mask-composite: intersect;
  animation:l4 1s infinite steps(10);
}
@keyframes l4 {to{transform: rotate(1turn)}}

/* Animations */
@keyframes wavyBounce {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(2);
  }
}




/* items-not-found */
.item-not-found {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  max-width: 600px;
  margin: 50px auto;
  font-family: "AvenirLTStd-Medium";
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.item-not-found p {
  font-size: 18px;
  margin: 10px 0;
}
@media (max-width: 1600px) {
  .inner_container {
    padding: 0 4rem;
  }
}
