/* IMPORT FONTS */


/* LANDING PAGE CSS */
/* BEGIN - HIDES HERO 1 TEXT (Remove this section if you want the text above the hero 1 banner or for all other hero banners to show) */
#hero-container > div.hero-bg-color.flex.flex-col.items-center.gap-8.py-8.md\:py-16.contrast-background.light-background {
display: none !important;
}
/* END - HIDES HERO 1 TEXT (Remove this section if you want the text above the hero 1 banner or for all other hero banners to show) */
/* BEGIN - NAVIGATION BAR */
/* navigation bar background color */
body > header {
background-color: #2e4762 !important; /* change the HEX code (0f3051) only */
}
/* navigation bar links */
/* this adjusts font color for the event/organization name */
body > header > div > div > h1 {
color: #ffffff !important; /* change the HEX code (ffffff) only */
}
/* this adjusts font color for other links */
body > header > div > nav > div {
  color: #ffffff !important; /* change the HEX code (ffffff) only */
}
/* this adjusts the menu button colors */
body > header > div > nav > button {
background-color: #bfa064 !important; /* changes button color. change the HEX code (33b5c2) only */
color: #000000 !important; /* changes font color. change the HEX code (ffffff) only */
}
/* END - NAVIGATION BAR */
/* BEGIN - HOTEL SECTION BUTTON EDITS */
#content-block-114378 a.btn-primary.brand-shadow {
text-decoration: none !important; /* removes button underline */
font-size: 18px !important; /* changes button font size */
text-align: center !important; /* aligns button text center */
border-radius: 10px !important; /* button corner curvature */
background-color: #bfa064 !important; /* button background color change */
}
/* END - HOTEL SECTION BUTTON EDITS */
/* TICKET PAGE CSS */
/* BEGIN - ADD CUSTOM DIV FOR SPONSORSHIP LEVEL NOTES */
.sponsor .ticket-container:first-of-type {
  margin-top: 4rem;
}

.sponsor .ticket-container:first-of-type::before {
  content: "Program submissions are due by November 24th.";
  display: block;
  position: relative;
  top: -5rem;
  margin-bottom: -1rem;
  text-align: center;
  font-weight: 700;
  font-style: italic;
  border: 0;
  background: transparent;
  pointer-events: none;
}
/* END - ADD CUSTOM DIV FOR SPONSORSHIP LEVEL NOTES */

/* TICKET PAGE CSS */


/* DONATION PAGE CSS */


/* ALL PAGES */
/* BEGIN - responsive behavior (auto adjust for different screen sizes) */


/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {

}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {

  }

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {

  }

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

  }


/* END - responsive behavior (auto adjust for different screen sizes) */