* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: montserrat;
}

nav {
  background: #0082e6;
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0px;
  z-index: 11;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  line-height: 40px;
  padding: 0px;
}

.logo-anime-1 {
  animation-name: img1;
  animation-duration: 10s;
  animation-delay: 1s;
  animation-iteration-count: infinite;

}

@keyframes img1 {
  0% {
    transform: rotate(0deg);
    opacity: 0;
    margin-left: -200px;
  }

  35% {
    transform: rotate(360deg);
    opacity: 1;
    margin-left: 0px;
    filter: invert(100%);
  }

  70% {
    transform: rotate(720deg);
    opacity: 1;
    margin-left: 0px;
    filter: invert(0%);
  }

  100% {
    transform: rotate(0deg);
    opacity: 0;
    margin-left: -200px;
    filter: invert(100%);
  }

}

.logo-anime-2 {
  animation-name: img2;
  animation-duration: 10s;
  animation-delay: 4s;
  animation-iteration-count: infinite;
  font-size: 50px;
  color: #000000;
  cursor: pointer;
  opacity: 0;
  font-weight: 900;
   text-shadow: 1px 0px 2px rgb(255, 255, 255);
}

@keyframes img2 {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  25% {
    transform: translateY(0px);
    opacity: 1;
  }

  50% {
    transform: translateY(0px);
    opacity: 1;
  }

  75% {
    transform: translateY(-0px);
    opacity: 1;
  }

  100% {
    transform: translateY(-100px);
    opacity: 1;
  }
}

.logo-anime-3 {
  animation-name: img3;
  animation-duration: 10s;
  animation-delay: 5s;
  animation-iteration-count: infinite;
  font-size: 23px;
  padding-left: 10px;
  opacity: 0;
  color: rgb(0, 0, 0);
  font-family: fantasy;
  text-transform: uppercase;
  text-shadow: 2px 3px 0px rgb(255, 255, 255);
  letter-spacing: 5px;
}

@keyframes img3 {
  0% {
    transform: translatex(-150px);
    opacity: 0;
  }

  25% {
    transform: translatex(0px);
    opacity: 1;
  }

  50% {
    transform: translatex(0px);
    opacity: 1;
  }

  75% {
    transform: translatex(-150px);
    opacity: 1;
  }

  100% {
    transform: translatex(-150px);
    opacity: 1;
  }
}

nav .nav-ul {
  float: right;
  margin-right: 20px;
}

nav .nav-ul .nav-li {
  display: inline-block;
  line-height: 80px;
  margin-right: 5px;
  margin-top: 10px;
}

.nav-link {
  color: white;
  font-size: 20px;
  padding: 7px 13px;
  border-radius: 3px;
  font-family: Baloo 2;
  text-decoration: none;
  transition: .5s;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.5);
  transform: translatey(-5px);
}

.nav-link::before {
  content: attr(data-text);
  color: red;
  position: absolute;
  top: 25px;
  pointer-events: none;
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0px 0px 1px red;
  text-decoration: none;
  letter-spacing: 20px;
  opacity: 0;
  overflow: hidden;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) .5s;
}

.live-btn {
  margin-right: 20px;
  margin-left: 100px;
  width: 120px;
  margin-top: 0%;
  color: white;
  font-weight: bold;
  font-size: 20px;
  border: white;
  background-color: red;
  border-radius: 10px;
  border: 2px solid #ffff;
  transition: cubic-bezier(0.215, 0.610, 0.355, 1) 1s;
}

.live-btn:hover {
  border: 2px solid red;
  color: #ffff;
  transform: scale(1.1) translatex(-10px);
  box-shadow: 7px 7px 10px rgba(0, 0, 0, 0.5);
}

.live-img {
  filter: invert(100%);
}

.nav-link:hover::before {
  opacity: 1;
  letter-spacing: 2px;
  transition-delay: .2s;
}

