* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background: #7aaa37;
	font-family: open-sans,sans-serif;
	font-weight: 400;
	font-style: normal;
}

.contenedor {
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
	background: #FFF;
}

.menu-main {
	list-style: none;
	display: flex;
	justify-content: center;
	padding-top: 20px;
	padding-bottom: 20px;
}

.menu-main li {
	margin-left: 10px;
	margin-right: 10px;
}

.menu-main li a {
	text-transform: capitalize;
	color: #7AAB38;
	text-decoration: none;
	font-family: voltage,sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 25px;
	transition: .3s;
}

.menu-main li a:hover {
	color: #313332;
}

.footer-text {
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
	font-family: open-sans,sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 13px;
	color: #313332;
}

.footer-text a {
	text-decoration: none;
	color: #313332;
	font-family: open-sans,sans-serif;
	font-weight: 700;
	font-style: normal;
	transition: .3s;
}

.footer-text a:hover {
	color: #7AAB38;
}

/* Modal */

.modal {
	display: none;
	width: 90%;
	max-width: 600px;
	border-radius: 3px;
	padding: 0;
}

.modal .fancybox-close-small {
	top: 15px;
}

.modal .modal-header {
	padding: 20px;
	border-bottom: 1px #EEE solid;
	margin-bottom: 10px;
}

.modal .modal-header h2 {
	color: #7AAB38;
	font-family: voltage,sans-serif;
	font-weight: 700;
	font-style: normal;
	text-transform: capitalize;
	font-size: 30px;
}

.modal .modal-body {
	padding: 10px 20px;
	text-align: justify;
}

.modal .modal-body h2 {
	font-family: hucklebuck-jf,sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	margin-bottom: 20px;
}

.modal .modal-body h3 {
	color: #7AAB38;
	font-family: voltage,sans-serif;
	font-weight: 700;
	font-style: normal;
	font-size: 30px;
}

.modal .modal-body p {
	padding: 20px 0;
	line-height: 25px;
	font-family: voltage,sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: 20px; 
}

.modal .modal-body ol {
	margin-left: 20px;
}

.modal .modal-body ol li {
	margin-bottom: 15px;
}

.modal .modal-body a {
	margin-top: 20px;
	color: #444;

	transition: color 0.3s;
}

.modal .modal-body a:hover {
	color: #666;
}

.modal .image img {
	width: 100%;
	height: auto;
}

.cita {
	font-family: hucklebuck-jf,sans-serif;
	font-weight: 400;
	font-style: italic;
	margin-bottom: 20px;
}

.galeria {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
}

.galeria .gal-image {
	width: 245px;
	margin: 5px 10px;
}

.galeria .gal-image img {
	width: 100%;
}