@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');

html,
body {
	margin:0;
	padding:0;
	height:100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	text-rendering: optimizeLegibility;
	background: #000;
}

h2 {
	font-size: 38px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 5px;
}

h3 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 15px;
}

a {
	color: #B7D79D;
}

a:hover {
	color: #FFF;
	text-decoration: none;
}

a.anchor {
    display: block;
    position: relative;
    top: -150px;
    visibility: hidden;
}

p {
	text-align:justify;
}

.header {
	margin-top: 10px;
	margin-bottom: 10px;
}

.wrapper {
	min-height: 100%;
	position: relative;
}

.alerta {
	padding: 10px;
	background: #8C0000;
	color: #FFF;
	position: relative;
	text-align: center;
}

.main {
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	padding-bottom: 50px;
}

.footer {
	background: #333;
	font-size: 14px;
	color: #999;
	padding: 20px;

	width: 100%;
	height: 85px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.line {
	border-bottom: 2px solid #B7D79D;
	margin: 2px 0 15px 0;
	width: 100px;
}

.page {
	background: #FFF;
	color: #333;
	padding: 40px 20px;
	margin-bottom: 20px;
}

.page h2 {
	text-align: center;
}

.page-top {
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 1px 1px 4px #333;
	padding-top: 20px;
	padding-bottom: 20px;
}

.highlight {
	font-size: 32px;
}

.button {
	font-size: 18px;
	font-weight: bold;
	background: #4E7E28;
	color: #FFF;
	padding: 10px 25px;
	text-decoration: none;
	text-shadow: none;
	transition: all 0.2s;
	border-radius: 50px;
}

.button:hover {
	background: #B7D79D;
	color: #333;
	cursor: pointer;
}

.page-dark {
	background: rgba(100, 100, 100, 0.9);
	color: #CCC;
}

.page-dark h3 {
	color: #FFF;
}

.page-transparent {
	background: transparent;
	color: #FFF;
	text-shadow: 1px 1px 2px #333;
	margin-top: 300px;
}

.page-card {
	background: rgba(255, 255, 255, 0.8);
	color: #000;
	text-shadow: none;
	height: 100%;
	transition: all 1s;
}

.page-card .line {
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.page-card:hover {
	background: rgba(183, 215, 157, 0.8);
	cursor: pointer;
}


.required {
	color: #A00;
}

.form-control {
	background: #000;
	color: #CCC;
}

.form-control:focus {
	background: #333;
	color: #CCC;
}

.input-group-addon {
	background: #666;
	color: #FFF;
}

.galeria {
	border: 1px solid #CCC;
	padding: 5px;
	cursor: pointer;
}

.galeria .imagem {
	background-size: cover;
	display: block;
	width: 100%;
	height: 250px;
	cursor: pointer;
}

.galeria .overlay {
	bottom: 100%;
	left: 0;
	right: 0;
	background-color: rgba(200, 200, 200, 0.8);
	overflow: hidden;
	width: 100%;
	height:0;
	transition: .5s ease;
}

.galeria:hover .overlay {
	bottom: 0;
	height: 100%;
}

.galeria .titulo {
	white-space: nowrap;
	color: white;
	font-size: 22px;
	font-weight: bold;
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-shadow: 1px 1px 2px #333;
}

.foto {
	border: 1px solid #CCC;
	padding: 5px;
	transition: .5s ease;
	cursor: pointer;
}

.foto:hover {
	background: #EEE;
}

.foto a {
	color: #000;
	text-decoration: none;
}

.foto .imagem {
	background-size: cover;
	width: 100%;
	height: 200px;
}

.foto .titulo {
	margin-top: 5px;
	text-align: center;
	text-transform: uppercase;
}

@media (max-width: 991px) {
	hr {
		margin-top: 20px;
		margin-bottom: 20px;
		border-color: #777;
	}

	.main {
		padding: 0 10px 120px 10px;
	}

	.footer {
		height: 120px;
	}

	.nav-item {
		margin-top: 5px;
		margin-bottom: 5px;
	}
}