html, body {
    height: 100%;
}

div#header {
    position: relative;
    background: #f04d22;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url(../imgs/header.jpg);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
}

div#nav {
    position: absolute;
    bottom: 0;
    width: 100%;
    text-align: center;
    color: #fff;
}

div#nav ul{
    margin-bottom: 0;
}

div#nav ul li {
    background: white;
    width: 33.33%;
    padding: 13px;
	font-size: 0;
}

.list-inline>li {
    display: block;
    float: left;
}

div#nav ul li a {
    color: #fff;
	font-size: 16px;
}

div#nav ul li a:hover {
    font-weight: bold;
	text-decoration: none;
}

div#nav ul li:nth-child(1) {
    background: #B54A86;
}

div#nav ul li:nth-child(2) {
    background: #92AE37;
}

div#nav ul li:nth-child(3) {
    background: #800775;
}

#content{
	padding-top: 60px;
	
}

form{
	margin: 30px 0;
}

input, select {
    width: 100%;
    color: #D04E29;
    border-color: #D04E29;
    border: 1px solid;
    margin: 4px 0;
    padding: 13px;
}

input[type="submit"] {
    width: auto;
        margin: 40px 0;
    color: white;
    font-weight: bolder;
    background: #f04d22;
    padding: 15px 30px;
    font-size: 16px;
    box-shadow: 1px 1px 17px -4px black;
}

div#footer {
    background: #f04d22;
    padding: 30px;
    text-align: center;
}

div#footer img{
    width: 140px;
}

div#header, div#footer {
    box-shadow: 0 0 14px 0px black;
}



div#theDownload {
    text-align: center;
    background: #f04d22;
    color: #fff;
    padding: 20px;
    max-width: 680px;
    margin: 0px auto 60px;
}

div#theDownload a {
    color: #fff;
	text-decoration: underline;
}

a.button {
    font-size: 16px;
    padding: 15px 30px;
    background: #f04d22;
    color: #fff;
    border: 1px solid;
    margin: 20px 0;
    display: inline-block;
}



@media (min-width: 991px) {
	
	#nav a {
		position: relative;
	}

	#nav a.active:after {
		content: " ";
		background: inherit;
		width: 20px;
		height: 20px;
		position: absolute;
		bottom: -25px;
		left: 50%;
		transform: rotate(45deg);
	}
	
	#nav a.select1:after {
		background: #b54a86;
	}

	#nav a.select2:after {
		background: #92AE37;
	}	

	#nav a.select3:after {
		background: #800775;
	}	
	
}

@media (max-width: 991px) {
		div#header {
		background-size: cover;
	}
}


@media (max-width: 650px) {
	
	.h2, h2 {
		font-size: 23px;
	}
	
	div#header {
		background-image: url(../imgs/header-mobile.jpg);
		background-position-y: -60px;
	}
	
	div#nav ul li {
		width: 100%;
	}
	
}


