/*
-----------------------------------------------
COLORS
	
    Black:#191919
	Gray: #808080
    Light Gray: #E5E5E5
    Red: #E31E26
	Orange: #F68C1F
    Violet: #722A83
----------------------------------------------- */

/* LATO */

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}


}
a {
 text-decoration: none;
}
li {
 list-style: none;
}

body {
	background: #FFFFFF; 
	font-family: "Lato", sans-serif;
	font-style: normal;
	font-weight: 300;
	color: #191919; 
	position: relative; 
	-webkit-font-smoothing: antialiased; 
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	text-align:left;
	line-height: 1.5em;
	font-size: 16px;
	
	background: url("../img/backgrounds/black-topography-2000x1167.png")no-repeat center center fixed;
	 -webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
	background-size: cover;
	
}

a:link 		{text-decoration: underline; color: #E31E26; font-weight:300; text-decoration: underline; }
a:visited 	{text-decoration: underline; color: #E31E26;}
a:hover 	{text-decoration: underline; color: #F68C1F; font-weight:300; }
a:active 	{text-decoration: underline; color: #E31E26;}

.subheading-shaded-cell
{
    font-weight: 400;
    font-size: 25px;
    color: white;
    margin-bottom: 10px;
    margin-top: 10px;
}


h1 {
    font-weight: 400;
	font-style: normal;
	font-display: auto;
	letter-spacing: -.0125em;
	font-size: 56px;
	line-height: .75;
	text-align: left;
    
}

h1.sponsor{
	text-align: center; 
	font-size: 30px;
	font-weight: 300;
}

h2 {
    font-weight: 400;
	font-style: normal;
	font-display: auto;
	letter-spacing: -.0125em;
	font-size: 25px;
	line-height: .75;
	text-align: left;
}

h3 {
    font-display: auto;
	font-size: 22px;
	line-height: 1em;
	font-weight: 300;
	color: #FFF200;
	text-align:left;
}

h4 {
	font-family: novel-display, sans-serif;
    font-display: auto;
	font-size: 25px;
	line-height: 1em;
	font-weight: 400;
	color: #162E55;
	text-align:left;
    text-transform: uppercase;
}

h5 {
	font-family: novel-display, sans-serif;
    font-display: auto;
	font-size: 36px;
	line-height: 1em;
	font-weight: 600;
	color: #162E55;
	text-align:center;
    text-transform: uppercase;
}





/* NAVBAR STYLING STARTS */

.navbar {
 display: flex;
 align-items: center;
 justify-content: space-between;
 padding: 10px;
 background-color: black;
 color: #fff;
 font-family: Helvetica, Arial, sans-serif; 
}
.nav-links a {
    color: #fff;
    text-decoration: none;
}
/* LOGO */
.logo {
 font-size: 32px;
}


/* NAVBAR MENU */

.menu {
 display: flex;
 gap: 1em;
 font-size: 14px;
}
.menu li:hover {
 background-color: #E31E26;
    border-radius: 0px;
    transition: 0.5s ease;
    color: #000000;
    text-decoration-color: #E31E26;
    border-bottom-color: white;

}
.menu li {
 padding: 5px 14px;
}

/* DROPDOWN MENU */
.services {
 position: relative; 
}
.dropdown {
 background-color: transparent;
 padding: 1.5em 0;
 position: absolute; /*WITH RESPECT TO PARENT*/
 display: none;
 border-radius: 0px;
 top: 20px;
}
.dropdown li + li {
 margin-top: 5px;
    color: #E31E26;
}
.dropdown li {
 padding: 0.25em 0.25em;
 text-align: left;
 list-style: none;
    color: #FFF200;
}
.dropdown li:hover {
 background-color: #E31E26;
}
.services:hover .dropdown {
 display: block;
}


/*RESPONSIVE NAVBAR MENU STARTS*/
/* CHECKBOX HACK */
input[type=checkbox]{
 display: none;
} 
/*HAMBURGER MENU*/
.hamburger {
 display: none;
 font-size: 24px;
 user-select: none;
}
/* APPLYING MEDIA QUERIES */
@media (max-width: 768px) {
.menu { 
 display:none;
 position: absolute;
 background-color:#E31E26;
 right: 0;
 left: 0;
 text-align: center;
 padding: 16px 0;
}
.menu li:hover {
 display: inline-block;
 background-color:#C4D600;
 transition: 0.3s ease;
}
.menu li + li {
 margin-top: 10px;
    list-style: none;
}
input[type=checkbox]:checked ~ .menu{
 display: block;
}
.hamburger {
 display: block;
}
.dropdown {
 left: 0%;
 top: 20px;
 transform: translateX(35%);
}
.dropdown li:hover {
 background-color: #E5445E;
}
}

/* FOOTER */

#footer {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-style: normal;
	color: #FFFFFF;
	line-height: 1.5em;
}

#footer a:link {
	text-decoration:none;
	color:#FFFFFF;
}

#footer a:visited {
	text-decoration:none;
	color:#FFFFFF;
}

#footer a:hover {
	text-decoration:none;
	color:#ff0000;
}

/* Photo */

.responsive {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.responsive-header {
  width: 100%;
  max-width: 1200px;
  height: auto;
}

.responsive-sponsor {
  width: 85%;
  max-width: 300px;
  height: auto;
}

.responsive-involved {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.responsive-photo {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.responsive-letter {
  width: 100%;
  max-width: 600px;
  height: auto;
}

/* Button */

.button {
    background-color:#E31E26;
	border: 0px solid #E31E26;
    color: white;
    padding: 15px 15px;
    text-align: center;
    text-decoration: none;
    font-weight: 300;
    display: inline-block;
    font-size: 18px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
	
}
.button:hover {color:#fe995c; background-color: #FFFFFF; text-decoration: none; outline: none;}
.button:focus {color:#fe995c; background-color: #FFFFFF; text-decoration: none; outline: none;}
.button:active {color:#58595b; background-color: #FFFFFF; text-decoration: none; outline: none;}
.button:link {color:#FFFFFF; background-color: #E31E26; text-decoration: none; outline: none;}
.button:visited {color:#FFFFFF; background-color: #E31E26; text-decoration: none; outline: none;}

/* List */

ul.square {
    list-style-type: square;
    margin-left: 30px;
        
}
li.square {list-style-type: square}



/* ANCHORS */

#anchors {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-style: normal;
	color: #E31E26;
	line-height: 1.5em;
    text-transform: uppercase;
}

#anchors a:link {
	text-decoration:none;
	color:#E31E26;
}

#anchors a:visited {
	text-decoration:none;
	color:#E31E26;
}

#anchors a:hover {
	color:#F68C1F;
    text-decoration: underline
}

tr.border_bottom td {
  border-bottom: 1px solid #CBC6C6;
}