/*Background Gradients*/
/* Fade to white at bottom*/
.gradient1 {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}
/*Fade from white at top*/
.gradient2 {
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 60%);
}

/*Modal and Repeatable shadows*/
.card__shadow {
    box-shadow: 0px 24px 48px 8px rgba(0, 20, 45, 0.08);
}

/*Transitions*/
.btn__transition {
    transition: background-color .3s ease;
}

/*Hide default Contact the Organizer Footer*/
#footer {display: none;}