/* 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) */
body > main > section:nth-child(1) > div {
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 - NAV BAR */
/* nav bar color */
.top-menu {
background-color: #000000 !important;
}
/* font color */
body > header > div > div > h1 > a, body > header > div > nav > div > div {
color: #ffffff !important;
}
/* menu color */
.menu-toggle {
background-color: #33b5c2 !important;
}
/* END - NAV BAR */

/* TICKET PAGE CSS */
/* BEGIN - SPONSOR SECTION */
/* Insert text for sponsorship section under header */
.sponsor header {
  position: relative;
  overflow: visible;
  margin-bottom: 8.5rem;
}

.sponsor header::after {
  content: "To save on credit card processing fees, mail your sponsorship contribution to the Family Learning Center: 3164 34th Street  Boulder 80301.";
  position: absolute;
  top: calc(100% + 1rem);
  left: 0;
  right: 0;
  background: #fff;
  color: #000;
  padding: 1rem;
  border-radius: 0.5rem;
  z-index: 1;
}
.sponsor > * {
  position: relative;
  z-index: 0;
}
/* END - SPONSOR SECTION */
/* DONATION PAGE CSS */


/* ALL PAGES */
/* GUEST UPDATE LINK CSS */
/* GENERAL CSS */
a:-webkit-any-link {
/* all pages: changes all link colors to the same color */
/* color: #[HEX CODE-LINK COLOR-ALL PAGE LINKS] !important; */
/* all pages: removes underline from links on all pages */
/* text-decoration: none !important; */
}
/* BEGIN – RESPONSIVE BEHAVIOR (AUTO ADJUST FOR DIFFERENT SCREEN SIZES) */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
.img-org {
width: 100% !important;
}
.title-txt {
font-size: 35px !important;
}
/* Inserted Sponsor Ticket Text */
  .sponsor header {
    margin-bottom: 12rem;
  }
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
.img-org {
width: 100% !important;
}
.title-txt {
font-size: 35px !important;
}
/* Inserted Sponsor Ticket Text */
  .sponsor header {
    margin-bottom: 12rem;
  }
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
.img-org {
width: 40% !important;
}
.title-txt {
font-size: 40px !important;
}
/* Inserted Sponsor Ticket Text */
  .sponsor header {
    margin-bottom: 12rem;
  }
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
.img-org {
width: 40% !important;
}
.title-txt {
font-size: 40px !important;
}
/* Inserted Sponsor Ticket Text */
  .sponsor header {
    margin-bottom: 9rem;
  }
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
.img-org {
width: 40% !important;
}
.title-txt {
font-size: 40px !important;
}
/* Inserted Sponsor Ticket Text */
  .sponsor header {
    margin-bottom: 9rem;
  }
}
/* END - RESPONSIVE BEHAVIOR (AUTO ADJUST FOR DIFFERENT SCREEN SIZES)*/
