* {
margin: 0;
padding: 0;
box-sizing: border-box;
min-width: 0;
}
body {
font-family: 'Montserrat', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
h2 {
font-weight: 900;
font-size: 48px;
margin-bottom: 20px;
}
a { 
color: #003154;
}
.container {
width: 1200px;
display: flex;
flex-direction: row;
justify-content: space-between;
margin: 0 auto;
padding: 0 50px;
}
.content {
flex: 1;
}
#header {
background: #003154;
color: #fff;
display: flex;
flex-direction: column;
justify-content: space-between;
}
#header #logo {
display: flex;
align-items: center;
padding: 40px 0;
}
#header #logo img {
height: 70px;
width: auto;
}
#header-image {
text-align: center;
}
#header-image img {
margin: 0 auto -100px;
display: block;
max-width: 100%;
height: auto;
}
#mobile-banner {
display: none;
}
#header nav {
display: flex;
justify-content: space-between;
align-items: center;
}
#header nav ul {
display: flex;
list-style: none;
align-items: center;
}
#header nav li {
margin-left: 20px;
}
#header nav a {
font-weight: 900;
color: #fff;
text-decoration: none;
line-height: 1;
font-size: 14px;
}
#header nav .first-button {
margin-left: 40px;    
}
#header nav .button a {
background: #ee453c;
border-radius: 100px;
color: #fff;
padding: 15px 35px;
display: block;
}
#header-top-wrapper {
background: #003154;
}
#header-top {
border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
#hero-image {
height: 300px;
}
#event {
padding-top: 150px;
padding-bottom: 50px;
text-align: left;
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
text-align: center;
}
#event h1 {
font-size: 72px;
font-weight: 900;
color: #003154;
margin-bottom: 20px;
}
#event p {
color: #89a1b3;
font-size: 36px;
font-weight: 900;
margin-bottom: 20px;
}
#event-buttons {
border-bottom: 2px solid rgba(0,0,0,0.1);
position: relative;
margin: 100px 0 100px;
height: 30px;
}
#event-buttons-inner {
background: #fff;
padding: 0;
left: 50%;
transform: translateX(-50%);
position: absolute;
width: 750px;
}
#event a {
display: inline-block;
height: 56px;
line-height: 56px;
width: 230px;
font-size: 14px;
letter-spacing: -0.5px;
font-weight: 900;
background: #ee453c;
color: #fff;
border: none;
border-radius: 100px;
cursor: pointer;
text-decoration: none;;
}
section {
display: flex;
flex-direction: column;
padding: 50px 0;
}
#about { background: #e4f7ff;
color: #546d7e;
padding: 100px 0;
}
#event-info {
padding: 100px 0;
color: #003154;
}
#about .pre-header {
text-align: center;
font-weight: bold;
margin-bottom: 15px;
color: #ee453c;
}
#about h2, #event-info h2 {
font-size: 60px;
text-align: center;
margin-bottom: 40px;
}
#about h2, #event-info h2 {
color: #003154;
}
#about h3, #event-info h3 {
font-weight: 900;
font-size: 24px;
margin-bottom: 20px;
}
#about p, #event-info p {
font-size: 18px;
line-height: 1.7;
margin-bottom: 20px;
}
#about a, #event-info a {
color: #ee453c;
} 
#gallery {
background: #f5f5f5;
display: grid;
grid-template-columns: repeat(5, 1fr);
padding: 0;
}
#gallery img {
width: 100%;
display: block;
height: 300px;
object-fit: cover;
opacity: 1;
transition: opacity 0.5s ease;
}
#gallery img:hover {
opacity: 0.5;
}
#sponsors {
padding: 0 0 100px 0;
}
#sponsors .content {
display: flex;
flex-direction: row;
}
#partner-left {
flex: 1;
}
#partner-right {
flex: 2;
}
#sponsors h2 {
color: #003154;
}
#sponsors p {
color: #777;
line-height: 1.4;
}
#partners-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 20px;
padding: 0 40px;
}
#partners-grid a {
display: flex;
border: 1px solid rgba(0,0,0,0.2);
padding: 20px;
align-content: center;
align-items: center;
justify-content: center;
text-align: center;
justify-content: center;
aspect-ratio: 1;
}
#sponsors img {
width: 100%;
height: auto;
}
#partners-listings {
padding: 40px 40px 0 40px;
}
#partners-listings p {
font-size: 18px;
line-height: 1.7;
margin: 0;
}
#partners-listings span {
font-weight: bold;
}
#faqs {
background: #003154;
color: #fff;
padding: 100px 0;
transition: all 0.5s ease;
}
#faqs h2 {
margin-bottom: 40px;
}
#faqs a {
color: #fff;
}
#faqs .faq {
border: 1px solid rgba(255, 255, 255, 0.1);
margin-bottom: 10px;
}
#faqs .question {
cursor: pointer;
user-select: none;
position: relative;
padding: 20px;
display: flex;
align-items: center;
justify-content: space-between;
}
#faqs .question span {
flex: 1;
}
#faqs .answer {
display: none;
}
#faqs .active .answer {
display: block;
border-top: 1px solid rgba(255,255,255,0.1);
padding: 20px;
line-height: 1.7;
}
#faqs .answer p {
margin-bottom: 15px;
}
#faqs .arrow-down {
display: block;
}
#faqs .arrow-up {
display: none;
}
#faqs .active .arrow-down {
display: none;
}
#faqs .active .arrow-up {
display: block;
}
#faqs ul li {
margin: 15px 30px;
}
#contact {
background: #ee453c;
color: #fff;
font-size: 32px;
font-weight: 900;
}
#contact a {
color: #fff;
}
footer {
text-align: center;
padding: 30px;
}
#footer-logo {
height: 105px;
margin-bottom: 30px;
}
#social-icons {
margin-bottom: 30px;
}
#social-icons a {
color: #003154;
text-decoration: none;
}
#social-icons svg {
margin: 0 10px;
}
footer p {
font-size: 14px;
text-align: center;
color: #777;
}
#register-form {
pointer-events: none;
opacity: 0;
visibility: hidden;
display: block;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 10;
transition: opacity 0.5s ease;
}
#register-form-overlay {
background: rgba(0, 0, 0, 0.5);
z-index: 9;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
#register-form-inner {
position: fixed;
z-index: 10;
display: flex;
flex-direction: column;
align-content: center;
justify-content: center;
top: 0;
bottom: 0;
pointer-events: none;
align-items: stretch;
right: 0;
transform: translateX(100%);
transition: transform 0.25s ease;
transition-delay: 0.25s;
}
#register-form-header {
padding: 0 40px;
background: #003154;
color: #fff;
pointer-events: auto;
top: 0;
right: 0;
height: 100px;
line-height: 100px;
}
#register-form-container {
background: #fff;
padding: 40px;
overflow-y: scroll;
pointer-events: auto;
top: 100px;
bottom: 0;
right: 0;
flex: 1;
}
#close-form {
position: fixed;
top: 20px;
right: 20px;
cursor: pointer;
display: block; z-index: 11;
color: #fff;
pointer-events: auto;
}
#register-form.active {
pointer-events: auto;
opacity: 1;
visibility: visible;
}
#register-form.active #register-form-inner {
transform: translateX(0);
}
body.no-scroll {
overflow: hidden;
}
@media (max-width: 1200px) {
.container {
width: 100%;
}
#header-image img{
width: 100%;
height: auto;
}
}
@media (max-width: 768px) {
#mobile-banner {
display: block;
}
#desktop-banner {
display: none;
}   
.container {
flex-direction: column;
width: 100%;
}
#header #logo img {
height: auto;
margin-bottom: 10px;
width: 200px;
}
.content {
flex-direction: column;
}
#header-top {
padding: 30px;
}
#header #logo {
justify-content: center;
padding: 0px;
}
#header nav {
justify-content: center;
align-items: center;
flex-direction: column;
}
#header nav ul {
flex-direction: column;
}
#header nav li {
margin-left: 0;
margin-bottom: 15px;
}
#header nav li:last-child {
margin-bottom: 0;
}
#header nav {
font-size: 18px;
}
#header nav .first-button {
margin-left: 0;
}
#header nav .button {
width: 100%;
text-align: center;
}
#header-image img
{
margin: 0 auto -100px;
display: block;
width: 100%;
height: auto;
}
#about h2, #event-info h2 {
font-size: 48px;
}
#contact {
font-size: 21px;
text-align: center;
}
#sponsors .content {
flex-direction: column;
}
#partners-grid {
grid-template-columns: repeat(2, 1fr);
padding: 0;
}
#partners-listings {
padding: 40px 0 0 0;
}
#gallery {
grid-template-columns: repeat(2, 1fr);
}
#event-buttons {
border: 0;
height: auto;
margin: 0;
}
#event-buttons-inner {
position: relative;
transform: none;
left: 0;
display: flex;
flex-direction: column;
align-items: center;
padding: 10px;
width: 100%;
}
#about, #event-info {
padding: 50px 0;
}
#event a {
margin-top: 10px;
}
#event h1 {
font-size: 48px;
margin-bottom: 10px;
}
#event p {
font-size: 18px;
}
#sponsors {
padding: 50px 0;
}
#partner-left {
margin-bottom: 50px;
}
#register-form-header {
padding: 0 20px;
}
#register-form-container {
padding: 10px;
}
#register-form-container .BBFormSelectList {
padding: 7.5px;
}
#bboxevent_priceselect_lblAddedDonation {
text-align: left;
line-height: 1.4;
}
} #BBFormAttributes label {
width: 100%;
display: block;
float: none;
line-height: 1.7;
margin-bottom: 15px;
text-align: left;
}
#bboxevent_billing_Email {
padding-left: 40px;
} .weglot-dropdown {
display: none;
}