@import url("fontawesome-all.min.css");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,300italic,400italic");

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

body {
	-webkit-text-size-adjust: none;
}

mark {
	background-color: transparent;
	color: inherit;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input,
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
}

/* Basic */

@-ms-viewport {
	width: device-width;
}

body {
	-ms-overflow-style: scrollbar;
}

@media screen and (max-width: 480px) {

	html,
	body {
		min-width: 320px;
	}

}

html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	background: #f5f5f5;
}

body,
input,
select,
textarea {
	color: #777;
	font-family: "Montserrat", sans-serif;
	font-size: 16pt;
	font-weight: 300;
	line-height: 1.65em;
	letter-spacing: -0.015em;
}

a {
	-moz-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	-webkit-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	-ms-transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	transition: color 0.2s ease-in-out, border-bottom-color 0.2s ease-in-out;
	border-bottom: dotted 1px;
	color: #e89980;
	text-decoration: none;
}

a:hover {
	border-bottom-color: transparent;
}

strong,
b {
	color: #646464;
	font-weight: 400;
}

em,
i {
	font-style: italic;
}

p {
	margin: 0 0 2em 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #646464;
	font-weight: 300;
	line-height: 1em;
	margin: 0 0 0.5em 0;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: inherit;
	text-decoration: none;
}

h2 {
	font-size: 2.25em;
	line-height: 1.5em;
	letter-spacing: -0.035em;
}

h3 {
	font-size: 1.75em;
	line-height: 1.5em;
	letter-spacing: -0.025em;
}

h4 {
	font-size: 1.1em;
	line-height: 1.5em;
	letter-spacing: 0;
}

h5 {
	font-size: 0.9em;
	line-height: 1.5em;
	letter-spacing: 0;
}

h6 {
	font-size: 0.7em;
	line-height: 1.5em;
	letter-spacing: 0;
}

sub {
	font-size: 0.8em;
	position: relative;
	top: 0.5em;
}

sup {
	font-size: 0.8em;
	position: relative;
	top: -0.5em;
}

hr {
	border: 0;
	border-bottom: solid 2px #e5e5e5;
	margin: 2em 0;
}

hr.major {
	margin: 3em 0;
}

blockquote {
	border-left: solid 4px #e5e5e5;
	font-style: italic;
	margin: 0 0 2em 0;
	padding: 0.5em 0 0.5em 2em;
}

pre {
	-webkit-overflow-scrolling: touch;
	background: #f8f8f8;
	border-radius: 6px;
	border: solid 1px #e5e5e5;
	font-family: monospace;
	font-size: 0.9em;
	line-height: 1.75em;
	margin: 0 0 2em 0;
	overflow-x: auto;
	padding: 1em 1.5em;
}

code {
	background: #f8f8f8;
	border-radius: 6px;
	border: solid 1px #e5e5e5;
	font-family: monospace;
	font-size: 0.9em;
	margin: 0 0.25em;
	padding: 0.25em 0.65em;
}

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

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

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

/* Row */

.row {
	display: flex;
	flex-wrap: wrap;
	box-sizing: border-box;
	align-items: stretch;
}

.row>* {
	box-sizing: border-box;
}

.row.gtr-uniform>*> :last-child {
	margin-bottom: 0;
}

.row.aln-left {
	justify-content: flex-start;
}

.row.aln-center {
	justify-content: center;
}

.row.aln-right {
	justify-content: flex-end;
}

.row.aln-top {
	align-items: flex-start;
}

.row.aln-middle {
	align-items: center;
}

.row.aln-bottom {
	align-items: flex-end;
}

.row>.imp {
	order: -1;
}

.row>.col-1 {
	width: 8.33333%;
}

.row>.off-1 {
	margin-left: 8.33333%;
}

.row>.col-2 {
	width: 16.66667%;
}

.row>.off-2 {
	margin-left: 16.66667%;
}

.row>.col-3 {
	width: 25%;
}

.row>.off-3 {
	margin-left: 25%;
}

.row>.col-4 {
	width: 33.33333%;
}

.row>.off-4 {
	margin-left: 33.33333%;
}

.row>.col-5 {
	width: 41.66667%;
}

.row>.off-5 {
	margin-left: 41.66667%;
}

.row>.col-6 {
	width: 50%;
}

.row>.off-6 {
	margin-left: 50%;
}

.row>.col-7 {
	width: 58.33333%;
}

.row>.off-7 {
	margin-left: 58.33333%;
}

.row>.col-8 {
	width: 66.66667%;
}

.row>.off-8 {
	margin-left: 66.66667%;
}

.row>.col-9 {
	width: 75%;
}

.row>.off-9 {
	margin-left: 75%;
}

.row>.col-10 {
	width: 83.33333%;
}

.row>.off-10 {
	margin-left: 83.33333%;
}

.row>.col-11 {
	width: 91.66667%;
}

.row>.off-11 {
	margin-left: 91.66667%;
}

.row>.col-12 {
	width: 100%;
}

.row>.off-12 {
	margin-left: 100%;
}

.row.gtr-0 {
	margin-top: 0;
	margin-left: 0em;
}

.row.gtr-0>* {
	padding: 0 0 0 0em;
}

.row.gtr-0.gtr-uniform {
	margin-top: 0em;
}

.row.gtr-0.gtr-uniform>* {
	padding-top: 0em;
}

.row.gtr-25 {
	margin-top: 0;
	margin-left: -0.5em;
}

.row.gtr-25>* {
	padding: 0 0 0 0.5em;
}

.row.gtr-25.gtr-uniform {
	margin-top: -0.5em;
}

.row.gtr-25.gtr-uniform>* {
	padding-top: 0.5em;
}

.row.gtr-50 {
	margin-top: 0;
	margin-left: -1em;
}

.row.gtr-50>* {
	padding: 0 0 0 1em;
}

.row.gtr-50.gtr-uniform {
	margin-top: -1em;
}

.row.gtr-50.gtr-uniform>* {
	padding-top: 1em;
}

.row {
	margin-top: 0;
	margin-left: -2em;
}

.row>* {
	padding: 0 0 0 2em;
}

.row.gtr-uniform {
	margin-top: -2em;
}

.row.gtr-uniform>* {
	padding-top: 2em;
}

.row.gtr-150 {
	margin-top: 0;
	margin-left: -3em;
}

.row.gtr-150>* {
	padding: 0 0 0 3em;
}

.row.gtr-150.gtr-uniform {
	margin-top: -3em;
}

.row.gtr-150.gtr-uniform>* {
	padding-top: 3em;
}

.row.gtr-200 {
	margin-top: 0;
	margin-left: -4em;
}

.row.gtr-200>* {
	padding: 0 0 0 4em;
}

.row.gtr-200.gtr-uniform {
	margin-top: -4em;
}

.row.gtr-200.gtr-uniform>* {
	padding-top: 4em;
}

@media screen and (max-width: 1680px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-wide {
		order: -1;
	}

	.row>.col-1-wide {
		width: 8.33333%;
	}

	.row>.off-1-wide {
		margin-left: 8.33333%;
	}

	.row>.col-2-wide {
		width: 16.66667%;
	}

	.row>.off-2-wide {
		margin-left: 16.66667%;
	}

	.row>.col-3-wide {
		width: 25%;
	}

	.row>.off-3-wide {
		margin-left: 25%;
	}

	.row>.col-4-wide {
		width: 33.33333%;
	}

	.row>.off-4-wide {
		margin-left: 33.33333%;
	}

	.row>.col-5-wide {
		width: 41.66667%;
	}

	.row>.off-5-wide {
		margin-left: 41.66667%;
	}

	.row>.col-6-wide {
		width: 50%;
	}

	.row>.off-6-wide {
		margin-left: 50%;
	}

	.row>.col-7-wide {
		width: 58.33333%;
	}

	.row>.off-7-wide {
		margin-left: 58.33333%;
	}

	.row>.col-8-wide {
		width: 66.66667%;
	}

	.row>.off-8-wide {
		margin-left: 66.66667%;
	}

	.row>.col-9-wide {
		width: 75%;
	}

	.row>.off-9-wide {
		margin-left: 75%;
	}

	.row>.col-10-wide {
		width: 83.33333%;
	}

	.row>.off-10-wide {
		margin-left: 83.33333%;
	}

	.row>.col-11-wide {
		width: 91.66667%;
	}

	.row>.off-11-wide {
		margin-left: 91.66667%;
	}

	.row>.col-12-wide {
		width: 100%;
	}

	.row>.off-12-wide {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0em;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0em;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0em;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0em;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.5em;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.5em;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.5em;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.5em;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -1em;
	}

	.row.gtr-50>* {
		padding: 0 0 0 1em;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -1em;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 1em;
	}

	.row {
		margin-top: 0;
		margin-left: -2em;
	}

	.row>* {
		padding: 0 0 0 2em;
	}

	.row.gtr-uniform {
		margin-top: -2em;
	}

	.row.gtr-uniform>* {
		padding-top: 2em;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -3em;
	}

	.row.gtr-150>* {
		padding: 0 0 0 3em;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -3em;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 3em;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -4em;
	}

	.row.gtr-200>* {
		padding: 0 0 0 4em;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -4em;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 4em;
	}

}

