/* Typography & Site Defaults */
:root {
  --theme-primary: #222294;
  --theme-secondary: #F37621;
  --theme-tertiary: #FFBC5D;
  --theme-quaternary: #2A2A2A;

  --theme-white: #fff;
  --theme-gradient-primary: linear-gradient(0deg, var(--theme-secondary) 0%, var(--theme-tertiary) 100%);
  --theme-gradient-secondary: linear-gradient(180deg, #D9D9D9 0%, #FFF 100%);

  /* Sections */
  --section-spacing: 120px;

  /* Fonts */
  --font-primary: 'Anton', sans-serif;
  --font-secondary: "Outfit", sans-serif;

  --font-size-sm: clamp(12.8px, 0.05vw + 12.61px, 13.5px);
  --font-size-base: clamp(18px, 1.1vw + 13px, 20px);
  --font-size-md: clamp(21px, 0.971vw + 18.6375px, 24.85px);
  --font-size-lg: clamp(28px, 1.602vw + 10.25px, 41px);
  --font-size-xl: clamp(32px, 2.0313vw + 13px, 52px);
  --font-size-xxl: clamp(50px, 27.5px + 4.3vw, 110px);

  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  font-weight: 400;
}

#dng-wrapper {
    background: var(--theme-gradient-secondary);
}

/* Navbar */
.hide-section {
    display: none;
}

.navbar {
    border-bottom: 8px solid var(--theme-primary);
}

#mobileheader-639685 .header-content-wrap >*:not(.nav-bar) {
    color: var(--theme-secondary);
}

/* Footer */
.bg-footer {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("/Portals/0/Images/footer_background.png");
}

.footer {
    display: grid;
    grid-template-columns: 1fr 0.25fr;
    gap: 10px;
}

.footer-list {
    list-style-type: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0;
}

.footer-list li a {
    color: var(--theme-white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: var(--font-size-md);
    font-family: var(--font-primary);
    font-weight: 500;
    line-height: 32px;
    transition: all 250ms ease;
}

.footer-list li a:hover {
    color: var(--theme-secondary);
}

/* Typography */
h1,
h2 {
  font-family: var(--font-primary);
  font-size: var(--font-size-xxl);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 2px;
  margin: 0 0 0.5em;
}

h3 {
  font-family: var(--font-primary);
  font-size: var(--font-size-xl);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--font-size-md);
  letter-spacing: 0;
  margin: 0 0 0.5em;
}

p,
ol,
ul {
  font-family: var(--font-secondary);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.56;
}

p a,
li a,
dd a {
  font-weight: bolder;
}

.bg-primary p a,
.bg-primary li a,
.bg-primary dd a {
  color: var(--theme-secondary);
}


[class^="heading"],
[class*="heading"] {
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 600;
  margin: 0 0 0.5em;
}

[class^="heading"].margin-top,
[class*="heading"].margin-top {
  margin-top: 0.75em;
}

.heading-primary {
  font-family: var(--font-primary);
  font-size: var(--font-size-xxl);
  color: var(--theme-primary);
  text-transform: uppercase;
}

.heading-primary>span,
h2>span,
h1>span {
  color: var(--theme-secondary);
}

.heading-secondary {
  font-family: var(--font-primary);
  font-size: var(--font-size-xl);
  color: var(--theme-primary);
  text-transform: uppercase;
}

.heading-tertiary {
  font-family: var(--font-primary);
  font-size: var(--font-size-md);
  color: var(--theme-primary);
  font-weight: 800;
}

blockquote {
  font-size: var(--font-size-base);
  color: var(--theme-primary);
  font-style: normal;
  padding: 0;
  border: none;
}

blockquote cite {
  font-size: inherit;
  font-weight: 700;
  color: inherit;
  margin: 1em 0 0 2em;
}

.rotate-text {
    width: max-content;
    transform: rotate(-90deg);
    letter-spacing: 2px;
    opacity: 0.5;
}

.gradient-text {
    background-image: var(--theme-gradient-primary);
    color: transparent;
    background-clip: text;
}

.underline-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 500ms ease;
}

.underline-link:hover:after {
    width: 100%;
}

