/* LANDING PAGE CSS */
/* BEGIN - Hide hero banner text */
body > main > section:nth-child(1) > div {
display: none !important;
}
/* END - Hide hero banner text */
/* BEGIN - NAVIGATION BAR */
/* navigation bar background color */
body > header {
background-color: #ffffff !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: #000000 !important; /* change the HEX code (000000) only */
}
/* this adjusts font color for other links */
body > header > div > nav > div, body > header > div > nav > div > div.b3.text-\[\#555\] > a {
  color: #000000 !important; /* change the HEX code (000000) only */
}
/* this adjusts the menu button colors */
body > header > div > nav > button {
background-color: #000000 !important; /* changes button color. change the HEX code (000000) only */
color: #ffffff !important; /* changes font color. change the HEX code (ffffff) only */
}
/* END - NAVIGATION BAR */
/* BEGIN - Text padding */
/* Event info */
#content-block-28299 > div > div > p:nth-child(2), #content-block-28299 > div > div > p:nth-child(4), #content-block-28299 > div > div > p:nth-child(6) {
padding-bottom: 0px !important;
margin-bottom: 0px !important;
}

/* END - Text padding */


/* TICKET PAGE 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) {
/* BEGIN - IMAGE SPACING AND PADDING */
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(1),
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(2),
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(3) {
width: 100% !important;
margin: 10px !important;
}
/* END - IMAGE SPACING AND PADDING */
}
/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
/* BEGIN - IMAGE SPACING AND PADDING */
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(1),
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(2),
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(3) {
width: 100% !important;
margin: 10px !important;
}
/* END - IMAGE SPACING AND PADDING */
}
/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
/* BEGIN - IMAGE SPACING AND PADDING */
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(1),
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(2),
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(3) {
width: 28% !important;
margin: 10px !important;
}
/* END - IMAGE SPACING AND PADDING */
}
/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
/* BEGIN - IMAGE SPACING AND PADDING */
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(1),
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(2),
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(3) {
width: 28% !important;
margin: 10px !important;
}
/* END - IMAGE SPACING AND PADDING */
}
/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
/* BEGIN - IMAGE SPACING AND PADDING */
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(1),
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(2),
#content-block-116787 > div > div > p:nth-child(15) > span > img:nth-child(3) {
width: 28% !important;
margin: 10px !important;
}
/* END - IMAGE SPACING AND PADDING */
}
/* END - RESPONSIVE BEHAVIOR (AUTO ADJUST FOR DIFFERENT SCREEN SIZES)*/