html {
  font-size: 62.5%;
}

*, ::after, ::before {
  box-sizing: border-box;
}

body {
  background-color: #fff;
  color: #242424;
  font-family: "Rubik", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  display: flex;
  flex-direction: column;
  max-width: 1980px;
}
body .skip-link {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  padding: 1.5rem;
  position: absolute;
  transform: translateY(-100%);
  z-index: 10000000;
}
body .skip-link:focus {
  transform: translateY(0%);
}
body h1, body h2, body h3, body h4, body h5, body h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
body h1 {
  font-size: 4rem;
}
body h2 {
  font-size: 3.5rem;
}
body h3 {
  font-size: 3rem;
}
body h4 {
  font-size: 2.5rem;
}
body h5 {
  font-size: 2.2rem;
}
body h6 {
  font-size: 2rem;
}
body p {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
body strong, body b {
  font-weight: 700;
}
body em, body i {
  font-style: italic;
}
body ol, body ul {
  margin-bottom: 2rem;
  padding-left: 3rem;
}
body ol > li {
  list-style-type: decimal;
}
body ul > li {
  list-style-type: disc;
}
@media (min-width: 992px) {
  body .container {
    margin: 0 auto;
  }
  body #site-header > .container {
    width: 80%;
  }
  body #main-content > .container,
  body #site-footer > .container {
    padding: 3rem 0;
    width: 75%;
  }
}
@media (max-width: 991px) {
  body .container {
    margin: 0 auto;
  }
  body #site-header > .container {
    width: 90%;
  }
  body #main-content > .container,
  body #site-footer > .container {
    padding: 3rem 0;
    width: 90%;
  }
}
body .column {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  body .flex-equal {
    display: flex;
    justify-content: space-between;
  }
  body .wrap {
    flex-wrap: wrap;
  }
  body .justify-center {
    justify-content: center;
  }
  body .two-column .column {
    width: calc(50% - 1.5rem);
  }
  body .two-column .column-quarter {
    width: calc(25% - 1.5rem);
  }
  body .two-column .column-three-quarter {
    width: calc(75% - 1.5rem);
  }
  body .three-column .column {
    width: calc(33.3333333333% - 1.5rem);
  }
}
body .align-left {
  text-align: left;
}
body .align-center {
  text-align: center;
}
body .align-right {
  text-align: right;
}
body .unstyled-list {
  margin-bottom: 0;
  padding-left: 0;
}
body .unstyled-list li {
  list-style-type: none;
}
body .button {
  display: inline-block;
  background-color: #dcb822;
  padding: 2rem;
  font-size: 2.5rem;
  border-radius: 5rem;
  color: #34003e;
  transition: 0.2s ease-in-out;
}
body .button:hover, body .button:focus {
  background-color: #333;
  color: #dcb822;
  font-weight: 700;
}
body .button-facebook {
  display: block;
  background-color: #dcb822;
  padding: 2rem;
  font-size: 2.5rem;
  border-radius: 5rem;
  color: #34003e;
  transition: 0.2s ease-in-out;
}
body .button-facebook:hover, body .button-facebook:focus {
  background-color: #1778f2;
  color: white;
  font-weight: 700;
}
body .button-instagram {
  display: block;
  background-color: #dcb822;
  padding: 2rem;
  font-size: 2.5rem;
  border-radius: 5rem;
  color: #34003e;
  transition: 0.2s ease-in-out;
}
body .button-instagram:hover, body .button-instagram:focus {
  background-image: linear-gradient(to top right, #ffdc7d, #f46f30, #c32aa3, #7232bd, #4c5fd7);
  color: white;
  font-weight: 700;
}
body #site-header {
  background-color: #34003e;
  width: 100%;
  padding-top: 1.5vh;
  padding-bottom: 1.5vh;
  position: sticky;
  top: 0;
  z-index: 1000;
}
@media (min-width: 992px) {
  body #site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 6rem;
  }
  body #site-header .container .site-brand img {
    background-color: transparent;
    box-shadow: 0 0 0 0 transparent;
    width: 7.5rem;
    border-radius: 10rem;
    transition: background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  }
  body #site-header .container .site-brand img:hover {
    background-color: #ba7210;
    box-shadow: 0 0 3px 2px #333;
  }
  body #site-header .container .desktop-navigation li {
    display: inline-block;
    position: relative;
  }
  body #site-header .container .desktop-navigation li.dropdown a .fas {
    transform: rotate(90deg); /* Point left initially */
    transition: transform 0.3s ease;
  }
  body #site-header .container .desktop-navigation li.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(10px);
  }
  body #site-header .container .desktop-navigation li.dropdown:hover a .fas {
    transform: rotate(0deg); /* Rotate down on hover */
  }
  body #site-header .container .desktop-navigation a {
    padding: 1rem 1.5rem;
    position: relative;
    font-size: 2.3rem;
    font-weight: 700;
    color: #dcb822;
    text-shadow: 0;
    transition: 0.2s ease-in-out;
  }
  body #site-header .container .desktop-navigation a:before, body #site-header .container .desktop-navigation a:after {
    background-color: transparent;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transition: transform 0.2s ease-in-out;
    width: 100%;
  }
  body #site-header .container .desktop-navigation a:hover:before, body #site-header .container .desktop-navigation a:focus:before {
    background-color: #dcb822;
    transform: scaleX(1);
  }
  body #site-header .container .desktop-navigation a:hover {
    color: white;
    background: radial-gradient(circle at bottom, #333, transparent, transparent);
    text-shadow: 2px 2px 3px #333;
  }
  body #site-header .container .desktop-navigation .dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  body #site-header .container .desktop-navigation .dropdown-content a {
    display: block;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    border-bottom: 1px solid #444; /* Add border between items */
  }
  body #site-header .container .desktop-navigation .dropdown-content a:hover {
    background-color: #111;
  }
  body #site-header .container .desktop-navigation .dropdown-content a:last-child {
    border-bottom: none; /* Remove border from the last item */
  }
  body #site-header .container .mobile-site-brand {
    display: none;
  }
}
@media (max-width: 991px) {
  body #site-header .site-brand {
    display: none;
  }
  body #site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  body #site-header .container .mobile-site-brand {
    display: block;
    padding-top: 1rem;
    padding-left: 3rem;
  }
  body #site-header .container .mobile-site-brand img {
    width: 7.5rem;
  }
  body #site-header .container .desktop-navigation {
    display: none;
  }
}
body #site-header a {
  color: #dcb822;
  text-decoration: none;
}
body #main-content {
  background-color: #dedede;
  margin-left: 10rem;
  margin-right: 10rem;
  position: relative;
  flex: 1; /* Make the main content flexible */
  display: flex; /* Use flexbox */
  flex-direction: column; /* Column layout */
  justify-content: center; /* Center content vertically */
}
@media (max-width: 991px) {
  body #main-content {
    margin-left: 0;
    margin-right: 0;
  }
  body #main-content .padding-mobile {
    height: 7rem;
  }
}
body #main-content .call-to-action {
  cursor: default;
}
body #main-content .call-to-action .cta-content {
  position: relative;
  text-align: center;
}
body #main-content .call-to-action .cta-content img {
  margin: auto;
  width: 100%;
  filter: brightness(50%);
}
body #main-content .call-to-action .cta-content .centered {
  display: inline;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
