body{
  margin: 0;
  background-color: var(--theme-bg-color);
}
.container{
  margin: 0 auto;
  display: block;
  max-width: 83em;
  width: 96%;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 10px;
  position: relative;
  margin-bottom: 7%;
  margin-top: 1%;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
  background-color: var(--theme-bg-color);
}

/* Add the following CSS */
#playlist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1.5fr));
}

.video {
  margin: 10px;
  padding: 10px;
  box-shadow: 0 5px 10px rgba(28, 39, 102, 0.25);
  transition: opacity 0.3s;
  border-radius: 5px;
  height: 14em;
  color: var(--main-color);
  background-color: var(--header-bg-color);
}

.video-time {
  position: relative;
  background-color: rgba(238, 8, 8, 0.5);
  padding: 8px;
  border-radius: 15px;
  font-size: 12px;
  color: #fff;
  right: 13px;
  transition: .3s ease-in;
  width: 27px;
  float: inline-end;
}

.video:hover {
  cursor: pointer;
  transform: scale(1.1);
  z-index: 10000;
  transition: .5s;
  opacity: 0.8;
}

.video img {
  width: 100%;
  height: auto;
  display: block;
}

.video p {
  font-size: 20px;
  font-weight: bolder;
}


/* Hover video */

.hover-video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  object-fit: fill;
}

.video:hover .hover-video {
  display: block;
}

.unmute-button {
  display: none;
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 10;
  width:  3em;
  height: 3em;
  border-radius: 50%;
  animation: pauseToPlay 0.3s forwards;
}
@keyframes pauseToPlay {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
  }
  
.video:hover .unmute-button {
  display: block;
}


.dark-mode {
  --theme-bg-color: #212835;
  --header-bg-color: #323a4b;
  --main-color: #fefffd;
 }
.dark-light {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--header-bg-color);
  box-shadow: -1px 3px 8px -1px rgba(0, 0, 0, 0.2);
  padding: 8px;
  border-radius: 50%;
  z-index: 3;
  width: 2em;
  height: 2em;
  background-color: #323A4B;
  color: aliceblue;
  svg {
   width: 28px;
  }
 }
 
 .dark-mode .dark-light svg {
     fill: #ffce45;
     stroke: #ffce45;
 }
 
 .dark-light svg {
     fill: transparent;
     transition: 0.5s;
 }
 .dark-light:hover {
  background-color: rgb(24, 42, 82);
  color: white;
  transition: .4s;
  cursor: pointer;
}

/* content not found  */

#content_not_found{
    width: 100%;
    margin-top: 30%;
    transform: translateY(-50%);
    text-align: center;
    color: #343434
  }
  

  #content_not_found a{
    text-decoration: none;
    background: #e55039aa;
    color: #fff;
    padding: 12px 24px;
    display: inline-block;
    border-radius: 25px;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.4s;
  }
  
  #content_not_found a:hover{
    background: #e55039;
  }
  .opp{
    color: #7700ff;
    font-size: 20px;
    font: normal 36px 'Cookie', cursive;
  }
  .oppy{
    color: #7700ff;
    font: normal 36px 'Cookie', cursive;
  }
/*background animation of Season-01*/
.contain section{
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 100px);
    text-align: center;
    pointer-events: none;
    position: relative;
}

.bgAnimation{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 20vh;
    display: grid;
    grid-template-columns: repeat(20,1fr);
    grid-template-rows: repeat(20,1fr);
    background: #1d1d1d;
    filter: saturate(2);
    overflow: hidden;
}

.colorBox{
    z-index: 2;
    filter: brightness(1.1);
    transition: 2s ease;
    position: relative;
    margin: 2px;
    background: #1d1d1d;
    height: 20px;
}

.colorBox:hover{
    background: #7700ff;
    transition-duration: 0s;
}

.backgroundAmim{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: #aa01f8;
    filter: blur(60px);
    animation: animBack 6s linear infinite;
}

