/* 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 */
body > header {
background-color: #1b2a4a !important;
}
/* font color */
body > header > div > div > h1 {
color: #fcca10 !important;
}
body > header > div > nav > div {
  color: #ffffff !important;
}
/* menu color */
body > header > div > nav > button {
background-color: #edbe10 !important;
color: #1b2a4a !important;
}
/* END - Nav bar */
/* BEGIN - TEXT PADDING */
/* event information */
/* date, venue, attire */
#content-block-108268 > div > div.order-2.text-container.uses-alignment.text-center.py-8 > div > p:nth-child(3),
#content-block-108268 > div > div.order-2.text-container.uses-alignment.text-center.py-8 > div > p:nth-child(5){
margin-bottom: 0px !important;
padding-bottom: 0px !important;
}
/* END - TEXT PADDING */

/* 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) {
/* BEGIN - REMOVE EVENT INFO IMAGE */
#content-block-108268 > div > div.order-1.image-container > div {
display: none;
}
/* END - REMOVE EVENT INFO IMAGE */
/* BEGIN - ABOUT IMAGE PADDING */
#content-block-108288 > div > div > p:nth-child(9) img{
margin-bottom: 30px;
 }
/* END - ABOUT IMAGE PADDING */
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
/* BEGIN - REMOVE EVENT INFO IMAGE */
#content-block-108268 > div > div.order-1.image-container > div {
display: none;
}
/* END - REMOVE EVENT INFO IMAGE */
/* BEGIN - ABOUT IMAGE PADDING */
#content-block-108288 > div > div > p:nth-child(9) img{
margin-bottom: 30px;
 }
/* END - ABOUT IMAGE PADDING */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
/* BEGIN - SHOW EVENT INFO IMAGE */
#content-block-108268 > div > div.order-1.image-container > div {
display: block;
}
/* END - SHOW EVENT INFO IMAGE */
/* BEGIN - ABOUT IMAGE PADDING */
#content-block-108288 > div > div > p:nth-child(9) img{
margin-bottom: 0px;
 }
/* END - ABOUT IMAGE PADDING */
  }

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
/* BEGIN - SHOW EVENT INFO IMAGE */
#content-block-108268 > div > div.order-1.image-container > div {
display: block;
}
/* END - SHOW EVENT INFO IMAGE */
/* BEGIN - ABOUT IMAGE PADDING */
#content-block-108288 > div > div > p:nth-child(9) img{
margin-bottom: 0px;
 }
/* END - ABOUT IMAGE PADDING */
  }

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
/* BEGIN - SHOW EVENT INFO IMAGE */
#content-block-108268 > div > div.order-1.image-container > div {
display: block;
}
/* END - SHOW EVENT INFO IMAGE */
/* BEGIN - ABOUT IMAGE PADDING */
#content-block-108288 > div > div > p:nth-child(9) img{
margin-bottom: 0px;
 }
/* END - ABOUT IMAGE PADDING */
  }


/* END - responsive behavior (auto adjust for different screen sizes) */