@media screen and (max-width: 1280px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-normal {
		order: -1;
	}

	.row>.col-1-normal {
		width: 8.33333%;
	}

	.row>.off-1-normal {
		margin-left: 8.33333%;
	}

	.row>.col-2-normal {
		width: 16.66667%;
	}

	.row>.off-2-normal {
		margin-left: 16.66667%;
	}

	.row>.col-3-normal {
		width: 25%;
	}

	.row>.off-3-normal {
		margin-left: 25%;
	}

	.row>.col-4-normal {
		width: 33.33333%;
	}

	.row>.off-4-normal {
		margin-left: 33.33333%;
	}

	.row>.col-5-normal {
		width: 41.66667%;
	}

	.row>.off-5-normal {
		margin-left: 41.66667%;
	}

	.row>.col-6-normal {
		width: 50%;
	}

	.row>.off-6-normal {
		margin-left: 50%;
	}

	.row>.col-7-normal {
		width: 58.33333%;
	}

	.row>.off-7-normal {
		margin-left: 58.33333%;
	}

	.row>.col-8-normal {
		width: 66.66667%;
	}

	.row>.off-8-normal {
		margin-left: 66.66667%;
	}

	.row>.col-9-normal {
		width: 75%;
	}

	.row>.off-9-normal {
		margin-left: 75%;
	}

	.row>.col-10-normal {
		width: 83.33333%;
	}

	.row>.off-10-normal {
		margin-left: 83.33333%;
	}

	.row>.col-11-normal {
		width: 91.66667%;
	}

	.row>.off-11-normal {
		margin-left: 91.66667%;
	}

	.row>.col-12-normal {
		width: 100%;
	}

	.row>.off-12-normal {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0em;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0em;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0em;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0em;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.5em;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.5em;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.5em;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.5em;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -1em;
	}

	.row.gtr-50>* {
		padding: 0 0 0 1em;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -1em;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 1em;
	}

	.row {
		margin-top: 0;
		margin-left: -2em;
	}

	.row>* {
		padding: 0 0 0 2em;
	}

	.row.gtr-uniform {
		margin-top: -2em;
	}

	.row.gtr-uniform>* {
		padding-top: 2em;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -3em;
	}

	.row.gtr-150>* {
		padding: 0 0 0 3em;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -3em;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 3em;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -4em;
	}

	.row.gtr-200>* {
		padding: 0 0 0 4em;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -4em;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 4em;
	}

}

@media screen and (max-width: 980px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-narrow {
		order: -1;
	}

	.row>.col-1-narrow {
		width: 8.33333%;
	}

	.row>.off-1-narrow {
		margin-left: 8.33333%;
	}

	.row>.col-2-narrow {
		width: 16.66667%;
	}

	.row>.off-2-narrow {
		margin-left: 16.66667%;
	}

	.row>.col-3-narrow {
		width: 25%;
	}

	.row>.off-3-narrow {
		margin-left: 25%;
	}

	.row>.col-4-narrow {
		width: 33.33333%;
	}

	.row>.off-4-narrow {
		margin-left: 33.33333%;
	}

	.row>.col-5-narrow {
		width: 41.66667%;
	}

	.row>.off-5-narrow {
		margin-left: 41.66667%;
	}

	.row>.col-6-narrow {
		width: 50%;
	}

	.row>.off-6-narrow {
		margin-left: 50%;
	}

	.row>.col-7-narrow {
		width: 58.33333%;
	}

	.row>.off-7-narrow {
		margin-left: 58.33333%;
	}

	.row>.col-8-narrow {
		width: 66.66667%;
	}

	.row>.off-8-narrow {
		margin-left: 66.66667%;
	}

	.row>.col-9-narrow {
		width: 75%;
	}

	.row>.off-9-narrow {
		margin-left: 75%;
	}

	.row>.col-10-narrow {
		width: 83.33333%;
	}

	.row>.off-10-narrow {
		margin-left: 83.33333%;
	}

	.row>.col-11-narrow {
		width: 91.66667%;
	}

	.row>.off-11-narrow {
		margin-left: 91.66667%;
	}

	.row>.col-12-narrow {
		width: 100%;
	}

	.row>.off-12-narrow {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0em;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0em;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0em;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0em;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.5em;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.5em;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.5em;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.5em;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -1em;
	}

	.row.gtr-50>* {
		padding: 0 0 0 1em;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -1em;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 1em;
	}

	.row {
		margin-top: 0;
		margin-left: -2em;
	}

	.row>* {
		padding: 0 0 0 2em;
	}

	.row.gtr-uniform {
		margin-top: -2em;
	}

	.row.gtr-uniform>* {
		padding-top: 2em;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -3em;
	}

	.row.gtr-150>* {
		padding: 0 0 0 3em;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -3em;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 3em;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -4em;
	}

	.row.gtr-200>* {
		padding: 0 0 0 4em;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -4em;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 4em;
	}

}

@media screen and (max-width: 840px) {

	/* Oculta el menú superior en celulares */
	#header nav {
		display: none;
	}

	/* Muestra el botón hamburguesa */
	#navButton {
		display: block;
	}

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-narrower {
		order: -1;
	}

	.row>.col-1-narrower {
		width: 8.33333%;
	}

	.row>.off-1-narrower {
		margin-left: 8.33333%;
	}

	.row>.col-2-narrower {
		width: 16.66667%;
	}

	.row>.off-2-narrower {
		margin-left: 16.66667%;
	}

	.row>.col-3-narrower {
		width: 25%;
	}

	.row>.off-3-narrower {
		margin-left: 25%;
	}

	.row>.col-4-narrower {
		width: 33.33333%;
	}

	.row>.off-4-narrower {
		margin-left: 33.33333%;
	}

	.row>.col-5-narrower {
		width: 41.66667%;
	}

	.row>.off-5-narrower {
		margin-left: 41.66667%;
	}

	.row>.col-6-narrower {
		width: 50%;
	}

	.row>.off-6-narrower {
		margin-left: 50%;
	}

	.row>.col-7-narrower {
		width: 58.33333%;
	}

	.row>.off-7-narrower {
		margin-left: 58.33333%;
	}

	.row>.col-8-narrower {
		width: 66.66667%;
	}

	.row>.off-8-narrower {
		margin-left: 66.66667%;
	}

	.row>.col-9-narrower {
		width: 75%;
	}

	.row>.off-9-narrower {
		margin-left: 75%;
	}

	.row>.col-10-narrower {
		width: 83.33333%;
	}

	.row>.off-10-narrower {
		margin-left: 83.33333%;
	}

	.row>.col-11-narrower {
		width: 91.66667%;
	}

	.row>.off-11-narrower {
		margin-left: 91.66667%;
	}

	.row>.col-12-narrower {
		width: 100%;
	}

	.row>.off-12-narrower {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0em;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0em;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0em;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0em;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.5em;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.5em;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.5em;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.5em;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -1em;
	}

	.row.gtr-50>* {
		padding: 0 0 0 1em;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -1em;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 1em;
	}

	.row {
		margin-top: 0;
		margin-left: -2em;
	}

	.row>* {
		padding: 0 0 0 2em;
	}

	.row.gtr-uniform {
		margin-top: -2em;
	}

	.row.gtr-uniform>* {
		padding-top: 2em;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -3em;
	}

	.row.gtr-150>* {
		padding: 0 0 0 3em;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -3em;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 3em;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -4em;
	}

	.row.gtr-200>* {
		padding: 0 0 0 4em;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -4em;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 4em;
	}

	/* ===== Corrección del encabezado móvil ===== */

	#header {
		height: 4.5em;
		line-height: 4.5em;
	}

	#logo {
		position: absolute;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
		height: auto;
	}

	.logo-header {
		height: 42px;
		width: auto;
	}

	/* Hace el botón un poco más compacto */
	#navButton .toggle:before {
		width: 2.8em;
		left: 10px;
	}

	/* Contacto */
	.contacto-box {
		flex-direction: column;
		gap: 25px;
		text-align: center;
	}

	.contacto-imagen img {
		width: 220px;
		max-width: 100%;
	}

	.contacto-info {
		width: 100%;
		text-align: center;
	}

	.contacto-info h3 {
		font-size: 1.6em;
	}

	.contacto-info p {
		font-size: 1.1em;
	}

}

@media screen and (max-width: 736px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-mobile {
		order: -1;
	}

	.row>.col-1-mobile {
		width: 8.33333%;
	}

	.row>.off-1-mobile {
		margin-left: 8.33333%;
	}

	.row>.col-2-mobile {
		width: 16.66667%;
	}

	.row>.off-2-mobile {
		margin-left: 16.66667%;
	}

	.row>.col-3-mobile {
		width: 25%;
	}

	.row>.off-3-mobile {
		margin-left: 25%;
	}

	.row>.col-4-mobile {
		width: 33.33333%;
	}

	.row>.off-4-mobile {
		margin-left: 33.33333%;
	}

	.row>.col-5-mobile {
		width: 41.66667%;
	}

	.row>.off-5-mobile {
		margin-left: 41.66667%;
	}

	.row>.col-6-mobile {
		width: 50%;
	}

	.row>.off-6-mobile {
		margin-left: 50%;
	}

	.row>.col-7-mobile {
		width: 58.33333%;
	}

	.row>.off-7-mobile {
		margin-left: 58.33333%;
	}

	.row>.col-8-mobile {
		width: 66.66667%;
	}

	.row>.off-8-mobile {
		margin-left: 66.66667%;
	}

	.row>.col-9-mobile {
		width: 75%;
	}

	.row>.off-9-mobile {
		margin-left: 75%;
	}

	.row>.col-10-mobile {
		width: 83.33333%;
	}

	.row>.off-10-mobile {
		margin-left: 83.33333%;
	}

	.row>.col-11-mobile {
		width: 91.66667%;
	}

	.row>.off-11-mobile {
		margin-left: 91.66667%;
	}

	.row>.col-12-mobile {
		width: 100%;
	}

	.row>.off-12-mobile {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0em;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0em;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0em;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0em;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.5em;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.5em;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.5em;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.5em;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -1em;
	}

	.row.gtr-50>* {
		padding: 0 0 0 1em;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -1em;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 1em;
	}

	.row {
		margin-top: 0;
		margin-left: -2em;
	}

	.row>* {
		padding: 0 0 0 2em;
	}

	.row.gtr-uniform {
		margin-top: -2em;
	}

	.row.gtr-uniform>* {
		padding-top: 2em;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -3em;
	}

	.row.gtr-150>* {
		padding: 0 0 0 3em;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -3em;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 3em;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -4em;
	}

	.row.gtr-200>* {
		padding: 0 0 0 4em;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -4em;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 4em;
	}

}