@keyframes animBack {
    0%{
        top: -40px;
    }
    100%{
        top: 120%;
    }
}
    /* ...existing styles... */

    .heading {
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 50px;
        font-weight: bolder;
        text-align: center;
        z-index: 3;
    }

    /*Search box*/
    .box{
        max-width: 400px;
        width: 100%;
      }
      .box .search-box{
        position: relative;
        height: 50px;
        max-width: 500px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
        border-radius: 25px;
        margin: 5px;
      }
      .search-box input{
       position: absolute;
       height: 100%;
       width: 95%;
       border-radius: 25px;
       background: #fff;
       outline: none;
       border: none;
       padding-left: 20px;
       font-size: 18px;
       margin: 0;
      }
      .search-box .icon{
        position: absolute;
        right: -2px;
        top: 0;
        height: 100%;
        text-align: center;
        line-height: 50px;
        font-size: 20px;
        background: #FF676D;
        color: #FFF;
        width: 60px;
        border-radius: 0 25px 25px 0;
        margin-top: 1px;
      }


        /* Preloader styles */
        .preloaderBg {
          position: fixed;
          z-index: 10; 
          top: 0;
          background: #fff;
          width: 100%;
          height: 100%;
          text-align: center;
          margin: 0 auto;
      }
      
      .preloader {
          margin: auto;
          background: url(img/mrdw.png) no-repeat center;
          background-size: 150px;
          width: 300px;
          height: 300px;
          margin-top: 30%;
      }
      
      
      .preloader2 {
        border: 5px solid #f3f3f3;
        border-top: 5px solid #f00;
        border-radius: 50%;
        width: 250px;
        height: 250px;
        animation: spin 1s ease-in-out infinite ;
        position: relative;
        margin: auto;
        top: -280px;
      }
      
      @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
      }
      
      /*foter animation*/
#animation {
  background: #080a3c;
  height: auto;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  border-radius: 75px 75px 0px 0px;
}
#animation::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(img/tt.png);
  animation: imgChange 1s linear 1s infinite;
}
#animation::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url(img/tt.2.png);
  animation: imgChangeTwo 1s linear 1s infinite;
}
@keyframes imgChange {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes imgChangeTwo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* The footer is fixed to the bottom of the page */

footer {
  position: fixed;
  bottom: 0;
}

@media (max-height:800px) {
  footer {
      position: static;
  }
  header {
      padding-top: 40px;
  }
}

.footer-distributed {
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  margin-top: 80px;
  padding: 20px;
  position: relative;
  z-index: 2;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */
.footer-distributed .footer-left {
width: 35%;
padding: 10px;
}

.footer-distributed .footer-left i {
background-color: #33383b;
color: #ffffff;
font-size: 25px;
width: 38px;
height: 38px;
border-radius: 50%;
text-align: center;
line-height: 42px;
margin: 10px 15px;
vertical-align: middle;
}

.footer-distributed .footer-left i.fa-envelope {
font-size: 17px;
line-height: 38px;
}

.footer-distributed .footer-left p {
display: inline-block;
color: #ffffff;
vertical-align: middle;
margin: 0;
}

.footer-distributed .footer-left p span {
display: block;
font-weight: normal;
font-size: 14px;
line-height: 2;
}

.footer-distributed .footer-left p a {
color: #e0ac1c;
text-decoration: none;
;
}


/* Footer links */

.footer-distributed .footer-links {
  color: #ffffff;
  margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: #8f9296;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */


.footer-distributed .footer-center {
width: 30%;
}

.footer-distributed h3 {
color: #ffffff;
font: normal 36px 'Cookie', cursive;
margin: 0;
}


.footer-distributed h3 span {
color: #e0ac1c;
}


/* Footer Right */

.footer-distributed .footer-right {
  width: 30%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
  background-color: #3F71EA;
  transition: .5s;
  transform: scale(1.2);
}

.footer-links a:hover {
  color: #3F71EA;
  transition: .5s;
}

@media (max-width: 880px) {
  .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
      display: block;
      width: 100%;
      margin-bottom: 40px;
      text-align: center;
  }
  .footer-distributed .footer-center i {
      margin-left: 0;
  }
}       
/*logo*/
.mr{
border: 2px solid #fafafa;
border-radius:50% ;
width: 5.5em;
height: 5.5em;
margin-left: 20px;
}        
.mr img{
width: 5em;
height: 5em;
padding: 7px;
}
.tainor{
  display: flex;
  align-items: center;
  justify-content: center;
}

h1{
  color: #000000;
  font-size: 75px;
}

span{
  color: #fff724;
}
/*Go to top*/
.button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background-color: rgb(20, 20, 20);
	border: none;
	font-weight: 600;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 0px 0px 4px rgba(180, 160, 255, 0.253);
	cursor: pointer;
	transition: width 0.3s, background-color 0.3s, border-radius 0.3s;
	overflow: hidden;
	position: fixed;
	bottom: 100px;
	right: 32px;
	z-index: 1000;
	display: none;
}
.button i {
  color: white;
  transition: transform 0.8s;
}

.button:hover {
  width: 160px;
  border-radius: 50px;
  background-color: rgb(65, 24, 211);
}

.button:hover i {
  transform: translateY(-230%);
}

.button::before {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, 50%);
  content: "Back to Top";
  color: white;
  font-size: 0px;
  transition: font-size 0.3s, opacity 0.3s, transform 0.3s;
}

