@keyframes changebgColor {
  0% {
    background: linear-gradient();
  }
}
@keyframes scale {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideLeft {
  0% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes increaseWidth {
  0% {
    width: 0%;
    background: linear-gradient(90deg, #5AA36A, white);
  }
  100% {
    width: 100%;
    background: linear-gradient(90deg, white, #5AA36A);
  }
}
@keyframes dropdown {
  0% {
    margin-top: -60vh;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    margin-top: 0px;
  }
}
@keyframes gradient {
  0% {
    background: linear-gradient(70deg, #0B308D, #078BE0, #0B308D);
  }
  50% {
    background: linear-gradient(70deg, #078BE0, #0B308D, #078BE0);
  }
  100% {
    background: linear-gradient(70deg, #0B308D, #078BE0, #0B308D);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100;
  }
}
@keyframes popup {
  0% {
    transform: scale(0.95);
  }
  60% {
    transform: scale(1.01);
  }
  80% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes marquee-loader {
  0% {
    transform: translateX(-1vw);
  }
  100% {
    transform: translateX(75vw);
  }
}
@keyframes bright {
  0% {
    filter: invert(48%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(50%) contrast(80%);
  }
  50% {
    filter: invert(48%) sepia(13%) saturate(3207%) hue-rotate(130deg) brightness(95%) contrast(80%);
  }
  100% {
    filter: invert(48%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(50%) contrast(80%);
  }
}
@keyframes slideUp {
  0% {
    transform: translateY(300px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@font-face {
  font-family: "Avenir next";
  src: url(../assets/font/avenir-next/AvenirNextLTPro-Regular.otf);
}
@font-face {
  font-family: "Avenir bold";
  src: url(../assets/font/avenir-next/AvenirNextLTPro-Bold.otf);
}
@font-face {
  font-family: "Bebas Neue";
  src: url("../assets/font/Bebas_Neue,Urbanist/Bebas_Neue/BebasNeue-Regular.ttf");
}
@font-face {
  font-family: "Biryani";
  src: url("../assets/font/Biryani/Biryani/Biryani-Regular.ttf");
}
@font-face {
  font-family: "Archivo";
  src: url("../assets/font/Archivo/Archivo-VariableFont_wdth,wght.ttf");
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Avenir next";
}

#root {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  font-family: "Avenir next";
}

a {
  text-decoration: none;
}

.clickable {
  cursor: pointer;
  pointer-events: all;
}

.hide {
  display: none;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 10000;
  background-color: white;
  height: 10vw;
}
header .wrapper {
  background-color: white;
  display: flex;
  flex-direction: row;
  width: 90%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
header .wrapper .logo {
  width: auto;
}
header .wrapper .logo .svg svg {
  width: 8vw;
  height: auto;
}
header .wrapper nav {
  width: 85%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrapper nav .nav-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: auto;
}
header .wrapper nav .nav-1 .cancel {
  display: none;
}
header .wrapper nav .nav-1 .nav-link {
  font-family: "Avenir next";
  font-size: 1vw;
  font-weight: 600;
  margin: 0 2.3vw;
  color: black;
  display: flex;
  align-items: center;
}
header .wrapper nav .nav-1 .nav-link svg {
  margin-left: 0.5vw;
  width: 0.8vw;
  height: auto;
}
header .wrapper nav .nav-1 .nav-link span {
  display: flex;
  align-items: center;
  height: 3vw;
}
header .wrapper nav .nav-1 .nav-link span:hover + .sub-nav, header .wrapper nav .nav-1 .nav-link .sub-nav:hover {
  display: flex;
}
header .wrapper nav .nav-1 .nav-link .sub-nav {
  display: none;
  justify-content: center;
  padding: 1vw 0;
  position: absolute;
  width: 13vw;
  background-color: white;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2509803922);
  margin: 10vw 0 0 1.5vw;
  border-radius: 0.3vw;
}
header .wrapper nav .nav-1 .nav-link .sub-nav .wrap {
  width: 85%;
  display: flex;
  flex-direction: column;
}
header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span {
  margin: 1vw 0;
  width: 100%;
  height: auto;
}
header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span label {
  display: flex;
  justify-content: space-between;
  width: 100%;
  pointer-events: all;
  cursor: pointer;
}
header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span label:hover {
  color: #F47226;
}
header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span label:hover svg {
  fill: #F47226;
}
header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span label:hover + .sub-sub-nav, header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span .sub-sub-nav:hover {
  display: flex;
}
header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span .sub-sub-nav {
  display: none;
  justify-content: center;
  padding: 1vw 0;
  position: absolute;
  width: 13vw;
  background-color: white;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2509803922);
  margin: 6vw 0 0 10vw;
  border-radius: 0.3vw;
}
header .wrapper nav .nav-search {
  margin-left: 3vw;
}
header .wrapper nav .nav-search svg {
  width: 1.2vw;
  height: auto;
}
header .wrapper nav button {
  width: auto;
  height: auto;
  padding: 0.6vw 2.3vw;
  background: linear-gradient(45deg, #078BE0, #0B308D);
  font-family: "Biryani";
  font-size: 1vw;
  font-weight: 300;
  margin-left: 3vw;
  outline: none;
  border: none;
  border-radius: 5px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .wrapper nav button:hover {
  animation: gradient 0.8s;
}
header .wrapper nav button:active {
  animation: scale 0.8s;
}
header .wrapper .gamerush-searchBox {
  display: none;
  flex-direction: row;
  align-items: center;
  position: absolute;
  right: 0;
  margin-top: 235px;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  width: 25%;
  padding: 0 0 0 10px;
  background: white;
  border: 1px solid #e9e9e9;
  box-shadow: 1px 1px 2px #aaa;
}
header .wrapper .gamerush-searchBox .gamerush-searchBox-categories {
  width: 150px;
  height: 45px;
  border: none;
  font-family: "Avenir next";
  font-size: 1vw;
  outline: none;
  text-decoration: none;
  color: black;
}
header .wrapper .gamerush-searchBox .gamerush-searchBox-categories option {
  font-size: 1vw;
}
header .wrapper .gamerush-searchBox .gamerush-searchBox-search {
  width: 100%;
  height: 30px;
  margin: 0px 0px 0px 10px;
  border: none;
  border-left: 1px solid #d1d1d1;
  color: black;
  padding-left: 10px;
  font-size: 9pt;
  font-family: "Avenir next";
}
header .wrapper .gamerush-searchBox .gamerush-searchBox-catergories:focus, header .wrapper .gamerush-searchBox .gamerush-searchBox-search {
  outline: none;
}
header .wrapper .gamerush-searchBox .gamerush-searchBox-search-button {
  width: 50px;
  height: 45px;
  color: white;
  border: none;
  background-color: #666666;
}
header .wrapper .gamerush-searchBox .gamerush-searchBox-search-button svg {
  width: 1.2vw;
  height: auto;
}
header .wrapper .gamerush-searchBox .gamerush-searchBox-search-close {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  padding: 5px;
  color: black;
  background: #d1d1d1;
  position: absolute;
  margin-top: -80px;
  right: 0;
  font-size: 9pt;
}
header .wrapper .gamerush-searchBox .gamerush-searchBox-search-close svg {
  width: 2vw;
  height: auto;
}

.billboard {
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #000;
  margin-top: 0vw;
}
.billboard .bill-slide {
  width: 100%;
  height: 600px;
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.billboard .bill-slide .slideBox {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  display: flex;
  justify-content: left;
  align-items: center;
}
.billboard .bill-slide .slideBox .slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.billboard .bill-slide .watermark-l {
  width: 6vw;
  height: 20vw;
  left: 0;
  margin-top: 28%;
  position: absolute;
  background-image: url("../assets/img/billboard/Unity.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: bright 4s infinite 0s;
}
.billboard .bill-slide .watermark-r {
  width: 8vw;
  height: 40vw;
  right: 0;
  margin-top: 7.5%;
  position: absolute;
  background-image: url("../assets/img/billboard/Sport.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: bright 4s infinite 0.2s;
}
.billboard .bill-slide .watermark-c {
  width: 50vw;
  height: 5vw;
  bottom: 0;
  position: absolute;
  background-image: url("../assets/img/billboard/Through.png");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: bright 4s infinite 0.4s;
}
.billboard .bill-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  z-index: 1;
  animation: bg-transparent 0.8s;
  background-color: rgba(0, 0, 0, 0.2666666667);
}
@keyframes bg-transparent {
  0% {
    background-color: #000000;
  }
  100% {
    background-color: rgba(0, 0, 0, 0.2666666667);
  }
}
.billboard .bill-text .wrapper {
  width: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  margin-top: 200vw;
  margin-bottom: 0;
}
.billboard .bill-text .wrapper .wrap-0 {
  display: flex;
  flex-direction: column;
  margin-bottom: 7vw;
  align-items: center;
}
.billboard .bill-text .wrapper .wrap-0 .title-0 {
  font-family: "Bebas Neue";
  font-size: 4vw;
  font-weight: 400;
  color: white;
}
.billboard .bill-text .wrapper .wrap-0 .title-1 {
  font-family: "Avenir next";
  font-size: 2.2vw;
  font-weight: 400;
  color: white;
}
.billboard .bill-text .wrapper .wrap-0 .title-1 .bold {
  font-weight: 600;
}
.billboard .bill-text .wrapper .wrap-1 {
  display: flex;
  margin-bottom: 2vw;
  flex-direction: column;
  align-items: center;
}
.billboard .bill-text .wrapper .wrap-1 .container {
  width: 45vw;
  height: 5vw;
  background-color: white;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.billboard .bill-text .wrapper .wrap-1 .container .wrap {
  width: 80%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.billboard .bill-text .wrapper .wrap-1 .slide-status {
  width: auto;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1vw;
}
.billboard .bill-text .wrapper .wrap-1 .slide-status .clip {
  width: 0.65vw;
  height: 0.6vw;
  -webkit-clip-path: circle();
          clip-path: circle();
  background-color: white;
  margin: 2px;
}

.events {
  width: 100%;
  height: auto;
  padding: 3vw 0;
  background-color: black;
  display: flex;
  flex-direction: column;
  justify-content: center center;
  align-items: center;
}
.events .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}
.events .wrapper .box-1 {
  width: 19vw;
  height: 27vw;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.events .wrapper .box-1 .event-l-list {
  width: 80%;
  max-height: 70%;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.events .wrapper .box-1 .event-l-list .wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.55vw 0;
}
.events .wrapper .box-1 .event-l-list .wrapper .wrap {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  width: 90%;
}
.events .wrapper .box-1 .event-l-list .wrapper .wrap span {
  margin-left: 1vw;
  font-family: "Avenir next";
  font-size: 0.8vw;
  font-weight: 600;
  color: black;
}
.events .wrapper .box-1 .event-l-list .wrapper .wrap svg {
  width: 1.7vw;
  height: auto;
}
.events .wrapper .box-1 .head {
  width: 100%;
  height: 12vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 0.1vw solid black;
}
.events .wrapper .box-1 .head .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
}
.events .wrapper .box-1 .head .wrap label {
  display: flex;
  align-items: center;
  font: 400 0.8vw "Avenir bold";
}
.events .wrapper .box-1 .head .wrap label svg {
  width: 0.8vw;
  margin-right: 0.4vw;
}
.events .wrapper .box-1 .head .wrap .search {
  width: 9vw;
  height: 2vw;
  background-color: white;
  border-radius: 0.1vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events .wrapper .box-1 .head .wrap .search .wrap-0 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events .wrapper .box-1 .head .wrap .search .wrap-0 input {
  width: 7vw;
  font: 400 0.7vw "Avenir next";
  border: none;
  outline: none;
}
.events .wrapper .box-1 .head .wrap .search .wrap-0 svg {
  margin-right: 0.1vw;
  width: 0.9vw;
  height: auto;
}
.events .wrapper .box-1 .side {
  width: 100%;
  display: flex;
  justify-content: center;
  height: 90vw;
  overflow-y: auto;
  margin-top: 0.9vw;
}
.events .wrapper .box-1 .side .wrapper {
  width: 90%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.events .wrapper .box-1 .side .wrapper .wrap {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.3vw;
  background-color: white;
  margin: 0.4vw 0;
  padding: 0.5vw 0.5vw;
}
.events .wrapper .box-1 .side .wrapper .wrap .logo {
  width: 4vw;
  height: 94%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 0.1vw solid black;
}
.events .wrapper .box-1 .side .wrapper .wrap .details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 11vw;
}
.events .wrapper .box-1 .side .wrapper .wrap .details .date {
  font: 400 0.6vw "Avenir next";
}
.events .wrapper .box-1 .side .wrapper .wrap .details .league {
  margin-top: 0.1vw;
  font: 400 0.6vw "Avenir next";
  display: flex;
  align-items: center;
}
.events .wrapper .box-1 .side .wrapper .wrap .details .league svg {
  width: 0.7vw;
  height: auto;
  margin-right: 0.1vw;
}
.events .wrapper .box-1 .side .wrapper .wrap .details .team {
  margin-top: 0.4vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.events .wrapper .box-1 .side .wrapper .wrap .details .team .text {
  font: 400 0.75vw "Avenir bold";
  width: 7vw;
  text-overflow: ellipsis;
  overflow: hidden;
  text-wrap: nowrap;
}
.events .wrapper .box-1 .side .wrapper .wrap .details .play {
  display: flex;
  justify-content: right;
  width: 100%;
  margin-top: -0.7vw;
}
.events .wrapper .box-1 .side .wrapper .wrap .details .play a {
  width: auto;
  height: auto;
  padding: 0.39vw 0.4vw;
  background: linear-gradient(45deg, #078BE0, #0B308D);
  font-family: "Biryani";
  font-size: 0.56vw;
  font-weight: 300;
  outline: none;
  border: none;
  border-radius: 0.5vw;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.events .wrapper .box-1 .side .wrapper .wrap .details .play a:hover {
  animation: gradient 0.8s;
}
.events .wrapper .box-1 .side .wrapper .wrap .details .play a:active {
  animation: scale 0.8s;
}
.events .wrapper .box-1 .side .wrapper .wrap .details .play a svg {
  margin-right: 0.08vw;
  width: 0.5vw;
  height: auto;
}
.events .wrapper .bg {
  background-color: #EBEBEB;
  justify-content: left;
}
.events .wrapper .box-0 {
  width: 49.5vw;
  height: 27vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.events .wrapper .box-0 .fixtures-0 {
  width: 100%;
  height: 13vw;
  background-color: white;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.events .wrapper .box-0 .fixtures-0 .wrapper {
  width: 90%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 {
  width: 50%;
  height: 85%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0:nth-child(2) {
  align-items: flex-end;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .live {
  color: #008000;
  font: bold 1.5vw "Avenir bold";
  width: 100%;
  text-align: center;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .heading {
  font-family: "Bebas Neue";
  font-size: 1.2vw;
  font-weight: 600;
  color: black;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .sub {
  display: flex;
  margin-top: 0.3vw;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .sub svg {
  width: 0.8vw;
  height: auto;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .sub .text {
  margin-left: 0.1vw;
  font-family: "Avenir next";
  font-size: 0.8vw;
  font-weight: 600;
  color: black;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .fix {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: "Avenir next";
  font-size: 1.45vw;
  font-weight: 600;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .fix .fix-home, .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .fix .fix-away {
  max-width: 11.5vw;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: wrap;
  text-align: center;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .fix .fix-vs {
  font-style: italic;
  font-weight: 400;
  margin: 0 1vw;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .sub-0 {
  display: flex;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .sub-0 .text {
  margin-top: 0.2vw;
  font-family: "Avenir next";
  font-size: 0.8vw;
  font-weight: 600;
  color: black;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book {
  display: flex;
  align-items: center;
  justify-content: left;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book .button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0.7vw 2.6vw;
  margin-left: 0vw;
  background: linear-gradient(45deg, #078BE0, #0B308D);
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  outline: none;
  border: none;
  border-radius: 5px;
  color: white;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book .button:hover {
  animation: gradient 0.8s;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book .button:active {
  animation: scale 0.8s;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book a {
  margin-left: 1vw;
  color: black;
  font: 400 0.8vw "Avenir next";
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book a svg {
  width: 0.4vw;
  height: auto;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing {
  margin-top: 1vw;
  width: 18vw;
  height: 4vw;
  background-color: rgba(217, 217, 217, 0.3019607843);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 90%;
  align-items: center;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 label {
  font: 400 1vw "Bebas Neue";
  color: black;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 .wrap-000 {
  width: 10vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 .wrap-000 .group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 .wrap-000 .group .num {
  font: 400 1.8vw "Bebas Neue";
  color: transparent;
  background: linear-gradient(to right, black, #FF9A00);
  -webkit-background-clip: text;
          background-clip: text;
}
.events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 .wrap-000 .group .text {
  font: 400 0.6vw "Roboto";
  color: #8E8E8E;
  margin-top: -0.3vw;
}
.events .banner {
  width: 90%;
  height: 13vw;
  background-color: black;
  background-image: url("../assets/img/Rectangle 30.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 3vw;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.events .banner .top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 65%;
  font-size: 2.3vw;
  font-family: "Avenir next";
  font-weight: 700;
  margin-top: 2vw;
}
.events .banner .top .left {
  color: white;
}
.events .banner .top .right {
  color: transparent;
  background: linear-gradient(to right, #4702A0, white);
  -webkit-background-clip: text;
          background-clip: text;
}
.events .banner .bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 55%;
  font: 500 0.8vw "Avenir next";
  margin-top: 5vw;
}
.events .banner .bottom span {
  color: white;
}

.about {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #FDFDFD;
  background-image: url("../assets/img/transparent/1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  justify-content: center;
  align-items: center;
  padding: 3vw 0 12vw 0;
}
.about .heading {
  width: 62%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.about .heading .title {
  width: 12vw;
  font: 300 5.7vw "Bebas Neue";
  line-height: 5.9vw;
}
.about .heading .details {
  width: 50vw;
  font: 300 1.5vw "Avenir next";
  text-align: justify;
}
.about .line {
  width: 75%;
  border-top: 1px solid black;
  margin: 2vw 0;
}
.about section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.about section .wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 85%;
}
.about section .wrapper article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 20vw;
  height: 35vw;
}
.about section .wrapper article .title {
  width: 100%;
  font: 400 2.3vw "Bebas Neue";
}
.about section .wrapper article .title svg {
  width: 1vw;
  height: auto;
}
.about section .wrapper article .details {
  width: 80%;
  font: 500 1vw "Avenir next";
  text-align: justify;
}
.about section .wrapper article .image {
  margin-top: 1vw;
  width: 15vw;
  height: 18vw;
  background-color: #FAFAFA;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.status {
  margin-top: -4vw;
  z-index: 1;
  width: 70vw;
  height: 7vw;
  background-color: white;
  box-shadow: 1px 1px 10px #aaa;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.status .wrapper {
  width: 78%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.status .wrapper .box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.status .wrapper .box .text {
  font: 400 1.3vw "Bebas Neue";
  color: #F47226;
}
.status .wrapper .box .num {
  font: 400 3vw "Bebas Neue";
  color: black;
}

.post {
  margin-top: -4vw;
  width: 100%;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 85%, 0% 100%);
  background: linear-gradient(to bottom, #F47226, rgba(249, 184, 146, 0.6));
  padding: 10vw 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.post .wrapper-0 {
  width: 90%;
  display: flex;
  justify-content: left;
  align-items: flex-end;
}
.post .wrapper-0 .embed {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.post .wrapper-0 .embed .title {
  font: 400 2vw "Bebas Neue";
}
.post .wrapper-0 .embed .caption {
  font: 400 2vw "Bebas Neue";
  margin-bottom: 1vw;
}
.post .wrapper-0 .embed iframe {
  width: 55vw;
  height: 27vw;
  background-color: #FAFAFA;
  border: none;
  outline: none;
  border-radius: 10px;
}
.post .wrapper-0 section {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.post .wrapper-0 section article {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 3vw;
}
.post .wrapper-0 section article .image {
  width: 18vw;
  height: 12vw;
  border-radius: 10px;
  border: none;
  overflow-x: hidden;
  display: flex;
  justify-content: left;
  align-items: center;
}
.post .wrapper-0 section article .image .img {
  min-width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #FDFDFD;
}
.post .wrapper-0 section article .image .wrapper {
  margin-bottom: 0.8vw;
  width: 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.post .wrapper-0 section article .image .wrapper .slide-btn {
  width: 0.5vw;
  height: 0.5vw;
  -webkit-clip-path: circle();
          clip-path: circle();
  background-color: white;
}
.post .wrapper-0 section article .info {
  margin-left: 1vw;
  display: flex;
  flex-direction: column;
  width: 18vw;
}
.post .wrapper-0 section article .info .title {
  font: bold 1.3vw "Avenir bold";
}
.post .wrapper-0 section article .info .details {
  font: 500 1.1vw "Avenir next";
  text-wrap: wrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tribe-join {
  width: 100%;
  -webkit-clip-path: polygon(0vw 5vw, 100vw 0vw, 100vw 109vw, 0vw 109vw);
  clip-path: polygon(0vw 5vw, 100vw 0vw, 100vw 109vw, 0vw 109vw);
  padding: 10vw 0 5vw 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-image: url("../assets/img/transparent/2.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tribe-join .tribe {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 90%;
}
.tribe-join .tribe .head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tribe-join .tribe .head .title {
  display: flex;
  align-items: center;
  font: 400 5vw "Bebas Neue";
}
.tribe-join .tribe .head .title img {
  width: 7vw;
  height: auto;
}
.tribe-join .tribe .head .details {
  margin-top: 1vw;
  font: 600 1.5vw "Avenir next";
  width: 60vw;
  text-align: center;
}
.tribe-join .tribe .list {
  width: 100%;
  margin-top: 3vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tribe-join .tribe .list .wrap {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: right;
}
.tribe-join .tribe .list .wrap .image {
  width: 20vw;
  height: 27vw;
  background-color: #FAFAFA;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 1vw;
}
.tribe-join .tribe .list .wrap label {
  margin-top: 1vw;
  font: 400 1.7vw "Bebas Neue";
}
.tribe-join .join {
  margin-top: 7vw;
  width: 70vw;
  height: 40vw;
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tribe-join .join .title {
  font: 400 3vw "Bebas Neue";
}
.tribe-join .join .details {
  font: 500 1.2vw "Avenir next";
  width: 43vw;
  text-align: center;
}
.tribe-join .join .wrapper {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2vw;
}
.tribe-join .join .wrapper input {
  width: 20vw;
  height: 1vw;
  padding: 2vw;
  background-color: #E8E8E8;
  outline: none;
  border: none;
  margin-bottom: 1.4vw;
  font: 400 1vw "Avenir next";
  border-radius: 1vw;
}
.tribe-join .join .wrapper input:focus {
  outline: 0.2vw solid rgba(7, 139, 224, 0.3333333333);
  border: 0.2vw solid rgba(7, 139, 224, 0.8);
}
.tribe-join .join .wrapper button {
  width: 17vw;
  height: 4.5vw;
  background: linear-gradient(45deg, #078BE0, #0B308D);
  font-family: "Avenir next";
  font-size: 1.2vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 2vw;
  color: white;
}
.tribe-join .join .wrapper button:hover {
  animation: gradient 0.8s;
}
.tribe-join .join .wrapper button:active {
  animation: scale 0.8s;
}

.partner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.partner .wrapper {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2vw 0;
  justify-content: center;
  background-color: white;
}
.partner .wrapper:nth-child(2) {
  background-color: #E8E8E8;
}
.partner .wrapper .wrap {
  display: flex;
  align-items: center;
  width: 80%;
}
.partner .wrapper .wrap label {
  font: 400 1.4vw "Bebas Neue";
}
.partner .wrapper .wrap .list {
  width: 27vw;
  margin-left: 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: auto;
}
.partner .wrapper .wrap .list img {
  width: auto;
  height: 3vw;
}

.pie {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2vw 0;
  border-top: 0.1vw solid black;
  background-image: url("../assets/img/transparent/3.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.pie .wrap {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: left;
}
.pie .wrap label {
  font: 400 1.5vw "Bebas Neue";
}
.pie .wrap-c {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pie .wrap-c img {
  width: 35vw;
  height: auto;
}

.blogspot {
  width: 100%;
  background-color: #F47226;
  background: linear-gradient(to right, #F47226, rgba(249, 184, 146, 0.6));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2vw 0;
}
.blogspot label {
  width: 80%;
  text-align: left;
  font: 400 2vw "Bebas Neue";
}
.blogspot .wrapper {
  width: 75%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 2vw;
}
.blogspot .wrapper article {
  display: flex;
  width: 18vw;
  height: 24vw;
  justify-content: center;
  align-items: center;
  background-color: black;
  border-radius: 0.5vw;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.blogspot .wrapper article .wrap {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border-radius: 0.5vw;
  background: linear-gradient(180deg, transparent 65%, black 95%);
}
.blogspot .wrapper article .wrap .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 0.7vw;
  width: 100%;
  margin-bottom: 1vw;
}
.blogspot .wrapper article .wrap .box .title {
  font: 400 1vw "Avenir bold";
  color: white;
}
.blogspot .wrapper article .wrap .box .sub {
  font: 400 0.9vw "Avenir next";
  color: white;
  width: 90%;
  max-height: 2vw;
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: wrap;
}

.gallery {
  width: 100%;
  padding: 2vw 0;
  display: flex;
  justify-content: center;
}
.gallery .wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 85%;
}
.gallery .wrapper label {
  font: 400 2vw "Bebas Neue";
  width: 95%;
  text-align: left;
}
.gallery .wrapper .mosaic {
  margin-top: 1.4vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gallery .wrapper .mosaic .wrap {
  width: 22vw;
  height: 61vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.gallery .wrapper .mosaic .wrap .box {
  border-radius: 0.8vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 20vw;
}
.gallery .wrapper .mosaic .wrap .box-a {
  height: 17vw;
}
.gallery .wrapper .mosaic .wrap .box-b {
  height: 24vw;
}
.gallery .wrapper .mosaic .wrap .box-c {
  height: 14vw;
}
.gallery .wrapper .mosaic .wrap .box-d {
  height: 20vw;
}
.gallery .wrapper .mosaic .wrap .box-e {
  height: 30vw;
}
.gallery .wrapper .mosaic .wrap .box-f {
  height: 4vw;
}

footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
footer .wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FDFDFD;
}
footer .wrapper:nth-child(2) {
  border-top: 0.2px solid black;
}
footer .wrapper .wrap {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2vw 0;
}
footer .wrapper .wrap .svg {
  width: 12vw;
  height: auto;
}
footer .wrapper .wrap nav {
  display: flex;
  align-items: flex-start;
}
footer .wrapper .wrap nav .group {
  display: flex;
  flex-direction: column;
  margin-left: 3.3vw;
}
footer .wrapper .wrap nav .group label {
  font: 600 1vw "Avenir bold";
  margin-bottom: 1.3vw;
}
footer .wrapper .wrap nav .group a {
  font: 400 1vw "Avenir next";
  color: black;
  margin-bottom: 1vw;
}
footer .wrapper .wrap nav .group span {
  font: 400 1vw "Avenir next";
  width: 17vw;
  margin-bottom: 1vw;
}
footer .wrapper .wrap nav .group .group-s {
  flex-direction: row;
  width: auto;
}
footer .wrapper .wrap nav .group .group-s .icons {
  width: auto;
  padding-right: 1vw;
}
footer .wrapper .wrap nav .group .group-s .icons img {
  height: 20px;
  width: auto;
  filter: invert(1);
}
footer .wrapper .wrap-0 {
  margin: 1vw 0;
  display: flex;
  align-items: center;
  font: 400 1vw "Avenir next";
}
footer .wrapper .wrap-0 svg {
  width: 1.2vw;
  height: auto;
  margin-right: 0.8vw;
}

.login-section {
  width: 100%;
  padding: 3vw 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.login-section .wrapper:nth-child(1) {
  background-image: url("../assets/img/login/1.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.login-section .wrapper {
  width: 35vw;
  height: 35vw;
  background-color: #EAEAEA;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.login-section .wrapper .wrap {
  width: 90%;
  height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-section .wrapper .wrap .wrap-0 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.login-section .wrapper .wrap .wrap-0 a {
  font: 600 0.8vw "Avenir bold";
}
.login-section .wrapper .wrap .wrap-0 a svg {
  width: 0.7vw;
  height: auto;
}
.login-section .wrapper .wrap .wrap-0 .free {
  width: 6.5vw;
  height: 1vw;
  background-color: white;
  border-radius: 0.4vw;
  padding: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 400 0.8vw "Avenir next";
}
.login-section .wrapper .wrap .title {
  margin-top: 1vw;
  width: 100%;
  text-align: left;
  font: 600 1vw "Avenir bold";
}
.login-section .wrapper .wrap .sub {
  width: 100%;
  text-align: left;
  font: 400 0.9vw "Avenir next";
  margin-top: 0.3vw;
}
.login-section .wrapper .wrap .box {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1vw;
}
.login-section .wrapper .wrap .box .input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18vw;
  height: 4.3vw;
  margin: 1vw 0;
  background-color: white;
  padding: 0 2vw;
  color: black;
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
}
.login-section .wrapper .wrap .box button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10vw;
  height: 3vw;
  margin-top: 4vw;
  background: linear-gradient(45deg, #078BE0, #0B308D);
  font-family: "Biryani";
  font-size: 0.9vw;
  font-weight: 300;
  margin-top: 1vw;
  outline: none;
  border: none;
  border-radius: 0.6vw;
  color: white;
}
.login-section .wrapper .wrap .box button:hover {
  animation: gradient 0.8s;
}
.login-section .wrapper .wrap .box button:active {
  animation: scale 0.8s;
}

.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000000;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}
.popup .pop-0 {
  display: flex;
  flex-direction: column;
  background-color: white;
  width: 50vw;
  height: 30vw;
  align-items: center;
  justify-content: center;
  border-radius: 2vw;
}
.popup .pop-0 .pop-000 {
  width: 85%;
  display: block;
  text-align: right;
}
.popup .pop-0 .pop-000 svg {
  width: 1.8vw;
  height: auto;
}
.popup .pop-0 .pop-001 {
  display: block;
  justify-content: center;
  text-align: center;
}
.popup .pop-0 .pop-001 img {
  width: 7vw;
  height: auto;
}
.popup .pop-0 .pop-002 {
  display: block;
  justify-content: center;
}
.popup .pop-0 .pop-002 span {
  font: 600 1.7vw "Avenir bold";
}
.popup .pop-0 .wrap-3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .pop-0 .wrap-3 .box {
  width: 37vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.2vw;
}
.popup .pop-0 .wrap-3 .box .box-0, .popup .pop-0 .wrap-3 .box .box-1 {
  width: 23vw;
  height: 9vw;
}
.popup .pop-0 .wrap-3 .box .box-0 {
  background-image: url("../assets/img/ticket/1.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-top-left-radius: 0.5vw;
  border-bottom-left-radius: 0.5vw;
  border: 0.1vw solid black;
}
.popup .pop-0 .wrap-3 .box .box-1 {
  border-top-right-radius: 0.5vw;
  border-bottom-right-radius: 0.5vw;
  border: 0.1vw solid black;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup .pop-0 .wrap-3 .box .box-1 span {
  font: 600 1.4vw "Avenir next";
  text-align: left;
  width: 90%;
}

aside {
  display: none;
  flex-direction: column;
  position: fixed;
  bottom: 0;
  right: 0;
  margin-right: 20px;
  animation: slideUp 0.8s;
  z-index: 20000;
}
aside div {
  background-color: #0B308D;
  color: white;
  border-radius: 25px;
  box-shadow: 1px 1px 10px #555;
  padding: 10px;
  font-size: 15pt;
  margin: 5px;
}
aside #to-top {
  margin-bottom: 10px;
}
aside #to-top svg {
  fill: white;
}

.billboard-s {
  width: 100%;
  height: 46vw;
  background: url("../assets/img/sport/web4.webp") center center/cover;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 90%);
          clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 90%);
  image-rendering: optimizeQuality;
  background-repeat: no-repeat;
  animation-timing-function: linear;
}
.billboard-s .bill-text {
  margin-top: 12vw;
  margin-left: 5%;
  width: 40vw;
  display: flex;
  flex-direction: column;
}
.billboard-s .bill-text .title {
  font: bold 2.5vw "Avenir bold";
  color: #FF9A00 !important;
  line-height: 3.3vw;
}
.billboard-s .bill-text .details {
  margin-top: 2vw;
  font: 500 1.5vw "Avenir next";
  color: white;
  line-height: 2.3vw;
}

@keyframes imageDance {
  0% {
    background: url("../assets/img/sport/1.png") 80% 8vw/40%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  1% {
    background: url("../assets/img/sport/2.png") 80% 5vw/35%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  2% {
    background: url("../assets/img/sport/3.png") 80% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  3% {
    background: url("../assets/img/sport/1.png") 90% 8vw/40%, url("../assets/img/sport/2.png") 90% 5vw/35%, url("../assets/img/sport/3.png") 90% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  4% {
    background: url("../assets/img/sport/1.png") 65% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 92.5% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  5% {
    background: url("../assets/img/sport/1.png") 56% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 95% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  6% {
    background: url("../assets/img/sport/1.png") 56% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 95% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  94% {
    background: url("../assets/img/sport/1.png") 56% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 95% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  95% {
    background: url("../assets/img/sport/1.png") 56% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 95% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  96% {
    background: url("../assets/img/sport/1.png") 65% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 92.5% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  97% {
    background: url("../assets/img/sport/1.png") 90% 8vw/40%, url("../assets/img/sport/2.png") 90% 5vw/35%, url("../assets/img/sport/3.png") 90% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  98% {
    background: url("../assets/img/sport/3.png") 80% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  99% {
    background: url("../assets/img/sport/2.png") 80% 5vw/35%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
  100% {
    background: url("../assets/img/sport/1.png") 80% 8vw/40%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
    background-repeat: no-repeat;
  }
}
.sport {
  padding-top: 4vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sport .title {
  font: 700 2.5vw "Avenir bold";
  color: black;
}
.sport .wrapper {
  width: 80%;
  display: flex;
  margin-top: 4vw;
  overflow: hidden;
}
.sport .wrap-box {
  min-width: 100%;
  display: flex;
}
.sport .wrap-box article {
  width: 33.3%;
  height: 33vw;
  pointer-events: all;
  cursor: pointer;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sport .wrap-box article:nth-child(1) {
  background: url("../assets/img/sport/1-gray.png") 50% 120%/95% no-repeat, linear-gradient(rgba(0, 0, 0, 0.8), #0693EE);
}
.sport .wrap-box article:nth-child(2) {
  background: url("../assets/img/sport/3-gray.png") 50% 150%/70% no-repeat, #000000;
}
.sport .wrap-box article:nth-child(3) {
  background: url("../assets/img/sport/2-gray.png") 50% 120%/95% no-repeat, linear-gradient(rgba(0, 0, 0, 0.8), #0693EE);
}
.sport .wrap-box article .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 4vw;
}
.sport .wrap-box article .wrap span {
  font: 900 2.5vw "Avenir bold";
  color: white;
}
.sport .wrap-box article .wrap svg {
  width: 2vw;
  height: auto;
}
.sport .wrap-box2 {
  min-width: 100%;
  display: flex;
  background-color: #000000;
  overflow: hidden;
}
.sport .wrap-box2 article {
  width: 33.3%;
  height: 33vw;
  pointer-events: all;
  cursor: pointer;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.sport .wrap-box2 article .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.sport .wrap-box2 article .wrap span {
  font: 900 2.5vw "Avenir bold";
  color: white;
  width: 80%;
  text-align: center;
}
.sport .wrap-box2 article .wrap svg {
  width: 2vw;
  height: auto;
}
.sport .wrap-box2 article .hover {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  min-height: 100%;
}
.sport .wrap-box2 article .hover a {
  width: auto;
  height: auto;
  padding: 0.7vw 2vw;
  text-decoration: none;
  color: white;
  background: #0693EE;
  font: 1.3vw "Bebas Neue";
  border-radius: 0.4vw;
}
.sport .wrap-box2 article .hover a:active {
  animation: click 0.8s;
}
.sport .wrap-box2 article:hover .hover {
  display: flex;
}

@keyframes o1 {
  0% {
    min-width: 100%;
  }
  100% {
    min-width: 0%;
  }
}
@keyframes o2 {
  0% {
    min-width: 0%;
  }
  100% {
    min-width: 100%;
  }
}
@keyframes click {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.upcoming-s {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2vw;
}
.upcoming-s .title {
  width: 84%;
  font: 600 2vw "Avenir bold";
  color: black;
  border-bottom: 0.2vw solid black;
  padding: 1vw 0;
}
.upcoming-s .wrapper {
  width: 93%;
  margin-top: 2vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.upcoming-s .wrapper article {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4vw;
}
.upcoming-s .wrapper article .event {
  width: 100%;
  height: 28vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
}
.upcoming-s .wrapper article .details {
  width: 100%;
  margin-top: 1vw;
}
.upcoming-s .wrapper article .details span {
  font: 400 0.85vw "Avenir next";
}
.upcoming-s .wrapper article .g-see {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 1vw;
}
.upcoming-s .wrapper article .g-see .see {
  width: auto;
  height: auto;
  padding: 1vw 1.9vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #F47226, #512601);
  text-decoration: none;
  color: white;
  font: 400 1vw "Bebas Neue";
  border-radius: 0.5vw;
}
.upcoming-s .wrapper article .g-see .see:active {
  animation: click 1s;
}
.upcoming-s .wrapper article .g-see .icon {
  width: auto;
  height: auto;
  padding: 1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1vw;
  cursor: pointer;
  pointer-events: all;
  background: black;
  text-decoration: none;
  color: white;
  border-radius: 50%;
}
.upcoming-s .wrapper article .g-see .icon svg {
  width: 0.8vw;
  height: auto;
}
.upcoming-s .wrapper article .g-see .icon:active {
  box-shadow: 1px 1px 10px #333;
  animation: click 1s;
}

.upcoming {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2vw;
}
.upcoming .title {
  width: 84%;
  font: 600 2vw "Avenir bold";
  color: black;
  border-bottom: 0.2vw solid black;
  padding: 1vw 0;
}
.upcoming .wrapper {
  width: 93%;
  margin-top: 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.upcoming .wrapper article {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4vw;
}
.upcoming .wrapper article .event {
  width: 100%;
  height: 28vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
}
.upcoming .wrapper article .event .d {
  width: 90%;
  margin: 1vw 0;
}
.upcoming .wrapper article .event .d .n {
  font: 700 2vw "Bebas Neue";
  color: white;
}
.upcoming .wrapper article .event .d .m {
  font: 400 1.5vw "Avenir bold";
  color: white;
}
.upcoming .wrapper article .event .details {
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.upcoming .wrapper article .event .details .name {
  font: 400 3.3vw "Bebas Neue";
  color: white;
}
.upcoming .wrapper article .event .details .name:nth-child(3) {
  margin-top: -2vw;
}
.upcoming .wrapper article .event .details .vs {
  margin-top: -2.2vw;
  width: 8vw;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 300 6vw "Bebas Neue";
}
.upcoming .wrapper article .event .details .vs text {
  transform: translate(25%, 80%);
  font: 300 6vw "Bebas Neue";
  fill: none;
  stroke: white;
  stroke-width: 0.1vw;
}
.upcoming .wrapper article .event .details .venue {
  font: 600 0.9vw "Avenir next";
  color: white;
  margin-top: -0.8vw;
}
.upcoming .wrapper article .info {
  display: flex;
  width: 100%;
  margin-top: 2vw;
  justify-content: space-between;
}
.upcoming .wrapper article .info .group {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.upcoming .wrapper article .info .group:nth-child(2) {
  width: 10%;
  align-items: center;
}
.upcoming .wrapper article .info .group:nth-child(3) {
  align-items: flex-end;
}
.upcoming .wrapper article .info .group .name {
  font: 600 1.5vw "Avenir next";
  color: black;
}
.upcoming .wrapper article .info .group .lb {
  font: 400 1.5vw "Bebas Neue";
  color: black;
}
.upcoming .wrapper article .info .group .lb .blue {
  color: #0693EE;
}
.upcoming .wrapper article .g-see {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 0.5vw;
}
.upcoming .wrapper article .g-see .see {
  width: auto;
  height: auto;
  padding: 1vw 2.1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #F47226, #512601);
  text-decoration: none;
  color: white;
  font: 400 1.2vw "Bebas Neue";
  border-radius: 0.5vw;
}
.upcoming .wrapper article .g-see .see:active {
  animation: click 1s;
}
.upcoming .wrapper article .g-see .icon {
  width: auto;
  height: auto;
  padding: 1.1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: black;
  text-decoration: none;
  color: white;
  border-radius: 50%;
}
.upcoming .wrapper article .g-see .icon svg {
  width: 1vw;
  height: auto;
}
.upcoming .wrapper article .g-see .icon:active {
  box-shadow: 1px 1px 10px #333;
  animation: click 1s;
}
.upcoming .wrapper article .tr {
  margin-top: 0.7vw;
  font: 500 0.9vw "Avenir next";
  color: black;
}
.upcoming .ind {
  width: auto;
  display: flex;
  align-items: center;
  margin-top: 2vw;
  pointer-events: all;
  cursor: pointer;
}
.upcoming .ind .box {
  -webkit-clip-path: circle();
          clip-path: circle();
  width: 0.7vw;
  height: 0.7vw;
  background-color: black;
  margin: 0 0.5vw;
}

.news {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2vw;
  margin-bottom: 10vw;
}
.news .title {
  width: 84%;
  font: 600 2vw "Avenir bold";
  color: black;
  border-bottom: 0.2vw solid black;
  padding: 1vw 0;
  margin: 0 auto;
}
.news .wrapper {
  width: 93%;
  margin-top: 2vw;
  padding-bottom: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2vw;
  background-color: rgba(217, 217, 217, 0.1019607843);
}
.news .wrapper .wrap-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news .wrapper .wrap-box .img-prev {
  width: 58%;
  height: 24vw;
  border-top-right-radius: 0.7vw;
  border-bottom-right-radius: 0.7vw;
  background-position: center center;
  background-size: cover;
}
.news .wrapper .wrap-box .details {
  width: 39%;
  display: flex;
  flex-direction: column;
}
.news .wrapper .wrap-box .details .date {
  color: #70707B;
  font: 400 1vw "Avenir next";
}
.news .wrapper .wrap-box .details .heading {
  font: 700 1.8vw "Avenir bold";
  margin-top: 1vw;
  width: 30vw;
}
.news .wrapper .wrap-box .details .desc {
  margin-top: 1vw;
  width: 30vw;
  font: 400 1vw "Avenir next";
  line-height: 1.8vw;
}
.news .wrapper .button {
  width: auto;
  height: auto;
  padding: 0.6vw 2vw;
  font: 400 1vw "Avenir next";
  line-height: 1.8vw;
  color: white;
  background: linear-gradient(90deg, #078BE0, #078BE0, #0B308D);
  border-radius: 0.6vw;
  margin-top: 2vw;
}

.billboard-c {
  width: 100%;
  height: 50vw;
  background: url("../assets/img/sport/TEES-136.png"), black;
  image-rendering: optimizeQuality;
  background-repeat: no-repeat;
  background-size: contain;
}
.billboard-c .bill-text {
  margin-top: 12vw;
  margin-left: 3%;
  width: 40vw;
  display: flex;
  flex-direction: column;
}
.billboard-c .bill-text .chaos-img {
  width: 35vw;
  height: auto;
}
.billboard-c .bill-text .details {
  margin-top: 2vw;
  width: 26vw;
  margin-left: 3%;
  font: 500 1.4vw "Avenir next";
  color: white;
  line-height: 2.3vw;
}
.billboard-c .bill-text .button {
  font: 1.2vw "Bebas Neue";
  width: 4vw;
  height: auto;
  padding: 0.7vw 2vw;
  background: linear-gradient(90deg, #F47226, #512601);
  margin-left: 3%;
  margin-top: 2vw;
  color: white;
  border-radius: 0.5vw;
}
.billboard-c .bill-text .button:active {
  animation: click 0.9s;
}

.prev-event {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2vw;
  margin-bottom: 10vw;
}
.prev-event .title {
  width: 84%;
  font: 600 2vw "Avenir bold";
  color: black;
  border-bottom: 0.2vw solid black;
  padding: 1vw 0;
  margin: 0 auto;
}
.prev-event .wrapper {
  width: 100%;
  margin-top: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(217, 217, 217, 0.1019607843);
}
.prev-event .wrapper .wrap-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  scroll-snap-type: x mandatory;
  flex-wrap: nowrap;
  overflow: hidden;
}
.prev-event .wrapper .wrap-box .img {
  background-color: #d1d1d1;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-width: 33.3%;
  height: 31vw;
  scroll-snap-align: start;
}
.prev-event .wrapper .wrap-box .img .hover {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  min-height: 100%;
}
.prev-event .wrapper .wrap-box .img .hover a {
  width: auto;
  height: auto;
  padding: 0.7vw 2vw;
  text-decoration: none;
  color: white;
  background: #0693EE;
  font: 1.3vw "Bebas Neue";
  border-radius: 0.4vw;
}
.prev-event .wrapper .wrap-box .img .hover a:active {
  animation: click 0.8s;
}
.prev-event .wrapper .wrap-box .img:hover .hover {
  display: flex;
}
.prev-event .wrapper .group-btn {
  width: 90%;
  display: flex;
  justify-content: flex-end;
  margin-top: 2vw;
}
.prev-event .wrapper .group-btn label {
  margin: 0 1vw;
}
.prev-event .wrapper .group-btn label svg {
  width: 2vw;
  height: auto;
}

.billboard-f {
  width: 100%;
  height: auto;
  background: linear-gradient(transparent 85%, white), url("../assets/img/sport/TEES-136.png");
  image-rendering: optimizeQuality;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.billboard-f .bill-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: auto;
  margin-bottom: 1vw;
  margin-top: 10vw;
}
.billboard-f .bill-wrap .stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  animation: slideLeft 0.7s;
}
.billboard-f .bill-wrap .stage:nth-child(3) {
  animation: slideRight 0.7s;
}
.billboard-f .bill-wrap .stage img {
  height: 30vw;
}
.billboard-f .bill-wrap .stage .text {
  display: flex;
  flex-direction: column;
  width: 40%;
  margin-top: -0.8vw;
  align-items: center;
}
.billboard-f .bill-wrap .stage .text .fname {
  font: 400 6vw "Bebas Neue";
  color: white;
  text-align: center;
  margin-top: 1vw;
  line-height: 5vw;
  display: flex;
  justify-content: center;
}
.billboard-f .bill-wrap .stage .text .lname {
  font: 400 2vw "Avenir next";
  color: white;
  text-align: right;
  margin-top: -2vw;
}
.billboard-f .bill-wrap .stage .lb {
  font: 400 1.8vw "Bebas Neue";
  color: black;
}
.billboard-f .bill-wrap .stage .lb .blue {
  color: #0693EE;
}
.billboard-f .bill-wrap .cen {
  width: 70%;
  display: flex;
  flex-direction: column;
  margin: 0 2.5vw;
  justify-content: flex-start;
  align-items: center;
}
.billboard-f .bill-wrap .cen .date {
  font: 400 2.6vw "Bebas Neue";
  color: white;
  margin-top: 5vw;
}
.billboard-f .bill-wrap .cen svg {
  width: 10vw;
  height: 10vw;
  margin-top: 4.5vw;
}
.billboard-f .bill-wrap .cen svg text {
  transform: translate(25%, 80%);
  font: 300 8vw "Bebas Neue";
  fill: none;
  stroke: white;
  stroke-width: 0.1vw;
}

.ticket {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4vw;
}
.ticket .title {
  width: 90%;
  font: 600 2vw "Avenir bold";
  color: black;
  border-bottom: 0.1vw solid black;
  padding: 1vw 0;
}
.ticket .w-info {
  width: 100%;
  display: flex;
  justify-content: center;
}
.ticket .w-info .info {
  display: flex;
  width: 90%;
  margin-top: 4vw;
  border-bottom: 0.1vw solid #F47226;
  padding-bottom: 2vw;
}
.ticket .w-info .info .ksdf {
  margin-left: 1.4vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.ticket .w-info .info .ksdf .name {
  font: 500 3.6vw "Bebas Neue";
  color: #F47226;
}
.ticket .w-info .info .ksdf .date {
  font: 550 2vw "Bebas Neue";
  margin-top: 0.5vw;
}
.ticket .w-info .info .ksdf .ven {
  font: 500 0.9vw "Avenir bold";
}
.ticket .w-info .info .ksds {
  margin-left: 3vw;
  width: -moz-max-content;
  width: max-content;
  height: auto;
}
.ticket .w-info .info .ksds a {
  width: auto;
  height: auto;
  padding: 0.9vw 1.8vw;
  background: linear-gradient(45deg, #078BE0, #0B308D);
  font-family: "Biryani";
  font-size: 0.8vw;
  font-weight: 300;
  outline: none;
  border: none;
  border-radius: 0.7vw;
  color: white;
  margin-top: 0.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticket .w-info .info .ksds a:hover {
  animation: gradient 0.8s;
}
.ticket .w-info .info .ksds a:active {
  animation: scale 0.8s;
}
.ticket .wrapper {
  width: 90%;
  margin-top: 4vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2vw;
}
.ticket .wrapper .wrap-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 0.1vw solid #F47226;
  padding-bottom: 2vw;
}
.ticket .wrapper .wrap-box .evt {
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ticket .wrapper .wrap-box .top {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
.ticket .wrapper .wrap-box .top .b1 {
  width: 30%;
  height: 18vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ticket .wrapper .wrap-box .top .b0 {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ticket .wrapper .wrap-box .top .b0 svg {
  width: 10vw;
  height: 10vw;
}
.ticket .wrapper .wrap-box .top .b0 svg text {
  transform: translate(19%, 80%);
  font: 300 8vw "Bebas Neue";
  fill: none;
  stroke: black;
  stroke-width: 0.07vw;
}
.ticket .wrapper .wrap-box .btm {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1vw;
  overflow: hidden;
}
.ticket .wrapper .wrap-box .btm:nth-child(3) {
  margin-top: 0.5vw;
}
.ticket .wrapper .wrap-box .btm .b0 {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ticket .wrapper .wrap-box .btm .b0 svg {
  width: 1.8vw;
  height: auto;
  pointer-events: all;
  cursor: pointer;
}
.ticket .wrapper .wrap-box .btm .b2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: auto;
}
.ticket .wrapper .wrap-box .btm .b2 .name {
  font: 400 2.5vw "Bebas Neue";
  text-align: center;
}
.ticket .wrapper .wrap-box .btm .b2 .lb {
  font: 400 1.8vw "Bebas Neue";
  color: black;
}
.ticket .wrapper .wrap-box .btm .b2 .lb .blue {
  color: #0693EE;
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    margin-left: -20vw;
  }
  100% {
    opacity: 1;
    margin-left: 0vw;
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    margin-right: 20vw;
  }
  100% {
    opacity: 1;
    margin-right: 0vw;
  }
}
.prevEvnt {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prevEvnt .title {
  width: 90%;
  display: flex;
  justify-content: flex-end;
}
.prevEvnt .title svg {
  width: 38vw;
  height: 7vw;
  display: flex;
  justify-content: flex-end;
}
.prevEvnt .title svg text {
  transform: translate(0%, 70%);
  stroke: #F47226;
  stroke-width: 0.1vw;
  fill: none;
  font: 5vw "Avenir bold";
}
.prevEvnt .selectionTab {
  width: 90%;
  display: flex;
  justify-content: flex-start;
  margin-top: 2vw;
}
.prevEvnt .selectionTab .wrapBox {
  width: auto;
  display: flex;
  height: auto;
  justify-content: flex-start;
}
.prevEvnt .selectionTab .wrapBox .box {
  width: 13vw;
  height: 4vw;
  border: 0.1vw solid black;
  display: flex;
  justify-content: center;
  align-items: center;
}
.prevEvnt .selectionTab .wrapBox .box input, .prevEvnt .selectionTab .wrapBox .box select {
  width: 90%;
  border: none;
  outline: none;
  font: 1.4vw "Bebas Neue";
  padding: 0.5vw;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.prevEvnt .selectionTab .wrapBox .box select {
  background: url('data:image/svg+xml, <svg width="11" height="7" viewBox="0 0 13 9" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.81322 8.591L0.286496 2.73595C-0.0954986 2.33126 -0.0954986 1.67687 0.286496 1.27649L1.20491 0.303516C1.5869 -0.101172 2.2046 -0.101172 2.58253 0.303516L6.5 4.45372L10.4175 0.303516C10.7995 -0.101172 11.4172 -0.101172 11.7951 0.303516L12.7135 1.27649C13.0955 1.68118 13.0955 2.33556 12.7135 2.73595L7.18678 8.591C6.81291 8.99569 6.19522 8.99569 5.81322 8.591Z" fill="black"/></svg>') no-repeat;
  background-position: calc(100% - 0.75rem);
  color: black;
  pointer-events: all;
  cursor: pointer;
}
.prevEvnt .wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 4vw;
  margin-bottom: 6vw;
}
.prevEvnt .wrapper .mosaicWrap {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .mt {
  margin-top: 3vw;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 0.1vw solid black;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .view {
  width: 100%;
  height: 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E8E8E8;
  background-position: center center;
  background-size: cover;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .view svg {
  width: 2vw;
  height: auto;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details {
  width: 96%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 1vw;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr .dd {
  display: flex;
  flex-direction: column;
  width: 65%;
  overflow: hidden;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr .dd .name {
  font: 1.7vw "Bebas Neue";
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr .dd .ven {
  font: 0.85vw "Avenir next";
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr .de {
  width: 35%;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr .de .date {
  font: 1.2vw "Bebas Neue";
  margin-top: 0.5vw;
}
.prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .cham {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  font: 1.6vw "Bebas Neue";
  margin-top: 2vw;
  color: #F47226;
  margin-bottom: 1vw;
}

#videoContainer {
  display: flex;
  position: fixed;
  background-color: rgba(209, 209, 209, 0.8);
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  animation: slideUp 0.7s;
}
#videoContainer iframe {
  width: auto;
  height: auto;
}

@keyframes slideUp {
  0% {
    transform: translateY(-20);
  }
  100% {
    transform: translateY(0);
  }
}
.billboard-a {
  width: 100%;
  height: 46vw;
  background: linear-gradient(rgba(0, 0, 0, 0.2666666667), rgba(0, 0, 0, 0.2666666667)), url("../assets/img/sport/TEES-136.png");
  image-rendering: optimizeQuality;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.billboard-a .bill-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 65%;
  text-align: center;
}
.billboard-a .bill-text .title {
  font: bold 3.5vw "Avenir bold";
  color: white;
  line-height: 3.3vw;
}
.billboard-a .bill-text .details {
  margin-top: 2vw;
  font: 500 1.5vw "Avenir bold";
  color: white;
  line-height: 2.3vw;
}

.kjdf-a {
  padding-top: 4vw;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kjdf-a .title {
  font: 700 2vw "Avenir bold";
  color: black;
}
.kjdf-a .zig {
  margin-top: 1.2vw;
}
.kjdf-a .zig svg {
  width: 18vw;
  height: auto;
}
.kjdf-a .wrapper {
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5vw;
}
.kjdf-a .wrapper .wrap-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  margin-top: 3vw;
  align-items: center;
  justify-content: space-between;
}
.kjdf-a .wrapper .wrap-box:nth-child(1) {
  margin-top: 3vw;
}
.kjdf-a .wrapper .wrap-box:nth-child(2) {
  flex-direction: row-reverse;
}
.kjdf-a .wrapper .wrap-box .text {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kjdf-a .wrapper .wrap-box .text .head {
  font: 300 1.75vw "Avenir bold";
  margin-bottom: 2vw;
  border-bottom: 0.5vw solid #F47226;
  padding-bottom: 1vw;
}
.kjdf-a .wrapper .wrap-box .text .info {
  font: 400 1.25vw "Avenir next";
  line-height: 2vw;
}

.oask {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4vw;
}
.oask .title {
  width: 84%;
  font: 600 2vw "Avenir bold";
  color: black;
  border-bottom: 0.2vw solid black;
  padding: 1vw 0;
}
.oask .wrapper {
  width: 80%;
  margin-top: 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.oask .wrapper .wrap-box {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.oask .wrapper .wrap-box .img {
  width: 100%;
}
.oask .wrapper .wrap-box .img img {
  width: 100%;
  height: auto;
}
.oask .wrapper .wrap-box .imgw {
  width: 100%;
  display: flex;
  justify-content: center;
}
.oask .wrapper .wrap-box .imgw img {
  width: 7vw;
  height: auto;
}
.oask .wrapper .wrap-box .info {
  margin-top: 2vw;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.oask .wrapper .wrap-box .info .name {
  font: 600 1.2vw "Avenir bold";
}
.oask .wrapper .wrap-box .info .pos {
  font: 400 0.8vw "Avenir next";
  color: black;
  margin-top: 0.5vw;
}
.oask .wrapper .wrap-box .info .head {
  font: 600 1.3vw "Avenir bold";
  text-align: center;
  margin-top: 1vw;
}
.oask .wrapper .wrap-box .info .desp {
  font: 400 1vw "Avenir next";
  text-align: center;
  margin-top: 0.4vw;
  line-height: 1.4vw;
}

.billboard-b {
  width: 83%;
  height: 40vw;
  background: linear-gradient(rgba(0, 0, 0, 0.2666666667), rgba(0, 0, 0, 0.8)), url("../assets/img/sport/blog_post.jpg") center center/cover;
  image-rendering: optimizeQuality;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.billboard-b .bill-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 90%;
  text-align: center;
  margin-bottom: 3vw;
}
.billboard-b .bill-text .txt {
  font: bold 1.5vw "Avenir bold";
  color: white;
}
.billboard-b .bill-text .title {
  font: bold 3.5vw "Avenir bold";
  color: white;
  line-height: 3.3vw;
  text-align: left;
  margin-top: 1vw;
}
.billboard-b .bill-text .date {
  margin-top: 1vw;
  font: 500 1.5vw "Archivo";
  color: white;
}

.dask {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4vw;
}
.dask .title {
  width: 84%;
  font: 600 2vw "Avenir bold";
  color: black;
  border-bottom: 0.2vw solid black;
  padding: 1vw 0;
}
.dask .wrapper {
  width: 80%;
  margin-top: 4vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.dask .wrapper .wrap-box {
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.dask .wrapper .wrap-box .img {
  width: 100%;
  height: 20vw;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.2vw;
}
.dask .wrapper .wrap-box .info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.dask .wrapper .wrap-box .info .date {
  font: 400 1vw "Avenir next";
  margin-top: 0.5vw;
}
.dask .wrapper .wrap-box .info .head {
  font: 600 1.8vw "Avenir bold";
  margin-top: 2vw;
}
.dask .wrapper .wrap-box .info .desp {
  font: 400 1.03vw "Avenir next";
  color: black;
  margin-top: 0.5vw;
  line-height: 1.6vw;
  text-align: justify;
}
.dask .wrapper .box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 48%;
  height: auto;
}
.dask .wrapper .box .wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1.3vw;
}
.dask .wrapper .box .img {
  width: 50%;
  height: 16vw;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.2vw;
}
.dask .wrapper .box .info {
  display: flex;
  flex-direction: column;
  width: 40%;
  margin-left: 2vw;
  justify-content: space-between;
}
.dask .wrapper .box .info .date {
  font: 400 0.9vw "Avenir next";
  margin-top: 0.2vw;
}
.dask .wrapper .box .info .head {
  font: 600 1.3vw "Avenir bold";
  margin-top: 1vw;
}
.dask .wrapper .box .info .desp {
  font: 400 1.15vw "Avenir next";
  color: black;
  margin-top: 1vw;
}
.dask .wrapper .wrapperBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.dask .wrapper .wrapperBox .loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.dask .wrapper .wrapperBox .loader .wrapBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
.dask .wrapper .wrapperBox .loader .wrapBox .wrap-box {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3vw;
}
.dask .wrapper .wrapperBox .loader .wrapBox .wrap-box .img {
  width: 100%;
  height: 15vw;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.2vw;
}
.dask .wrapper .wrapperBox .loader .wrapBox .wrap-box .info {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.dask .wrapper .wrapperBox .loader .wrapBox .wrap-box .info .date {
  font: 400 1vw "Avenir next";
  margin-top: 2vw;
}
.dask .wrapper .wrapperBox .loader .wrapBox .wrap-box .info .head {
  font: 600 1.4vw "Avenir bold";
  margin-top: 1vw;
}
.dask .wrapper .wrapperBox .loader .wrapBox .wrap-box .info .desp {
  font: 400 1.03vw "Avenir next";
  color: black;
  margin-top: 0.5vw;
  line-height: 1.6vw;
  text-align: justify;
}
.dask .wrapper .wrapperBox .g-see {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5vw;
}
.dask .wrapper .wrapperBox .g-see .see {
  width: auto;
  height: auto;
  padding: 1vw 2.1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #F47226, #512601);
  text-decoration: none;
  color: white;
  font: 400 1.1vw "Bebas Neue";
  border-radius: 0.5vw;
  outline: none;
  border: none;
  pointer-events: all;
  cursor: pointer;
}
.dask .wrapper .wrapperBox .g-see .see:active {
  animation: click 1s;
}

@keyframes o1 {
  0% {
    min-width: 100%;
  }
  100% {
    min-width: 0%;
  }
}
@keyframes o2 {
  0% {
    min-width: 0%;
  }
  100% {
    min-width: 100%;
  }
}
@keyframes click {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.upcoming {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2vw;
}
.upcoming .title {
  width: 84%;
  font: 600 2vw "Avenir bold";
  color: black;
  border-bottom: 0.2vw solid black;
  padding: 1vw 0;
}
.upcoming .wrapper {
  width: 93%;
  margin-top: 2vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.upcoming .wrapper article {
  width: 32%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 4vw;
}
.upcoming .wrapper article .event {
  width: 100%;
  height: 28vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
}
.upcoming .wrapper article .event .d {
  width: 90%;
  margin: 1vw 0;
}
.upcoming .wrapper article .event .d .n {
  font: 700 2vw "Bebas Neue";
  color: white;
}
.upcoming .wrapper article .event .d .m {
  font: 400 1.5vw "Avenir bold";
  color: white;
}
.upcoming .wrapper article .event .details {
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.upcoming .wrapper article .event .details .name {
  font: 400 3.3vw "Bebas Neue";
  color: white;
}
.upcoming .wrapper article .event .details .name:nth-child(3) {
  margin-top: -2vw;
}
.upcoming .wrapper article .event .details .vs {
  margin-top: -2.2vw;
  width: 8vw;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 300 6vw "Bebas Neue";
}
.upcoming .wrapper article .event .details .vs text {
  transform: translate(25%, 80%);
  font: 300 6vw "Bebas Neue";
  fill: none;
  stroke: white;
  stroke-width: 0.1vw;
}
.upcoming .wrapper article .event .details .venue {
  font: 600 0.9vw "Avenir next";
  color: white;
  margin-top: -0.8vw;
}
.upcoming .wrapper article .info {
  display: flex;
  width: 100%;
  margin-top: 2vw;
  justify-content: space-between;
}
.upcoming .wrapper article .info .group {
  width: 40%;
  display: flex;
  flex-direction: column;
}
.upcoming .wrapper article .info .group:nth-child(2) {
  width: 10%;
  align-items: center;
}
.upcoming .wrapper article .info .group:nth-child(3) {
  align-items: flex-end;
}
.upcoming .wrapper article .info .group .name {
  font: 600 1.5vw "Avenir next";
  color: black;
}
.upcoming .wrapper article .info .group .lb {
  font: 400 1.5vw "Bebas Neue";
  color: black;
}
.upcoming .wrapper article .info .group .lb .blue {
  color: #0693EE;
}
.upcoming .wrapper article .g-see {
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin-top: 0.5vw;
}
.upcoming .wrapper article .g-see .see {
  width: auto;
  height: auto;
  padding: 1vw 2.1vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #F47226, #512601);
  text-decoration: none;
  color: white;
  font: 400 1vw "Bebas Neue";
  border-radius: 0.5vw;
}
.upcoming .wrapper article .g-see .see:active {
  animation: click 1s;
}
.upcoming .wrapper article .g-see .icon {
  width: auto;
  height: auto;
  padding: 0.7vw;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  cursor: pointer;
  background: black;
  text-decoration: none;
  color: white;
  border-radius: 50%;
  margin: 0 0.7vw;
}
.upcoming .wrapper article .g-see .icon svg {
  width: 0.6vw;
  height: auto;
}
.upcoming .wrapper article .g-see .icon:active {
  box-shadow: 1px 1px 10px #333;
  animation: click 1s;
}
.upcoming .wrapper article .tr {
  margin-top: 0.7vw;
  font: 500 0.7vw "Avenir next";
  color: black;
}
.upcoming .ind {
  width: auto;
  display: flex;
  align-items: center;
  margin-top: 2vw;
  pointer-events: all;
  cursor: pointer;
}
.upcoming .ind .box {
  -webkit-clip-path: circle();
          clip-path: circle();
  width: 0.7vw;
  height: 0.7vw;
  background-color: black;
  margin: 0 0.5vw;
}

@media screen and (max-width: 840px) {
  .hide {
    display: flex;
  }
  header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: white;
    height: 20vw;
  }
  header .wrapper {
    display: flex;
    flex-direction: row;
    width: 90%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
  }
  header .wrapper .logo {
    width: auto;
    display: flex;
    align-items: center;
  }
  header .wrapper .logo label {
    margin-right: 4vw;
  }
  header .wrapper .logo label svg {
    width: 8vw;
    height: auto;
  }
  header .wrapper .logo .svg {
    width: 15vw;
    height: auto;
  }
  header .wrapper .logo .svg svg {
    width: 100%;
    height: auto;
  }
  header .wrapper nav {
    width: 85%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  header .wrapper nav .nav-1 {
    position: fixed;
    margin-top: 0vw;
    background-color: #F47226;
    top: 0;
    left: 0;
    z-index: 8888;
    padding: 50px 0;
    min-width: 0%;
    width: 0 !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    overflow-y: auto;
  }
  header .wrapper nav .nav-1 .cancel {
    display: flex;
    justify-content: flex-end;
    margin: 5vw 0 7vw 0;
    width: 85%;
  }
  header .wrapper nav .nav-1 .cancel svg {
    width: 8vw;
    height: auto;
  }
  header .wrapper nav .nav-1 .nav-link {
    font-family: "Avenir next";
    font-size: 9vw;
    font-weight: 600;
    padding: 2vw 0.6vw;
    margin: 5vw auto;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    height: -moz-max-content;
    height: max-content;
  }
  header .wrapper nav .nav-1 .nav-link:hover {
    color: black;
  }
  header .wrapper nav .nav-1 .nav-link:nth-child(7) {
    margin-bottom: 30vw;
  }
  header .wrapper nav .nav-1 .nav-link svg {
    margin-left: 1vw;
    width: 8vw;
    height: auto;
  }
  header .wrapper nav .nav-1 .nav-link span {
    display: flex;
    align-items: center;
    height: auto;
  }
  header .wrapper nav .nav-1 .nav-link span:hover {
    color: black;
  }
  header .wrapper nav .nav-1 .nav-link span:hover + .sub-nav, header .wrapper nav .nav-1 .nav-link .sub-nav:hover {
    display: flex;
  }
  header .wrapper nav .nav-1 .nav-link span:focus + .sub-nav, header .wrapper nav .nav-1 .nav-link .sub-nav:focus, header .wrapper nav .nav-1 .nav-link .sub-nav:hover {
    display: flex;
    color: black;
  }
  header .wrapper nav .nav-1 .nav-link .sub-nav {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1vw 0;
    position: relative;
    width: 90%;
    background-color: white;
    box-shadow: none;
    margin: 6vw 0 0 0;
    border-radius: 0.3vw;
  }
  header .wrapper nav .nav-1 .nav-link .sub-nav .wrap {
    width: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span {
    margin: 3.5vw 0;
    width: 100%;
    height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    pointer-events: all;
    cursor: pointer;
    text-align: center;
    font-family: "Avenir next";
    font-size: 7vw;
    font-weight: 600;
    color: black;
  }
  header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span label:hover {
    color: #F47226;
  }
  header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span label:hover svg {
    fill: #F47226;
  }
  header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span label:hover + .sub-sub-nav, header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span .sub-sub-nav:hover {
    display: flex;
  }
  header .wrapper nav .nav-1 .nav-link .sub-nav .wrap span .sub-sub-nav {
    display: none;
    justify-content: center;
    padding: 1vw 0;
    position: relative;
    width: 90%;
    background-color: white;
    box-shadow: none;
    margin: 0;
    border-radius: 0.3vw;
  }
  header .wrapper nav .nav-search {
    margin-left: 1vw;
  }
  header .wrapper nav .nav-search svg {
    width: 4vw;
    height: auto;
  }
  header .wrapper nav button {
    width: auto;
    height: auto;
    padding: 2.3vw 6.9vw;
    background: linear-gradient(45deg, #078BE0, #0B308D);
    font-family: "Biryani";
    font-size: 3vw;
    font-weight: 300;
    margin-left: 3vw;
    outline: none;
    border: none;
    border-radius: 5px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .wrapper nav button:hover {
    animation: gradient 0.8s;
  }
  header .wrapper nav button:active {
    animation: scale 0.8s;
  }
  header .wrapper .gamerush-searchBox {
    display: none;
    flex-direction: row;
    align-items: center;
    position: absolute;
    right: auto;
    left: auto;
    margin-top: 140px;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    border-radius: 7px;
    width: 80%;
    padding: 0 0 0 10px;
    background: white;
    border: 1px solid #e9e9e9;
  }
  header .wrapper .gamerush-searchBox .gamerush-searchBox-categories {
    width: 150px;
    height: 45px;
    border: none;
    font-family: "Avenir next";
    font-size: 2vw;
  }
  header .wrapper .gamerush-searchBox .gamerush-searchBox-search {
    width: 100%;
    height: 30px;
    border: none;
    border-left: 1px solid #d1d1d1;
    padding-left: 10px;
  }
  header .wrapper .gamerush-searchBox .gamerush-searchBox-catergories:focus, header .wrapper .gamerush-searchBox .gamerush-searchBox-search {
    outline: none;
  }
  header .wrapper .gamerush-searchBox .gamerush-searchBox-search-button {
    width: 50px;
    height: 45px;
    color: white;
    border: none;
    background-color: #666666;
  }
  header .wrapper .gamerush-searchBox .gamerush-searchBox-search-button svg {
    width: 3vw;
    height: auto;
  }
  header .wrapper .gamerush-searchBox .gamerush-searchBox-search-close {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    padding: 5px;
    background: #d1d1d1;
    position: absolute;
    margin-top: 75px;
    right: 50%;
    left: 50%;
    font-size: 9pt;
  }
  .billboard {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
    margin-top: 0vw;
  }
  .billboard .bill-slide {
    width: 100%;
    height: 600px;
    position: absolute;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .billboard .bill-slide .slideBox {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: center;
  }
  .billboard .bill-slide .slideBox .slide {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .billboard .bill-slide .watermark-l {
    width: 16vw;
    height: 40vw;
    left: 0;
    margin-top: 88%;
    position: absolute;
    background-image: url("../assets/img/billboard/Unity.png");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    animation: bright 4s infinite 0s;
  }
  .billboard .bill-slide .watermark-r {
    width: 18vw;
    height: 60vw;
    right: 0;
    margin-top: 65%;
    position: absolute;
    background-image: url("../assets/img/billboard/Sport.png");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    animation: bright 4s infinite 0.2s;
  }
  .billboard .bill-slide .watermark-c {
    width: 50vw;
    height: 5vw;
    bottom: 0;
    position: absolute;
    background-image: url("../assets/img/billboard/Through.png");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    animation: bright 4s infinite 0.4s;
  }
  .billboard .bill-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
    animation: bg-transparent 0.8s;
    background-color: rgba(0, 0, 0, 0.2666666667);
  }
  @keyframes bg-transparent {
    0% {
      background-color: #000000;
    }
    100% {
      background-color: rgba(0, 0, 0, 0.2666666667);
    }
  }
  .billboard .bill-text .wrapper {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0vw;
    margin-bottom: 0;
  }
  .billboard .bill-text .wrapper .wrap-0 {
    display: flex;
    flex-direction: column;
    margin-bottom: 30vw;
    align-items: center;
  }
  .billboard .bill-text .wrapper .wrap-0 .title-0 {
    font-family: "Bebas Neue";
    font-size: 8vw;
    font-weight: 400;
    color: white;
  }
  .billboard .bill-text .wrapper .wrap-0 .title-1 {
    font-family: "Avenir next";
    font-size: 4.2vw;
    font-weight: 400;
    color: white;
  }
  .billboard .bill-text .wrapper .wrap-0 .title-1 .bold {
    font-weight: 600;
  }
  .billboard .bill-text .wrapper .wrap-1 {
    display: flex;
    margin-bottom: 5vw;
    flex-direction: column;
    align-items: center;
  }
  .billboard .bill-text .wrapper .wrap-1 .container {
    width: 95vw;
    height: 12vw;
    background-color: white;
    border-radius: 2vw;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .billboard .bill-text .wrapper .wrap-1 .container .wrap {
    width: 80%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .billboard .bill-text .wrapper .wrap-1 .container .wrap img {
    width: 6vw;
    height: auto;
  }
  .billboard .bill-text .wrapper .wrap-1 .slide-status {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1vw;
  }
  .billboard .bill-text .wrapper .wrap-1 .slide-status .clip {
    width: 0.6vw;
    height: 0.6vw;
    -webkit-clip-path: circle();
            clip-path: circle();
    background-color: white;
    margin: 2px;
  }
  .events {
    width: 100%;
    height: auto;
    padding: 3vw 0;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center center;
    align-items: center;
  }
  .events .wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 90%;
  }
  .events .wrapper .box-1 {
    width: 100%;
    height: 40vw;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 0.7vw;
  }
  .events .wrapper .box-1:nth-child(1) {
    height: 20vw;
  }
  .events .wrapper .box-1 .event-l-list {
    width: 100%;
    max-height: auto;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
  }
  .events .wrapper .box-1 .event-l-list .wrapper {
    min-width: 50%;
    display: flex;
    justify-content: left;
    align-items: center;
    margin: 0.55vw 0;
  }
  .events .wrapper .box-1 .event-l-list .wrapper .wrap {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    width: 30vw;
    height: 10vw;
    margin-right: 5vw;
    background-color: white;
    padding: 0 2vw;
    border-radius: 2vw;
    scroll-snap-align: center;
  }
  .events .wrapper .box-1 .event-l-list .wrapper .wrap span {
    margin-left: 2vw;
    font-family: "Avenir next";
    font-size: 2vw;
    font-weight: 600;
    color: black;
  }
  .events .wrapper .box-1 .event-l-list .wrapper .wrap svg {
    width: 3vw;
    height: auto;
  }
  .events .wrapper .box-1 .head {
    width: 100%;
    height: 20vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 0.1vw solid black;
  }
  .events .wrapper .box-1 .head .wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
  }
  .events .wrapper .box-1 .head .wrap label {
    display: flex;
    align-items: center;
    font: 400 2vw "Avenir bold";
  }
  .events .wrapper .box-1 .head .wrap label svg {
    width: 2vw;
    margin-right: 0.4vw;
  }
  .events .wrapper .box-1 .head .wrap .search {
    width: 29vw;
    height: 5vw;
    background-color: white;
    border-radius: 0.2vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .events .wrapper .box-1 .head .wrap .search .wrap-0 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .events .wrapper .box-1 .head .wrap .search .wrap-0 input {
    width: 20vw;
    font: 400 2vw "Avenir next";
    border: none;
    outline: none;
  }
  .events .wrapper .box-1 .head .wrap .search .wrap-0 svg {
    margin-right: 2vw;
    width: 2vw;
    height: auto;
  }
  .events .wrapper .box-1 .side {
    width: 100%;
    display: flex;
    justify-content: center;
    height: 130vw;
    overflow-y: hidden;
    margin-top: 1vw;
  }
  .events .wrapper .box-1 .side .wrapper {
    min-width: 90%;
    height: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .events .wrapper .box-1 .side .wrapper .wrap {
    min-width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 20vw;
    border-radius: 2.5vw;
    background-color: white;
    margin: 0.6vw 0;
    padding: 0.5vw 0.5vw;
    margin-right: 3vw;
    scroll-snap-align: center;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .logo {
    width: 15vw;
    height: 94%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 0.08vw solid black;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .logo img {
    width: 10vw;
    height: auto;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 77%;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details .date {
    font: 400 1.5vw "Avenir next";
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details .league {
    margin-top: 1.4vw;
    font: 400 2vw "Avenir next";
    display: flex;
    align-items: center;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details .league svg {
    width: 2vw;
    height: auto;
    margin-right: 0.7vw;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details .team {
    margin-top: 2vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details .team .text {
    font: 400 2.5vw "Avenir bold";
    width: 40vw;
    text-overflow: ellipsis;
    overflow: hidden;
    text-wrap: nowrap;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details .play {
    display: flex;
    justify-content: right;
    width: 93%;
    margin-top: -5vw;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details .play a {
    width: auto;
    height: auto;
    padding: 1.7vw 4vw;
    background: linear-gradient(45deg, #078BE0, #0B308D);
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    outline: none;
    border: none;
    border-radius: 0.5vw;
    color: white;
    display: flex;
    align-items: center;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details .play a:hover {
    animation: gradient 0.8s;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details .play a:active {
    animation: scale 0.8s;
  }
  .events .wrapper .box-1 .side .wrapper .wrap .details .play a svg {
    margin-right: 0.4vw;
    width: 1.3vw;
    height: auto;
  }
  .events .wrapper .bg {
    background-color: #EBEBEB;
    justify-content: left;
    border-radius: 2vw;
  }
  .events .wrapper .box-0 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .events .wrapper .box-0 .fixtures-0 {
    width: 100%;
    height: 35vw;
    background-color: white;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3vw;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 {
    width: 70%;
    height: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0:nth-child(2) {
    width: 30%;
    justify-content: flex-start;
    align-items: flex-end;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .live {
    color: #008000;
    font: bold 3.2vw "Avenir bold";
    width: 100%;
    text-align: center;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .heading {
    font-family: "Bebas Neue";
    font-size: 3.5vw;
    font-weight: 300;
    color: black;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .sub {
    display: flex;
    margin-bottom: 2vw;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .sub svg {
    width: 2vw;
    height: auto;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .sub .text {
    margin-left: 1.2vw;
    font-family: "Avenir next";
    font-size: 2.5vw;
    font-weight: 600;
    color: black;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .fix {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-family: "Avenir next";
    font-size: 4vw;
    font-weight: 600;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .fix .fix-home, .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .fix .fix-away {
    max-width: -moz-max-content;
    max-width: max-content;
    width: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: wrap;
    text-align: center;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .fix .fix-vs {
    font-style: italic;
    font-weight: 400;
    margin: 0 1vw;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .sub-0 {
    display: flex;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .sub-0 .text {
    margin-top: 0.2vw;
    font-family: "Avenir next";
    font-size: 2vw;
    font-weight: 600;
    color: black;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book {
    display: flex;
    align-items: center;
    justify-content: left;
    margin-top: 3vw;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book .button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 1.5vw 4vw;
    margin-left: 0vw;
    background: linear-gradient(45deg, #078BE0, #0B308D);
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    outline: none;
    border: none;
    border-radius: 5px;
    color: white;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book .button:hover {
    animation: gradient 0.8s;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book .button:active {
    animation: scale 0.8s;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book a {
    margin-left: 1vw;
    color: black;
    font: 400 1.6vw "Avenir next";
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .wrap-00 .book a svg {
    width: 1vw;
    height: auto;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing {
    margin-top: 1vw;
    width: 28vw;
    height: 8vw;
    background-color: rgba(217, 217, 217, 0.3019607843);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    align-items: center;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 label {
    font: 400 2vw "Bebas Neue";
    color: black;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 .wrap-000 {
    width: 15vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 .wrap-000 .group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 .wrap-000 .group .num {
    font: 400 3.2vw "Bebas Neue";
    color: transparent;
    background: linear-gradient(to right, black, #FF9A00);
    -webkit-background-clip: text;
            background-clip: text;
  }
  .events .wrapper .box-0 .fixtures-0 .wrapper .wrap-0 .timing .wrap-00 .wrap-000 .group .text {
    font: 400 1vw "Roboto";
    color: #8E8E8E;
    margin-top: -0.3vw;
  }
  .events .banner {
    width: 90%;
    height: 13vw;
    background-color: black;
    background-image: url("../assets/img/Rectangle 30.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 3vw;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .events .banner .top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 65%;
    font-size: 2.3vw;
    font-family: "Avenir next";
    font-weight: 700;
    margin-top: 2vw;
  }
  .events .banner .top .left {
    color: white;
  }
  .events .banner .top .right {
    color: transparent;
    background: linear-gradient(to right, #4702A0, white);
    -webkit-background-clip: text;
            background-clip: text;
  }
  .events .banner .bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 55%;
    font: 500 0.8vw "Avenir next";
    margin-top: 5vw;
  }
  .events .banner .bottom span {
    color: white;
  }
  .about {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #FDFDFD;
    background-image: url("../assets/img/transparent/1.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    justify-content: center;
    align-items: center;
    padding: 3vw 0 12vw 0;
  }
  .about .heading {
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: center;
  }
  .about .heading .title {
    width: 12vw;
    font: 300 7.7vw "Bebas Neue";
    line-height: 6.9vw;
  }
  .about .heading .details {
    width: 90%;
    font: 300 2.8vw "Avenir next";
    text-align: justify;
  }
  .about .line {
    width: 75%;
    border-top: 1px solid black;
    margin: 4vw 0;
  }
  .about section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .about section .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 85%;
  }
  .about section .wrapper article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 80%;
    height: -moz-max-content;
    height: max-content;
    margin-bottom: 10vw;
  }
  .about section .wrapper article .title {
    width: 96%;
    font: 400 5.8vw "Bebas Neue";
  }
  .about section .wrapper article .title svg {
    width: 3.8vw;
    height: auto;
  }
  .about section .wrapper article .details {
    width: 96%;
    font: 500 3.7vw "Avenir next";
    text-align: justify;
  }
  .about section .wrapper article .image {
    margin-top: 1vw;
    width: 65vw;
    height: 80vw;
    background-color: #FAFAFA;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .status {
    margin-top: -4vw;
    z-index: 1;
    width: 80vw;
    height: 10vw;
    background-color: white;
    box-shadow: 1px 1px 10px #aaa;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .status .wrapper {
    width: 78%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .status .wrapper .box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .status .wrapper .box .text {
    font: 400 2.3vw "Bebas Neue";
    color: #F47226;
  }
  .status .wrapper .box .num {
    font: 400 4vw "Bebas Neue";
    color: black;
  }
  .post {
    margin-top: -6vw;
    width: 100%;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 96%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 96%, 0% 100%);
    background: linear-gradient(to bottom, #F47226, rgba(249, 184, 146, 0.6));
    padding: 10vw 0 20vw 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .post .wrapper-0 {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .post .wrapper-0 .embed {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2vw;
  }
  .post .wrapper-0 .embed .title {
    font: 400 4vw "Bebas Neue";
  }
  .post .wrapper-0 .embed .caption {
    font: 400 4vw "Bebas Neue";
    margin-bottom: 1vw;
  }
  .post .wrapper-0 .embed iframe {
    width: 80vw;
    height: 57vw;
    background-color: #FAFAFA;
    border: none;
    outline: none;
    border-radius: 10px;
  }
  .post .wrapper-0 section {
    width: 95%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8vw;
  }
  .post .wrapper-0 section article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5vw;
  }
  .post .wrapper-0 section article .image {
    width: 60vw;
    height: 36vw;
    border-radius: 10px;
    border: none;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: left;
    align-items: flex-end;
  }
  .post .wrapper-0 section article .image .wrapper {
    margin-bottom: 0.8vw;
    width: 8vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .post .wrapper-0 section article .image .wrapper .slide-btn {
    width: 0.5vw;
    height: 0.5vw;
    -webkit-clip-path: circle();
            clip-path: circle();
    background-color: white;
  }
  .post .wrapper-0 section article .info {
    margin-left: 0vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3vw;
    width: auto;
  }
  .post .wrapper-0 section article .info .title {
    font: bold 3.3vw "Avenir bold";
  }
  .post .wrapper-0 section article .info .details {
    width: 60%;
    text-align: center;
    font: 500 2.3vw "Avenir next";
    text-wrap: wrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .tribe-join {
    width: 100%;
    height: -moz-max-content;
    height: max-content;
    -webkit-clip-path: polygon(0% 5%, 100% 0%, 100% 109%, 0% 109%);
            clip-path: polygon(0% 5%, 100% 0%, 100% 109%, 0% 109%);
    padding: 30vw 0 5vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("../assets/img/transparent/2.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .tribe-join .tribe {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90%;
    height: auto;
  }
  .tribe-join .tribe .head {
    margin-top: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tribe-join .tribe .head .title {
    display: flex;
    align-items: center;
    font: 400 9vw "Bebas Neue";
  }
  .tribe-join .tribe .head .title img {
    width: 10vw;
    height: auto;
  }
  .tribe-join .tribe .head .details {
    margin-top: 2vw;
    font: 600 4vw "Avenir next";
    width: 80%;
    text-align: center;
  }
  .tribe-join .tribe .list {
    width: 100%;
    margin-top: 13vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .tribe-join .tribe .list .wrap {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 8vw;
  }
  .tribe-join .tribe .list .wrap .image {
    width: 65vw;
    height: 80vw;
    background-color: #FAFAFA;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 1vw;
  }
  .tribe-join .tribe .list .wrap label {
    margin-top: 1vw;
    font: 400 5.7vw "Bebas Neue";
  }
  .tribe-join .join {
    margin-top: 7vw;
    width: 80%;
    height: 120vw;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .tribe-join .join .title {
    font: 400 7vw "Bebas Neue";
  }
  .tribe-join .join .details {
    font: 500 3vw "Avenir next";
    width: 60vw;
    text-align: center;
  }
  .tribe-join .join .wrapper {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 7vw;
  }
  .tribe-join .join .wrapper input {
    width: 75%;
    height: 6vw;
    padding: 3vw;
    background-color: #E8E8E8;
    font: 400 3vw "Avenir next";
    outline: none;
    border: none;
    margin-bottom: 4vw;
    border-radius: 3vw;
  }
  .tribe-join .join .wrapper input:focus {
    outline: 0.8vw solid rgba(7, 139, 224, 0.8);
  }
  .tribe-join .join .wrapper button {
    width: 28vw;
    height: 10vw;
    background: linear-gradient(45deg, #078BE0, #0B308D);
    font-family: "Avenir next";
    font-size: 4vw;
    font-weight: 300;
    margin-top: 2vw;
    margin-bottom: 2vw;
    outline: none;
    border: none;
    border-radius: 4vw;
    color: white;
  }
  .tribe-join .join .wrapper button:hover {
    animation: gradient 0.8s;
  }
  .tribe-join .join .wrapper button:active {
    animation: scale 0.8s;
  }
  .partner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
  }
  .partner .wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4vw 0;
    justify-content: center;
    background-color: white;
  }
  .partner .wrapper:nth-child(2) {
    background-color: #E8E8E8;
  }
  .partner .wrapper:nth-child(2) .wrap .list img {
    width: 30vw;
    height: auto;
  }
  .partner .wrapper .wrap {
    display: flex;
    align-items: center;
    width: 80%;
  }
  .partner .wrapper .wrap label {
    font: 400 2vw "Bebas Neue";
  }
  .partner .wrapper .wrap .list {
    width: 65%;
    margin-left: 5vw;
    display: flex;
    align-items: center;
    justify-content: left;
    overflow: auto;
  }
  .partner .wrapper .wrap .list img {
    width: 15vw;
    height: auto;
  }
  .partner .wrapper .wrap .list img:nth-child(1) {
    width: 15vw;
    height: auto;
  }
  .partner .wrapper .wrap .list img:nth-child(2) {
    width: 15vw;
    height: auto;
  }
  .partner .wrapper .wrap .list img:nth-child(3) {
    width: auto;
    height: 15vw;
  }
  .partner .wrapper .wrap .list img:nth-child(4) {
    width: 5vw;
    height: auto;
  }
  .pie {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6vw 0;
    border-top: 0.1vw solid black;
    background-image: url("../assets/img/transparent/3.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }
  .pie .wrap {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .pie .wrap label {
    font: 400 2vw "Bebas Neue";
  }
  .pie .wrap-c {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .pie .wrap-c img {
    width: 50vw;
    height: auto;
  }
  .blogspot {
    width: 100%;
    background-color: #F47226;
    background: linear-gradient(to right, #F47226, rgba(249, 184, 146, 0.6));
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6vw 0;
  }
  .blogspot label {
    width: 80%;
    text-align: left;
    font: 400 2.8vw "Bebas Neue";
  }
  .blogspot .wrapper {
    width: 85%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: left;
    margin-top: 6vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .blogspot .wrapper article {
    display: flex;
    min-width: 36vw;
    height: 50vw;
    justify-content: center;
    align-items: center;
    margin: 0 4vw;
    scroll-snap-align: center;
    background-color: black;
    border-radius: 0.5vw;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .blogspot .wrapper article .wrap {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    border-radius: 0.5vw;
    background: linear-gradient(180deg, transparent 65%, black 95%);
  }
  .blogspot .wrapper article .wrap .box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0.9vw;
    width: 100%;
    margin-bottom: 3vw;
  }
  .blogspot .wrapper article .wrap .box .title {
    font: 400 2vw "Avenir bold";
    color: white;
  }
  .blogspot .wrapper article .wrap .box .sub {
    font: 400 2vw "Avenir next";
    color: white;
    width: 90%;
    max-height: 2vw;
    overflow: hidden;
    text-overflow: ellipsis;
    text-wrap: wrap;
  }
  .gallery {
    width: 100%;
    padding: 2vw 0;
    display: flex;
    justify-content: center;
  }
  .gallery .wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 85%;
  }
  .gallery .wrapper label {
    font: 400 3vw "Bebas Neue";
    width: 95%;
    text-align: left;
  }
  .gallery .wrapper .mosaic {
    margin-top: 1.4vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .gallery .wrapper .mosaic .wrap {
    width: 22vw;
    height: 61vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
  }
  .gallery .wrapper .mosaic .wrap .box {
    border-radius: 0.8vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 20vw;
  }
  .gallery .wrapper .mosaic .wrap .box-a {
    height: 17vw;
  }
  .gallery .wrapper .mosaic .wrap .box-b {
    height: 24vw;
  }
  .gallery .wrapper .mosaic .wrap .box-c {
    height: 14vw;
  }
  .gallery .wrapper .mosaic .wrap .box-d {
    height: 20vw;
  }
  .gallery .wrapper .mosaic .wrap .box-e {
    height: 30vw;
  }
  .gallery .wrapper .mosaic .wrap .box-f {
    height: 4vw;
  }
  footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FDFDFD;
  }
  footer .wrapper:nth-child(2) {
    border-top: 0.2px solid black;
  }
  footer .wrapper .wrap {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 6vw 0;
  }
  footer .wrapper .wrap .svg {
    width: 22vw;
    height: auto;
  }
  footer .wrapper .wrap nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 7vw;
  }
  footer .wrapper .wrap nav .group {
    display: flex;
    flex-direction: column;
    margin-left: 0vw;
  }
  footer .wrapper .wrap nav .group label {
    font: 600 3vw "Avenir bold";
    margin-bottom: 2.3vw;
    margin-top: 2.3vw;
  }
  footer .wrapper .wrap nav .group a {
    font: 400 3vw "Avenir next";
    color: black;
    margin-bottom: 2vw;
  }
  footer .wrapper .wrap nav .group span {
    font: 400 3vw "Avenir next";
    width: 70%;
    margin-bottom: 2vw;
  }
  footer .wrapper .wrap-0 {
    margin: 3vw 0;
    display: flex;
    align-items: center;
    font: 400 3vw "Avenir next";
  }
  footer .wrapper .wrap-0 svg {
    width: 2.5vw;
    height: auto;
    margin-right: 0.8vw;
  }
  .login-section {
    width: 100%;
    padding: 17vw 0;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
  }
  .login-section .wrapper:nth-child(1) {
    background-image: url("../assets/img/login/1.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .login-section .wrapper {
    width: 80%;
    height: 75vw;
    background-color: #EAEAEA;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .login-section .wrapper .wrap {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .login-section .wrapper .wrap .wrap-0 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .login-section .wrapper .wrap .wrap-0 a {
    font: 600 2vw "Avenir bold";
  }
  .login-section .wrapper .wrap .wrap-0 a svg {
    width: 2vw;
    height: auto;
  }
  .login-section .wrapper .wrap .wrap-0 .free {
    width: 20.5vw;
    height: 1vw;
    background-color: white;
    border-radius: 0.4vw;
    padding: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 400 2vw "Avenir next";
  }
  .login-section .wrapper .wrap .title {
    margin-top: 4vw;
    width: 100%;
    text-align: left;
    font: 600 3vw "Avenir bold";
  }
  .login-section .wrapper .wrap .sub {
    width: 100%;
    text-align: left;
    font: 400 2vw "Avenir next";
    margin-top: 2vw;
  }
  .login-section .wrapper .wrap .box {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2vw;
  }
  .login-section .wrapper .wrap .box .input {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 7.3vw;
    margin: 1.5vw 0;
    background-color: white;
    padding: 0 2vw;
    color: black;
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 1vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
  }
  .login-section .wrapper .wrap .box button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25vw;
    height: 7vw;
    margin-top: 10vw;
    background: linear-gradient(45deg, #078BE0, #0B308D);
    font-family: "Biryani";
    font-size: 2vw;
    font-weight: 300;
    margin-top: 1vw;
    outline: none;
    border: none;
    border-radius: 0.6vw;
    color: white;
  }
  .login-section .wrapper .wrap .box button:hover {
    animation: gradient 0.8s;
  }
  .login-section .wrapper .wrap .box button:active {
    animation: scale 0.8s;
  }
  .popup {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .popup .pop-0 {
    display: flex;
    flex-direction: column;
    background-color: white;
    width: 70vw;
    height: 50vw;
    align-items: center;
    justify-content: center;
    border-radius: 2vw;
  }
  .popup .pop-0 .pop-000 {
    width: 85%;
    display: block;
    text-align: right;
  }
  .popup .pop-0 .pop-000 svg {
    width: 2.8vw;
    height: auto;
  }
  .popup .pop-0 .pop-001 {
    display: block;
    justify-content: center;
    text-align: center;
  }
  .popup .pop-0 .pop-001 img {
    width: 10vw;
    height: auto;
  }
  .popup .pop-0 .pop-002 {
    display: block;
    justify-content: center;
  }
  .popup .pop-0 .pop-002 span {
    font: 600 3vw "Avenir bold";
  }
  .popup .pop-0 .wrap-3 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .popup .pop-0 .wrap-3 .box {
    width: 50vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0.2vw;
  }
  .popup .pop-0 .wrap-3 .box .box-0, .popup .pop-0 .wrap-3 .box .box-1 {
    width: 25vw;
    height: 14vw;
  }
  .popup .pop-0 .wrap-3 .box .box-0 {
    background-image: url("../assets/img/ticket/1.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-top-left-radius: 0.5vw;
    border-bottom-left-radius: 0.5vw;
    border: 0.1vw solid black;
  }
  .popup .pop-0 .wrap-3 .box .box-1 {
    border-top-right-radius: 0.5vw;
    border-bottom-right-radius: 0.5vw;
    border: 0.1vw solid black;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .popup .pop-0 .wrap-3 .box .box-1 span {
    font: 600 2vw "Avenir next";
    text-align: left;
    width: 90%;
  }
  aside {
    display: none;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    right: 0;
    margin-right: 20px;
    animation: slideUp 0.8s;
  }
  aside div {
    color: white;
    border-radius: 25px;
    padding: 10px;
    font-size: 15pt;
    margin: 5px;
  }
  .billboard-s {
    width: 100%;
    height: 145vw;
    background: url("../assets/img/sport/web4.webp") center center/cover;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 90%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 90%);
    image-rendering: optimizeQuality;
    background-repeat: no-repeat;
    animation: imageDances 15s infinite;
    animation-timing-function: linear;
    display: flex;
    justify-content: center;
  }
  .billboard-s .bill-text {
    margin-top: 20vw;
    margin-left: 5%;
    width: 80%;
    display: flex;
    flex-direction: column;
  }
  .billboard-s .bill-text .title {
    font: bold 7vw "Avenir bold";
    color: black;
    line-height: 7.3vw;
  }
  .billboard-s .bill-text .details {
    margin-top: 2vw;
    font: 500 3.5vw "Avenir next";
    color: white;
    line-height: 5.3vw;
  }
  @keyframes imageDance {
    0% {
      background: url("../assets/img/sport/1.png") 80% 8vw/40%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    1% {
      background: url("../assets/img/sport/2.png") 80% 5vw/35%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    2% {
      background: url("../assets/img/sport/3.png") 80% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    3% {
      background: url("../assets/img/sport/1.png") 90% 8vw/40%, url("../assets/img/sport/2.png") 90% 5vw/35%, url("../assets/img/sport/3.png") 90% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    4% {
      background: url("../assets/img/sport/1.png") 65% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 92.5% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    5% {
      background: url("../assets/img/sport/1.png") 56% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 95% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    6% {
      background: url("../assets/img/sport/1.png") 56% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 95% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    94% {
      background: url("../assets/img/sport/1.png") 56% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 95% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    95% {
      background: url("../assets/img/sport/1.png") 56% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 95% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    96% {
      background: url("../assets/img/sport/1.png") 65% 8vw/40%, url("../assets/img/sport/2.png") 80% 5vw/35%, url("../assets/img/sport/3.png") 92.5% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    97% {
      background: url("../assets/img/sport/1.png") 90% 8vw/40%, url("../assets/img/sport/2.png") 90% 5vw/35%, url("../assets/img/sport/3.png") 90% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    98% {
      background: url("../assets/img/sport/3.png") 80% 9vw/27%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    99% {
      background: url("../assets/img/sport/2.png") 80% 5vw/35%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
    100% {
      background: url("../assets/img/sport/1.png") 80% 8vw/40%, linear-gradient(180deg, #F47226 0%, rgba(0, 0, 0, 0.8980392157) 95%);
      background-repeat: no-repeat;
    }
  }
  .sport {
    padding-top: 4vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .sport .title {
    font: 700 5.5vw "Avenir bold";
    color: black;
  }
  .sport .wrapper {
    width: 90%;
    display: flex;
    margin-top: 4vw;
    overflow: hidden;
  }
  .sport .wrap-box {
    min-width: 100%;
    display: flex;
    overflow-x: auto;
  }
  .sport .wrap-box article {
    min-width: 70%;
    height: 73vw;
    pointer-events: all;
    cursor: pointer;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .sport .wrap-box article:nth-child(1) {
    background: url("../assets/img/sport/1-gray.png") 50% 120%/95% no-repeat, linear-gradient(rgba(0, 0, 0, 0.8), #0693EE);
  }
  .sport .wrap-box article:nth-child(2) {
    background: url("../assets/img/sport/3-gray.png") 50% 150%/70% no-repeat, #000000;
  }
  .sport .wrap-box article:nth-child(3) {
    background: url("../assets/img/sport/2-gray.png") 50% 120%/95% no-repeat, linear-gradient(rgba(0, 0, 0, 0.8), #0693EE);
  }
  .sport .wrap-box article .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4vw;
  }
  .sport .wrap-box article .wrap span {
    font: 900 5.5vw "Avenir bold";
    color: white;
  }
  .sport .wrap-box article .wrap svg {
    width: 5vw;
    height: auto;
  }
  .sport .wrap-box2 {
    min-width: 100%;
    display: flex;
    background-color: #000000;
    overflow-x: auto;
  }
  .sport .wrap-box2 article {
    min-width: 70%;
    height: 73vw;
    pointer-events: all;
    cursor: pointer;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .sport .wrap-box2 article .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4vw;
  }
  .sport .wrap-box2 article .wrap span {
    font: 900 5.5vw "Avenir bold";
    color: white;
    width: 80%;
    text-align: center;
  }
  .sport .wrap-box2 article .wrap svg {
    width: 5vw;
    height: auto;
  }
  .sport .wrap-box2 article .hover {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    min-height: 100%;
  }
  .sport .wrap-box2 article .hover a {
    width: auto;
    height: auto;
    padding: 1vw 3vw;
    text-decoration: none;
    color: white;
    background: #0693EE;
    font: 4.5vw "Bebas Neue";
    border-radius: 0.4vw;
  }
  .sport .wrap-box2 article .hover a:active {
    animation: click 0.8s;
  }
  .sport .wrap-box2 article:hover .hover {
    display: flex;
  }
  @keyframes o1 {
    0% {
      min-width: 100%;
    }
    100% {
      min-width: 0%;
    }
  }
  @keyframes o2 {
    0% {
      min-width: 0%;
    }
    100% {
      min-width: 100%;
    }
  }
  @keyframes click {
    0% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  .upcoming-s {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2vw;
  }
  .upcoming-s .title {
    width: 84%;
    font: 600 5vw "Avenir bold";
    color: black;
    border-bottom: 0.2vw solid black;
    padding: 1vw 0;
  }
  .upcoming-s .wrapper {
    width: 93%;
    margin-top: 2vw;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .upcoming-s .wrapper article {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 4vw;
    scroll-snap-align: center;
  }
  .upcoming-s .wrapper article .event {
    width: 100%;
    height: 53vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
  }
  .upcoming-s .wrapper article .details {
    width: 100%;
    margin-top: 1vw;
  }
  .upcoming-s .wrapper article .details span {
    font: 400 2.3vw "Avenir next";
  }
  .upcoming-s .wrapper article .g-see {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 2vw;
  }
  .upcoming-s .wrapper article .g-see .see {
    width: auto;
    height: auto;
    padding: 1vw 1.9vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F47226, #512601);
    text-decoration: none;
    color: white;
    font: 400 4vw "Bebas Neue";
    border-radius: 0.5vw;
  }
  .upcoming-s .wrapper article .g-see .see:active {
    animation: click 1s;
  }
  .upcoming-s .wrapper article .g-see .icon {
    width: auto;
    height: auto;
    padding: 2vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1vw;
    cursor: pointer;
    pointer-events: all;
    background: black;
    text-decoration: none;
    color: white;
    border-radius: 50%;
  }
  .upcoming-s .wrapper article .g-see .icon svg {
    width: 3vw;
    height: auto;
  }
  .upcoming-s .wrapper article .g-see .icon:active {
    box-shadow: 1px 1px 10px #333;
    animation: click 1s;
  }
  .upcoming {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4vw !important;
  }
  .upcoming .title {
    width: 84%;
    font: 600 5vw "Avenir bold" !important;
    color: black;
    border-bottom: 0.2vw solid black;
    padding: 1vw 0;
  }
  .upcoming .wrapper {
    width: 93%;
    margin-top: 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .upcoming .wrapper article {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4vw;
    margin-right: 4vw;
    scroll-snap-align: center;
  }
  .upcoming .wrapper article .event {
    width: 100%;
    height: 90vw !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
  }
  .upcoming .wrapper article .event .d {
    width: 90%;
    margin: 3vw 0 !important;
  }
  .upcoming .wrapper article .event .d .n {
    font: 700 6vw "Bebas Neue" !important;
    color: white;
  }
  .upcoming .wrapper article .event .d .m {
    font: 400 4vw "Avenir bold" !important;
    color: white;
  }
  .upcoming .wrapper article .event .details {
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .upcoming .wrapper article .event .details .name {
    font: 400 8vw "Bebas Neue" !important;
    color: white;
  }
  .upcoming .wrapper article .event .details .name:nth-child(3) {
    margin-top: -4vw;
  }
  .upcoming .wrapper article .event .details .vs {
    margin-top: -4.2vw;
    width: 15vw !important;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 300 12vw "Bebas Neue" !important;
  }
  .upcoming .wrapper article .event .details .vs text {
    transform: translate(25%, 80%);
    font: 300 12vw "Bebas Neue" !important;
    fill: none;
    stroke: white;
    stroke-width: 0.1vw;
  }
  .upcoming .wrapper article .event .details .venue {
    font: 600 3vw "Avenir next" !important;
    color: white;
    margin-top: -0.8vw;
  }
  .upcoming .wrapper article .info {
    display: flex;
    width: 100%;
    margin-top: 2vw;
    justify-content: space-between;
  }
  .upcoming .wrapper article .info .group {
    width: 40%;
    display: flex;
    flex-direction: column;
  }
  .upcoming .wrapper article .info .group:nth-child(2) {
    width: 10%;
    align-items: center;
  }
  .upcoming .wrapper article .info .group:nth-child(3) {
    align-items: flex-end;
  }
  .upcoming .wrapper article .info .group .name {
    font: 600 4.5vw "Avenir next" !important;
    color: black;
  }
  .upcoming .wrapper article .info .group .lb {
    font: 400 3.5vw "Bebas Neue" !important;
    color: black;
    margin-top: 2vw;
  }
  .upcoming .wrapper article .info .group .lb .blue {
    color: #0693EE;
  }
  .upcoming .wrapper article .g-see {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 0.5vw;
  }
  .upcoming .wrapper article .g-see .see {
    width: auto;
    height: auto;
    padding: 1.5vw 3.2vw !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F47226, #512601);
    text-decoration: none;
    color: white;
    font: 400 5vw "Bebas Neue" !important;
    border-radius: 1.3vw !important;
  }
  .upcoming .wrapper article .g-see .see:active {
    animation: click 1s;
  }
  .upcoming .wrapper article .g-see .icon {
    width: auto;
    height: auto;
    padding: 2.1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3vw;
    background: white;
    text-decoration: none;
    color: black;
    border-radius: 50%;
  }
  .upcoming .wrapper article .g-see .icon svg {
    width: 3vw;
    height: auto;
  }
  .upcoming .wrapper article .g-see .icon:active {
    box-shadow: 1px 1px 10px #333;
    animation: click 1s;
  }
  .upcoming .wrapper article .tr {
    margin-top: 1.4vw;
    font: 500 2vw "Avenir next" !important;
    color: black;
  }
  .upcoming .ind {
    width: auto;
    display: flex;
    align-items: center;
    margin-top: 2vw;
    pointer-events: all;
    cursor: pointer;
  }
  .upcoming .ind .box {
    -webkit-clip-path: circle();
            clip-path: circle();
    width: 1.3vw !important;
    height: 1.3vw !important;
    background-color: black;
    margin: 0 0.5vw;
  }
  .news {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 7vw !important;
    margin-bottom: 10vw;
  }
  .news .title {
    width: 84%;
    font: 600 5vw "Avenir bold" !important;
    color: black;
    border-bottom: 0.2vw solid black;
    padding: 1vw 0;
    margin: 0 auto;
  }
  .news .wrapper {
    width: 93%;
    margin-top: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2vw;
    background-color: rgba(217, 217, 217, 0.1019607843);
    scroll-snap-type: x mandatory;
  }
  .news .wrapper .wrap-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    scroll-snap-align: start;
  }
  .news .wrapper .wrap-box .img-prev {
    width: 100%;
    height: 54vw;
    border-top-right-radius: 0.7vw;
    border-bottom-right-radius: 0.7vw;
    background-position: center center;
    background-size: cover;
  }
  .news .wrapper .wrap-box .details {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .news .wrapper .wrap-box .details .date {
    color: #70707B;
    font: 400 3vw "Avenir next" !important;
    margin-top: 2vw;
  }
  .news .wrapper .wrap-box .details .heading {
    font: 700 5.8vw "Avenir bold" !important;
    margin-top: 3vw;
    width: 100%;
  }
  .news .wrapper .wrap-box .details .desc {
    margin-top: 2vw;
    width: 100%;
    font: 400 3vw "Avenir next" !important;
    line-height: 5vw !important;
  }
  .news .wrapper .button {
    width: auto;
    height: auto;
    padding: 4vw 6vw;
    font: 400 3vw "Avenir next";
    line-height: 1.8vw;
    color: white;
    background: linear-gradient(90deg, #078BE0, #078BE0, #0B308D);
    border-radius: 1.5vw;
    margin-top: 2vw;
  }
  .billboard-c {
    width: 100%;
    height: 120vw;
    /* background: url("../assets/img/sport/web4.webp"), black; */
    image-rendering: optimizeQuality;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .billboard-c .bill-text {
    margin-top: 32vw;
    margin-left: 3%;
    width: 60% !important;
    display: flex;
    flex-direction: column;
  }
  .billboard-c .bill-text .chaos-img {
    width: 90%;
    height: auto;
  }
  .billboard-c .bill-text .details {
    margin-top: 2vw;
    width: 100%;
    margin-left: 3%;
    font: 500 4vw "Avenir next";
    color: white;
    line-height: 5.3vw;
  }
  .billboard-c .bill-text .button {
    font: 4vw "Bebas Neue";
    width: 15vw;
    height: auto;
    padding: 1.2vw 3vw;
    background: linear-gradient(90deg, #F47226, #512601);
    margin-left: 3%;
    margin-top: 5vw;
    color: white;
    border-radius: 1vw;
  }
  .billboard-c .bill-text .button:active {
    animation: click 0.9s;
  }
  .prev-event {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4vw !important;
  }
  .prev-event .title {
    width: 84%;
    font: 600 5vw "Avenir bold" !important;
    color: black;
    border-bottom: 0.2vw solid black;
    padding: 1vw 0;
  }
  .prev-event .wrapper {
    width: 100%;
    margin-top: 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(217, 217, 217, 0.1019607843);
  }
  .prev-event .wrapper .wrap-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    scroll-snap-type: x mandatory;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .prev-event .wrapper .wrap-box .img {
    background-color: #d1d1d1;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    min-width: 50%;
    height: 50vw;
    scroll-snap-align: start;
  }
  .prev-event .wrapper .wrap-box .img .hover {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
    width: 100%;
    min-height: 100%;
  }
  .prev-event .wrapper .wrap-box .img .hover a {
    width: auto;
    height: auto;
    padding: 0.7vw 2vw;
    text-decoration: none;
    color: white;
    background: #0693EE;
    font: 3vw "Bebas Neue";
    border-radius: 1.2vw;
  }
  .prev-event .wrapper .wrap-box .img .hover a:active {
    animation: click 0.8s;
  }
  .prev-event .wrapper .wrap-box .img:hover .hover {
    display: flex;
  }
  .prev-event .wrapper .group-btn {
    width: 90%;
    display: flex;
    justify-content: flex-end;
    margin-top: 2vw;
  }
  .prev-event .wrapper .group-btn label {
    margin: 0 1vw;
  }
  .prev-event .wrapper .group-btn label svg {
    width: 5vw;
    height: auto;
  }
  .billboard-f {
    width: 100%;
    height: auto;
    background: linear-gradient(transparent 85%, white), url("../assets/img/sport/TEES-136.png");
    image-rendering: optimizeQuality;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
  }
  .billboard-f .bill-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    margin-bottom: 2vw;
  }
  .billboard-f .bill-wrap .stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    animation: slideLeft 0.7s;
  }
  .billboard-f .bill-wrap .stage:nth-child(3) {
    animation: slideRight 0.7s;
  }
  .billboard-f .bill-wrap .stage img {
    height: 85vw;
  }
  .billboard-f .bill-wrap .stage .text {
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items: center;
    margin-top: 0vw;
  }
  .billboard-f .bill-wrap .stage .text .fname {
    font: 400 10vw "Bebas Neue";
    color: white;
    text-align: center;
    margin-top: -1vw;
    text-wrap: wrap;
    line-height: 9vw;
  }
  .billboard-f .bill-wrap .stage .text .lname {
    font: 400 7vw "Avenir next";
    color: white;
    text-align: right;
    margin-top: -2vw;
  }
  .billboard-f .bill-wrap .stage .lb {
    font: 400 4vw "Bebas Neue";
    color: black;
  }
  .billboard-f .bill-wrap .stage .lb .blue {
    color: #0693EE;
  }
  .billboard-f .bill-wrap .cen {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0vw;
    justify-content: center !important;
    align-items: center;
  }
  .billboard-f .bill-wrap .cen .date {
    font: 400 4vw "Bebas Neue";
    color: white;
    margin-top: 5vw;
    width: 100%;
    text-align: center;
  }
  .billboard-f .bill-wrap .cen svg {
    width: 20vw;
    height: 20vw;
    margin-top: 4.5vw;
  }
  .billboard-f .bill-wrap .cen svg text {
    transform: translate(15%, 80%);
    font: 300 20vw "Bebas Neue" !important;
    fill: none;
    stroke: white;
    stroke-width: 0.1vw;
  }
  .ticket {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4vw !important;
  }
  .ticket .title {
    width: 84%;
    font: 600 5vw "Avenir bold" !important;
    color: black;
    border-bottom: 0.2vw solid black;
    padding: 1vw 0;
  }
  .ticket .w-info {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .ticket .w-info .info {
    display: flex;
    width: 90%;
    margin-top: 4vw;
    flex-direction: column;
    border-bottom: 0.1vw solid #F47226;
    padding-bottom: 2vw;
  }
  .ticket .w-info .info .ksdf {
    margin-left: 1.4vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .ticket .w-info .info .ksdf .name {
    font: 500 7vw "Bebas Neue";
    color: #F47226;
  }
  .ticket .w-info .info .ksdf .date {
    font: 550 4vw "Bebas Neue";
    margin-top: 0.5vw;
  }
  .ticket .w-info .info .ksdf .ven {
    font: 500 3vw "Avenir bold";
  }
  .ticket .w-info .info .ksds {
    margin-left: 1vw;
    width: -moz-max-content;
    width: max-content;
    height: auto;
    margin-top: 3vw;
  }
  .ticket .w-info .info .ksds a {
    width: auto;
    height: auto;
    padding: 1vw 2vw;
    background: linear-gradient(45deg, #078BE0, #0B308D);
    font-family: "Biryani";
    font-size: 3vw;
    font-weight: 300;
    outline: none;
    border: none;
    border-radius: 1.2vw;
    color: white;
    margin-top: 0.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ticket .w-info .info .ksds a:hover {
    animation: gradient 0.8s;
  }
  .ticket .w-info .info .ksds a:active {
    animation: scale 0.8s;
  }
  .ticket .wrapper {
    width: 90%;
    margin-top: 10vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2vw;
  }
  .ticket .wrapper .wrap-box {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 0.1vw solid #F47226;
    padding-bottom: 2vw;
  }
  .ticket .wrapper .wrap-box .evt {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ticket .wrapper .wrap-box .top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
  }
  .ticket .wrapper .wrap-box .top .b1 {
    width: 35%;
    height: 28vw;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ticket .wrapper .wrap-box .top .b0 {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .ticket .wrapper .wrap-box .top .b0 svg {
    width: 15vw;
    height: 15vw;
  }
  .ticket .wrapper .wrap-box .top .b0 svg text {
    transform: translate(25%, 80%);
    font: 300 10vw "Bebas Neue";
    fill: none;
    stroke: black;
    stroke-width: 0.07vw;
  }
  .ticket .wrapper .wrap-box .btm {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1vw;
    overflow: hidden;
  }
  .ticket .wrapper .wrap-box .btm:nth-child(3) {
    margin-top: 0.5vw;
  }
  .ticket .wrapper .wrap-box .btm .b0 {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .ticket .wrapper .wrap-box .btm .b0 svg {
    width: 3vw;
    height: auto;
  }
  .ticket .wrapper .wrap-box .btm .b2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35%;
    height: auto;
  }
  .ticket .wrapper .wrap-box .btm .b2 .name {
    font: 400 4vw "Bebas Neue";
    text-align: center;
  }
  .ticket .wrapper .wrap-box .btm .b2 .lb {
    font: 400 3vw "Bebas Neue";
    color: black;
  }
  .ticket .wrapper .wrap-box .btm .b2 .lb .blue {
    color: #0693EE;
  }
  @keyframes slideLeft {
    0% {
      opacity: 0;
      margin-left: -20vw;
    }
    100% {
      opacity: 1;
      margin-left: 0vw;
    }
  }
  @keyframes slideRight {
    0% {
      opacity: 0;
      margin-right: 20vw;
    }
    100% {
      opacity: 1;
      margin-right: 0vw;
    }
  }
  .prevEvnt {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .prevEvnt .title {
    width: 90%;
    display: flex;
    justify-content: flex-end;
  }
  .prevEvnt .title svg {
    width: 72vw;
    height: 10vw;
    display: flex;
    justify-content: flex-start;
  }
  .prevEvnt .title svg text {
    transform: translate(0%, 70%);
    stroke: #F47226;
    stroke-width: 0.1vw;
    fill: none;
    font: 10vw "Avenir next";
  }
  .prevEvnt .selectionTab {
    width: 90%;
    display: flex;
    justify-content: flex-start;
    margin-top: 2vw;
  }
  .prevEvnt .selectionTab .wrapBox {
    width: auto;
    display: flex;
    height: auto;
    justify-content: flex-start;
  }
  .prevEvnt .selectionTab .wrapBox .box {
    width: 22vw;
    height: 6vw;
    border: 0.1vw solid black;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .prevEvnt .selectionTab .wrapBox .box input, .prevEvnt .selectionTab .wrapBox .box select {
    width: 90%;
    border: none;
    outline: none;
    font: 3vw "Bebas Neue";
  }
  .prevEvnt .wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 4vw;
    margin-bottom: 6vw;
  }
  .prevEvnt .wrapper .mosaicWrap {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .mt {
    margin-top: 3vw;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap {
    min-width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 0.1vw solid black;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .view {
    width: 100%;
    height: 37vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E8E8E8;
    background-position: center center;
    background-size: cover;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .view svg {
    width: 5vw;
    height: auto;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details {
    width: 96%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 1vw;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr .dd {
    display: flex;
    flex-direction: column;
    width: 65%;
    overflow: hidden;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr .dd .name {
    font: 3.5vw "Bebas Neue";
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr .dd .ven {
    font: 2vw "Avenir next";
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr .de {
    width: 35%;
    overflow: hidden;
    display: flex;
    justify-content: flex-end;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .gr .de .date {
    font: 3vw "Bebas Neue";
    margin-top: 0.5vw;
  }
  .prevEvnt .wrapper .mosaicWrap .wrap-box .wrap .details .cham {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    font: 2.5vw "Bebas Neue";
    margin-top: 2vw;
    color: #F47226;
    margin-bottom: 1vw;
  }
  .billboard-a {
    width: 100%;
    height: 100vw;
    background: linear-gradient(rgba(0, 0, 0, 0.2666666667), rgba(0, 0, 0, 0.2666666667)), url("../assets/img/sport/TEES-136.png") center center;
    image-rendering: optimizeQuality;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .billboard-a .bill-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 85%;
    text-align: center;
  }
  .billboard-a .bill-text .title {
    font: bold 6vw "Avenir bold";
    color: white;
    line-height: 3.3vw;
  }
  .billboard-a .bill-text .details {
    margin-top: 4vw;
    font: 400 3.5vw "Avenir next";
    color: white;
    line-height: 5vw;
  }
  .kjdf-a {
    padding-top: 4vw;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .kjdf-a .title {
    font: 700 4.5vw "Avenir bold";
    color: black;
    width: 80%;
    text-align: center;
  }
  .kjdf-a .zig {
    margin-top: 2vw;
  }
  .kjdf-a .zig svg {
    width: 25vw;
    height: auto;
  }
  .kjdf-a .wrapper {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5vw;
  }
  .kjdf-a .wrapper .wrap-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 3vw;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10vw;
  }
  .kjdf-a .wrapper .wrap-box:nth-child(1) {
    margin-top: 3vw;
  }
  .kjdf-a .wrapper .wrap-box:nth-child(2) {
    flex-direction: column;
  }
  .kjdf-a .wrapper .wrap-box .text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .kjdf-a .wrapper .wrap-box .text .head {
    font: 300 3.5vw "Avenir bold";
    margin-bottom: 2vw;
    border-bottom: 1vw solid #F47226;
    padding-bottom: 1vw;
  }
  .kjdf-a .wrapper .wrap-box .text .info {
    font: 400 3vw "Avenir next";
    line-height: 4vw;
  }
  .kjdf-a .wrapper .wrap-box .pic {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }
  .kjdf-a .wrapper .wrap-box .pic img {
    width: 70vw;
  }
  .oask {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 7vw;
  }
  .oask .title {
    width: 84%;
    font: 600 5vw "Avenir bold";
    color: black;
    border-bottom: 0.2vw solid black;
    padding: 1vw 0;
  }
  .oask .wrapper {
    width: 80%;
    margin-top: 8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .oask .wrapper .wrap-box {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .oask .wrapper .wrap-box .img {
    width: 100%;
    margin-top: 10vw;
  }
  .oask .wrapper .wrap-box .img img {
    width: 100%;
    height: auto;
  }
  .oask .wrapper .wrap-box .imgw {
    width: 100%;
    margin-top: 10vw;
    display: flex;
    justify-content: center;
  }
  .oask .wrapper .wrap-box .imgw img {
    width: 20vw;
    height: auto;
  }
  .oask .wrapper .wrap-box .info {
    margin-top: 2vw;
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .oask .wrapper .wrap-box .info .name {
    font: 600 4vw "Avenir bold";
  }
  .oask .wrapper .wrap-box .info .pos {
    font: 400 3vw "Avenir next";
    color: black;
    margin-top: 2vw;
  }
  .oask .wrapper .wrap-box .info .head {
    font: 600 3.1vw "Avenir bold";
    text-align: center;
    margin-top: 3vw;
  }
  .oask .wrapper .wrap-box .info .desp {
    font: 400 3vw "Avenir next";
    text-align: center;
    margin-top: 2vw;
    line-height: 4vw;
  }
  .billboard-b {
    width: 90%;
    height: 60vw;
    background: linear-gradient(rgba(0, 0, 0, 0.2666666667), rgba(0, 0, 0, 0.8)), url("../assets/img/sport/blog_post.jpg") center center/100%;
    image-rendering: optimizeQuality;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .billboard-b .bill-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 90%;
    text-align: center;
    margin-bottom: 3vw;
  }
  .billboard-b .bill-text .txt {
    font: bold 3vw "Avenir bold";
    color: white;
  }
  .billboard-b .bill-text .title {
    font: bold 5vw "Avenir bold";
    color: white;
    line-height: 5vw;
    text-align: left;
    margin-top: 3vw;
  }
  .billboard-b .bill-text .date {
    margin-top: 2vw;
    font: 500 3vw "Archivo";
    color: white;
  }
  .dask {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4vw;
  }
  .dask .title {
    width: 84%;
    font: 600 5vw "Avenir bold";
    color: black;
    border-bottom: 0.2vw solid black;
    padding: 1vw 0;
  }
  .dask .wrapper {
    width: 80%;
    margin-top: 4vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .dask .wrapper .wrap-box {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dask .wrapper .wrap-box .img {
    width: 100%;
    height: 40vw;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1vw;
  }
  .dask .wrapper .wrap-box .info {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .dask .wrapper .wrap-box .info .date {
    font: 400 2vw "Avenir next";
    margin-top: 2vw;
  }
  .dask .wrapper .wrap-box .info .head {
    font: 600 4vw "Avenir bold";
    margin-top: 3vw;
  }
  .dask .wrapper .wrap-box .info .desp {
    font: 400 3vw "Avenir next";
    color: black;
    margin-top: 2vw;
    line-height: 4vw;
    text-align: justify;
  }
  .dask .wrapper .box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: auto;
    margin-top: 10vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }
  .dask .wrapper .box .wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3vw;
    margin-right: 2vw;
    scroll-snap-align: start;
    min-width: 100%;
  }
  .dask .wrapper .box .img {
    width: 50%;
    height: 36vw;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 2vw;
  }
  .dask .wrapper .box .info {
    display: flex;
    flex-direction: column;
    width: 40%;
    margin-left: 2vw;
    justify-content: space-between;
  }
  .dask .wrapper .box .info .date {
    font: 400 2vw "Avenir next";
    margin-top: 0.2vw;
  }
  .dask .wrapper .box .info .head {
    font: 600 3vw "Avenir bold";
    margin-top: 3vw;
  }
  .dask .wrapper .box .info .desp {
    font: 400 2vw "Avenir next";
    color: black;
    margin-top: 1.5vw;
    line-height: 3.5vw;
  }
  .dask .wrapper .wrapperBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .dask .wrapper .wrapperBox .loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .dask .wrapper .wrapperBox .loader .wrapBox {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
  }
  .dask .wrapper .wrapperBox .loader .wrapBox .wrap-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 7vw;
  }
  .dask .wrapper .wrapperBox .loader .wrapBox .wrap-box .img {
    width: 100%;
    height: 45vw;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 2vw;
  }
  .dask .wrapper .wrapperBox .loader .wrapBox .wrap-box .info {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .dask .wrapper .wrapperBox .loader .wrapBox .wrap-box .info .date {
    font: 400 2vw "Avenir next";
    margin-top: 2vw;
  }
  .dask .wrapper .wrapperBox .loader .wrapBox .wrap-box .info .head {
    font: 600 4vw "Avenir bold";
    margin-top: 3vw;
  }
  .dask .wrapper .wrapperBox .loader .wrapBox .wrap-box .info .desp {
    font: 400 3vw "Avenir next";
    color: black;
    margin-top: 2vw;
    line-height: 4vw;
    text-align: justify;
  }
  .dask .wrapper .wrapperBox .g-see {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 5vw;
  }
  .dask .wrapper .wrapperBox .g-see .see {
    width: auto;
    height: auto;
    padding: 1vw 2.1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F47226, #512601);
    text-decoration: none;
    color: white;
    font: 400 5vw "Bebas Neue";
    border-radius: 0.5vw;
  }
  .dask .wrapper .wrapperBox .g-see .see:active {
    animation: click 1s;
  }
  @keyframes o1 {
    0% {
      min-width: 100%;
    }
    100% {
      min-width: 0%;
    }
  }
  @keyframes o2 {
    0% {
      min-width: 0%;
    }
    100% {
      min-width: 100%;
    }
  }
  @keyframes click {
    0% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  .upcoming {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2vw;
  }
  .upcoming .title {
    width: 84%;
    font: 600 2vw "Avenir bold";
    color: black;
    border-bottom: 0.2vw solid black;
    padding: 1vw 0;
  }
  .upcoming .wrapper {
    width: 93%;
    margin-top: 2vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .upcoming .wrapper article {
    width: 32%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4vw;
  }
  .upcoming .wrapper article .event {
    width: 100%;
    height: 28vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
  }
  .upcoming .wrapper article .event .d {
    width: 90%;
    margin: 1vw 0;
  }
  .upcoming .wrapper article .event .d .n {
    font: 700 2vw "Bebas Neue";
    color: white;
  }
  .upcoming .wrapper article .event .d .m {
    font: 400 1.5vw "Avenir bold";
    color: white;
  }
  .upcoming .wrapper article .event .details {
    width: 90%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .upcoming .wrapper article .event .details .name {
    font: 400 3.3vw "Bebas Neue";
    color: white;
  }
  .upcoming .wrapper article .event .details .name:nth-child(3) {
    margin-top: -2vw;
  }
  .upcoming .wrapper article .event .details .vs {
    margin-top: -2.2vw;
    width: 8vw;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 300 6vw "Bebas Neue";
  }
  .upcoming .wrapper article .event .details .vs text {
    transform: translate(25%, 80%);
    font: 300 6vw "Bebas Neue";
    fill: none;
    stroke: white;
    stroke-width: 0.1vw;
  }
  .upcoming .wrapper article .event .details .venue {
    font: 600 0.9vw "Avenir next";
    color: white;
    margin-top: -0.8vw;
  }
  .upcoming .wrapper article .info {
    display: flex;
    width: 100%;
    margin-top: 2vw;
    justify-content: space-between;
  }
  .upcoming .wrapper article .info .group {
    width: 40%;
    display: flex;
    flex-direction: column;
  }
  .upcoming .wrapper article .info .group:nth-child(2) {
    width: 10%;
    align-items: center;
  }
  .upcoming .wrapper article .info .group:nth-child(3) {
    align-items: flex-end;
  }
  .upcoming .wrapper article .info .group .name {
    font: 600 1.5vw "Avenir next";
    color: black;
  }
  .upcoming .wrapper article .info .group .lb {
    font: 400 1.5vw "Bebas Neue";
    color: black;
  }
  .upcoming .wrapper article .info .group .lb .blue {
    color: #0693EE;
  }
  .upcoming .wrapper article .g-see {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-top: 0.5vw;
  }
  .upcoming .wrapper article .g-see .see {
    width: auto;
    height: auto;
    padding: 1vw 2.1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #F47226, #512601);
    text-decoration: none;
    color: white;
    font: 400 1.2vw "Bebas Neue";
    border-radius: 0.5vw;
  }
  .upcoming .wrapper article .g-see .see:active {
    animation: click 1s;
  }
  .upcoming .wrapper article .g-see .icon {
    width: auto;
    height: auto;
    padding: 1.1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
    text-decoration: none;
    color: black;
    border-radius: 50%;
  }
  .upcoming .wrapper article .g-see .icon:active {
    box-shadow: 1px 1px 10px #333;
    animation: click 1s;
  }
  .upcoming .wrapper article .tr {
    margin-top: 0.7vw;
    font: 500 0.9vw "Avenir next";
    color: black;
  }
  .upcoming .ind {
    width: auto;
    display: flex;
    align-items: center;
    margin-top: 2vw;
    pointer-events: all;
    cursor: pointer;
  }
  .upcoming .ind .box {
    -webkit-clip-path: circle();
            clip-path: circle();
    width: 0.7vw;
    height: 0.7vw;
    background-color: black;
    margin: 0 0.5vw;
  }
}/*# sourceMappingURL=main.css.map */