.checkbtn {
  font-size: 30px;
  color: white;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

@media (max-width: 952px) {
  label.logo {
    font-size: 30px;
    padding-left: 50px;
  }

  nav .nav-ul .nav-li a {
    font-size: 16px;
  }

  .live-btn {
    margin-left: 20px;
  }
}

@media (max-width: 858px) {
  .checkbtn {
    display: block;
  }

  .nav-link:hover {
    color: #fff;
    transition: none;
    transform: none;
  }

  .nav-bar {
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0px;
    z-index: 11;

  }

  .nav-ul {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #2c3e50;
    top: 80px;
    left: -100%;
    z-index: 11;
    text-align: center;
    transition: all .5s;
  }

  .nav-link:hover::before {
    content: "";
  }

  nav .nav-ul .nav-li {
    display: block;
    margin: 50px 0;
    line-height: 30px;
  }

  nav .nav-ul .nav-li a {
    font-size: 20px;
  }

 

  #check:checked~.nav-ul {
    left: 0;
  }

  .live-btn {
    border: none;
    background-color: transparent;
    margin-left: 0px;
    border-radius: 0%;
    transition: none;
  }

  .live-btn:hover {
    border: none;
    transform: none;
    box-shadow: none;
  }
}

.footer-distributed {
  background-color: #0082e6;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: normal 16px sans-serif;
  padding: 45px 50px;
}

.footer-distributed .footer-left p {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* Footer links */

.footer-distributed p.footer-links {
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 10px;
  padding: 0;
  transition: ease .25s;
}

.footer-distributed p.footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: #ffff;
  transition: ease .25s;
}

.footer-distributed .footer-links a:before {
  content: " | ";
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}


.footer-distributed .footer-links .link-1:before {
  content: none;
}

.footer-distributed .footer-right {
  float: right;
  margin-top: 6px;
  max-width: 180px;
}

.f-icon {
  transition: cubic-bezier(0.175, 0.885, 0.32, 1.275)1s;
}

.f-icon:hover {
  transform: scale(1.2) rotate(720deg);
  background-color: transparent;
}

.footer-distributed p.footer-links a:hover {
  text-decoration: underline;
  background-color: transparent;
  color: rgb(0, 0, 0);
  opacity: .5;
}

/* Media Queries */

@media (max-width: 600px) {

  .footer-distributed .footer-left,
  .footer-distributed .footer-right {
    text-align: center;
  }

  .footer-distributed .footer-right {
    float: none;
    margin: 0 auto 20px;
  }

  .footer-distributed .footer-left p.footer-links {
    line-height: 1.8;
  }
  
}

.logo-anime {
  animation-name: logoanimation;
  animation-iteration-count: infinite;
  animation-duration: 7s;
  transition: cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes logoanimation {
  0% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}




.second-heading {
  color: purple;
  text-decoration: underline green;
  font-size: 46px;
  font-weight: 900;
}

.left-paragraph {
  width: 100%;

}

.jombotron-anime {
  animation-name: jombotron-animetion;
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-duration: 1.5s;
}

@keyframes jombotron-animetion {
  0% {
    margin-left: -200px;
    opacity: 0;
    transform: skewy(30deg);
  }

  100% {
    margin-left: 0px;
    opacity: 1;
    transform: skewy(0deg);
  }
}



.left-content-btns {
  border-radius: 24px;
  font-weight: 500;
  width: 130px;
  margin-left: 20px;
  transition: cubic-bezier(0.215, 0.610, 0.355, 1) 1s;
}


.btns2:hover {
  transform: translateY(5px) rotate(-7deg);
  text-transform: capitalize;
  animation: none;
}

.btns1:hover {
  transform: translateY(5px) rotate(7deg);
  text-transform: capitalize;
  animation: none;

}

/* home page inimated title  */
.animate-charcter {
  text-transform: uppercase;
  background-image: linear-gradient(-225deg,
      #231557 0%,
      #44107a 29%,
      #ff1361 67%,
      #fff800 100%);


  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textclip 2s linear infinite;
  display: inline-block;
  font-size: 55px;
  font-weight: 900;
}

@keyframes textclip {
  to {
    background-position: 200% center;
  }
}

.right-img {
  animation-name: trophy;
  animation-duration: 7s;
  animation-timing-function:cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-iteration-count: infinite;
  width: 100%;
}

@keyframes trophy {
  0% {
    transform: translateY(-30px);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(-30px);
  }
}



/* shedule page */
.shedule-h1 {
  -webkit-text-stroke: 2px goldenrod;
  text-shadow: 0px 2px 7px gold;
  color: white;
  font-weight: 900;
  font-size: 60px;
}

.card-shedule ul {
  margin-bottom: 30px;
}

.match-no {
  position: absolute;
  display: block;
  font-size: 23px;
  font-weight: 800;
  font-family: Baloo 2;
  padding: 10px 12px;
  overflow: hidden;
  height: 50px;
  margin-top: -10px;
}

.li1 {
  list-style: none;
  border: 2px solid rgb(170, 169, 169);
  border-radius: 23px 23px 0px 0px;
  padding: 0px 15px;
  background-color: #ffff;
  height: 50px;
  border-bottom: none;
  text-align: center;
}

.more-btn {
  display: block;
  border: 2px solid rgb(170, 169, 169);
  border-radius: 0px 0px 15px 15px;
  background-color: rgb(170, 169, 169);
  padding: 2px 5px;
  border-top: none;
  width: 20%;
  text-align: center;
  margin-left: 70%;
}

.more-btn-btn {
  border: none;
  background-color: transparent;
  width: 100%;
}

.li2 {
  list-style: none;
  border: 2px solid rgb(170, 169, 169);
  background-color: #ffff;
  border-top: none;
  padding: 5px;
  height: 40px;
  text-align: center;
}

.li3 {
  list-style: none;
  border: 2px solid rgb(170, 169, 169);
  background-color: rgb(170, 169, 169);
  padding: 10px 15px;
  border-top: none;
  height: 50px;
  text-align: center;
  border-radius: 0px 0px 23px 23px;
}

.li4 {
  list-style: none;
  border: 2px solid rgb(170, 169, 169);
  background-color: rgb(245, 188, 188);
  padding: 5px 15px;
  height: 50px;
  border-top: none;
  text-align: center;
 
}

.li5 {
  list-style: none;
  border: 2px solid rgb(170, 169, 169);
  padding: 5px;
  background-color: black;
  height: 200px;
  border-top: none;
  text-align: center;

}

.line-1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 50px;
  position: relative;
  text-align: center;
  margin-right: 20px;
  margin-top: 5px;
}

.line-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 40px;
  position: relative;
  height: 30px;
}