.button:hover::before {
  font-size: 13px;
  opacity: 1;
  transform: translate(-50%, -50%);
}


/*nav*/
nav{
  height: 4rem;
  width: 100vw;
  background-color: #131418;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  top: 0%;
  display: flex;
  position: fixed;
  z-index: 10;
}

/*Styling logo*/
.logo{
  padding:1vh 1vw;
  text-align: center;
  border: 2px solid white;
  border-radius: 50%;
  padding: 10px;
  height: 2rem;
	width: 2rem;
  margin: 10px;
  margin-top: 2px;
}
.logo img {
	height: 2rem;
	width: 2rem;
}

/*Styling Links*/
.nav-links{
  display: flex;
  list-style: none; 
  width: 88vw;
  padding: 0 0.7vw;
  justify-content: space-evenly;
  align-items: center;
  text-transform: uppercase;
}
.nav-links li a{
  text-decoration: none;
  margin: 0 0.7vw;
  color: white;
  font-weight: bolder;
}
.nav-links li a:hover {
  color: #61DAFB;
}
.nav-links li {
  position: relative;
}
.nav-links li a::before {
  content: "";
  display: block;
  height: 3px;
  width: 0%;
  background-color: #61DAFB;
  position: absolute;
  transition: all ease-in-out 250ms;
  margin: 0 0 0 10%;
}
.nav-links li a:hover::before{
  width: 80%;
}

/*Styling Buttons*/
.login-button{
  background-color: transparent;
  border: 1.5px solid #f2f5f7;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  margin-left: 2vw;
  font-size: 1rem;
  cursor: pointer;
  color: white;

}
.login-button:hover {
  color: #131418;
  background-color: #f2f5f7;
  border:1.5px solid #f2f5f7;
  transition: all ease-in-out 350ms;
}
.join-button{
  color: #131418;
  background-color: #61DAFB;
  border: 1.5px solid #61DAFB;
  border-radius: 2em;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  cursor: pointer;
}
.join-button:hover {
  color: #f2f5f7;
  background-color: transparent;
  border:1.5px solid #f2f5f7;
  transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div{
  width: 30px;
  height:3px;
  background: #f2f5f7;
  margin: 5px;
  transition: all 0.3s ease;
}
.hamburger{
  display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px){
  nav{
      position: fixed;
      z-index: 3;
  }
  .hamburger{
      display:block;
      position: absolute;
      cursor: pointer;
      right: 5%;
      top: 50%;
      transform: translate(-5%, -50%);
      z-index: 2;
      transition: all 0.7s ease;
  }
  .nav-links{
      position: fixed;
      background: #131418;
      height: 100vh;
      width: 100%;
      flex-direction: column;
      clip-path: circle(50px at 90% -20%);
      -webkit-clip-path: circle(50px at 90% -10%);
      transition: all 1s ease-out;
      pointer-events: none;
  }
  .nav-links.open{
      clip-path: circle(1000px at 90% -10%);
      -webkit-clip-path: circle(1000px at 90% -10%);
      pointer-events: all;
      margin: 0;
  }
  .nav-links li{
      opacity: 0;
  }
  .nav-links li:nth-child(1){
      transition: all 0.5s ease 0.2s;
  }
  .nav-links li:nth-child(2){
      transition: all 0.5s ease 0.4s;
  }
  .nav-links li:nth-child(3){
      transition: all 0.5s ease 0.6s;
  }
  .nav-links li:nth-child(4){
      transition: all 0.5s ease 0.7s;
  }
  .nav-links li:nth-child(5){
      transition: all 0.5s ease 0.8s;
  }
  .nav-links li:nth-child(6){
      transition: all 0.5s ease 0.9s;
      margin: 0;
  }
  .nav-links li:nth-child(7){
      transition: all 0.5s ease 1s;
      margin: 0;
  }
  li.fade{
      opacity: 1;
  }
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
  transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
  transition: all 0.7s ease;
  width:0;
}
.toggle .line3{
  transform: rotate(45deg) translate(-5px,-6px);
}