@media screen and (max-width: 480px) {

	.row {
		display: flex;
		flex-wrap: wrap;
		box-sizing: border-box;
		align-items: stretch;
	}

	.row>* {
		box-sizing: border-box;
	}

	.row.gtr-uniform>*> :last-child {
		margin-bottom: 0;
	}

	.row.aln-left {
		justify-content: flex-start;
	}

	.row.aln-center {
		justify-content: center;
	}

	.row.aln-right {
		justify-content: flex-end;
	}

	.row.aln-top {
		align-items: flex-start;
	}

	.row.aln-middle {
		align-items: center;
	}

	.row.aln-bottom {
		align-items: flex-end;
	}

	.row>.imp-mobilep {
		order: -1;
	}

	.row>.col-1-mobilep {
		width: 8.33333%;
	}

	.row>.off-1-mobilep {
		margin-left: 8.33333%;
	}

	.row>.col-2-mobilep {
		width: 16.66667%;
	}

	.row>.off-2-mobilep {
		margin-left: 16.66667%;
	}

	.row>.col-3-mobilep {
		width: 25%;
	}

	.row>.off-3-mobilep {
		margin-left: 25%;
	}

	.row>.col-4-mobilep {
		width: 33.33333%;
	}

	.row>.off-4-mobilep {
		margin-left: 33.33333%;
	}

	.row>.col-5-mobilep {
		width: 41.66667%;
	}

	.row>.off-5-mobilep {
		margin-left: 41.66667%;
	}

	.row>.col-6-mobilep {
		width: 50%;
	}

	.row>.off-6-mobilep {
		margin-left: 50%;
	}

	.row>.col-7-mobilep {
		width: 58.33333%;
	}

	.row>.off-7-mobilep {
		margin-left: 58.33333%;
	}

	.row>.col-8-mobilep {
		width: 66.66667%;
	}

	.row>.off-8-mobilep {
		margin-left: 66.66667%;
	}

	.row>.col-9-mobilep {
		width: 75%;
	}

	.row>.off-9-mobilep {
		margin-left: 75%;
	}

	.row>.col-10-mobilep {
		width: 83.33333%;
	}

	.row>.off-10-mobilep {
		margin-left: 83.33333%;
	}

	.row>.col-11-mobilep {
		width: 91.66667%;
	}

	.row>.off-11-mobilep {
		margin-left: 91.66667%;
	}

	.row>.col-12-mobilep {
		width: 100%;
	}

	.row>.off-12-mobilep {
		margin-left: 100%;
	}

	.row.gtr-0 {
		margin-top: 0;
		margin-left: 0em;
	}

	.row.gtr-0>* {
		padding: 0 0 0 0em;
	}

	.row.gtr-0.gtr-uniform {
		margin-top: 0em;
	}

	.row.gtr-0.gtr-uniform>* {
		padding-top: 0em;
	}

	.row.gtr-25 {
		margin-top: 0;
		margin-left: -0.5em;
	}

	.row.gtr-25>* {
		padding: 0 0 0 0.5em;
	}

	.row.gtr-25.gtr-uniform {
		margin-top: -0.5em;
	}

	.row.gtr-25.gtr-uniform>* {
		padding-top: 0.5em;
	}

	.row.gtr-50 {
		margin-top: 0;
		margin-left: -1em;
	}

	.row.gtr-50>* {
		padding: 0 0 0 1em;
	}

	.row.gtr-50.gtr-uniform {
		margin-top: -1em;
	}

	.row.gtr-50.gtr-uniform>* {
		padding-top: 1em;
	}

	.row {
		margin-top: 0;
		margin-left: -2em;
	}

	.row>* {
		padding: 0 0 0 2em;
	}

	.row.gtr-uniform {
		margin-top: -2em;
	}

	.row.gtr-uniform>* {
		padding-top: 2em;
	}

	.row.gtr-150 {
		margin-top: 0;
		margin-left: -3em;
	}

	.row.gtr-150>* {
		padding: 0 0 0 3em;
	}

	.row.gtr-150.gtr-uniform {
		margin-top: -3em;
	}

	.row.gtr-150.gtr-uniform>* {
		padding-top: 3em;
	}

	.row.gtr-200 {
		margin-top: 0;
		margin-left: -4em;
	}

	.row.gtr-200>* {
		padding: 0 0 0 4em;
	}

	.row.gtr-200.gtr-uniform {
		margin-top: -4em;
	}

	.row.gtr-200.gtr-uniform>* {
		padding-top: 4em;
	}

}

/* Container */

.container {
	margin: 0 auto;
	max-width: calc(100% - 5em);
	width: 60em;
}

.container.xsmall {
	width: 15em;
}

.container.small {
	width: 30em;
}

.container.medium {
	width: 45em;
}

.container.large {
	width: 75em;
}

.container.xlarge {
	width: 90em;
}

.container.max {
	width: 100%;
}

@media screen and (max-width: 840px) {

	.container {
		width: 100% !important;
	}

}

@media screen and (max-width: 736px) {

	.container {
		max-width: 100%;
	}

}

/* Section/Article */

section.special,
article.special {
	text-align: center;
}

header p {
	color: #999;
	position: relative;
	margin: 0 0 1.5em 0;
	font-style: italic;
}

header h2+p {
	font-size: 1.25em;
	margin-top: -1em;
	line-height: 1.5em;
}

header h3+p {
	font-size: 1.1em;
	margin-top: -0.85em;
	line-height: 1.5em;
}

header h4+p,
header h5+p,
header h6+p {
	font-size: 0.8em;
	margin-top: -0.5em;
	line-height: 1.5em;
}

header.major {
	padding: 1em 0;
	text-align: center;
}

header.major h2 {
	margin: 0;
}

header.major p {
	display: inline-block;
	border-top: solid 2px #e5e5e5;
	color: #777;
	margin: 1.5em 0 0 0;
	padding: 1.5em 0 0 0;
	font-style: normal;
}

/*==========================
        DIRECTIVA
==========================*/

.directiva-grid{

    display:grid;
    grid-template-columns:repeat(3, minmax(320px,1fr));
    gap:1.5em;
    align-items:start;

}

.directiva-item{

    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:15px;
    padding:1.5em 1.5em;
    text-align:center;
    transition:.3s;
    min-height:340px;

}

.directiva-item:hover{

    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.foto-directiva{

    display:flex;
    justify-content:center;
    margin-bottom:1.5em;

}

.foto-directiva img{

    width:160px;
    height:160px;
    border-radius:50%;
    object-fit:cover;

}

.info-directiva h3{

    margin:0;
    font-size:1.4em;
    color:#333;
	height:155px;
	display:flex;
    align-items:center;
    justify-content:center;

}

.cargo{

    display:block;
    margin:.7em 0;
    letter-spacing:3px;

}

.info-directiva p{

    margin:.4em 0;
    font-size:1.2em;
    line-height:1.2;

}

/* Responsive */
@media screen and (max-width:980px){

    .directiva-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media screen and (max-width:736px){

    .directiva-grid{
        grid-template-columns:1fr;
    }

}

/* ===========================
   CONTACTO
=========================== */

header.contacto-titulo {
	padding: 1em 0 0.5em;
	margin-bottom: 0.5em;
}

header.contacto-titulo .icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: #f2f7ef;
	color: #385723;
	font-size: 1.8em;
	margin-bottom: 0.8em;
}

header.contacto-titulo h2 {
	font-size: 2.8em;
	color: #385723;
	font-weight: 700;
	margin-bottom: 0.3em;
}

header.contacto-titulo p {
	display: block;
	border-top: none;
	margin: 0 auto;
	padding: 0;
	max-width: 700px;
	font-size: 1.1em;
	line-height: 1.6;
	color: #666;
}

/*=====================================
        AVISOS IMPORTANTES
=====================================*/

#destacados {
	padding: 5em 0;
}

.destacado-card {
	display: grid;
	grid-template-columns: 55% 45%;
	gap: 4em;
	align-items: center;
	width: 100%;
	max-width: 1400px;
	margin: auto;
}

.destacado-imagen {

	width: 100%;
	height: 480px;
	object-fit: cover;
	border-radius: 15px;

}

.destacado-imagen img {

	width: 100%;
	height: 430px;
	object-fit: cover;
	display: block;

}

.destacado-info {
	max-width: 500px;
}

.categoria {

	display: inline-block;
	width: fit-content;
	background: #EAF5ED;
	color: #0D542B;
	font-weight: 700;
	padding: .4em 1em;
	border-radius: 30px;
	margin-bottom: 1em;
	text-transform: uppercase;
	font-size: .85em;

}

.destacado-info h3 {

	font-size: 2.5em;
	line-height: 1.2;

}

.destacado-info p {

	font-size: 1.2em;
	line-height: 1.8;

}

.destacado-info .button {

	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	min-width: 150px;
	padding: .10em 1.6em;
	font-size: .95em;
	border-radius: 8px;
}

.swiper {

	padding-bottom: 60px;

}

.swiper-pagination-bullet-active {

	background: #0D542B;

}

.swiper-button-next,
.swiper-button-prev {

	color: #0D542B !important;
	border-radius: 50%;
	width: 58px;
	height: 58px;

}

.swiper-button-next::after,
.swiper-button-prev::after {

	color: #0D542B !important;

}

@media screen and (max-width:980px) {

	.destacado-card {

		grid-template-columns: 1fr;

	}

	.destacado-imagen img {

		height: 260px;

	}

	.destacado-info {

		padding: 2em;

		text-align: center;

	}

	.destacado-info .button {

		margin: auto;

	}

}

/* ===========================
   CONTACTO - FORMULARIO
=========================== */

.input-icon {
	position: relative;
}

