/** General **/
@font-face {
  font-family: mainFont;
  src: url(fonts/HindenburgCondensed.ttf);
}
@font-face {
  font-family: displayFont;
  src: url(fonts/PlayPretend.otf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  letter-spacing: 2px;
  font-weight: lighter;
}

::-moz-selection {
  color: #212930;
  background-color: #adf0fb;
}

::selection {
  color: #212930;
  background-color: #adf0fb;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

p {
  font-size: 1.3rem;
  line-height: 1.6rem;
  margin-bottom: 25px;
}

body {
  background-color: #212930;
  font-family: mainFont;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.page-title {
  font-size: 3rem;
}

.basic_page {
  flex: 1;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.parallax {
  background-attachment: fixed;
}

.btn {
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #212930;
  background-color: #adf0fb;
}
.btn:hover {
  text-decoration: none;
  color: #212930;
}
.btn img {
  margin: 0 0 0 12px !important;
}

.content ul,
.content ol {
  font-family: mainFont;
  font-size: 1.1rem;
  padding: 1rem;
}
.content a {
  color: #88cfe9;
}
.content a:hover {
  color: #88cfe9;
}

section:not(.hero) {
  padding-top: 9rem;
}

.section-title {
  position: relative;
  font-size: 3rem;
  margin-bottom: 6rem;
}
.section-title::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -13px;
  width: 100px;
  height: 90px;
  background: #88cfe9;
  z-index: -1;
}

/* Navigation */
.navbar {
  background-color: black;
}

.logo a {
  height: 100%;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo img {
  height: 90px;
}
.logo .logo_text {
  display: inline-block;
  font-family: displayFont;
  margin-left: 2rem;
  font-size: 2.5rem;
  color: white;
  letter-spacing: 2px;
}

.navbar {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  padding: 10px 0px;
}
.navbar .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.push-left {
  margin-left: auto;
}

/* Menu */
.hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  outline: none;
  height: 30px;
  position: relative;
  width: 30px;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: inline-block;
  }
}
.hamburger-line {
  background: #adf0fb;
  height: 3px;
  position: absolute;
  left: 0;
  transition: all 0.2s ease-out;
  width: 100%;
}
.hamburger:hover .hamburger-line {
  background: #777;
}
.hamburger-line-top {
  top: 3px;
}
.menu-active .hamburger-line-top {
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.hamburger-line-middle {
  top: 50%;
  transform: translateY(-50%);
}
.menu-active .hamburger-line-middle {
  left: 50%;
  opacity: 0;
  width: 0;
}
.hamburger-line-bottom {
  bottom: 3px;
}
.menu-active .hamburger-line-bottom {
  bottom: 50%;
  transform: rotate(-45deg) translateY(50%);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  transition: all 0.25s ease-in;
}
@media screen and (max-width: 768px) {
  .nav-menu {
    background: #212930;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateY(-100%);
    text-align: center;
  }
  .menu-active .nav-menu {
    transform: translateY(0%);
    opacity: 1;
  }
}
.nav-menu .menu-item:last-child a {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .nav-menu .menu-item:last-child a {
    margin: 20px;
  }
}
.nav-menu .display_none {
  display: none;
}
.nav-menu .menu-item a {
  position: relative;
  color: #fff;
  font-size: 2.5rem;
  font-family: mainFont;
  letter-spacing: 2px;
  display: block;
  text-decoration: none;
  transition: color 0.25s ease-in-out;
}
.nav-menu .menu-item a:hover {
  color: #88cfe9;
  transition: color 0.25s ease-in-out;
}
@media screen and (max-width: 768px) {
  .nav-menu .menu-item a {
    font-size: 2rem;
    margin: 20px;
  }
  .nav-menu .menu-item a span {
    display: none;
  }
}
.nav-menu .menu-item a span {
  margin: 0 0.3rem;
}
.nav-menu .current-menu-item a {
  color: #88cfe9;
}
.nav-menu .current-menu-item a span {
  color: #fff;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero .sponsoring {
  width: 400px;
}
.hero p {
  font-size: 1.5rem;
}

.hero-title {
  font-size: 6rem;
  font-family: displayFont;
  font-weight: 500;
  margin: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrolling 4s infinite ease-in-out;
}
.scroll-indicator img {
  opacity: 0.6;
}

@keyframes scrolling {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px);
  }
  100% {
    transform: translateY(0);
  }
}
/* News Hero */
.news-hero {
  position: relative;
  height: 40vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 110px;
}
.news-hero .back-to-start {
  position: absolute;
  bottom: 25px;
  color: white;
  transition: color 0.25s;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  background-color: #88cfe9;
  padding: 0.5rem 1rem;
}
.news-hero .back-to-start img {
  opacity: 0.7;
  transition: opacity 0.25s;
  margin-right: 12px;
}
.news-hero .back-to-start:hover {
  text-decoration: none;
  color: #fff;
  transition: color 0.25s;
}
.news-hero .back-to-start:hover img {
  opacity: 1;
  transition: 0.25s;
}

/* Our Teams */
.teams_section-home {
  padding: 2rem !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.teams__container {
  width: 90%;
  margin: 0 auto;
}

.teams_slider-cont {
  width: 80%;
}

.teams_slide {
  position: relative;
}
.teams_slide a {
  width: 100%;
  height: 100%;
}
.teams_slide a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.teams_slide a h3 {
  position: absolute;
  color: white;
  bottom: 0;
  font-size: 2rem;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  width: 100%;
}

.teams_title {
  font-family: displayFont;
  font-size: 8rem;
  color: rgba(0, 0, 0, 0);
  text-align: center;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: white;
  letter-spacing: 0.6rem;
  margin: 0;
}

.teams_content {
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
  padding: 0 3rem;
}
.teams_content p {
  font-size: 1.8rem;
  line-height: 2rem;
  letter-spacing: 0.15rem;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}

.teams-grid_cont a {
  text-decoration: none;
}

.team_content p {
  font-size: 1.6rem;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.team_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  margin-bottom: 5rem;
  width: 80%;
}
.team_title div {
  width: 55%;
}
.team_title img {
  width: 40%;
}
.team_title h1 {
  font-family: displayFont;
  font-size: 6rem;
  line-height: 5rem;
}
.team_title h4 {
  font-size: 1.2rem;
  margin-bottom: -4rem;
  letter-spacing: 8px;
}

.roster {
  font-size: 6rem !important;
  margin: 3rem 0 !important;
}

.team_player_item {
  position: relative;
  height: 100% !important;
}
.team_player_item .pl_item_cont {
  position: relative;
  height: 100%;
  max-width: 310px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.team_player_item .pl_item_cont .bg_img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team_player_item .pl_item_cont .player_name {
  position: absolute;
  width: 100%;
  left: 0rem;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.team_player_item .pl_item_cont .player_name h3 {
  font-size: 3rem;
  margin-right: 1rem;
}
.team_player_item .pl_item_cont .player_name img {
  width: 3.5rem;
  aspect-ratio: 1/1;
}

.team_player_slider {
  width: 80%;
  margin: 0 auto;
}

.team_player_cont {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.team_player_arrows {
  position: absolute;
  height: 100% !important;
  width: 100%;
}

.team_player_prev {
  left: -5rem;
}

.team_player_next {
  right: -5rem;
}

.achiev_item {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.achiev_item p {
  width: 25%;
  font-size: 2rem;
}
.achiev_item p:first-child {
  text-align: left;
  width: 50%;
}
.achiev_item p:last-child {
  text-align: right;
  width: 25%;
}

/* News Section */
.index-news {
  padding-top: 110px !important;
}

.news_page {
  padding-bottom: 4rem !important;
}

.news-container {
  width: 100%;
}
.news-container .news-anchor {
  display: block;
  width: 90%;
  height: 100%;
  text-decoration: none;
  margin: 0 auto;
  margin-top: 3rem;
}
.news-container .news-anchor:first-child {
  margin: 0 auto;
}
.news-container .news-item {
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.news-container .news-item:first-child {
  margin: 0;
}
.news-container .news-item div {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem 2rem;
}
.news-container .news-item div h3 {
  font-size: 3rem;
  text-transform: uppercase;
  color: #fff;
}
.news-container .news-item div span {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #88cfe9;
  text-decoration: none;
  text-transform: uppercase;
}
.news-container .news-item div span img {
  margin-left: 12px;
}

.home_news-cont {
  height: 60vh;
}
.home_news-cont .home_news-item {
  height: 100%;
}

.splide__arrow {
  font-size: 1.7rem;
}

.more-news {
  margin-top: 5rem;
  display: inline-flex;
  align-items: center;
  padding: 14px 18px;
  background-color: #adf0fb;
  color: #212930;
  font-size: 1.3rem;
  font-weight: bold;
  text-decoration: none;
}
.more-news:hover {
  text-decoration: none;
  color: #212930;
}
.more-news img {
  margin-left: 12px;
}

.news-article h1 {
  margin-top: 0;
  margin-bottom: 50px;
  font-size: 3rem;
  text-transform: uppercase;
}
.news-article p {
  font-size: 1.3rem;
}
.news-article img {
  max-width: 100%;
}

.sponsor_slider {
  padding: 2rem !important;
  background-color: #1a1a1a;
}

.slick-slide {
  margin: 0px 40px;
}

.slick-slide img {
  width: 130px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  height: 5rem;
}
.slick-track::before, .slick-track::after {
  display: table;
  content: "";
}
.slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Schedule */
.schedule {
  padding: 2rem 0 !important;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

.section_title {
  font-family: displayFont;
  font-size: 8rem;
  color: rgba(0, 0, 0, 0);
  text-align: center;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: white;
  letter-spacing: 0.6rem;
  margin: 0;
}

.schedule_container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 85%;
  margin: 0 auto;
}

.schedule_item {
  width: 50%;
}

.schedule_item-title {
  display: flex;
  justify-content: space-around;
}
.schedule_item-title h1 {
  font-size: 3rem;
  margin-top: 0;
  cursor: pointer;
}
.schedule_item-title .upcomings_title,
.schedule_item-title .results_title {
  position: relative;
}
.schedule_item-title .upcomings_title::before,
.schedule_item-title .results_title::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 5px;
  bottom: 0;
  left: 50%;
  background-color: #88cfe9;
  transition: all 0.3s ease-in;
}
.schedule_item-title .upcomings_title:hover::before,
.schedule_item-title .results_title:hover::before {
  width: 100%;
  left: 0;
}
.schedule_item-title .active {
  position: relative;
}
.schedule_item-title .active::before {
  left: 0;
  width: 100%;
}

.display_none {
  display: none;
}

.match_item {
  width: 100%;
  height: 250px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 3rem;
}

.match_item-title {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  color: black;
}
.match_item-title h2 {
  font-size: 2.5rem;
  margin-top: 0;
}
.match_item-title h3 {
  font-size: 1.8rem;
  color: #414d51;
  margin-top: -0.5rem;
}

.match_item-logo {
  display: flex;
  align-items: center;
  color: black;
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
}
.match_item-logo img {
  width: 6rem;
  aspect-ratio: 1/1;
}
.match_item-logo h3 {
  font-size: 2.5rem;
  margin: 0 2rem;
}

.match_item-date {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
}
.match_item-date h2 {
  font-size: 2.3rem;
  margin-top: 0;
}
.match_item-date h3 {
  font-size: 1.6rem;
  margin-top: -0.5rem;
  text-align: center;
}

.twitch_logo {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  width: 3.5rem;
  aspect-ratio: 1/1;
}

.schedule_link {
  text-align: center;
  padding-bottom: 3rem;
}
.schedule_link a {
  display: inline-block;
  font-size: 2rem;
  color: #88cfe9;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.schedule_link a .fa-chevron-right {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 0.1rem;
  animation: 1s fadeIn 0.7s infinite;
}
.schedule_link a .fa-chevron-right:first-child {
  margin-left: 1rem;
  animation: 1s fadeIn 0.6s infinite;
}
.schedule_link a .fa-chevron-right:last-child {
  animation: 1s fadeIn 0.8s infinite;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.twitter_feeds {
  width: 40%;
  display: inline-block;
  margin-bottom: 3rem;
}
.twitter_feeds h1 {
  margin-top: 0;
  font-size: 3rem;
  text-align: center;
}

.schedule_page {
  padding-top: 120px !important;
}

.scedule_page-sch_cont {
  width: 50%;
}

.scedule_page-sch_item {
  width: 100%;
}

.schedule_page-match_item {
  height: 300px;
}

/* End of Schedule */
/* Merchandise */
.merch {
  padding: 2rem !important;
  background-color: #1a1a1a;
}

.merch_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.merch_slider {
  width: 75%;
}

.merch_cont {
  float: right;
  width: 90%;
  margin-top: 2rem;
}

.merch_item {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.merch_item:hover {
  text-decoration: none;
  color: #fff;
}
.merch_item img {
  width: 100%;
  height: 65%;
  -o-object-fit: contain;
     object-fit: contain;
}

.merch-holder {
  margin-top: 2rem;
  font-size: 2rem;
}
.merch-holder h4 {
  line-height: 1.6rem;
}
.merch-holder .price-tag {
  display: block;
  font-style: italic;
}

.buy_btn {
  text-align: center;
  font-family: displayFont;
  width: 450px;
}
.buy_btn h4 {
  font-size: 1.5rem;
}
.buy_btn a {
  font-size: 4rem;
  text-decoration: none;
  color: #88cfe9;
}
.buy_btn a:hover {
  color: #3b85c5;
  transition: all 0.3s ease-in;
}

/* Footer */
footer {
  width: 100%;
  padding: 2.5rem 0;
  background-color: #000;
  font-size: 1.8rem;
}
footer .copyright-mark {
  display: block;
  float: left;
  opacity: 0.7;
}
footer .sub-nav {
  list-style: none;
  display: flex;
  float: right;
}
footer .sub-nav li a {
  color: #fff;
}
footer .sub-nav li span {
  margin: 1rem;
}

/* Social Media */
.social_media {
  padding: 2rem !important;
  background-color: #1a1a1a;
}

.sm_container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.sm-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  padding: 15px;
  margin-right: 3rem;
  margin-top: 2rem;
}
.sm-icon img {
  width: 7rem;
  aspect-ratio: 1/1;
}

.sponsors_title {
  background-color: #1a1a1a;
  text-align: center;
  padding-bottom: 4rem;
}
.sponsors_title p {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.sponsors_title a {
  font-family: displayFont;
  text-decoration: none;
  color: #88cfe9;
  font-size: 2rem;
}
.sponsors_title a:hover {
  color: #3b85c5;
  transition: all 0.3s ease-in;
}
.sponsors_title a .fa-chevron-right {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 0.1rem;
  animation: 1s fadeIn 0.7s infinite;
}
.sponsors_title a .fa-chevron-right:first-child {
  margin-left: 1rem;
  animation: 1s fadeIn 0.6s infinite;
}
.sponsors_title a .fa-chevron-right:last-child {
  animation: 1s fadeIn 0.8s infinite;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sponsors_content {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.sponsors_content p {
  font-size: 1.6rem;
}

.sponsors-container {
  margin-top: 9rem;
}

.sponsors_item {
  display: flex;
  justify-content: space-around;
  margin-bottom: 7rem;
}

.sponsors_item-img {
  width: 25%;
}
.sponsors_item-img img {
  width: 100%;
  height: auto;
}

.sponsors_item-content {
  width: 60%;
}
.sponsors_item-content p {
  text-align: center;
  font-size: 1.6rem;
}

/* About Us */
.statement {
  padding: 6rem 0;
  z-index: -2;
}
.statement .statement-title {
  position: relative;
  font-size: 2rem;
  margin-bottom: 3rem;
  z-index: 1;
}
.statement .statement-title::before {
  content: "";
  position: absolute;
  left: -30px;
  top: -6px;
  width: 70px;
  height: 60px;
  background: #88cfe9;
  z-index: -1;
}
.statement .statement-icon {
  margin-top: 7rem;
}
.statement:nth-child(even) {
  background-color: #2a373b;
}

/* Teams */
.content {
  padding-bottom: 6rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}

.team {
  position: relative;
  width: 100%;
  height: 450px;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  cursor: pointer;
  outline: none;
}

details[open] > .team::before {
  position: absolute;
  content: "";
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: calc(100% + 40px);
  background-color: #2a373b;
  z-index: -1;
}

details > summary {
  list-style: none;
}

details summary::-webkit-details-marker {
  display: none;
}

.roster-container {
  border-left: 50px solid #2a373b;
  padding-left: 25px;
}
.roster-container h3 {
  font-size: 1.8rem;
}
.roster-container .roster-unit {
  margin-bottom: 4rem;
}
.roster-container .roster-unit details[open] > .unit-name #chevron img {
  transform: rotate(180deg);
}
.roster-container .roster-unit p:first-of-type {
  margin-top: 20px;
}
.roster-container .roster-unit:last-child {
  margin: 0;
}
.roster-container .roster-unit .unit-name {
  outline: none;
  font-size: 1.4rem;
  font-weight: bold;
  cursor: pointer;
}
.roster-container .roster-unit .unit-name img {
  margin-right: 15px;
}
.roster-container .roster-unit .unit-name #chevron img {
  margin-left: 25px;
}
.roster-container .roster-unit .unit-social {
  display: flex;
  align-items: center;
}
.roster-container .roster-unit .unit-social a {
  margin-right: 20px;
}
.roster-container .roster-unit .unit-social img {
  max-height: 25px;
  width: auto;
}

.achievments-container h3 {
  font-size: 1.8rem;
}
.achievments-container .achievment-listing {
  margin-bottom: 4rem;
}
.achievments-container .achievment-listing p:first-of-type {
  margin-top: 20px;
}
.achievments-container .achievment-listing .achievment-title {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
}
.achievments-container .achievment-listing .achievment-title img {
  margin-right: 15px;
}
.achievments-container .achievment-listing:last-child {
  margin: 0;
}

/* Featured */
.creator-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 50px;
}
.creator-grid .creator {
  background-color: #2a373b;
}
.creator-grid .creator .card-head img {
  width: 100%;
}
.creator-grid .creator .card-body {
  padding: 30px;
}
.creator-grid .creator .card-body .card-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.creator-grid .creator .card-body .card-title .yt-title {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  padding-left: 1.5rem;
}
.creator-grid .creator .card-body .card-title .yt-active::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #2cf9c1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.creator-grid .creator .card-body .card-title .card-social a {
  margin-right: 15px;
}
.creator-grid .creator .card-body .card-title .card-social a:last-child {
  margin: 0;
}
.creator-grid .creator .card-body hr {
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 20px 0;
}
.creator-grid .creator .card-body p:last-of-type {
  margin: 0;
}

/* Contact */
#contact-form {
  width: 100%;
}
#contact-form .form__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
#contact-form .form__item label {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 15px;
}
#contact-form .form__item input:not([type=checkbox]) {
  width: 100%;
  padding: 10px 15px;
  background-color: #414d51;
  color: #fff;
  border: none;
  font-family: mainFont;
  font-size: 1.3rem;
  transition: box-shadow 0.25s;
}
#contact-form .form__item input:not([type=checkbox]):active, #contact-form .form__item input:not([type=checkbox]):focus {
  outline: none;
  border: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.25s;
}
#contact-form .form__item input[type=checkbox] {
  width: 30px;
  height: 30px;
  margin-right: 20px;
  float: left;
}
#contact-form .form__item .pw-no-select {
  display: block;
  margin-top: 3px;
}
#contact-form .form__item textarea {
  width: 100%;
  padding: 10px 15px;
  min-height: 250px;
  background-color: #414d51;
  color: #fff;
  font-size: 1.3rem;
  border: none;
  resize: none;
}
#contact-form .form__item textarea:active, #contact-form .form__item textarea:focus {
  outline: none;
  border: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  transition: box-shadow 0.25s;
}
#contact-form .form__item #Inputfield_submit {
  max-width: 250px;
  padding: 10px 0;
  background-color: #88cfe9;
  color: #212930;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  outline: none;
}
#contact-form #wrap_Inputfield_scf-website,
#contact-form #wrap_scf-date,
#contact-form .field__header--hidden {
  display: none;
}

