/* General */
body {
	padding-top: 100px;
	padding-bottom: 0px;		/* For footer */
	background: rgba(255,0,0,1);
}
:root {
	--yellow: rgba(247,255,107,1);
	--yellow: yellow;
	--red: rgba(255,0,0,1);
	--red-dark: rgba(175,0,0,1);
}
.btn-red {
	background: var(--red);
	border: 1px solid rgba(255,255,255,.7);
}
	.btn-red:hover {
		color: var(--red);
		background-color: var(--yellow);
		border: 1px solid var(--red);
	}
	.btn-primary > .bi {
		font-size: 1.2em;
		padding-right: 5px;
	}


/* Overwrites */
.row {
	margin-bottom: 0px;
}

/* Fonts */
.alfa {
	font-family: "Alfa Slab One", serif;
	font-weight: 400;
	font-style: normal;
}
.anton {
	font-family: "Anton SC", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.condemned {
	text-transform: uppercase;
	color: var(--red);
	text-shadow: 1px 1px 5px var(--yellow);
	-webkit-text-stroke: 1px rgba(255,255,255,.8);
	border-bottom: 2px solid var(--red);
}



/* Navbar */
#navbar-container {
	padding-left: 0px;
	padding-right: 0px;
}
	#navbar-banner {
		background: rgba(25,25,25,.99);
		border-bottom: 10px solid var(--red);
		color: white;
		margin: 0px 0px 0px 0px;
	}
		#banner-headline-col {
			background: var(--red);
		}
			#banner-headline {
				font-size: 25px;
				margin-bottom: 0px;
			}

		.banner-btn {
			margin: 10px 0;
			font-size: 14px;
			padding: 2px 5px;
			width: 98%;
			max-width: 280px;
		}


/* Hero */
#hero {
	background: rgba(0,0,0,.30);
	background: url('../img/txdot-construction-filtered.png') no-repeat center;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;

	width: 100%;
	height: 100%;
	min-height:600px;
}

	#hero-headlines {
		margin: 10px 0;
		margin-top:20px;
		background: rgba(0,0,0,.7);
		border: 5px solid black;
		padding: 15px 10px; 
		border-radius: 5px;
		color: white;
		text-align: center;
	}	
		#hero-headlines > h1 {
			font-size: 80px;
			text-shadow: 3px 3px 5px rgba(0,0,0,.8);
			text-align: center;
		}
		#hero-headlines >  h2 {
			font-size: 45px;
			line-height: 75px;
			text-shadow: 2px 4px 5px rgba(0,0,0,.9);
			text-align: center;
		}
		#hero-headlines > p {
			font-size: 30px;
			text-shadow: 2px 4px 5px rgba(0,0,0,.9);
		}
		#hero-button {
			font-size: 28px;
			max-width: 30px;
		}


/* Sections */
#banner-2 {
	margin-bottom: 0px;
	background: rgba(0,0,0,1);
	color: white;
	padding: 45px 15px;

	display: flex;
	align-items: center; 		
	justify-content: center; 	
	text-align: center;
}	
	#banner-2 h1,h2,h3{
		font-family: "Alfa Slab One", serif;
		font-weight: 400;
		font-style: normal;
	}
	#banner-2 h3 {
		margin-bottom: 15px;
	}
	#banner-2 h1 {
		text-align: center;
		font-size: 45px;
		background: var(--red);
		border: 1px solid rgba(255,255,255,.8);
		border-radius: 5px;
		padding: 15px 2px;
	}

#we-recommend {
	border-top: solid var(--yellow);
	border-bottom: solid var(--yellow);
	border-width: 5px;
	padding: 30px 0;
	text-align: center;
	color: white;
}	
	#we-recommend h2 {
		margin-bottom: 25px;
	}
	#we-recommend h1 {
		font-size: 40px;
		font-family: "Alfa Slab One", serif;
		font-weight: 400;
		font-style: normal;
	}

#faq {
	padding-top: 45px;
	background: black;
	color: white;
}
	#faq img {
		border: 1px solid white;
		margin: 15px 0;
	}
	#faq-col {
		text-align: left;
		font-size: 26px;
	}
	#faq-col .emphasis {
		font-weight: bold;
		font-size: 1.1em;
	}
	#faq-col li {
		transition: all 0.3s ease;
		transition-delay: 0.75s;
	}
		#faq-col li:hover {
			font-size: 1.3em;
		}

#why {
	background: rgba(110,110,125,1);
	border-top:1px solid black;
	padding-top: 80px;
	padding-bottom: 80px;

	color: white;
	text-shadow: 1px 1px 2px rgba(0,0,0,.2);
}
	#why-blurb {
		text-align:center;
		font-size:22px;
		margin-bottom: 30px;
	}
	
	.why-point {
		background: rgba(150,150,150,.1);
		padding: 5px;
		border: 1px solid white (255,255,255,.1);
		min-height: 150px;
		margin-bottom: 5px;

		display: flex;
		flex-direction: column;
		justify-content: center;
		transition: all 0.3s ease;
	}
		.why-point:hover {
			background: rgba(0,0,0,.4);
			border: 1px solid white;
			font-size: 1.1em;
		}
		.why-point:hover .why-h {
			border-bottom: 2px solid var(--red-dark);
		}


	.why-h {
		font-size: 28px;
	}
		.why-h > .bi {
			font-size:1.5em;
		}

#survey {
	margin: 60px 0;
	padding: 15px 20px;
	background: rgba(230,230,230,1);
	border: 10px solid var(--red);

	font-size: 24px;
}	
	#survey img {
		text-align: center;
		border: 1px solid black;
		margin: 15px auto;
	}

/* Footer */
#footer {
	background: black;
	margin-top: 30px;
	margin-bottom: 0px;
	padding: 30px 0;
	color: white;
	text-align: center;
}

	#footer-contact-info p {
		font-size: 18px;
		margin-bottom: 15px;
	}
	#footer-contact-info i {
		font-size: 30px;
	}
	
	#footer-logo {
		border-bottom: 10px solid white;
		margin-bottom: 15px;
	}



/* Media queries */
@media (max-width: 500px) { 

	/* Shrink headlines some (h1 doesnt appear)*/
	#hero-headlines >  h2 {
		font-size: 35px;
	}
	#hero-headlines >  p {
		font-size: 25px;
	}

	/* Decrease banner-btns */
	.banner-btn {
		margin: 5px 0;
	}

}

@media (max-width: 400px) { 

	#banner-2 h1 {
		font-size: 40px;
	}

}

@media (min-height: 800px) { 

	#hero {
		min-height: 800px;
	}
}