.line-2 p {
  font-size: 22px;
  text-align: center;
  display: block;
  width: 100px;
  margin-bottom: 0px;
  margin: 0px 10px;
}

.line-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0px 5px;
  position: relative;
  height: 30px;
}

.line-3 p {
  font-size: 15px;
  font-weight: 300;
  font-family: baloo 2;
  text-align: center;
  display: block;
  margin-bottom: 0px;
}

.card-animation {
  animation-name: shedule-card;
  animation-iteration-count: 1;
  animation-duration: 3s;
  transform: translatex(-50px);
}

@keyframes shedule-card {
  0% {
    transform: translatex(-100px);
    opacity: 0;
  }

  50% {
    transform: translatex(50px);
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

.card-animation-2 {
  animation-name: shedule-card-2;
  animation-iteration-count: 1;
  animation-duration: 3s;
  transform: translatex(50px);
}
@media(max-width:600px){
.card-animation, .card-animation-2{
  transform: translatex(0px);
}
}

@keyframes shedule-card-2 {
  0% {
    transform: translatex(100px);
    opacity: 0;
  }

  50% {
    transform: translatex(-50px);
    opacity: .5;
  }

  100% {
    opacity: 1;
  }
}

.home-shedule {
  display: flex;
  justify-content: center;
  margin-top: 100px;
  margin-bottom: 30px;
}

.background {
  background: linear-gradient(120deg, rgba(133, 255, 149, 0.1), rgba(0, 81, 255, 0.1), rgba(252, 114, 233, 0.1));
  width: 100%;
  bottom: 0%;
  position: fixed;
  top: 0px;
  z-index: -1;
  animation-name: back;
  animation-duration: 10s;
  animation-iteration-count: infinite;
}

@keyframes back {
  0% {
    transform: rotatex(0deg);
  }

  15% {
    transform: skew(10deg);
  }

  25% {
    transform: rotatey(90deg);
  }

  35% {
    transform: skew(80deg);
  }

  50% {
    transform: rotatex(180deg);
  }

  65% {
    transform: skew(140deg);
  }

  75% {
    transform: rotatey(270deg);
  }

  88% {
    transform: skew(300deg);
  }

  100% {
    transform: rotatex(360deg);
  }
}