.input-icon i {
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	color: #385723;
	font-size: 1.1em;
	z-index: 2;
	pointer-events: none;
}

.input-icon input,
.input-icon textarea {
	padding-left: 3.8em !important;
}

.textarea-icon i {
	top: 18px;
	transform: none;
}

.textarea-icon textarea {
	padding-left: 3.2em;
	padding-top: 1em;
}

/* Form */

form {
	margin: 0 0 2em 0;
}

label {
	color: #646464;
	display: block;
	font-size: 0.9em;
	font-weight: 300;
	margin: 0 0 1em 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	background-color: #f8f8f8;
	border-radius: 6px;
	border: solid 1px #e5e5e5;
	color: inherit;
	display: block;
	outline: 0;
	padding: 0 1em;
	text-decoration: none;
	width: 100%;
}

input[type="text"]:invalid,
input[type="password"]:invalid,
input[type="email"]:invalid,
select:invalid,
textarea:invalid {
	box-shadow: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
	border-color: #e89980;
	box-shadow: 0 0 0 2px #e89980;
}

select {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' preserveAspectRatio='none' viewBox='0 0 40 40'%3E%3Cpath d='M9.4,12.3l10.4,10.4l10.4-10.4c0.2-0.2,0.5-0.4,0.9-0.4c0.3,0,0.6,0.1,0.9,0.4l3.3,3.3c0.2,0.2,0.4,0.5,0.4,0.9 c0,0.4-0.1,0.6-0.4,0.9L20.7,31.9c-0.2,0.2-0.5,0.4-0.9,0.4c-0.3,0-0.6-0.1-0.9-0.4L4.3,17.3c-0.2-0.2-0.4-0.5-0.4-0.9 c0-0.4,0.1-0.6,0.4-0.9l3.3-3.3c0.2-0.2,0.5-0.4,0.9-0.4S9.1,12.1,9.4,12.3z' fill='%23e5e5e5' /%3E%3C/svg%3E");
	background-size: 1.25em;
	background-repeat: no-repeat;
	background-position: calc(100% - 1em) center;
	height: 3em;
	padding-right: 3em;
	text-overflow: ellipsis;
}

select option {
	color: #777;
	background-color: #f5f5f5;
}

select:focus::-ms-value {
	background-color: transparent;
}

select::-ms-expand {
	display: none;
}

input[type="text"],
input[type="password"],
input[type="email"],
select {
	height: 3em;
}

textarea {
	padding: 0.75em 1em;
}

input[type="checkbox"],
input[type="radio"] {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	display: block;
	float: left;
	margin-right: -2em;
	opacity: 0;
	width: 1em;
	z-index: -1;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
	text-decoration: none;
	color: #777;
	cursor: pointer;
	display: inline-block;
	font-size: 1em;
	font-weight: 300;
	padding-left: 2.55em;
	padding-right: 0.75em;
	position: relative;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
}

input[type="checkbox"]+label:before,
input[type="radio"]+label:before {
	background: #f8f8f8;
	border-radius: 6px;
	border: solid 1px #e5e5e5;
	content: '';
	display: inline-block;
	font-size: 0.8em;
	height: 2.25em;
	left: 0;
	line-height: 2.25em;
	position: absolute;
	text-align: center;
	top: 0;
	width: 2.25em;
}

input[type="checkbox"]:checked+label:before,
input[type="radio"]:checked+label:before {
	background: #666;
	border-color: #666;
	color: #ffffff;
	content: '\f00c';
}

input[type="checkbox"]:focus+label:before,
input[type="radio"]:focus+label:before {
	border-color: #e89980;
	box-shadow: 0 0 0 1px #e89980;
}

input[type="checkbox"]+label:before {
	border-radius: 6px;
}

input[type="radio"]+label:before {
	border-radius: 100%;
}

::-webkit-input-placeholder {
	color: #999 !important;
	opacity: 1.0;
}

:-moz-placeholder {
	color: #999 !important;
	opacity: 1.0;
}

::-moz-placeholder {
	color: #999 !important;
	opacity: 1.0;
}

:-ms-input-placeholder {
	color: #999 !important;
	opacity: 1.0;
}

/* Box */

.box {
	background: #fff;
	border: 1px solid rgba(56, 87, 35, 0.12);
	border-radius: 18px;
	box-shadow:
		0 4px 10px rgba(0, 0, 0, .05),
		0 15px 35px rgba(0, 0, 0, .08);
	padding: 3em;
	margin: 0 0 2em 0;
	transition: all .3s ease;
}


.box> :last-child {
	margin-bottom: 0;
}

.box.alt {
	background: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	margin: 0 0 2em 0;
	padding: 0 !important;
}

.box.features .features-row {
	border-top: solid 2px #e5e5e5;
	position: relative;
}

.box.features .features-row:after {
	clear: both;
	content: '';
	display: block;
}

.box.features .features-row section {
	float: left;
	padding: 3em;
	width: 50%;
}

.box.features .features-row section :last-child {
	margin-bottom: 0;
}

.box.features .features-row section:nth-child(2n) {
	padding-right: 0;
}

.box.features .features-row section:nth-child(2n):before {
	background: #e5e5e5;
	content: '';
	display: block;
	height: 100%;
	margin-left: -3em;
	position: absolute;
	top: 0;
	width: 2px;
}

.box.features .features-row section:nth-child(2n-1) {
	padding-left: 0;
}

.box.features .features-row:first-child {
	border-top: 0;
}

.box.features .features-row:first-child section {
	padding-top: 0;
}

.box.features .features-row:last-child {
	padding-bottom: 0;
}

.box.features .features-row:last-child section {
	padding-bottom: 0;
}

.features-row h3 {
	font-size: 2em !important;
}

.features-row p {
	font-size: 1.1em !important;
}

.box.special {
	width: 100%;
	max-width: 100%;
	margin: 0 0 5em 0;
	border-radius: 20px;
	padding: 3em;
	box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.box .image.featured {
	border-radius: 0;
	display: block;
	margin: 3em 0 3em -3em;
	position: relative;
	width: calc(100% + 6em);
}

.box .image.featured img {
	border-radius: 0;
	display: block;
	width: 100%;
}

.box .image.featured:first-child {
	border-radius: 6px 6px 0 0;
	margin-bottom: 3em;
	margin-top: -150px;
}

.box .image.featured:first-child img {
	border-radius: 6px 6px 0 0;
}

.box .image.featured:last-child {
	border-radius: 0 0 6px 6px;
	margin-bottom: -3em;
	margin-top: 3em;
}

.box .image.featured:last-child img {
	border-radius: 0 0 6px 6px;
}

/* Icon */

.icon {
	text-decoration: none;
	border-bottom: none;
	position: relative;
}

.icon:before {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	text-transform: none !important;
	font-family: 'Font Awesome 5 Free';
	font-weight: 400;
}

.icon>.label {
	display: none;
}

.icon:before {
	line-height: inherit;
}

.icon.solid:before {
	font-weight: 900;
}

.icon.brands:before {
	font-family: 'Font Awesome 5 Brands';
}

.icon.major {
	background: #666;
	border-radius: 100%;
	color: ;
	cursor: default;
	display: inline-block;
	height: 5.5em;
	line-height: 5.5em;
	margin: 0 0 2em 0;
	width: 5.5em;
}

.icon.major:before {
	font-size: 2.5em;
}

.icon.major.accent1 {
	background: #666;
	color: #ffffff;
}

.icon.major.accent2 {
	background: #05DF72;
	color: #ffffff;
}

.icon.major.accent3 {
	background: #193CB8;
	color: #ffffff;
}

.icon.major.accent4 {
	background: #E7180B;
	color: #ffffff;
}

.icon.major.accent5 {
	background: #35530E;
	color: #ffffff;
}

/* Image */

.image {
	border-radius: 6px;
	border: 0;
	display: inline-block;
	position: relative;
}

.image img {
	border-radius: 6px;
	display: block;
}

.image.left {
	float: left;
	padding: 0 1.5em 1em 0;
	top: 0.25em;
}

.image.right {
	float: right;
	padding: 0 0 1em 1.5em;
	top: 0.25em;
}

.image.fit {
	display: block;
	margin: 0 0 2em 0;
	width: 100%;
}

.image.fit img {
	display: block;
	width: 100%;
}

/* List */

ol {
	list-style: decimal;
	margin: 0 0 2em 0;
	padding-left: 1.25em;
}

ol li {
	padding-left: 0.25em;
}

ul {
	list-style: disc;
	margin: 0 0 2em 0;
	padding-left: 1em;
}

ul li {
	padding-left: 0.5em;
}

ul.alt {
	list-style: none;
	padding-left: 0;
}

ul.alt li {
	border-top: solid 1px #e5e5e5;
	padding: 0.5em 0;
}

ul.alt li:first-child {
	border-top: 0;
	padding-top: 0;
}

ul.icons {
	cursor: default;
	list-style: none;
	padding-left: 0;
}

ul.icons li {
	display: inline-block;
	padding: 0 1.25em 0 0;
}

ul.icons li:last-child {
	padding-right: 0;
}

ul.icons li .icon {
	color: inherit;
}

ul.icons li .icon:before {
	font-size: 1.75em;
}

dl {
	margin: 0 0 2em 0;
}

/* Actions */

ul.actions {
	display: -moz-flex;
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	cursor: default;
	list-style: none;
	margin-left: -1em;
	padding-left: 0;
}

ul.actions li {
	padding: 0 0 0 1em;
	vertical-align: middle;
}

ul.actions.special {
	-moz-justify-content: center;
	-webkit-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	width: 100%;
	margin-left: 0;
}

ul.actions.special li:first-child {
	padding-left: 0;
}

ul.actions.stacked {
	-moz-flex-direction: column;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-left: 0;
}

ul.actions.stacked li {
	padding: 1.3em 0 0 0;
}

ul.actions.stacked li:first-child {
	padding-top: 0;
}

ul.actions.fit {
	width: calc(100% + 1em);
}

ul.actions.fit li {
	-moz-flex-grow: 1;
	-webkit-flex-grow: 1;
	-ms-flex-grow: 1;
	flex-grow: 1;
	-moz-flex-shrink: 1;
	-webkit-flex-shrink: 1;
	-ms-flex-shrink: 1;
	flex-shrink: 1;
	width: 100%;
}

ul.actions.fit li>* {
	width: 100%;
}

ul.actions.fit.stacked {
	width: 100%;
}

@media screen and (max-width: 480px) {

	ul.actions:not(.fixed) {
		-moz-flex-direction: column;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-left: 0;
		width: 100% !important;
	}

	ul.actions:not(.fixed) li {
		-moz-flex-grow: 1;
		-webkit-flex-grow: 1;
		-ms-flex-grow: 1;
		flex-grow: 1;
		-moz-flex-shrink: 1;
		-webkit-flex-shrink: 1;
		-ms-flex-shrink: 1;
		flex-shrink: 1;
		padding: 1em 0 0 0;
		text-align: center;
		width: 100%;
	}

	ul.actions:not(.fixed) li>* {
		width: 100%;
	}

	ul.actions:not(.fixed) li:first-child {
		padding-top: 0;
	}

	ul.actions:not(.fixed) li input[type="submit"],
	ul.actions:not(.fixed) li input[type="reset"],
	ul.actions:not(.fixed) li input[type="button"],
	ul.actions:not(.fixed) li button,
	ul.actions:not(.fixed) li .button {
		width: 100%;
	}

	ul.actions:not(.fixed) li input[type="submit"].icon:before,
	ul.actions:not(.fixed) li input[type="reset"].icon:before,
	ul.actions:not(.fixed) li input[type="button"].icon:before,
	ul.actions:not(.fixed) li button.icon:before,
	ul.actions:not(.fixed) li .button.icon:before {
		margin-left: -0.5em;
	}

}

/* btn-arriba */
#btn-arriba {
	position: fixed;
	bottom: 25px;
	right: 25px;

	width: 50px;
	height: 50px;

	background: #0D542B;
	color: white;

	text-decoration: none;
	font-size: 28px;
	font-weight: bold;

	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	box-shadow: 0 4px 10px rgba(0, 0, 0, .3);

	z-index: 999;

	transition: all .3s ease;
}

