* {
	box-sizing: border-box;
}

body {
	background-color: transparent;
	background-image: url('../img/bg-x.jpg');
	background-position: left middle;
	background-repeat: no-repeat;
	background-attachment: fixed;
	min-height: 99vh;
	display: flex;
	flex-direction: column;
}

@media (orientation: landscape) {
	body {
		background-size: 100% auto;
	}
}

@media (orientation: potrait) {
	body {
		background-size: auto 100%;
	}
}

body > nav {
	flex-grow: 0;
}

body > nav > ul {
	background-color: #37590D;
	text-align: center;
	max-width: 960px;
	margin: 0 auto;
	padding: 4px;
	display: flex;
	flex-wrap: wrap;
}

body > nav > ul > li {
	display: inline-block;
	flex-grow: 1;
}

body > nav > ul > li a {
	display: inline-block;
	color: white;
	text-decoration: none;
	padding: 12px 20px;
	font-size: 14px;
	width: 100%;
}

body > nav > ul > li a.current {
	background-color:#579309;
}

body > nav > ul > li a:hover {
	background-color: #8FF808
}

body > main {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

body > main img {
	max-width: calc(100vw - 32px);
}

body > footer {
	flex-grow: 0;
	margin: 12px;
	padding: 8px;
	background-color: #37590D;
	color: white;
	font-family: 'Roboto';
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

@media (max-width: 799px) {
	body > footer {
		font-size: 20px;
	}
}

@media (min-width: 800px) {
	body > footer {
		font-size: 24px;
	}
}

@media (min-width: 960px) {
	body > footer {
		width: 960px;
		margin: 12px auto;
	}
}


.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.shadow-effect {
	transition: box-shadow 0.8s ease;
}

.shadow-effect:hover {
	box-shadow: 0px 0px 8px rgba(214,249,168,0.6);
}

.text-frame {
	color: white;
	max-width: 960px;
	margin: auto auto;
	background-color: rgba(214,249,168,0.5);
	background-image: linear-gradient(rgba(118,159,55,0.6),rgba(118,159,55,0.5));
	border-radius: 12px;
	padding: 4px 12px;
}

.font-18 {
	font-size: 18px;
}

.text-frame a {
	text-decoration: none;
	font-weight: bold;
	color: white;
	text-shadow: 0px 1px 3px rgba(0,128,255,0.6)
}

.frame-600 {
	max-width: 600px;
}

.form-sumarse input[type=text], input[type=email], input[type=tel], .form-sumarse textarea {
	width: 100%;
	border-radius: 4px;
	border: 1px solid #999;
	margin: 2px;
	padding: 2px;
	font-family: sans-serif;
}
.form-sumarse textarea {
	min-height: 80px;
}
.noticia {
	max-width: 960px;
	padding: 24px;
	background: white;
	color: #222;
	margin: 10px auto;
	border-radius: 12px;
	text-shadow: 0px 0.5px 1px rgba(0,0,0,0.15);
	box-shadow: 0px 0px 5px rgba(0,64,0,0.9);;
	margin-bottom: 24px;
}

.noticia > header {
	text-align: center;
	font-size: 24px;
	margin-bottom: 12px;
}

.columnas-2 {
	text-align: justify;
}

@media(min-width: 640px) {
	.columnas-2 {
		column-count: 2;
		text-align: justify;
	}
}

