/* IMPORT FONTS */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&display=swap");

/* LANDING PAGE CSS */
/* BEGIN - NAVIGATION BAR */
/* replace event/org name with org logo */
.js-top-page-title {
  display: inline-block;
  width: 300px;
  height: 70px;

  background-image: url("https://d2y9d0ry7vx6k5.cloudfront.net/events/24719/images/lpi_3ixrzIW3yZ.png");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;

  /* Visually hide the existing text */
  font-size: 0;
  color: transparent;
}
/* navigation bar background color */
body > header {
background-color: #ffffff !important; /* change the HEX code (ffffff) only */
}
/* navigation bar links */
/* this adjusts font color for the event/organization name */
body > header > div > div > h1 {
color: #47517f !important; /* change the HEX code (47517f) only */
}
/* this adjusts font color for other links */
body > header > div > nav > div, body > header > div > nav > div > div.b3.text-\[\#555\] > a {
  color: #47517f !important; /* change the HEX code (47517f) only */
}
/* this adjusts the menu button colors */
body > header > div > nav > button {
background-color: #e54718 !important; /* changes button color. change the HEX code (e54718) only */
color: #ffffff !important; /* changes font color. change the HEX code (ffffff) only */
}
/* END - NAVIGATION BAR */
/* 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) */

/* EVENT INFORMATION SECTION */
.event-information {
  width: 100%;
  margin: 0;
  padding: 70px 24px;
  overflow: hidden;
  background-color: #fff7f0;
  font-family: "Montserrat", Arial, sans-serif;
  text-align: center;
}

.event-information,
.event-information * {
  box-sizing: border-box;
}

.event-information-inner {
  width: min(1050px, 100%);
  margin: 0 auto;
}

/* EVENT HIGHLIGHTS — STACKED ON ALL SCREEN SIZES */
.event-highlights {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  margin: 0 0 38px;
  padding: 20px 32px;
  background-color: #244e70;
}

.event-highlight {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 75px;
  padding: 18px 10px;
  align-items: center;
  justify-content: center;
  overflow-wrap: break-word;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.event-highlight:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 15%;
  bottom: 0;
  width: 70%;
  height: 2px;
  background-color: #51c9f4;
}

/* DATE AND LOCATION */
.event-details-banner {
  position: relative;
  width: 100%;
  margin: 0 0 38px;
  padding: 27px 85px;
  background-color: #ff8d16;
}

.event-details-banner::before,
.event-details-banner::after {
  content: "★";
  position: absolute;
  top: 50%;
  color: #47517f;
  font-size: 25px;
  line-height: 1;
  transform: translateY(-50%);
}

.event-details-banner::before {
  left: 32px;
}

.event-details-banner::after {
  right: 32px;
}