#btn-arriba:hover {
	background: #1E88E5;
	transform: translateY(-3px);
}

/* Table */

.table-wrapper {
	-webkit-overflow-scrolling: touch;
	overflow-x: auto;
}

table {
	margin: 0 0 2em 0;
	width: 100%;
}

table tbody tr {
	border: solid 1px #e5e5e5;
	border-left: 0;
	border-right: 0;
}

table tbody tr:nth-child(2n + 1) {
	background-color: #f8f8f8;
}

table td {
	padding: 0.75em 0.75em;
}

table th {
	color: #646464;
	font-size: 0.9em;
	font-weight: 300;
	padding: 0 0.75em 0.75em 0.75em;
	text-align: left;
}

table thead {
	border-bottom: solid 2px #e5e5e5;
}

table tfoot {
	border-top: solid 2px #e5e5e5;
}

table.alt {
	border-collapse: separate;
}

table.alt tbody tr td {
	border: solid 1px #e5e5e5;
	border-left-width: 0;
	border-top-width: 0;
}

table.alt tbody tr td:first-child {
	border-left-width: 1px;
}

table.alt tbody tr:first-child td {
	border-top-width: 1px;
}

table.alt thead {
	border-bottom: 0;
}

table.alt tfoot {
	border-top: 0;
}

/* Button */

input[type="submit"],
input[type="reset"],
input[type="button"],
.button {
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-appearance: none;
	appearance: none;
	-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
	background-color: #0D542B;
	border-radius: 6px;
	border: 0;
	color: #ffffff;
	cursor: pointer;
	display: inline-block;
	font-weight: 400;
	height: 3em;
	line-height: 3em;
	padding: 0 2em;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:hover {
	background-color: #14703A;
	border-radius: 6px;
	color: #ffffff;
}

input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active,
.button:active {
	background-color: #595959;
}

input[type="submit"].icon,
input[type="reset"].icon,
input[type="button"].icon,
.button.icon {
	padding-left: 1.35em;
}

input[type="submit"].icon:before,
input[type="reset"].icon:before,
input[type="button"].icon:before,
.button.icon:before {
	margin-right: 0.5em;
}

input[type="submit"].fit,
input[type="reset"].fit,
input[type="button"].fit,
.button.fit {
	width: 100%;
}

input[type="submit"].small,
input[type="reset"].small,
input[type="button"].small,
.button.small {
	font-size: 0.8em;
	height: 2.7em;
	line-height: 2.7em;
}

input[type="submit"].large,
input[type="reset"].large,
input[type="button"].large,
.button.large {
	font-size: 1.25em;
	height: 2.7em;
	line-height: 2.7em;
}

input[type="submit"].alt,
input[type="reset"].alt,
input[type="button"].alt,
.button.alt {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px #e5e5e5;
	color: #777;
}

input[type="submit"].alt:hover,
input[type="reset"].alt:hover,
input[type="button"].alt:hover,
.button.alt:hover {
	background-color: #f8f8f8;
}

input[type="submit"].alt:active,
input[type="reset"].alt:active,
input[type="button"].alt:active,
.button.alt:active {
	background-color: #f0f0f0;
}

input[type="submit"].alt.icon:before,
input[type="reset"].alt.icon:before,
input[type="button"].alt.icon:before,
.button.alt.icon:before {
	color: #999;
}

input[type="submit"].primary,
input[type="reset"].primary,
input[type="button"].primary,
.button.primary {
    background: #0D542B;
    border-color: #0D542B;
    color: #fff !important;
}

input[type="submit"].primary:hover,
input[type="reset"].primary:hover,
input[type="button"].primary:hover,
.button.primary:hover {
	background: #166637;
    border-color: #166637;
}

input[type="submit"].primary:active,
input[type="reset"].primary:active,
input[type="button"].primary:active,
.button.primary:active {
	background-color: #e4886a;
}

input[type="submit"].disabled,
input[type="submit"]:disabled,
input[type="reset"].disabled,
input[type="reset"]:disabled,
input[type="button"].disabled,
input[type="button"]:disabled,
.button.disabled,
.button:disabled {
	background-color: #777 !important;
	box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
	color: #f5f5f5 !important;
	cursor: default;
	opacity: 0.25;
}

/* Header */

#page-wrapper {
	padding-top: 3em;
}

body.landing #page-wrapper {
	padding-top: 0;
}

@-moz-keyframes reveal-header {
	0% {
		top: -5em;
	}

	100% {
		top: 0;
	}
}

@-webkit-keyframes reveal-header {
	0% {
		top: -5em;
	}

	100% {
		top: 0;
	}
}

@-ms-keyframes reveal-header {
	0% {
		top: -5em;
	}

	100% {
		top: 0;
	}
}

@keyframes reveal-header {
	0% {
		top: -5em;
	}

	100% {
		top: 0;
	}
}

#header {
	background: #ffffff;
	color: #385723;
	cursor: default;
	height: 4.5em;
	left: 0;
	line-height: 4.5em;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 10000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
}

#header h1 {
	color: inherit;
	height: inherit;
	left: 1.25em;
	line-height: inherit;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
}

#header h1 a {
	color: #385723;
	font-weight: 700;
	border: 0;
}

#header nav {
	height: inherit;
	line-height: inherit;
	position: absolute;
	right: 0.75em;
	top: 0;
	vertical-align: middle;
}

#header nav>ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}

#header nav>ul>li {
	display: inline-block;
	padding-left: 0;
}

#header nav>ul>li>ul {
	display: none;
}

#header nav>ul>li a {
	display: inline-block;
	height: 2em;
	line-height: 1.95em;
	padding: 0 1em;
	border-radius: 6px;
}

#header nav>ul>li a:not(.button) {
	color: #385723;
	display: inline-block;
	text-decoration: none;
	border: 0;
	font-weight: 600;
}

#header nav>ul>li a:not(.button).icon:before {
	color: #385723;
	margin-right: 0.5em;
}

#header nav>ul>li:first-child {
	margin-left: 0;
}

#header nav>ul>li.active a:not(.button) {
	background-color: rgba(153, 153, 153, 0.25);
}

#header nav>ul>li .button {
	margin: 0 0 0 0.5em;
	position: relative;
}

#header input[type="submit"],
#header input[type="reset"],
#header input[type="button"],
#header .button {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px #385723;
	color: #385723;
}

#header input[type="submit"]:hover,
#header input[type="reset"]:hover,
#header input[type="button"]:hover,
#header .button:hover {
	background-color: rgba(153, 153, 153, 0.25);
}

#header input[type="submit"]:active,
#header input[type="reset"]:active,
#header input[type="button"]:active,
#header .button:active {
	background-color: rgba(153, 153, 153, 0.5);
}

#header .container {
	position: relative;
}

#header .container h1 {
	left: 0;
}

#header .container nav {
	right: 0;
}

#header.reveal {
	-moz-animation: reveal-header 0.5s;
	-webkit-animation: reveal-header 0.5s;
	-ms-animation: reveal-header 0.5s;
	animation: reveal-header 0.5s;
}

#header.alt {
	background: #ffffff;
	height: 4.5em;
	line-height: 4.5em;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
}

#header.alt nav>ul>li a:not(.button).icon:before {
	color: #385723;
}

#header.alt nav>ul>li.active a:not(.button) {
	background-color: rgba(255, 255, 255, 0.2);
}

#header.alt input[type="submit"],
#header.alt input[type="reset"],
#header.alt input[type="button"],
#header.alt .button {
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
}