body #main-content .call-to-action .cta-content .centered h1 {
  color: #dcb822;
  text-shadow: 0.4rem 0.4rem 0.8rem #333;
}
@media (min-width: 992px) {
  body #main-content .call-to-action .cta-content .centered h1 {
    font-size: 6rem;
  }
}
@media (max-width: 991px) {
  body #main-content .call-to-action .cta-content .centered h1 {
    width: 100%;
    font-size: 4rem;
  }
}
body #main-content .home-page .home-picture {
  display: block;
  margin: auto;
  width: 60%;
}
body #main-content .league-info .button-centered {
  display: block;
  text-align: center;
  margin: auto;
}
@media (min-width: 992px) {
  body #main-content .league-info .button-centered {
    width: 40%;
  }
}
@media (max-width: 991px) {
  body #main-content .league-info .button-centered {
    width: 80%;
  }
}
@media (min-width: 992px) {
  body #main-content .location .map {
    width: 100%;
  }
}
@media (max-width: 991px) {
  body #main-content .location .map {
    width: 100%;
  }
}
@media (min-width: 992px) {
  body #main-content .events .upcoming-event {
    position: relative;
    margin: auto;
    width: 80%;
    padding: 3rem;
    border-radius: 5rem;
    background-color: transparent;
    transition: 0.2s ease-in-out;
  }
  body #main-content .events .upcoming-event .event-name {
    margin-top: 0;
  }
  body #main-content .events .upcoming-event .event-date {
    position: absolute;
    top: 5%;
    right: 10%;
  }
  body #main-content .events .upcoming-event .venue-link {
    color: white;
    font-weight: 1.8rem;
    transition: font-weight 0.2s ease-in-out;
  }
  body #main-content .events .upcoming-event .venue-link:hover {
    font-weight: 700;
  }
  body #main-content .events .upcoming-event:hover {
    margin-top: 0;
    background-color: #ba7210;
  }
  body #main-content .events .divider {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-bottom: 3px solid white;
  }
}
@media (min-width: 992px) {
  body #main-content .contact .button {
    text-align: center;
    margin: auto;
    margin-bottom: 1.5rem;
    width: 65%;
  }
  body #main-content .contact .phone-number {
    padding-left: 1.5rem;
    color: #ba7210;
    font-size: 3rem;
  }
  body #main-content .contact .email-link {
    padding-left: 1.5rem;
    color: #ba7210;
    font-size: 3rem;
    transition: 0.2s;
  }
  body #main-content .contact .email-link:hover, body #main-content .contact .email-link:focus {
    color: white;
    font-weight: 700;
  }
}
@media (max-width: 991px) {
  body #main-content .contact .button {
    text-align: center;
    margin: auto;
    margin-bottom: 1.5rem;
    width: 90%;
  }
  body #main-content .contact .phone-number {
    padding-left: 1.5rem;
    color: #242424;
    font-size: 3rem;
  }
  body #main-content .contact .email-link {
    padding-left: 1.5rem;
    color: #242424;
    font-size: 3rem;
    transition: 0.2s;
  }
  body #main-content .contact .email-link:hover, body #main-content .contact .email-link:focus {
    color: #ba7210;
    font-weight: 700;
  }
}
body #site-footer {
  position: relative;
}
@media (min-width: 992px) {
  body #site-footer {
    background-color: #333;
    padding: 5rem 7rem 1rem;
    min-height: 5rem;
    margin-top: auto;
    color: #fff;
  }
  body #site-footer .mobile-navigation {
    display: none;
  }
  body #site-footer .align-left {
    text-align: left;
  }
  body #site-footer .align-right {
    text-align: right;
  }
  body #site-footer a {
    color: #fff;
    font-size: 4rem;
    padding: 1.5rem;
  }
  body #site-footer a:hover {
    color: #34003e;
  }
}
@media (max-width: 991px) {
  body #site-footer {
    position: fixed;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }
  body #site-footer .desktop-footer {
    display: none;
  }
  body #site-footer .mobile-navigation {
    background-color: #333;
    width: 40rem;
    border-radius: 1rem;
    margin: 0;
    padding: 0;
    height: 7rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }
  body #site-footer .mobile-navigation ul {
    display: flex;
    width: 50rem;
  }
  body #site-footer .mobile-navigation ul li {
    position: relative;
    list-style: none;
    width: 7rem;
    height: 7rem;
    z-index: 1;
  }
  body #site-footer .mobile-navigation ul li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
  }
  body #site-footer .mobile-navigation ul li a .icon {
    position: relative;
    display: block;
    line-height: 7.5rem;
    font-size: 1.5em;
    text-align: center;
    transition: 0.2s;
    color: white;
  }
  body #site-footer .mobile-navigation ul li a .text {
    position: absolute;
    color: white;
    font-weight: 400;
    font-size: 0.75em;
    letter-spacing: 0.05em;
    transition: 0.2s;
    opacity: 0;
    transform: translateY(2rem);
  }
  body #site-footer .mobile-navigation ul li:nth-child(1).active ~ .indicator {
    transform: translateX(0rem);
  }
  body #site-footer .mobile-navigation ul li:nth-child(2).active ~ .indicator {
    transform: translateX(7rem);
  }
  body #site-footer .mobile-navigation ul li:nth-child(3).active ~ .indicator {
    transform: translateX(14rem);
  }
  body #site-footer .mobile-navigation ul li:nth-child(4).active ~ .indicator {
    transform: translateX(21rem);
  }
  body #site-footer .mobile-navigation ul li:nth-child(5).active ~ .indicator {
    transform: translateX(28rem);
  }
  body #site-footer .mobile-navigation ul li.active a .icon {
    transform: translateY(-3.5rem);
    color: #34003e;
  }
  body #site-footer .mobile-navigation ul li.active a .text {
    opacity: 1;
    transform: translateY(1rem);
  }
  body #site-footer .mobile-navigation .indicator {
    position: absolute;
    top: -50%;
    width: 7rem;
    height: 7rem;
    background: #dcb822;
    border-radius: 50%;
    transition: 0.5s;
  }
}/*# sourceMappingURL=main.css.map */