.event-date {
  margin: 0 0 6px;
  overflow-wrap: break-word;
  color: #47517f;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-location {
  margin: 0;
  overflow-wrap: break-word;
  color: #47517f;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

/* PURCHASE TICKETS BUTTON */
.purchase-tickets-button {
  display: inline-block;
  max-width: 100%;
  padding: 17px 34px;
  border: 4px solid #47517f;
  border-radius: 0;
  background-color: #e54718;
  box-shadow: 8px 8px 0 #244e70;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.purchase-tickets-button:hover,
.purchase-tickets-button:focus {
  background-color: #47517f;
  color: #ffffff;
  box-shadow: 4px 4px 0 #244e70;
  transform: translate(4px, 4px);
}

/* MOBILE */
@media screen and (max-width: 600px) {
  .event-information {
    padding: 50px 20px;
  }

  .event-highlights {
    padding: 20px;
  }

  .event-details-banner {
    padding: 24px 45px;
  }

  .event-details-banner::before,
  .event-details-banner::after {
    font-size: 22px;
  }

  .event-details-banner::before {
    left: 12px;
  }

  .event-details-banner::after {
    right: 12px;
  }

  .event-date {
    font-size: 22px;
  }

  .event-location {
    font-size: 18px;
  }

  .purchase-tickets-button {
    width: calc(100% - 8px);
    padding: 17px 20px;
    font-size: 18px;
  }
}
/* END - EVENT INFORMATION */
/* BEGIN - ABOUT THE ORGANIZATION SECTION */
.about-organization {
  width: 100%;
  padding: 80px 24px;
  overflow: hidden;
  background-color: #fff7f0;
  font-family: "Montserrat", Arial, sans-serif;
}

.about-organization,
.about-organization * {
  box-sizing: border-box;
}

.about-organization-inner {
  width: min(1050px, 100%);
  margin: 0 auto;
}

/* INTRODUCTION */
.about-organization-intro {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.5fr);
  gap: 55px;
  margin-bottom: 55px;
  align-items: center;
}

/* LOGO */
.about-logo-container {
  min-height: 245px;
  padding: 35px;
  border: 5px solid #47517f;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  box-shadow: 12px 12px 0 #e54718;
}

.about-logo {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
}

/* INTRODUCTORY CONTENT */
.about-eyebrow {
  margin: 0 0 12px;
  color: #e54718;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-title {
  margin: 0 0 22px;
  color: #47517f;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-description {
  margin: 0;
  color: #333333;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
}

/* ORGANIZATION HIGHLIGHTS */
.about-highlights {
  display: grid;
  gap: 24px;
}

.about-highlight {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  background-color: #244e70;
  color: #ffffff;
}

.about-highlight-number {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  background-color: #e54718;
  color: #ffffff;
  font-size: 25px;
  font-weight: 900;
}

.about-highlight-content {
  padding: 30px 35px;
}

.about-highlight-content h3 {
  margin: 0 0 14px;
  color: #51c9f4;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.about-highlight-content p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.about-highlight-content p + p {
  margin-top: 16px;
}

/* MOBILE */
@media screen and (max-width: 700px) {
  .about-organization {
    padding: 55px 20px;
  }

  .about-organization-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-logo-container {
    width: calc(100% - 12px);
    max-width: 400px;
    margin: 0 auto;
    padding: 28px;
  }

  .about-intro-content {
    text-align: center;
  }

  .about-title {
    font-size: 23px;
  }

  .about-highlight {
    grid-template-columns: 1fr;
  }

  .about-highlight-number {
    min-height: 55px;
  }

  .about-highlight-content {
    padding: 26px 22px;
    text-align: center;
  }

  .about-highlight-content h3 {
    font-size: 20px;
  }

  .about-description,
  .about-highlight-content p {
    font-size: 18px;
  }
}
/* END - ABOUT THE ORGANIZATION SECTION */
/* BEGIN - THANK YOU TO OUR SPONSORS HEADING */
.sponsor-heading {
  display: flex;
  width: min(1050px, 100%);
  margin: 0 auto 40px;
  padding: 25px 35px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background-color: #ff8d16;
  font-family: "Montserrat", Arial, sans-serif;
  text-align: center;
}

.sponsor-heading h2 {
  margin: 0;
  color: #47517f;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.sponsor-heading-star {
  flex-shrink: 0;
  color: #47517f;
  font-size: 25px;
  line-height: 1;
}

/* MOBILE */
@media screen and (max-width: 600px) {
  .sponsor-heading {
    padding: 22px 18px;
    gap: 12px;
  }

  .sponsor-heading h2 {
    font-size: 20px;
  }

  .sponsor-heading-star {
    font-size: 20px;
  }
}
/* END - THANK YOU TO OUR SPONSORS HEADING */
/* 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 screen and (max-width: 600px) {
/* BEGIN - NAVIGATION BAR */
/* replace event/org name with org logo */
.js-top-page-title {
  display: inline-block;
  width: 200px;
  height: 70px;
}
/* END - NAVIGATION BAR */
/* BEGIN - SPONSOR SIZE */
/* key sponsors */
article:has(img[src*="sponsor_tqClrHUHzY.png"]) {
    width: 350px !important;
}

img[src*="sponsor_tqClrHUHzY.png"] {
    width: 100% !important;
    height: auto !important;
}
/* END - SPONSOR SIZE */
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media screen and (min-width: 600px) {
/* BEGIN - NAVIGATION BAR */
/* replace event/org name with org logo */
.js-top-page-title {
  display: inline-block;
  width: 200px;
  height: 70px;
}
/* END - NAVIGATION BAR */
/* BEGIN - SPONSOR SIZE */
/* key sponsors */
article:has(img[src*="sponsor_tqClrHUHzY.png"]) {
    width: 350px !important;
}

img[src*="sponsor_tqClrHUHzY.png"] {
    width: 100% !important;
    height: auto !important;
}
/* END - SPONSOR SIZE */
}

/* Medium devices (portrait tablets, 768px and up) */
@media screen and (min-width: 768px) and (orientation: portrait)  {
/* BEGIN - NAVIGATION BAR */
/* replace event/org name with org logo */
.js-top-page-title {
  display: inline-block;
  width: 300px;
  height: 70px;
}
/* END - NAVIGATION BAR */
/* BEGIN - SPONSOR SIZE */
/* key sponsors */
article:has(img[src*="sponsor_tqClrHUHzY.png"]) {
    width: 350px !important;
}

img[src*="sponsor_tqClrHUHzY.png"] {
    width: 100% !important;
    height: auto !important;
}
/* END - SPONSOR SIZE */

  }

/* Medium devices (landscape tablets, 768px and up) */
@media screen and (min-width: 768px) and (orientation: landscape) {
/* BEGIN - NAVIGATION BAR */
/* replace event/org name with org logo */
.js-top-page-title {
  display: inline-block;
  width: 300px;
  height: 70px;
}
/* END - NAVIGATION BAR */
/* BEGIN - SPONSOR SIZE */
/* key sponsors */
article:has(img[src*="sponsor_tqClrHUHzY.png"]) {
    width: 400px !important;
}

img[src*="sponsor_tqClrHUHzY.png"] {
    width: 100% !important;
    height: auto !important;
}
/* END - SPONSOR SIZE */
  }

/* Large devices (laptops/desktops/portrait ipad pro, 992px and up) */
@media screen and (min-width: 992px) and (orientation: portrait) {
/* BEGIN - NAVIGATION BAR */
/* replace event/org name with org logo */
.js-top-page-title {
  display: inline-block;
  width: 300px;
  height: 70px;
}
/* END - NAVIGATION BAR */
/* BEGIN - SPONSOR SIZE */
/* key sponsors */
article:has(img[src*="sponsor_tqClrHUHzY.png"]) {
    width: 400px !important;
}

img[src*="sponsor_tqClrHUHzY.png"] {
    width: 100% !important;
    height: auto !important;
}
/* END - SPONSOR SIZE */
  }

/* Large devices (laptops/desktops/landscape ipad pro, 992px and up) */
@media screen and (min-width: 992px) and (orientation: landscape) {
/* BEGIN - NAVIGATION BAR */
/* replace event/org name with org logo */
.js-top-page-title {
  display: inline-block;
  width: 300px;
  height: 70px;
}
/* END - NAVIGATION BAR */
/* BEGIN - SPONSOR SIZE */
/* key sponsors */
article:has(img[src*="sponsor_tqClrHUHzY.png"]) {
    width: 400px !important;
}

img[src*="sponsor_tqClrHUHzY.png"] {
    width: 100% !important;
    height: auto !important;
}
/* END - SPONSOR SIZE */
  }

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media screen and (min-width: 1200px) {
/* BEGIN - NAVIGATION BAR */
/* replace event/org name with org logo */
.js-top-page-title {
  display: inline-block;
  width: 300px;
  height: 70px;
}
/* END - NAVIGATION BAR */
/* BEGIN - SPONSOR SIZE */
/* key sponsors */
article:has(img[src*="sponsor_tqClrHUHzY.png"]) {
    width: 400px !important;
}

img[src*="sponsor_tqClrHUHzY.png"] {
    width: 100% !important;
    height: auto !important;
}
/* END - SPONSOR SIZE */
  }


/* END - responsive behavior (auto adjust for different screen sizes) */