#header.alt input[type="submit"]:hover,
#header.alt input[type="reset"]:hover,
#header.alt input[type="button"]:hover,
#header.alt .button:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

#header.alt input[type="submit"]:active,
#header.alt input[type="reset"]:active,
#header.alt input[type="button"]:active,
#header.alt .button:active {
	background-color: rgba(255, 255, 255, 0.2);
}

/* Logo Nav */
#logo {
	position: absolute;
	left: 30px;
	top: 0;
	height: 100%;
	display: flex;
	align-items: center;
	margin: 0;
}

.logo-header {
	display: block;
	height: 58px;
	/* Ajusta a tu gusto */
	width: auto;
}

#nav {
	position: absolute;
	right: 30px;
}

.dropotron {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.065),
		inset 0 -1px 0 0 #fff,
		inset 0 0 0 1px rgba(229, 229, 229, 0.5);
	list-style: none;
	margin: calc(-0.5em + 1px) 0 0 1px;
	padding: 0.5em 0;
	width: 11em;
}

.dropotron li {
	padding: 0;
}

.dropotron li a,
.dropotron li span {
	-moz-transition: none;
	-webkit-transition: none;
	-ms-transition: none;
	transition: none;
	border: 0;
	border-top: solid 1px #f2f2f2;
	color: inherit;
	display: block;
	padding: 0.15em 1em;
}

.dropotron li:first-child>a,
.dropotron li:first-child>span {
	border-top: 0;
}

.dropotron li.active>a,
.dropotron li.active>span,
.dropotron li:hover>a,
.dropotron li:hover>span {
	background: #0D542B;
	color: #ffffff;
}

.dropotron.level-0 {
	font-size: 0.9em;
	margin: 1em 0 0 0;
}

.dropotron.level-0:before {
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #fff;
	border: solid 1px rgba(229, 229, 229, 0.5);
	border-bottom: 0;
	border-right: 0;
	box-shadow: -0.25em -0.125em 0.125em 0 rgba(0, 0, 0, 0.015);
	content: '';
	display: block;
	height: 0.75em;
	position: absolute;
	right: 1.25em;
	top: -0.375em;
	width: 0.75em;
	z-index: 0;
}

/* Banner */

#banner {
	background-attachment: scroll;
	background-color: #666;
	background-image: url("images/overlay.png"), url("../../images/banner.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	padding: 16em 0 15em 0;
	text-align: center;
}

#banner :last-child {
	margin-bottom: 0;
}

#banner h2,
#banner h3,
#banner h4,
#banner h5,
#banner h6 {
	color: #fff;
}

#banner h2 {
	font-size: 3.5em;
	line-height: 1em;
	margin: 0 0 0.5em 0;
	padding: 0;
}

#banner p {
	font-size: 1.25em;
	margin-bottom: 1.75em;
}

#banner input[type="submit"],
#banner input[type="reset"],
#banner input[type="button"],
#banner .button {
	background-color: transparent;
	box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
	color: #fff;
	min-width: 12em;
}

#banner input[type="submit"]:hover,
#banner input[type="reset"]:hover,
#banner input[type="button"]:hover,
#banner .button:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

#banner input[type="submit"]:active,
#banner input[type="reset"]:active,
#banner input[type="button"]:active,
#banner .button:active {
	background-color: rgba(255, 255, 255, 0.2);
}

#banner input[type="submit"].primary,
#banner input[type="reset"].primary,
#banner input[type="button"].primary,
#banner .button.primary {
	background: #fff;
	color: #666 !important;
}

/* Main */

#main {
	margin-top: -85px;
	position: relative;
	z-index: 10;
}

#main>header {
	text-align: center;
	margin: 0 0 3em 0;
}

#main>header h2 {
	font-size: 2.75em;
	margin: 0;
}

#main>header p {
	border-top: solid 2px #e5e5e5;
	color: #777;
	display: inline-block;
	font-style: normal;
	margin: 1em 0 0 0;
	padding: 1em 0 1.25em 0;
}

body.landing #main {
	margin-top: -14em;
}

/* Footer */

#footer {
	background: #f0f0f0;
	padding: 4em 0 6em 0;
	text-align: center;
}

#footer .icons a {
	-moz-transition: opacity 0.2s ease-in-out;
	-webkit-transition: opacity 0.2s ease-in-out;
	-ms-transition: opacity 0.2s ease-in-out;
	g transition: opacity 0.2s ease-in-out;
	opacity: 0.35;
}

#footer .icons a:hover {
	opacity: 0.75;
}

#footer .copyright {
	color: #999;
	font-size: 0.9em;
	line-height: 1em;
	margin: 2em 0 0 0;
	padding: 0;
	text-align: center;
}

#footer .copyright a {
	color: inherit;
}

#footer .copyright li {
	border-left: solid 1px #dddddd;
	display: inline-block;
	list-style: none;
	margin-left: 1em;
	padding-left: 1em;
}

#footer .copyright li:first-child {
	border-left: 0;
	margin-left: 0;
	padding-left: 0;
}

/* CTA */
#cta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 70px;
	background: #0D542B;
	color: white;
	padding: 3em 0;
}

.cta-imagen img {
	width: 550px;
	border-radius: 20px;
}

.cta-info {
	max-width: 450px;
	text-align: left;
}

.cta-info h2 {
	font-size: 2em;
	margin-bottom: 20px;
	color: white;
}

.cta-info p {
	font-size: 1.3em;
	line-height: 1.8;
}

/* INFORMACION */

.cta-info {
	margin-left: 50px;
}

.cta-info p {
	font-size: 1.2em;
	line-height: 1.8;
	margin-bottom: 1em;
}

.cta-info a {
	color: white;
	text-decoration: none;
	font-weight: 700;
}

.cta-info a:hover {
	color: #4DA6FF;
}

/* Link */

#cta .cta-info a {
	color: white;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	transition: 0.3s;
}

#cta .cta-info a:hover {
	color: #4DA6FF;
	border-bottom-color: #4DA6FF;
}

/* Celulares */

@media screen and (max-width: 980px) {

	#cta {
		flex-direction: column;
		text-align: center;
	}

	#cta .cta-titulo h2 {
		font-size: 2.2em;
	}

	#cta .cta-imagen img {
		width: 180px;
	}

}

/* Wide */

@media screen and (max-width: 1680px) {

	/* Basic */

	body,
	input,
	select,
	textarea {
		font-size: 13pt;
	}

	/* Banner */

	#banner {
		padding: 10em 0 18em 0;
	}

}

/* Normal */

@media screen and (max-width: 1280px) {

	/* Basic */

	body,
	input,
	select,
	textarea {
		font-size: 11pt;
	}

	/* Header */

	.dropotron.level-0 {
		font-size: 1em;
	}

	/* Banner */

	#banner {
		background-attachment: scroll;
	}

	#banner h2 {
		font-size: 3.5em;
	}

}

/* Narrow */

@media screen and (max-width: 980px) {

	/* Basic */

	body,
	input,
	select,
	textarea {
		font-size: 11pt;
	}

}

/* Narrower */

#navPanel,
#navButton {
	display: none;
}

@media screen and (max-width: 840px) {

	/* Basic */

	html,
	body {
		overflow-x: hidden;
	}

	body,
	input,
	select,
	textarea {
		font-size: 11pt;
	}

	h2 br,
	h3 br,
	h4 br,
	h5 br,
	h6 br {
		display: none;
	}

	/* Section/Article */

	header br {
		display: none;
	}

	header.major {
		padding: 0 4em;
	}

	#header h1 {
		left: 60px !important;
	}

	/* Box */

	.box {
		padding: 3em 2em;
		max-width: 1200px;
		width: 90%;
		margin: 0 auto 3em auto;
		border-radius: 20px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, .10);
	}


	.box.features>section {
		padding: 3em 2em;
	}

	.box .image.featured {
		margin-left: -2em;
		width: calc(100% + 4em);
	}

	.box .image.featured:first-child {
		margin-bottom: 3em;
		margin-top: -3em;
	}

	.box .image.featured:last-child {
		margin-bottom: -3em;
		margin-top: 3em;
	}

	/* Header */

	#page-wrapper {
		padding-top: 0;
	}

	#header {
		height: 4.5em;
		line-height: 4.5em;
	}

	/* Banner */

	/* Nav */

	#page-wrapper {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		padding-bottom: 1px;
	}

	#navButton {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		display: block;
		height: 44px;
		left: 0;
		position: fixed;
		top: 0;
		width: 100%;
		z-index: 10001;
	}

	#navButton .toggle {
		text-decoration: none;
		height: 100%;
		left: 0;
		position: absolute;
		top: 0;
		width: 100%;
		border: 0;
		outline: 0;
	}

	#navButton .toggle:before {
		-moz-osx-font-smoothing: grayscale;
		-webkit-font-smoothing: antialiased;
		display: inline-block;
		font-style: normal;
		font-variant: normal;
		text-rendering: auto;
		line-height: 1;
		text-transform: none !important;
		font-family: 'Font Awesome 5 Free';
		font-weight: 900;
	}

	#navButton .toggle:before {
		background: #0D542B;
		border-radius: 6px;
		color: #fff;
		content: '\f0c9';
		display: block;
		font-size: 16px;
		height: 2.2em;
		width: 2.8em;
		left: 10px;
		top: 10px;
		line-height: 2.2em;
		position: absolute;
		text-align: center;
	}

	#navPanel {
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		backface-visibility: hidden;
		-moz-transform: translateX(-275px);
		-webkit-transform: translateX(-275px);
		-ms-transform: translateX(-275px);
		transform: translateX(-275px);
		-moz-transition: -moz-transform 0.5s ease;
		-webkit-transition: -webkit-transform 0.5s ease;
		-ms-transition: -ms-transform 0.5s ease;
		transition: transform 0.5s ease;
		display: block;
		height: 100%;
		left: 0;
		overflow-y: auto;
		position: fixed;
		top: 0;
		width: 275px;
		z-index: 10002;
		background: #0D542B;
		color: rgba(255, 255, 255, .85);
	}

	#navPanel .link {
		border-bottom: 0;
		border-top: solid 1px rgba(255, 255, 255, .12);
		color: rgba(255, 255, 255, .85);
		display: block;
		height: 44px;
		line-height: 44px;
		padding: 0 1em 0 1em;
		text-decoration: none;
	}

	#navPanel .link:hover {
		background: rgba(255, 255, 255, .08);
	}

	#navPanel .link:active {
		background: rgba(255, 255, 255, .15);
	}

	#navPanel .link:first-child {
		border-top: 0;
	}

	#navPanel .link.depth-0 {
		background: #1B7A42;
		color: #fff;
		font-weight: 600;
	}

	#navPanel .link .indent-1 {
		display: inline-block;
		width: 1em;
	}

	#navPanel .link .indent-2 {
		display: inline-block;
		width: 2em;
	}

	#navPanel .link .indent-3 {
		display: inline-block;
		width: 3em;
	}

	#navPanel .link .indent-4 {
		display: inline-block;
		width: 4em;
	}

	#navPanel .link .indent-5 {
		display: inline-block;
		width: 5em;
	}

	body.navPanel-visible #page-wrapper {
		-moz-transform: translateX(275px);
		-webkit-transform: translateX(275px);
		-ms-transform: translateX(275px);
		transform: translateX(275px);
	}

	body.navPanel-visible #navButton {
		-moz-transform: translateX(275px);
		-webkit-transform: translateX(275px);
		-ms-transform: translateX(275px);
		transform: translateX(275px);
	}

	body.navPanel-visible #navPanel {
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}


	#logo {
		position: absolute;
		left: 100px;
		top: 0;
		height: 100%;
		display: flex;
		align-items: center;
		margin: 0;
	}

	.logo-header {
		height: 38px;
		width: auto;
		margin-top: 60px;
	}

	/* Ocultar el menú horizontal */
	#header nav,
	#nav {
		display: none !important;
	}
}

