/* -----------------------------------------------------------
	font-face
----------------------------------------------------------- */
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.ttf");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.ttf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.ttf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.header {
  width: 100%;
  border: none;
  height: auto;
  position: relative;
  padding-top: 8px;
}
@media only screen and (max-width: 991px) {
  .header {
    padding: 12px 0px;
  }
}
.header .navbar {
  display: flex;
  align-items: center;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  .header .navbar {
    justify-content: space-between;
  }
}
.header .hamburger {
  display: none;
}
.header .bar {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  border-radius: 0.5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
}
.header .nav-menu {
  display: flex;
  align-items: center;
  gap: 0px 12px;
  flex-grow: 1;
  margin-left: 24px;
  justify-content: center;
}
@media only screen and (max-width: 991px) {
  .header .nav-menu {
    margin-left: 0;
    min-width: auto;
    max-width: auto;
  }
}
.header .nav-item {
  position: relative;
  position: relative;
}
.header .nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 0px 8px;
  padding: 12px 12px;
}
.header .nav-item .nav-link .icon {
  display: flex;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
}
.header .nav-item .nav-link .label {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #FFFFFF;
}
.header .nav-item .nav-link:hover {
  text-decoration: none;
}
.header .nav-item .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 154, 95, 0) 0%, #009A5F 100%);
  opacity: 0.25;
  display: none;
}
.header .nav-item:hover .nav-link {
  border-bottom: 3px solid #009A5F;
}
.header .nav-item:hover .mask {
  display: block;
}
.header .nav-item-mb {
  display: none;
}
.header .nav-link:hover {
  text-decoration: none;
}
.header .link-active .nav-link {
  border-bottom: 3px solid #009A5F;
}
.header .link-active .mask {
  display: block;
}
@media only screen and (max-width: 768px) {
  .header .nav-menu {
    position: absolute;
    left: -100%;
    top: 100%;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    z-index: 99999999;
    gap: 32px 0px;
    padding: 8px 24px 24px 16px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .header .nav-menu.active {
    left: 0;
  }
  .header .nav-item {
    width: 100%;
  }
  .header .nav-item .nav-link {
    padding: 4px 0px;
  }
  .header .nav-item-mb {
    display: block;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
  }
  .header .dash {
    width: 100%;
    height: 1px;
    border: none;
    background-color: rgba(255, 255, 255, 0.25);
    margin: 32px 24px;
  }
  .header .hamburger {
    display: block;
    cursor: pointer;
  }
  .header .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .header .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
  }
  .header .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
  }
}
.header .list-league-pc-wrapper {
  width: 100%;
  height: auto;
  padding: 10px 0px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .header .list-league-pc-wrapper {
    display: none;
    margin: 0;
  }
}

/*# sourceMappingURL=header.css.map */