/* Utility Classes */
.color-primary,
a.color-primary {
  color: var(--theme-primary) !important;
  fill: var(--theme-primary);
}

.font-size-sm {
  font-size: var(--font-size-sm);
}

.font-size-base {
  font-size: var(--font-size-base);
}

.font-size-md {
  font-size: var(--font-size-md);
}

.font-size-lg {
  font-size: var(--font-size-lg);
}

.font-size-xl {
  font-size: var(--font-size-xl);
}

.font-size-xxl {
  font-size: var(--font-size-xxl);
}

[class^="btn"] {
  line-height: 1.25rem;
  letter-spacing: 1.5px;
  font-size: 1.0625rem;
  font-weight: 900;
  font-family: var(--font-secondary);
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 20px 34px;
  margin: 3px;
  text-align: center;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  border-radius: 40px;
  transition: all .3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}

[class^="btn"]:hover {
  transition: all .3s cubic-bezier(0.420, 0.000, 1.000, 1.000);
}

.btn-primary {
  background-color: var(--theme-primary);
  color: white !important;
}

.btn-primary:hover {
  background-color: var(--theme-secondary);
}

.btn-secondary {
  background-color: var(--theme-secondary);
  color: white !important;
}

.btn-secondary:hover {
  background-color: var(--theme-primary);

}

/* Backgrounds */
.bg-grainy {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("/Portals/0/Images/grainy_background.png");
}

.bg-intensity {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url("/Portals/0/Images/intensity_img.png");
}

.bg-schedule {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("/Portals/0/Images/schedule_img.png");
}

/* Internal Page Styles */
.int-hero {
  padding-top: 240px;
  display: flex !important;
  align-items: center;
  min-height: 67vh;
  background-image: url("/Portals/0/ThemePluginPro/uploads/2023/1/18/Page-Title-bg.jpg");
  background-position: center;
  background-repeat: repeat;
  background-size: cover;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 42, 42, 0.8);
}

.hero-img {
    position: absolute;
    z-index: 999;
}

.hero-img.left {
    bottom: 0;
    left: 0;
}

.hero-img.right {
    bottom: 0;
    right: 0;
}

/* Team Cards */
.teams {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.team {
    width: 250px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.team > div {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.team .logo {
    border-radius: 15px;
    margin: 0 auto;
}

/* Schedule */
.schedule-items {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
    justify-content: space-between;
}

.schedule-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 15px;
    background-color: var(--theme-quaternary);
    color: var(--theme-white);
}

.schedule-item h3, .schedule-item p {
    color: var(--theme-white);
    margin: 0;
}

.schedule-info {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 3rem 3rem 1rem;
}

.schedule-title {
    display: grid;
    grid-template-columns: 0.25fr 1fr;
    align-items: center;
    gap: 1rem;
}

.schedule-date {
    text-align: center;
}

.schedule-details {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: end;
    padding: 10px 2rem 5px;
    border-top: 1px solid var(--theme-white);
}

.schedule-details > a {
    display: inline-flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    text-decoration: none;
    color: var(--theme-white);
    position: relative;
}

/* Leaderboard */
.leaderboard {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.leaderboard .item {
    width: 100%;
    display: grid;
    grid-template-columns: 0.25fr 0.5fr 1fr;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    border: 1px solid var(--theme-quaternary);
    padding: 10px;
}

.leaderboard .item * {
    display: block;
    margin: 0 auto;
}

@media screen and (max-width: 1360px) {
    .bg-intensity {
        background-size: contain;
    }
}

@media screen and (max-width: 1024px) {
    .hero-img {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .rotate-text {
        transform: rotate(0deg);
        margin-bottom: 20px !important;
    }

    .footer {
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
    }

    .footer-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        gap: 10px;
        order: 2;
    }

    .teams {
        justify-content: center;
        gap: 10px;
    }

    .schedule-info {
        flex-direction: column;
        gap: 10px;
        padding: 1rem;
    }

    .schedule-title {
        grid-template-columns: repeat(1, 1fr);
        text-align: center;
    }

    .schedule-title img {
        margin: 0 auto;
    }
}



