* {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
}
body{
    margin:0;
}

h1 {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 62px;
	font-style: normal;
	font-variant: normal;
	font-weight: 800;
	margin-top: 0;
	color:white;
	padding-top:60px;
}
h2 {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 44px;
	font-style: normal;
	font-variant: normal;
	font-weight: 500;
	color:white;
}
h3 {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 32px;
	font-style: normal;
	font-variant: normal;
	font-weight: 500;
	line-height:32px;
	color:white;
}
p {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 24px;
	font-style: normal;
	font-variant: normal;
	font-weight: 400;
}

nav {
    margin:auto;
    width:600px;
    margin-top: -18px;
}
ul {
    width:100%;
    display:inline-block;
    list-style-type: none;
    margin: auto;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    border-radius: 3px;
}

li {
    text-align:center;
    width:25%;
    float:left;
}

li a, .dropbtn {
    display: inline-block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}


li:hover, .dropdown:hover .dropbtn {
    background-color: rgb(255, 204, 0);
}

li.dropdown {
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgb(255, 244, 0);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {background-color: rgb(255, 204, 0)}

.dropdown:hover .dropdown-content {
    display: block;
}
.header{
    height:auto;
    background-color:rgb(5,20,60);
    text-align:center;
    padding-bottom:40px;
}
footer{
    background-color:rgb(5,20,60);
    text-align:center;
    padding-top:10px;
    padding-bottom:10px;
    color:white;
    position: relative;
    width: 100%;
    bottom: 0;
    z-index: 2;
    margin-top: -1px;
}
footer p{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 13px;
	font-style: normal;
	font-variant: normal;
    color: white;
    margin: 0px;
    padding: 25px 0px;
    text-align: center;
    font-weight: 400;
}

footer a {
	color: rgb(255, 204, 0);
    font-size:14px;
    font-style: normal;
    font-weight: bold;
}

footer a:link {
    text-decoration: none;
}

footer a:visited {
    text-decoration: none;
}

footer a:hover {
    text-decoration: none;
}

footer a:active {
    text-decoration: none;
}
section{
    margin:auto;
    max-width:60%;
    box-shadow: 0px 10px 10px #ccc;
    margin-bottom:40px;
    padding:30px 70px 40px 70px;
    overflow:hidden;
    
    
}
section p{
    font-size:18px;
    line-height:20px;
}
.quote{
    font-size:130%;
}

section h2{
    text-align:center;
    color:black;
    font-weight:bold;
    font-size:28px;
}
section h4{
    text-align:center;
    color:black;
    font-weight:bold;
    font-size:22px;
}
section a:link {
    font-size:18px;
    color:black;
    text-decoration: none;
}

section a:visited {
    text-decoration: none;
}

section a:hover {
    text-decoration: none;
}

section a:active {
    text-decoration: none;
}
section table td {
    font-size:18px;
}

input[type=text] {
    font-size:18px;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid rgb(5,20,60);
}
input[type=email] {
    font-size:18px;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid rgb(5,20,60);
}
textarea {
    font-size:18px;
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    box-sizing: border-box;
    border: none;
    border-bottom: 2px solid rgb(5,20,60);
}
.container{
    width:100%;
}
.left{
    width:48%;
    float:left;
}
.right{
        width:48%;
    float:right;
}
.button {
    background-color: #4CAF50; /* Green */
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
    cursor: pointer;
}

.button2 {
    background-color: white; 
    color: black; 
    border: 2px solid rgb(5,20,60);
}

.button2:hover {
    background-color: rgb(5,20,60);
    color: white;
}