/*HTML elements*/

/* Move down content because fixed navbar is 50px tall */
body {
  padding-top: 50px;
}

ul.nav, .jumbotron h1 {
	font-family: 'Arvo', courier, serif;
}

ul.nav {
	font-size: 13px;
}

footer{
	background-color: #2678b2;
	padding-top: 75px;
	padding-bottom: 30px;
	position: relative;
}

/* ID styling */

#cone {
	position: relative;
	display: block;
	width: 0;
	height: 0;
	border-left: 100px solid transparent;
	border-right: 100px solid transparent;
	border-top: 100px solid red;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

#cone:after {
	position: absolute;
	width: 80px;
	height: 80px;
	background: white;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
	border-radius: 50px;
	position: absolute;
	content: "";
	top: -40px;
	left: -40px;
}

#call-us {
	font-size: 30px;
	margin-bottom: 10px;
}

#call-us a {
	color: #5cb85c;
}

#call-us a:hover {
	text-decoration: none;
}

#about, #textures{
	background-color: #f5f5f5;
}

#back-to-top {
	position: absolute;
	bottom: 20px;
	right: 20px;
}

#back-to-top a {
	color: #333;
}

/*class styling*/

.navbar-brand img {
    margin-top: -2.5px;
}

.jumbotron {
	text-align: center;
	background-image: url('../images/american_clay_background.jpg');
	color: white;
	margin-bottom: 5px;
}

.jumbotron h1 {
	line-height: 150%;
	margin-top: 0px;
	margin-bottom: 20px;
}

.jumbotron p {
	margin-bottom: 50px;
	font-weight: 100;
	padding: 0 50px;
	font-size: 25px;
}

.modal-text {
	margin-top: 30px;
	margin-bottom: 10px;
	color: black;
	text-align: center;
}

.modal-content button.close {
	position: absolute;
	top: 5px;
	right: 5px;
	background-color: white;
	font-size: 28px;
	width: 30px;
	opacity: 1;
	border-radius: 24px;
	-webkit-border-radius: 24px;
	-moz-border-radius: 24px;
}

.modal-dialog {
	position: absolute;
	left: 50%;
	margin-left: -300px;
	top: 50%;
	margin-top: -173px;

}

.btn-lg {
	font-size: 36px;
}

.homepage {
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

.homepage h2, .homepage h3 {
	/*color: #e5c100;*/
	color: #5cb85c;
	font-family: 'Arvo', courier, serif;
	text-transform: uppercase;	
}

.homepage h2 {
	font-size: 30px;
}

.homepage h3 {
	font-size: 26px;
}

.homepage p {
	font-size: 21px;
	font-weight: 300;
}

.homepage a {
	color: #b79a00;
}

.homepage hr {
	border-top: 1px solid #b79a00;
	width: 160px;
	margin-top: 15px;
}

.homepage a:hover {
	color: #b79a00;
	text-decoration: none;
	opacity: .8;
}

/*Responsive Styling*/

@media (max-width: 1199px) {

	.jumbotron h1 {
		font-size: 56px;
		margin-bottom: 30px;
	}

}

@media (max-width: 991px) {

	.jumbotron h1 {
		font-size: 44px;
	}

	.jumbotron p {
		padding: 0 10px;
	}
	
	#get-involved .col-md-4 {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

@media (max-width: 767px) {

	.jumbotron h1 {
		font-size: 24px;
	}

	.jumbotron p {
		font-size: 16px;
		padding: 0;
	}
	
	.btn-lg {
		font-size: 18px;
	}

	.homepage p{
		font-size: 18px;
	}
	
	footer img {
		width: 80%;
	}
}