/* Caja informativa CONACOFI */

.separacion-seccion{
    margin-top: 4em;
    padding-top: 3em;
    border-top: 1px solid rgba(56,87,35,.15);
}

.contacto-box-wrapper{
    padding: 1.5em 2em;   /* Ajusta a tu gusto */
}

.contacto-box {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 70px;
	
}

.contacto-imagen img {
	width: 350px;
	border-radius: 20px;
}

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

.contacto-info h3 {
	margin-bottom: 25px;
	color: #0D542B;
	font-size: 2em;
}

.contacto-info p {
	margin-bottom: 15px;
	line-height: 1.4;

}

/*=====================================
        BANNER CONVOCATORIAS
=====================================*/

#banner-convocatorias {

	background:
		linear-gradient(to right,
			rgba(255, 255, 255, .96) 25%,
			rgba(255, 255, 255, .65) 60%,
			rgba(255, 255, 255, .15)),
		url("../../images/banner-convocatorias.png");

	background-size: cover;
	background-position: center;

	padding: 6em 0;

}

.contenido-banner {

	width: 90%;
	max-width: 1300px;

	margin: auto;

}

.texto-banner {

	width: 45%;

}

.texto-banner h1 {

	color: #0D542B;

	font-size: 3em;

	margin-bottom: .4em;

}

.texto-banner h1::after {

	content: "";

	display: block;

	width: 70px;

	height: 3px;

	background: #0D542B;

	margin-top: .4em;

}

.texto-banner p {

	font-size: 1.2em;

	line-height: 1.8;

}

/*=====================================
        FILTROS
=====================================*/

#busqueda-convocatorias {

	margin-top: -45px;

	position: relative;

	z-index: 20;

}

.contenedor-busqueda {

	width: 90%;
	max-width: 1300px;

	margin: auto;

	background: #fff;

	border-radius: 15px;

	padding: 1.5em;

	box-shadow: 0 8px 30px rgba(0, 0, 0, .08);

	display: grid;

	grid-template-columns:

		2fr 1fr 1fr auto;

	gap: 1em;

}

.contenedor-busqueda input,
.contenedor-busqueda select {

	height: 55px;

	border-radius: 10px;

	border: 1px solid #ddd;

	padding: 0 1em;

}

.contenedor-busqueda button {

	background: #0D542B;

	color: #fff;

	border: none;

	border-radius: 10px;

	padding: 0 2em;

}

/*=====================================
        CONVOCATORIAS
=====================================*/

.convocatoria-item {

	display: grid;
	grid-template-columns:
		80px 1.8fr 220px 220px;
	gap: 1.8em;
	align-items: center;
	padding: 2em;
	border-bottom: 1px solid #e5e5e5;
	background: #fff;

}

.convocatoria-item:last-child {

	border-bottom: none;

}

.convocatoria-icono {

	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #EFF8F1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.7em;
	color: #0D542B;

}

.convocatoria-info h2 {

	color: #0D542B;

	margin-bottom: .5em;

}

.convocatoria-info p {

	margin-bottom: 1em;

	color: #666;

}

.convocatoria-tags {

	display: flex;

	gap: .8em;

	flex-wrap: wrap;

}

.tag {

	background: #EDF7EE;

	color: #0D542B;

	padding: .35em .9em;

	border-radius: 30px;

	font-size: .85em;

}

.estado {

	padding: .35em .9em;

	border-radius: 30px;

	font-size: .85em;

	font-weight: 600;

}

.abierta {

	background: #DDF6E4;

	color: #146A32;

}

.cerrada {

	background: #FFE5E5;

	color: #C62828;

}

.proximamente {

	background: #FFF2D9;

	color: #E67E22;

}

.convocatoria-fecha {

	text-align: center;

}

.convocatoria-fecha i {

	color: #0D542B;

	font-size: 1.6em;

	margin-bottom: .4em;

}

.convocatoria-fecha small {

	display: block;

	color: #777;

}

.convocatoria-fecha strong {

	display: block;

	margin-top: .4em;

}

.convocatoria-botones {

	display: flex;

	flex-direction: column;

	gap: .8em;

}

.convocatoria-botones .button {
	width: 220px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;

}

/*=====================================
        LICITACIONES
=====================================*/

.licitacion-item{

    display:grid;

    grid-template-columns:

    90px

    minmax(500px,1fr)

    230px

    230px;

    gap:2em;

    align-items:center;

    padding:2em;

    background:#fff;

    border-bottom:1px solid #ececec;

}
.licitacion-info{

    min-width:0;

}
.licitacion-fecha{

    text-align:center;

    white-space:normal;

}

/*=====================================
        BANNER LICITACIONES
=====================================*/

#banner-licitaciones {

	background:
		linear-gradient(to right,
			rgba(255, 255, 255, .96) 25%,
			rgba(255, 255, 255, .65) 60%,
			rgba(255, 255, 255, .15)),
		url("../../images/banner-convocatorias.png");

	background-size: cover;
	background-position: center;
	padding: 6em 0;

}

#banner-licitaciones .container {

	width: 90%;
	max-width: 1300px;

	margin: auto;

}

#banner-licitaciones .texto-banner {

	width: 45%;

}

#banner-licitaciones h1 {

	color: #0D542B;

	font-size: 3em;

	margin-bottom: .3em;

}

#banner-licitaciones h1::after {

	content: "";

	display: block;

	width: 70px;

	height: 3px;

	background: #0D542B;

	margin-top: .5em;

}

#banner-licitaciones p {

	font-size: 1.2em;

	line-height: 1.8;

}
/* Botones de Licitaciones */
.licitacion-botones{

    display:flex;

    flex-direction:column;

    gap:.8em;

    align-items:center;

}
.descargar-btn{

    background:#0D542B !important;

    color:#fff !important;

    border-color:#0D542B !important;

}

.descargar-btn:hover{

    background:#166637 !important;

}
.licitacion-botones .button.primary,
#busqueda-licitaciones .button.primary{

    background:#0D542B !important;
    border-color:#0D542B !important;
    color:#fff !important;

}

.licitacion-botones .button.primary:hover,
#busqueda-licitaciones .button.primary:hover{

    background:#166637 !important;
    border-color:#166637 !important;

}

/*=====================================
        BUSCADOR
=====================================*/

#busqueda-licitaciones {

	margin-top: -45px;

	position: relative;

	z-index: 20;

}

.contenedor-busqueda {

	width: 90%;

	max-width: 1300px;

	margin: auto;

	background: #fff;

	border-radius: 15px;

	padding: 1.5em;

	display: grid;

	grid-template-columns:
		2fr 1fr 1fr 1fr 170px;

	gap: 1em;

	box-shadow: 0 8px 30px rgba(0, 0, 0, .08);

}

.contenedor-busqueda input,
.contenedor-busqueda select {

	height: 55px;

	border-radius: 10px;

}

.contenedor-busqueda .button {

	width: 100%;

	margin: 0;

}

/*==================================================
                MARCO LEGAL
==================================================*/

#banner-marco {
    background:
        linear-gradient(to right,
            rgba(255,255,255,.96) 25%,
            rgba(255,255,255,.70) 60%,
            rgba(255,255,255,.20)),
        url("../../images/banner-marco.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 8em 0 6em;
}

#banner-marco .inner{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.texto-banner{
    max-width:600px;
}

.texto-banner h1{
    color:#145C2E;
    font-size:3.2em;
    margin-bottom:.35em;
    font-weight:700;
}

.texto-banner p{
    color:#555;
    font-size:1.15em;
    line-height:1.8;
}



/*=========================
    INTRODUCCIÓN
==========================*/

.marco-intro{

    text-align:center;

    margin-bottom:3em;

}

.marco-intro h2{

    color:#145C2E;

    margin-bottom:.5em;

}

.marco-intro p{

    max-width:850px;

    margin:auto;

    color:#666;

    line-height:1.8;

}