.contact-info {
  display: flex;
  align-items: start;
}
.contact-info img {
  margin-right: 20px;
}
.contact-info a {
  color: #fff;
  text-decoration: underline;
}
.contact-info a:hover {
  color: #fff;
}

/* Programme Table */
.programme_page {
  flex: 1;
}

.programme-table {
  width: 100%;
}
.programme-table .programme {
  width: 100%;
}
.programme-table .programme th {
  background-color: #414d51;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: left;
  padding: 15px 25px;
}
.programme-table .programme td {
  font-size: 1.1rem;
  text-align: left;
  padding: 25px;
  max-width: 400px;
}
.programme-table .programme .broadcast {
  display: flex;
  align-items: center;
}
.programme-table .programme .broadcast a {
  display: block;
  margin-right: 25px;
}
.programme-table .programme .broadcast a img {
  max-height: 30px;
  width: auto;
}
.programme-table .programme .broadcast a:last-of-type {
  margin: 0;
}
.programme-table .programme tr {
  border-bottom: 1px solid #414d51;
}
.programme-table .programme tr:last-of-type {
  border: none;
}

/** Media Queries **/
@media screen and (max-width: 1400px) {
  .team-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .container {
    width: 100%;
  }
  .teams_section-home .teams_slider-cont .teams_slide h3 {
    font-size: 1.6rem;
  }
  .splide__arrow {
    font-size: 1.5rem;
  }
  .match_item {
    background-position: right;
  }
  .match_item-logo img {
    width: 5.5rem;
    aspect-ratio: 1/1;
  }
  .match_item-logo h3 {
    font-size: 2.2rem;
    margin: 0 1.5rem;
  }
  .match_item-date {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .match_item-date h2 {
    font-size: 2rem;
    margin-top: 0;
  }
  .match_item-date h3 {
    font-size: 1.5rem;
    margin-top: -0.5rem;
    text-align: center;
  }
  .scedule_page-sch_cont {
    width: 60%;
  }
  .scedule_page-sch_item {
    width: 100%;
  }
  .schedule_page-match_item {
    height: 300px;
  }
  .merch_slider {
    width: 70%;
  }
  .merch-holder {
    font-size: 1.5rem;
  }
  .achiev_item {
    width: 80%;
  }
  .team_player_item .pl_item_cont .player_name h3 {
    font-size: 2rem;
    margin-right: 1rem;
  }
  .team_player_item .pl_item_cont .player_name img {
    width: 2.5rem;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 1200px) {
  .logo .logo_text {
    font-size: 2rem;
  }
  .nav-menu .menu-item a {
    font-size: 2rem;
  }
  .creator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-title {
    font-size: 4rem;
  }
  .teams_section-home .teams_slider-cont .teams_slide h3 {
    font-size: 1.24rem;
  }
  .schedule_container {
    width: 90%;
  }
  .schedule_item {
    width: 53%;
  }
  .scedule_page-sch_cont {
    width: 70%;
  }
  .scedule_page-sch_item {
    width: 100%;
  }
  .merch_title {
    font-size: 6rem;
  }
  .buy_btn {
    width: 300px;
  }
  .buy_btn h4 {
    font-size: 1.1rem;
  }
  .buy_btn a {
    font-size: 3rem;
  }
  .sm-icon {
    margin-right: 2rem;
  }
  .sm-icon img {
    width: 5rem;
    aspect-ratio: 1/1;
  }
  .team_title {
    margin-bottom: 3rem;
  }
  .team_title h1 {
    font-size: 4.8rem;
  }
  .team_title h4 {
    margin-bottom: -3.5rem;
  }
  .roster {
    font-size: 5rem !important;
    margin-top: 4rem !important;
    margin-bottom: 2rem !important;
  }
  .team_player_item .pl_item_cont .player_name h3 {
    font-size: 1.8rem;
    margin-right: 1rem;
  }
  .team_player_item .pl_item_cont .player_name img {
    width: 2.2rem;
    aspect-ratio: 1/1;
  }
  .team_player_slider {
    width: 90%;
    margin: 0 auto;
  }
  .team_player_cont {
    width: 80%;
    margin: 0 auto;
  }
  .splide__arrow {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 991px) {
  .logo .logo_text {
    font-size: 1.5rem;
  }
  .nav-menu .menu-item a {
    font-size: 1.5rem;
  }
  .roster-container {
    border: none;
    margin-bottom: 8rem;
    padding-left: 15px;
  }
  .teams_section-home {
    width: 100%;
    margin: 0 auto;
    padding: 2rem !important;
  }
  .teams_section-home .teams__container {
    width: 100%;
  }
  .teams_section-home .teams__container .teams_slider-cont {
    width: 90%;
  }
  .teams_section-home .teams__container .teams_slider-cont .teams_slide h3 {
    font-size: 15px;
  }
  .splide__arrow {
    font-size: 1.1rem;
  }
  .teams_arrow-prev {
    left: -0.6rem !important;
  }
  .teams_arrow-next {
    right: -0.6rem !important;
  }
  .section_title,
  .teams_title {
    font-size: 6.5rem;
  }
  .merch_title {
    font-size: 5rem;
  }
  .merch-holder {
    font-size: 1.5rem;
  }
  .schedule_container {
    display: block;
    width: 70%;
  }
  .schedule_item {
    width: 100%;
  }
  .twitter_feeds {
    width: 100%;
  }
  .schedule_page-match_item {
    height: 250px;
  }
  .buy_btn {
    width: 200px;
  }
  .buy_btn h4 {
    font-size: 1.5rem;
  }
  .buy_btn a {
    font-size: 2.3rem;
  }
  .sm-icon {
    margin-right: 2rem;
  }
  .sm-icon img {
    width: 4rem;
    aspect-ratio: 1/1;
  }
  .sponsors_title p {
    font-size: 2rem;
  }
  .sponsors_title a {
    font-size: 1.3rem;
  }
  .sponsors_title a .fa-chevron-right {
    font-size: 1rem;
  }
  .team_title {
    margin-bottom: 3rem;
  }
  .team_title h1 {
    font-size: 3.9rem;
  }
  .team_title h4 {
    margin-bottom: -3.5rem;
  }
  .team_player_item .player_name h3 {
    font-size: 1.2rem;
  }
  .team_player_item .player_name img {
    width: 1.5rem;
  }
  .roster {
    font-size: 4rem !important;
  }
  .achiev_item p {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 14px;
  }
  .text-right {
    text-align: center !important;
  }
  .team-cards {
    grid-template-columns: repeat(1, 1fr);
  }
  .creator-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .merch-holder {
    font-size: 1rem;
  }
  .merch_flex {
    flex-direction: column-reverse;
  }
  .merch_slider {
    width: 85%;
  }
  .merch_cont {
    float: unset;
    width: 100%;
  }
  .arrow-prev {
    left: -3.5rem;
  }
  .arrow-next {
    right: -3.5rem;
  }
  .buy_btn {
    width: 100%;
    margin-top: 3rem;
  }
  .buy_btn h4 {
    font-size: 1.5rem;
  }
  .buy_btn a {
    font-size: 3.5rem;
    word-spacing: 1.6rem;
  }
  .sponsoring {
    width: 60% !important;
  }
  aside {
    display: none;
  }
  .copyright-mark {
    float: none !important;
  }
  .sub-nav {
    float: none !important;
    margin-top: 2rem;
  }
  .teams_section-home {
    width: 100%;
    margin: 0 auto;
    padding: 2rem !important;
  }
  .teams_section-home .teams_slider-cont {
    width: 90%;
  }
  .section_title,
  .teams_title {
    font-size: 5rem;
    -webkit-text-stroke-width: 2px;
  }
  .merch_title {
    font-size: 3.5rem;
  }
  .schedule_container {
    width: 85%;
  }
  .schedule_item-title h1 {
    font-size: 2rem;
  }
  .sm-icon {
    margin-right: 1rem;
  }
  .sm-icon img {
    width: 3rem;
    aspect-ratio: 1/1;
  }
  .sponsors_item {
    flex-direction: column;
    justify-content: unset;
    margin-bottom: 5rem;
    align-items: center;
  }
  .sponsors_item-img {
    margin-bottom: 2rem;
    width: 40%;
  }
  .sponsors_item-content {
    width: 90%;
  }
  .team_title {
    margin-bottom: 3rem;
    flex-direction: column-reverse;
  }
  .team_title div {
    width: 100%;
    text-align: center;
  }
  .team_title img {
    margin-bottom: 2rem;
  }
  .team_title h1 {
    font-size: 4.5rem;
    margin-bottom: 0rem;
  }
  .team_title h4 {
    margin-bottom: -3.5rem;
  }
  .roster {
    font-size: 3.5rem !important;
  }
  .team_player_item .player_name h3 {
    font-size: 1.5rem;
  }
  .team_player_item .player_name img {
    width: 2rem;
  }
  .team_player_prev {
    left: -3.5rem;
  }
  .team_player_next {
    right: -3.5rem;
  }
  .achiev_item {
    width: 90%;
  }
  footer {
    font-size: 1.5rem;
    padding: 1rem 0;
  }
  footer .container {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  footer .container ul {
    margin: 0.5rem 0;
  }
}
@media screen and (max-width: 530px) {
  .section_title,
  .teams_title {
    font-size: 3rem;
    -webkit-text-stroke-width: 1px;
  }
  .merch_title {
    font-size: 2.2rem;
  }
  .match_item {
    background-position: center;
  }
  .match_item-title h2 {
    font-size: 2rem;
  }
  .match_item-title h3 {
    font-size: 1.5rem;
  }
  .match_item-logo {
    position: relative;
    top: 6.5rem;
    left: unset;
    width: 220px;
    margin: 0 auto;
  }
  .match_item-logo img {
    width: 5rem;
    aspect-ratio: 1/1;
  }
  .match_item-logo h3 {
    font-size: 2rem;
    margin: 0 2rem;
  }
  .twitch_logo {
    top: unset;
    bottom: 1.5rem;
    right: 1.5rem;
  }
  .match_item-date {
    bottom: 1rem;
    left: 1.5rem;
    color: black;
  }
  .match_item-date h2 {
    font-size: 2rem;
    margin-top: 0;
  }
  .match_item-date h3 {
    font-size: 1.5rem;
    margin-top: -0.5rem;
    text-align: left;
  }
  .buy_btn {
    width: 100%;
  }
  .buy_btn h4 {
    font-size: 1.3rem;
  }
  .buy_btn a {
    font-size: 3rem;
  }
  .splide__arrow {
    font-size: 1rem;
  }
  .arrow-prev {
    left: -2.5rem;
  }
  .arrow-next {
    right: -2.5rem;
  }
  .sm-icon {
    margin-right: 0.5rem;
    padding: 0.5rem;
  }
  .sm-icon img {
    width: 2rem;
    aspect-ratio: 1/1;
  }
  .team_title img {
    width: 50%;
  }
  .team_title h1 {
    font-size: 3.7rem;
  }
  .team_title h4 {
    margin-bottom: -3.5rem;
  }
  .roster {
    font-size: 3rem !important;
    margin-bottom: 1rem !important;
  }
  .team_player_item .pl_item_cont .player_name h3 {
    font-size: 1.1rem;
    margin-right: 1rem;
  }
  .team_player_item .pl_item_cont .player_name img {
    width: 1.5rem;
    aspect-ratio: 1/1;
  }
  .team_achiev .roster {
    font-size: 2rem !important;
  }
  .team_player_prev {
    left: -2.5rem;
  }
  .team_player_next {
    right: -2.5rem;
  }
}/*# sourceMappingURL=style.min.css.map */