/*=========================
      CATEGORÍAS
==========================*/

.categoria-titulo{

    color:#145C2E;

    font-size:2em;

    margin:2.5em 0 1em;

    border-left:6px solid #145C2E;

    padding-left:.7em;

}



/*=========================
      TARJETA PDF
==========================*/

.pdf-card{

    display:grid;

    grid-template-columns:

        100px
        1fr
        220px;

    gap:2em;

    align-items:center;

    background:#fff;

    border-radius:15px;

    padding:2em;

    margin-bottom:1.5em;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.30s;

}

.pdf-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.15);

}



/*=========================
       ICONO PDF
==========================*/

.pdf-icono{

    width:80px;

    height:100px;

    background:#D32F2F;

    color:#fff;

    font-weight:700;

    font-size:1.2em;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:8px;

    margin:auto;

    box-shadow:0 8px 18px rgba(211,47,47,.35);

}



/*=========================
      INFORMACIÓN
==========================*/

.pdf-info h3{

    margin:0;

    color:#145C2E;

    font-size:1.4em;

}

.pdf-info p{

    margin:.7em 0;

    color:#666;

}

.pdf-detalles{

    display:inline-block;

    color:#888;

    font-size:.9em;

}



/*=========================
        BOTONES
==========================*/

.pdf-botones{

    display:flex;

    flex-direction:column;

    gap:1em;

}

.ver-btn{

    background:#145C2E !important;

    color:#fff !important;

    border-color:#145C2E !important;

}

.ver-btn:hover{

    background:#1B6E37 !important;

}

.descargar-btn{

    background:#fff !important;

    color:#145C2E !important;

    border:2px solid #145C2E !important;

}

.descargar-btn:hover{

    background:#145C2E !important;

    color:#fff !important;

}



/*=========================
      RESPONSIVE
==========================*/

@media screen and (max-width:980px){

    #banner-marco{

        padding:6em 0 4em;

    }

    .texto-banner{

        max-width:100%;

        text-align:center;

    }

    .texto-banner h1{

        font-size:2.5em;

    }

    .pdf-card{

        grid-template-columns:1fr;

        text-align:center;

        gap:1.5em;

    }

    .pdf-botones{

        width:100%;

        align-items:center;

    }

    .pdf-botones .button{

        width:260px;

    }

}


@media screen and (max-width:736px){

    .texto-banner h1{

        font-size:2em;

    }

    .categoria-titulo{

        font-size:1.5em;

    }

    .pdf-info h3{

        font-size:1.2em;

    }

}

/*=====================================
    RESPONSIVE
=====================================*/

@media screen and (max-width: 980px){

    /* Banner */

    #banner-convocatorias,
    #banner-licitaciones{

        padding:6em 0 4em;

    }

    .texto-banner{

        width:100% !important;

        text-align:center;

    }

    .texto-banner h1{

        font-size:2.3em;

    }

    .texto-banner p{

        font-size:1em;

    }

    /* Buscador */

    .contenedor-busqueda{

        grid-template-columns:1fr !important;

        gap:1em;

    }

    .contenedor-busqueda input,
    .contenedor-busqueda select,
    .contenedor-busqueda .button{

        width:100%;

    }

    /* Tarjetas */

    .convocatoria-item,
    .licitacion-item{

        grid-template-columns:1fr;

        text-align:center;

        gap:1.5em;

        padding:2em;

    }

    .convocatoria-icono,
    .licitacion-icono{

        margin:auto;

    }

    .convocatoria-fecha,
    .licitacion-fecha{

        text-align:center;

    }

    .convocatoria-botones,
    .licitacion-botones{

        width:100%;

        align-items:center;

    }

    .convocatoria-botones .button,
    .licitacion-botones .button{

        width:100%;
        max-width:280px;

    }

    .convocatoria-tags,
    .licitacion-tags{

        justify-content:center;

    }

}
@media screen and (max-width:736px){

    #banner-convocatorias,
    #banner-licitaciones{

        background-position:75% center;

    }

}

/* Mobile */

@media screen and (max-width: 736px) {

	/* Basic */

	body,
	input,
	select,
	textarea {
		font-size: 11pt;
	}

	h2 {
		font-size: 1.75em;
		line-height: 1.35em;
		letter-spacing: -0.025em;
	}

	h3 {
		font-size: 1.5em;
	}

	h4 {
		font-size: 1em;
	}

	/* Section/Article */

	header.major {
		padding: 1em;
	}

	header.major h2,
	header.major p {
		padding-left: 0.5em;
		padding-right: 0.5em;
	}

	/* Box */

	.box {
		margin: 1em;
		overflow-x: hidden;
		padding: 2em 2em !important;
	}

	.box.features .features-row {
		border-top: 0;
		padding: 0;
	}

	.box.features .features-row section {
		border: 0;
		border-top: solid 1px #e5e5e5 !important;
		float: none;
		margin: 2em 0 0 0 !important;
		padding: 2em 0 0 0 !important;
		width: 100%;
	}

	.box.features .features-row:first-child section:first-child {
		border-top: 0 !important;
		margin-top: 0 !important;
		padding-top: 0 !important;
	}

	.box .image.featured {
		margin-left: -2em;
		width: calc(100% + 4em);
	}

	.box .image.featured:first-child {
		margin-bottom: 2em;
		margin-top: -2em;
	}

	.box .image.featured:last-child {
		margin-bottom: -2em;
		margin-top: 2em;
	}

	/* Banner */

	#banner {
		padding: 4em 0;
	}

	#banner h2 {
		font-size: 2.25em;
	}

	#banner p {
		font-size: 1.25em;
	}

	/* Main */

	#main {
		padding: 4em 0 0 0;
	}

	#main>header {
		margin: 0 2em 1.5em 2em;
	}

	#main>header h2 {
		font-size: 2em;
	}

	#main>header p {
		font-size: 1em;
		padding-bottom: 1em;
	}

	body.landing #main {
		padding: 0;
		margin-top: 0;
	}

	/* Footer */

	#footer {
		padding: 4em 0;
	}

	#footer .copyright li {
		border-left: 0;
		display: block;
		line-height: 2em;
		margin-left: 0;
		padding-left: 0;
	}

}

/*==============================
        SITIOS DE INTERÉS
==============================*/

.sitio-card{

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:15px;
    padding:1em;
    height:250px;
    text-align:center;
    transition:.30s;

}

.sitio-card:hover{

    transform:translateY(-5px);
    border-color:#145C2E;
    box-shadow:0 10px 25px rgba(0,0,0,.10);

}
.logo-sitio,
.sitio-card img{

    width:60px;
    height:60px;
    object-fit:contain;
    margin-bottom:12px;

}
.sitio-card h3{

    color:#145C2E;
    font-size:1.15em;
    font-weight:600;
    margin:0 0 10px;
    height:28px;

}
.sitio-card p{

    color:#666;
    font-size:.88em;
    line-height:1.35;
    height:100px;
    overflow:hidden;
    margin:0;

}

@media screen and (max-width:980px){

    .sitios-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media screen and (max-width:736px){

    .sitios-grid{

        grid-template-columns:1fr;

    }

}

/* Logo banner */
.logo-banner {
	width: 990px;
	height: auto;
	display: block;
	margin: -75px auto 0 auto;

	/* Mobile (Logo banner) */
	@media screen and (max-width: 736px) {

		.logo-banner {
			width: 95%;
			margin-top: -20px;
		}
	}

	/* Mobile (Portrait) */

	@media screen and (max-width: 480px) {

		/* Basic */

		html,
		body {
			min-width: 320px;
		}

		body,
		input,
		select,
		textarea {
			font-size: 11pt;
		}

		/* Section/Article */

		header.major {
			padding: 0;
		}

		/* List */

		ul.actions {
			margin: 0 0 2em 0;
		}

		ul.actions li {
			display: block;
			padding: 1em 0 0 0;
			text-align: center;
			width: 100%;
		}

		ul.actions li:first-child {
			padding-top: 0;
		}

		ul.actions li>* {
			width: 100%;
			margin: 0 !important;
		}

		ul.actions li>*.icon:before {
			margin-left: -2em;
		}

		ul.actions.small li {
			padding: 0.5em 0 0 0;
		}

		ul.actions.small li:first-child {
			padding-top: 0;
		}

		/* Box */

		.box {
			border-radius: 0;
			box-shadow: none;
			margin: 1em 0 0 0;
			padding: 3em 1em !important;
		}

		.box.features .features-row section {
			margin: 3em 0 0 0 !important;
			padding: 3em 0 0 0 !important;
		}

		.box .image.featured {
			border-radius: 0;
			margin-left: -1em;
			width: calc(100% + 2em);
		}

		.box .image.featured img {
			border-radius: 0 !important;
		}

		.box .image.featured:first-child {
			margin-bottom: 3em;
			margin-top: -3em;
		}

		.box .image.featured:last-child {
			margin-bottom: -3em;
			margin-top: 3em;
		}

		/* Banner */

		#banner {
			padding: 5em 3em 4em 3em;
		}

		/* Main */

		#main>.box:first-child {
			margin-top: 0;
		}

		/* CTA */

		#cta {
			padding: 2.5em 1em 3em 1em;
		}

		/* ==========================  Header móvil ========================== */

		#header {
			height: 60px;
			line-height: 60px;
		}

		#logo {
			left: 70px;
			top: calc(50% + 5px);
			/* Baja el logo 5 px */
			transform: translateY(-50%);
		}

		.logo-header {
			height: 38px;
			width: auto;
			display: block;
		}

		/* Caja principal */
		.box.special {
			width: 95%;
			margin: 0 auto 3em auto;
			padding: 2em 1.5em !important;
		}

		/* Título */
		header.major h2 {
			font-size: 1.8em;
			line-height: 1.3;
		}

		header.major p {
			font-size: 1em;
		}

	}

}