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

/*
	Read Only by HTML5 UP
	html5up.net | @ajlkn
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/* CSS Variables for optimized styling */
:root {
	/* Colors */
	--primary-color: #2d5a55;
	--secondary-color: #5ed0b1;
	--white: #ffffff;
	--black: #000000;
	--light-gray: #f4f4f4;
	--gray: #777777;
	--dark-gray: #555555;
	--medium-gray: #444444;
	--border-gray: #e4e4e4;
	--light-border: #f4f4f4;
	--dark-border: #989898;
	--muted-gray: #aaaaaa;
	--dark-bg: #222222;
	--disabled-gray: #a5a5a5;
	--disabled-dark: #8b8b8b;
	
	/* Typography */
	--font-family-main: "Lato", Helvetica, sans-serif;
	--font-family-mono: "Source Code Pro", monospace;
	
	/* Spacing */
	--spacing-xs: 0.25em;
	--spacing-sm: 0.5em;
	--spacing-md: 1em;
	--spacing-lg: 1.5em;
	--spacing-xl: 2em;
	--spacing-xxl: 3em;
	
	/* Border radius */
	--border-radius-sm: 4px;
	--border-radius-md: 5px;
	--border-radius-lg: 8px;
	
	/* Transitions */
	--transition-fast: 0.2s ease;
	--transition-normal: 0.3s ease;
	--transition-slow: 0.5s ease;
	
	/* Border widths */
	--border-thin: 1px;
	--border-medium: 2px;
	--border-thick: 4px;
	--border-accent: 8px;
}
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,
 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;
	-webkit-text-size-adjust: none;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

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

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

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

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

input, select, textarea {
	appearance: none;
}

/* Basic */

	html {
		box-sizing: border-box;
	}

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

	body {
		background: var(--white);
	}

		body.is-preload *, body.is-preload *:before, body.is-preload *:after {
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
			transition: none !important;
		}

	body, input, select, textarea {
		color: var(--medium-gray);
		font-family: "Lato", sans-serif;
		font-size: 16pt;
		font-weight: 400;
		line-height: 1.25em;
	}

	/* Aumentar tamaño de letra del contenido principal sin afectar sidebar */
	#main {
		font-size: 18pt;
	}

	#header {
		font-size: 16pt;
	}


	a {
		transition: var(--transition-fast), border-color var(--transition-fast);
		border-bottom: solid 1px var(--border-gray);
		color: inherit;
		text-decoration: none;
	}

		a:hover {
			border-bottom-color: transparent;
			color: var(--primary-color) !important;
		}

	strong, b {
		color: var(--gray);
		font-weight: 700;
	}

	em, i {
		font-style: italic;
	}

	p {
		margin: 0 0 2.25em 0;
	}

	h1, h2, h3, h4, h5, h6 {
		color: var(--gray);
		font-weight: 700;
		line-height: 1em;
		margin: 0 0 0.5625em 0;
	}

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

	h2 {
		font-size: 2em;
		line-height: 1.5em;
	}

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

	h4 {
		font-size: 1.25em;
		line-height: 1.5em;
	}

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

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

	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 var(--light-border);
		margin: 2.25em 0;
	}

		hr.major {
			margin: 3.375em 0;
		}

	blockquote {
		border-left: solid 8px var(--border-gray);
		font-style: italic;
		margin: 0 0 2.25em 0;
		padding: 0.5em 0 0.5em 2em;
	}

	code {
		background: #555;
		border-radius: 5px;
		color: var(--white);
		font-family: "Source Code Pro", monospace;
		font-size: 0.9em;
		margin: 0 0.25em;
		padding: 0.25em 0.65em;
	}

	pre {
		font-family: "Source Code Pro", monospace;
		font-size: 0.9em;
		margin: 0 0 2.25em 0;
	}

		pre code {
			-webkit-overflow-scrolling: touch;
			display: block;
			line-height: 1.5em;
			overflow-x: auto;
			padding: 1em 1.5em;
		}

	.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-xlarge {
					order: -1;
				}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

				.row > .off-12-xlarge {
					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-large {
					order: -1;
				}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

				.row > .off-12-large {
					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.375em;
				}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

		}

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

			.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-medium {
					order: -1;
				}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

				.row > .off-12-medium {
					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.375em;
				}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

		}

		@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-small {
					order: -1;
				}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

				.row > .off-12-small {
					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.3125em;
				}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

		}

		@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-xsmall {
					order: -1;
				}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

				.row > .off-12-xsmall {
					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.3125em;
				}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

		}

/* Container */

	.container {
		margin: 0 auto;
		max-width: calc(100% - 4.5em);
		width: 45em;

	}

		.container.xsmall {
			width: 11.25em;
		}

		.container.small {
			width: 22.5em;
		}

		.container.medium {
			width: 33.75em;
		}

		.container.large {
			width: 56.25em;
		}

		.container.xlarge {
			width: 67.5em;
		}

		.container.max {
			width: 100%;
		}

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

			.container {
				width: 100% !important;
			}

		}

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

			.container {
				max-width: calc(100% - 3.375em);
			}

		}

/* Section/Article */

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

	header p {
		color: var(--muted-gray);
		position: relative;
		margin: 0 0 1.6875em 0;
	}

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

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

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

	header.major h2 {
		color: var(--primary-color);
		font-size: 3.5em;
	}

		header.major h2 + p {
			color: var(--gray);
			font-size: 1.75em;
			font-weight: 700;
			margin-top: -0.75em;
		}

/* Form */

	form {
		margin: 0 0 2.25em 0;
	}

	label {
		color: var(--gray);
		display: block;
		font-size: 0.9em;
		font-weight: 700;
		margin: 5px 0 0 0;
	}

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

	input[type="text"],
	input[type="password"],
	input[type="email"],
	select,
	textarea {
		appearance: none;
		border-radius: 5px;
		border: solid 2px var(--primary-color);
		color: inherit;
		display: block;
		outline: 0;
		padding: 0 1em;
		text-decoration: none;
		width: 80%;
		height: 200px;
	}

		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: var(--primary-color);
		}

	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='%23e4e4e4' /%3E%3C/svg%3E");
		background-size: 1.25em;
		background-repeat: no-repeat;
		background-position: calc(100% - 1em) center;
		height: 2.75em;
		padding-right: 2.75em;
		text-overflow: ellipsis;
	}

		select option {
			color: var(--gray);
			background: var(--white);
		}

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

		select::-ms-expand {
			display: none;
		}
		
	input[type="text"],
	input[type="password"],
	input[type="email"],
	select {
		height: 2.75em;
		width: 50%;
		margin-top: 0.5em;
	}

	textarea {
		padding: 0.75em 1em;
		margin-top: 0.5em;
	}
	

	input[type="checkbox"],
	input[type="radio"] {
		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: var(--medium-gray);
			cursor: pointer;
			display: inline-block;
			font-size: 1em;
			font-weight: 400;
			padding-left: 2.4em;
			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: var(--light-gray);
				border-radius: 5px;
				border: solid 2px var(--border-gray);
				content: '';
				display: inline-block;
				font-size: 0.8em;
				height: 2.0625em;
				left: 0;
				line-height: 2.0625em;
				position: absolute;
				text-align: center;
				top: 0;
				width: 2.0625em;
			}

		input[type="checkbox"]:checked + label:before,
		input[type="radio"]:checked + label:before {
			background: #989898;
			border-color: #989898;
			color: var(--white);
			content: '\f00c';
		}

		input[type="checkbox"]:focus + label:before,
		input[type="radio"]:focus + label:before {
			border-color: var(--primary-color);
		}

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

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

	::-webkit-input-placeholder {
		color: var(--muted-gray) !important;
		font-style: italic;
		opacity: 1.0;
	}

	:-moz-placeholder {
		color: var(--muted-gray) !important;
		font-style: italic;
		opacity: 1.0;
	}

	::-moz-placeholder {
		color: var(--muted-gray) !important;
		font-style: italic;
		opacity: 1.0;
	}

	:-ms-input-placeholder {
		color: var(--muted-gray) !important;
		font-style: italic;
		opacity: 1.0;
	}

/* Box */

	.box {
		border-radius: 5px;
		border: solid 2px var(--border-gray);
		margin-bottom: 2.25em;
		padding: 1.5em;
	}

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

		.box.alt {
			border: 0;
			border-radius: 0;
			padding: 0;
		}

/* 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';
		}

/* Image */

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

		.image[data-position] img {
			-moz-object-fit: cover;
			-webkit-object-fit: cover;
			-ms-object-fit: cover;
			object-fit: cover;
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
		}

		.image[data-position="top left"] img {
			-moz-object-position: top left;
			-webkit-object-position: top left;
			-ms-object-position: top left;
			object-position: top left;
		}

		.image[data-position="top"] img {
			-moz-object-position: top;
			-webkit-object-position: top;
			-ms-object-position: top;
			object-position: top;
		}

		.image[data-position="top right"] img {
			-moz-object-position: top right;
			-webkit-object-position: top right;
			-ms-object-position: top right;
			object-position: top right;
		}

		.image[data-position="right"] img {
			-moz-object-position: right;
			-webkit-object-position: right;
			-ms-object-position: right;
			object-position: right;
		}

		.image[data-position="bottom right"] img {
			-moz-object-position: bottom right;
			-webkit-object-position: bottom right;
			-ms-object-position: bottom right;
			object-position: bottom right;
		}

		.image[data-position="bottom"] img {
			-moz-object-position: bottom;
			-webkit-object-position: bottom;
			-ms-object-position: bottom;
			object-position: bottom;
		}

		.image[data-position="bottom left"] img {
			-moz-object-position: bottom left;
			-webkit-object-position: bottom left;
			-ms-object-position: bottom left;
			object-position: bottom left;
		}

		.image[data-position="left"] img {
			-moz-object-position: left;
			-webkit-object-position: left;
			-ms-object-position: left;
			object-position: left;
		}

		.image[data-position="center"] img {
			-moz-object-position: center;
			-webkit-object-position: center;
			-ms-object-position: center;
			object-position: center;
		}

		.image[data-position="25% 25%"] img {
			-moz-object-position: 25% 25%;
			-webkit-object-position: 25% 25%;
			-ms-object-position: 25% 25%;
			object-position: 25% 25%;
		}

		.image[data-position="75% 25%"] img {
			-moz-object-position: 75% 25%;
			-webkit-object-position: 75% 25%;
			-ms-object-position: 75% 25%;
			object-position: 75% 25%;
		}

		.image[data-position="75% 75%"] img {
			-moz-object-position: 75% 75%;
			-webkit-object-position: 75% 75%;
			-ms-object-position: 75% 75%;
			object-position: 75% 75%;
		}

		.image[data-position="25% 75%"] img {
			-moz-object-position: 25% 75%;
			-webkit-object-position: 25% 75%;
			-ms-object-position: 25% 75%;
			object-position: 25% 75%;
		}

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

		.image.left {
			float: left;
			margin: 0 2.5em 2em 0;
			top: 0.25em;
		}

		.image.right {
			float: right;
			margin: 0 0 2em 2.5em;
			top: 0.25em;
		}

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

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

		.image.avatar {
			border-radius: 100%;
			overflow: hidden;
		}

			.image.avatar img {
				border-radius: 100%;
				display: block;
				width: 100%;
			}
			.image.avatar img:hover {
				border-radius: 0%;
				background-color: #222;
			}

		.image.main {
			display: block;
			height: 275px;
			border-radius: 0;
            background-color: var(--primary-color);

		}

			.image.main img {
				border-radius: 0;

                object-fit: contain;

			}

/* List */

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

		ol li {
			padding-left: 0.25em;
		}

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

		ul li {
			padding-left: 0.5em;
		}

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

			ul.alt li {
				border-top: solid 2px var(--light-border);
				padding: 0.5em 0;
			}

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

	dl {
		margin: 0 0 2.25em 0;
	}

/* Actions */

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

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

		ul.actions.special {
			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.125em 0 0 0;
			}

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

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

			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: 1.125em 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.5rem;
						}

		}

/* Feature Icons */

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

		ul.feature-icons li {
			text-decoration: none;
			display: inline-block;
			margin: 0 0 1.6875em 0;
			padding: 0.35em 0 0 3.5em;
			position: relative;
			vertical-align: top;
			width: 48%;
		}

			ul.feature-icons li: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;
			}

			ul.feature-icons li:before {
				background: var(--primary-color);
				border-radius: 100%;
				color: var(--white);
				display: block;
				height: 2.5em;
				left: 0;
				line-height: 2.5em;
				position: absolute;
				text-align: center;
				top: 0;
				width: 2.5em;
			}

/* Icons */

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

	}

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

		}

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

			}

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

/* Table */

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

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

		table tbody tr {
			border: solid 2px var(--light-border);
			border-left: 0;
			border-right: 0;
		}

			table tbody tr:nth-child(2n + 1) {
				background-color: var(--light-gray);
			}

		table td {
			padding: 0.75em 0.75em;
		}

		table th {
			color: var(--gray);
			font-size: 0.9em;
			font-weight: 700;
			padding: 0 0.75em 0.75em 0.75em;
			text-align: left;
		}

		table thead {
			border-bottom: solid 4px var(--border-gray);
		}

		table tfoot {
			border-top: solid 4px var(--border-gray);
		}

		table.alt {
			border-collapse: separate;
		}

			table.alt tbody tr td {
				border: solid 2px var(--border-gray);
				border-left-width: 0;
				border-top-width: 0;
			}

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

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

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

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

/* Button */

	input[type="submit"],
	input[type="reset"],
	input[type="button"],
	.button {
		appearance: none;
		transition: background-color var(--transition-fast), color var(--transition-fast);
		background-color: var(--primary-color);
		border-radius: 5px;
		border: 0;
		color: var(--white) !important;
		cursor: pointer;
		display: inline-block;
		font-weight: 700;
		height: 2.75em;
		line-height: 2.75em;
		padding: 0 1.5em;
		margin-top: 5px;
		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: #a5a5a5;
			color: var(--white) !important;
		}

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

		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;
		}

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

		input[type="submit"].alt,
		input[type="reset"].alt,
		input[type="button"].alt,
		.button.alt {
			background-color: transparent;
			box-shadow: inset 0 0 0 2px var(--border-gray);
			color: var(--gray) !important;
		}

			input[type="submit"].alt:hover,
			input[type="reset"].alt:hover,
			input[type="button"].alt:hover,
			.button.alt:hover {
				background-color: var(--light-border);
				color: var(--gray) !important;
			}

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

			input[type="submit"].alt.icon:before,
			input[type="reset"].alt.icon:before,
			input[type="button"].alt.icon:before,
			.button.alt.icon:before {
				color: var(--muted-gray);
			}

		input[type="submit"].primary,
		input[type="reset"].primary,
		input[type="button"].primary,
		.button.primary {
			background-color: var(--primary-color);
			color: var(--white) !important;
		}

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

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

		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: var(--medium-gray) !important;
			box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
			color: var(--white) !important;
			cursor: default;
			opacity: 0.25;
		}
	.button{
		transform: translateY(-0.5px);
		background-color: #a5a5a5;
		margin-right: 52%;
		
	}

	.button:hover{
		background-color:  var(--primary-color);

	}

/* Features */

	.features article {
		border-top: solid 3px var(--light-border);
		margin-bottom: 2.25em;
		padding-top: 2.25em;
	}

		.features article:first-child {
			border-top: 0;
			padding-top: 0;
		}

		.features article .image {
			display: inline-block;
			padding-right: 2.5em;
			vertical-align: middle;
			width: 48%;
		}

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

		.features article .inner {
			display: inline-block;
			vertical-align: middle;
			width: 50%;
		}

			.features article .inner > :last-child {
				margin-bottom: 0;
			}

/* Header */
			
	#header {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		background: var(--primary-color);
		color: #d2f2e9;
		height: 100%;
		overflow-y: auto;
		position: fixed;
		text-align: center;
		top: 0;
		width: 23em;
		right: 0;
	}

		#header h1, #header h2, #header h3, #header h4, #header h5, #header h6 {
			color: var(--white);
		}

			#header h1 a, #header h2 a, #header h3 a, #header h4 a, #header h5 a, #header h6 a {
				color: var(--white);
			}

		#header header p {
			color: #b7eadc;

		}

		#header a {
			color: #d2f2e9;
		}

			#header a:hover {
				color: var(--white) !important;
			}

		#header > header {
			-moz-flex-shrink: 0;
			-webkit-flex-shrink: 0;
			-ms-flex-shrink: 0;
			flex-shrink: 0;
			padding: 0.3em;
		}

			#header > header .avatar {
				display: block;
				margin: 0 auto 0.5em auto;
				width: 8em;
			}

			#header > header h1 {
				font-size: 1.75em;
				margin: 0;
			}

			#header > header p {
				color: #d2f2e9;
				font-style: italic;
				margin: 1em 0 0 0;
			}

		#header > footer {
			-moz-flex-shrink: 0;
			-webkit-flex-shrink: 0;
			-ms-flex-shrink: 0;
			flex-shrink: 0;
			bottom: 0;
			left: 0;
			padding: 2em;
			width: 100%;
		}

			#header > footer .icons {
				margin: 0;
			}

				#header > footer .icons li a {
					color: white;
				}

		#header > nav {
			-moz-flex-grow: 1;
			-webkit-flex-grow: 1;
			-ms-flex-grow: 1;
			flex-grow: 1;

		}

			#header > nav ul {
				list-style: none;
				margin: 0;
				padding: 0;
				display: grid;
				grid-template-columns: 2fr 2fr;
				
			}

				#header > nav ul li {
					border-top: solid 2px white;
					display: block;
					padding: 0;
					
				}

					#header > nav ul li a {
						-moz-transition: none;
						-webkit-transition: none;
						-ms-transition: none;
						transition: none;
						border: 0;
						color: var(--white);
						display: block;
						padding: 1.2em 0;
						text-decoration: none;
						transition: 0.6s 0.4s;
						border: 2px solid transparent;
					}

						#header > nav ul li a.active {
							background: var(--white);
							color: var(--primary-color);
							border: solid 2px var(--primary-color);
							
							border-radius: 20px;
						}
					
					#header > nav ul li:nth-child(odd) {
						border-right: solid 2px white;
						
					}	

					#header > nav ul li:nth-last-child(2) {
						border-top: solid 2px white;
						border-bottom: solid 2px white;
					}

					#header > nav ul li:last-child {
						border-top: solid 2px white;
						border-bottom: solid 2px white;
					}

					#header > nav ul li a:hover {
						background: var(--white);
						color: var(--primary-color) !important;
						border: solid 2px var(--primary-color);
						transition-delay: 0.1s;
						border-radius: 20px;
					}


/* Wrapper */

	#wrapper {
		background: var(--white);
		padding-right: 23em;
	}

/* Main */

	#main > section {
		border-top: solid 6px var(--light-border);
	}

		#main > section > .container {
			padding: 6em 0 4em 0;
		}

		#main > section:first-child {
			border-top: 0;
		}

/* Footer */

	#footer {
		background: var(--light-gray);
		border-top: 0;
		color: #c0c0c0;
		overflow: hidden;
		padding: 4em 0 2em 0;
	}

		#footer .copyright {
			line-height: 1em;
			list-style: none;
			padding: 0;
		}

			#footer .copyright li {
				border-left: solid 1px #d4d4d4;
				display: inline-block;
				font-size: 0.8em;
				margin-left: 1em;
				padding-left: 1em;
			}

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

				#footer .copyright li a {
					color: inherit;
				}

/* New stuff by Noler */

.price_blocks{
    display: grid;
    grid-template-columns: 2fr 2fr;
    grid-template-rows: 2fr;
    grid-gap: 20%;
    justify-items: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

.price_blocks_2{
    width: 50%;
    height: auto;
    margin: 1em auto 1em auto;
    justify-items: center;
    text-align: center;
    font-size: 24px;
}

.price_block_item {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8%;
    box-shadow: 5px 5px #222;

}

.read_more_btn {
    background: var(--primary-color);
    color: var(--white);
    margin-top: 5%;
    font-size: 1.3em;
    font-weight: bold;
    height: 1.5em;
    width: 1.5em;
    border-radius: 20%;
    cursor: pointer;
    margin-bottom: 0.5em;
}

.moreText {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out, opacity 0.2s ease-out, margin-top 0.2s ease-out;
    margin: 0 auto; /* Mantén centrado horizontal pero sin márgenes verticales */
    max-width: calc(100% - 4.5em);
    width: 45em;
}

.moreText.show_more {
    max-height: 1500px;
    opacity: 1;
    margin: 2em auto 1em auto; /* Márgenes solo cuando está visible */
    transition: max-height 0.1s ease-in, opacity 0.1s ease-in, margin-top 0.1s ease-in;
}

a {
    text-decoration: none;
    border: 0;
}


.easy_mail {

    color: var(--primary-color);
}

.contact_list {
    margin-top: 1em;
	display: flex;
	justify-content: space-around;
}
.contact_list li{
    display: inline;
    
}

.contact_icon {
    text-decoration: none;
    border: 0;


}

.contact_icon :hover{
    background-color: #9b9;
    text-decoration: none;
    border-radius: 20%;
}


.where_image, .where_image2{
    max-width: 400px;
}



.image_plus_maps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
}

.two_img_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    margin-top: 1em;
}

.easy_picture{
    max-width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;;

}

.easy_picture2{
    float: right;
    max-width: 40%;
    height: auto;
    margin-bottom: 1em;;

}
h3,h4,h5 {
    text-align: center;
    margin-bottom: 1em;
}

.maps_link{
    max-width: 300px;
}

.camping_link{

    color: var(--primary-color);
    font-weight: bold;

}

.camping_link :hover{
    background-color: black;
}

.who_content{
    position: relative;
    height: 300px;
    overflow: hidden;
}

.who_content::before{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent,var(--white));
}

.who_content.active{
    height: auto;
}

.who_content.active::before{
    display: none;
}

.schedule_grid_title{
    color: var(--primary-color);
    font-size: 24px;
    text-align: center;
    margin-bottom: 1em;
}

.schedule_grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--primary-color);
    border-width: 2px 0 0 2px;
    margin-bottom: 2em;

}

.schedule_grid_item{
    border: 1px var(--primary-color) solid;
    border-width: 0 2px 2px 0;
    text-align: center;
    padding: 0.25em;
    font-size: 1em;
}

/* Estilos para actividades destacadas y con descripción extra */
.schedule_grid_item strong {
    color: var(--primary-color);
    font-weight: bold;
}

.schedule_grid_item em {
    color: var(--primary-color);
    font-style: italic;
}

/* Tooltip personalizado */
.schedule_grid_item .has-tooltip {
    position: relative;
    cursor: help;
    text-decoration: underline dotted;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

/* Icono ⓘ inline al final del texto */
.schedule_grid_item .has-tooltip::after {
    content: " ⓘ";
    font-size: 0.85em;
    opacity: 0.7;
    font-style: normal;
}

/* Tooltip bubble (oculto por defecto) - Usamos ::before */
.schedule_grid_item .has-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background-color: var(--white);
    color: var(--dark-gray);
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 20px rgba(45, 90, 85, 0.25);
    white-space: pre-wrap;
    max-width: 280px;
    width: max-content;
    font-size: 13px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.5;
    text-align: left;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Flecha del tooltip - Usamos border-bottom del mismo ::before */
.schedule_grid_item .has-tooltip::before {
    box-shadow:
        0 6px 20px rgba(45, 90, 85, 0.25),
        0 -8px 0 -6px var(--white),
        0 -10px 0 -4px var(--primary-color);
}

/* Mostrar tooltip al hover (desktop) y al tap/active (móvil) */
.schedule_grid_item .has-tooltip:hover::before,
.schedule_grid_item .has-tooltip:active::before {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* Hover/active en celda con tooltip: fondo verde + texto blanco */
.schedule_grid_item:has(.has-tooltip:hover),
.schedule_grid_item:has(.has-tooltip:active) {
    background-color: var(--primary-color);
    transition: background-color 0.3s ease;
}

.schedule_grid_item .has-tooltip:hover,
.schedule_grid_item .has-tooltip:active {
    color: var(--white);
    text-decoration: none;
}

/* Si también tiene strong (destacado + descripción), el strong también debe ser blanco al hover/active */
.schedule_grid_item:has(.has-tooltip:hover) strong,
.schedule_grid_item:has(.has-tooltip:active) strong {
    color: var(--white);
}

/* Mejoras específicas para dispositivos táctiles */
@media (hover: none) and (pointer: coarse) {
    /* Eliminar highlight azul por defecto en móviles */
    .schedule_grid_item .has-tooltip {
        -webkit-tap-highlight-color: transparent;
    }

    /* En móviles, mantener el tooltip visible un poco más tiempo después del tap */
    .schedule_grid_item .has-tooltip:active::before {
        animation: tooltip-mobile-show 2.5s ease-out forwards;
    }
}

/* Animación para móviles: mostrar tooltip 2.5s y luego ocultar */
@keyframes tooltip-mobile-show {
    0%, 85% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) scale(0.9);
    }
}

.group_discount_grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border: 1px solid var(--primary-color);
    border-width: 2px 0 0 2px;
    margin-bottom: 2em;
}

.group_discount_grid_title{
    color: var(--primary-color);
    font-size: 24px;
    text-align: center;
    margin-bottom: 1em;
}

.contact_click{
    text-decoration: underline;

}

.welcome_phrase{
    text-align: center;
    font-size: 24px;
}

.whatis_sentence{
    display: inline-block;
    width: 80%;
}

.booking_div{
    background-color: var(--primary-color);
    margin: auto;
    padding: 3em 10% 3em 10%;
    width: 50%;
    text-align: center;
    box-shadow: 5px 5px #222;
    border: black solid 2px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 2em;
}
.text_image_container{
    display: flex;

}
.text_image{
    float: left;
    border-radius: 35%;
    margin-right:  5%;
    max-height: auto;
    max-width: auto;

}


.text{
    margin-top: 2em;
}

h2 {
    color: var(--primary-color);
    font-size: 3.5em;
}


.inner_title{
    font-size: 20px;
}

.review-wrapper{
	border: 4px solid var(--primary-color);
	display: flex;	
	min-height: 400px;
	border-radius: 15px;
	justify-content: center;
	align-items: center;

	
}

.review-container{
	max-width: 500px;
	min-width: 300px;
	min-height: 300px;
	position: relative;
	display: flex;
	flex-direction: column	;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.image.mail{
	display: block;
	height: 150px;
	border-radius: 0;
	background-color: var(--primary-color);

}

	.image.mail img {
		border-radius: 0;

		object-fit: contain;

	}




.review-wrapper button{
	font-size: 1.8em;
	height: 2.2em;
	width: 2.2em;
	color: white;
	background-color: var(--primary-color);
	border: none;
	border-radius: 50%;
	box-shadow: 0 0 5px rgba(1, 17, 39, 0.80);
	cursor: pointer;
	position: relative;
	margin: auto;
	bottom: 0;
	left: 0;
	border: 0.3em solid transparent;
	

}

.review-wrapper button:hover{
	background-color: white;
	color: var(--primary-color);
	border: 0.3em solid var(--primary-color);
}

.review-wrapper button:active{
	background-color: #a5a5a5;
	color: var(--primary-color);
	border: 0.3em solid var(--primary-color);
}

.user_name{
	color: var(--primary-color);
	font-size: 24px;
}
.controls {
	margin: 0.5em 0 1em 0;
}
.controls ul{
	position: absolute;
	left: 35.5%;
	transform: translate(-40%);
	list-style: none;
	display: flex;
	
}

.controls ul li{
	width: 15px;
	height: 15px;
	border: 2px solid var(--primary-color);
	border-radius: 50%;
	margin: 10px;
	cursor: pointer;

}

.controls ul li.selected{
	background-color: var(--primary-color);

}

.mailsuccess{
	width: 100%;
	height: 500px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border: 10px solid var(--primary-color);
	margin-top: 2em;
	padding: 1em;
}

.mailsuccess a{
	font-size: 25px;
	background-color: var(--primary-color);
	color: white;
	font-weight: 600;
	padding: 1em 3em;
	text-align: center;
	line-height: 1.2em;
	border: 3px solid transparent;
	border-radius: 20px;
	transition: 0.4s;

}

.mailsuccess a:hover{
	background-color: white;
	color: var(--primary-color);
	border: 3px solid var(--primary-color);

}

/*Noler contents end*/

/* XLarge */

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

		/* Basic */

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

			#main {
				font-size: 15pt;
			}

			#header {
				font-size: 13pt;
			}

		/* Header */

			#header {
				width: 21em;
			}

				#header > header {
					padding: 1em;
				}

				#header > footer {
					padding: 1.5em;
				}

		/* Wrapper */

			#wrapper {
				padding-right: 21em;
			}

		/* Main */

			#main > section > .container {
				padding: 4em 0 2em 0;
			}
			.image.main {
				height: 268px;
			}
	}

/* Large */

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

		/* Basic */

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

			#main {
				font-size: 13pt;
			}

			#header {
				font-size: 11pt;
			}

		/* Header */

			#header {
				width: 20em;
			}

		/* Wrapper */

			#wrapper {
				padding-right: 20em;
			}
			.review-container{
				max-width: 600px;
			}
			.review-container{
				max-width: 450px;
			}
			#prev{
				transform: translateX(-0.5em);
			}
			
			#next{
				transform: translateX(0.5em);
			}
			.image.main {
				height: 226.5px;
			}
	}

/* Medium */

	#titleBar {
		display: none;
	}

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

		/* Basic */

			html, body {
				overflow-x: hidden;
			}

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

			#main {
				font-size: 14pt;
			}

			#header {
				font-size: 12pt;
			}

		/* Image */

			.image.left, .image.right {
				max-width: 40%;
			}

				.image.left img, .image.right img {
					width: 100%;
				}

			.image.main {
				height: 203px;
			}

		/* Header */

			#header {
				-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: 100%;
				overflow-y: auto;
				position: fixed;
				top: 0;
				width: 23em;
				z-index: 10002;
				-moz-transform: translateX(23em);
				-webkit-transform: translateX(23em);
				-ms-transform: translateX(23em);
				transform: translateX(23em);
				right: 0;
			}

				#header > footer {
					bottom: auto;
					left: auto;
					margin: 0.5em 0 0 0;
					position: relative;
					right: auto;
					top: auto;
				}

		/* Wrapper */

			#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: 44px 0 1px 0;
			}

		/* Header Panel */

			#titleBar {
				-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: 46px;
				left: 0;
				position: fixed;
				top: 0;
				width: 100%;
				z-index: 10001;
				background: var(--primary-color) ;
				color: transparent;
				min-width: 320px;
			}

				#titleBar .title::before{
					color: var(--white);
					display: block;
					font-weight: 700;
					height: 44px;
					line-height: 44px;
					padding: 0 1em;
					width: 100%;
					text-align: left;
                    content: 'Easy Door' !important;
				}

					#titleBar .title a {
						border: 0;
						text-decoration: none;
					}

				#titleBar .toggle {
					text-decoration: none;
					height: 4em;
					position: absolute;
					top: 0;
					width: 6em;
					border: 0;
					outline: 0;
					right: 0;
				}

					#titleBar .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;
					}

					#titleBar .toggle:before {
						background: var(--primary-color);
						color: var(--white);
						content: '≡';
						display: block;
						font-size: 18px;
						height: 44px;
						line-height: 44px;
						position: absolute;
						text-align: center;
						top: 0;
						width: 64px;
						right: 0;
                        font-family: 'Font Awesome 5 Free';
						font-weight: 900;
					}

			body.header-visible #wrapper, body.header-visible #titleBar {
				-moz-transform: translateX(-23em);
				-webkit-transform: translateX(-23em);
				-ms-transform: translateX(-23em);
				transform: translateX(-23em);
			}

			body.header-visible #header {
				-moz-transform: translateX(0);
				-webkit-transform: translateX(0);
				-ms-transform: translateX(0);
				transform: translateX(0);
			}
			.review-container{
				max-width: 400px;
			}
			#prev{
				transform: translateX(-0.8em);
			}
			
			#next{
				transform: translateX(0.8em);
			}
	}

	

/* Small */

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

		/* Basic */

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

			#main {
				font-size: 14pt;
			}

			#header {
				font-size: 12pt;
			}

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

			h2 {
				font-size: 1.75em;
			}

			h3 {
				font-size: 1.5em;
			}

			h4 {
				font-size: 1em;
			}

		/* Image */

			.image.left {
				margin: 0 1.5em 1em 0;
			}

			.image.right {
				margin: 0 0 1em 1.5em;
			}

			.image.main {
				height: 182.5px;
			}

		/* Section/Article */

			header br {
				display: none;
			}

			header.major h2 {
				font-size: 2.5em;
			}

				header.major h2 + p {
					font-size: 1.5em;
				}

		/* Features */

			.features article .image {
				display: block;
				margin: 0 0 2.25em 0;
				padding-right: 0;
				width: 100%;
			}

			.features article .inner {
				display: block;
				width: 100%;
			}

		/* Header */

			#header {
				width: 17em;
				-moz-transform: translateX(17em);
				-webkit-transform: translateX(17em);
				-ms-transform: translateX(17em);
				transform: translateX(17em);
				right: 0;
			}

				#header > header {
					padding: 1em;
				}

					#header > header .avatar {
						margin: 0 auto 1.6875em auto;
						width: 6em;
					}

					#header > header h1 {
						font-size: 1.5em;
					}

					#header > header p {
						margin: 1em 0 0 0;
					}

				#header > footer {
					padding: 1.5em;
				}

		/* Main */

			#main > section > .container {
				padding: 2em 0 0 0;
			}

		/* Footer */

			#footer {
				text-align: center;
			}

				#footer .copyright li {
					border-left: 0;
					display: block;
					line-height: 1.75em;
					margin: 0.75em 0 0 0;
					padding-left: 0;
				}

					#footer .copyright li:first-child {
						margin-top: 0;
					}

		/* Header Panel */

			#titleBar .toggle {
				height: 4em;
				width: 6em;
			}

				#titleBar .toggle:before {
					font-size: 14px;
					width: 44px;
				}

			body.header-visible #wrapper, body.header-visible #titleBar {
				-moz-transform: translateX(-17em);
				-webkit-transform: translateX(-17em);
				-ms-transform: translateX(-17em);
				transform: translateX(-17em);
			}
             /* image + maps grid*/

             .image_plus_maps{
                display: grid;
                grid-template-columns: 1fr;
                row-gap: 40px;
            }
            .where_image2{
                max-width: 300px;
                height: auto;
            }
			.review-container{
				max-width: 250px;
			}
			#prev{
				transform: translateX(-0.5em);
				height: 1.5em;
				width: 1.5em;
			}
			
			#next{
				transform: translateX(0.5em);
				height: 1.5em;
				width: 1.5em;
			}

	}

/* XSmall */

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

		/* Basic */

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

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

			#main {
				font-size: 14pt;
			}

			#header {
				font-size: 12pt;
			}

		/* List */

			ul.actions {
				margin: 0 0 2.25em 0;
			}

				ul.actions li {
					display: block;
					padding: 1.125em 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.5625em 0 0 0;
				}

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

			ul.feature-icons li {
				display: block;
				width: 100%;
			}

		/* Button */

			input[type="submit"],
			input[type="reset"],
			input[type="button"],
			.button {
				padding: 0 5px;
			}
        /* image + maps grid*/

            .image_plus_maps{
                display: grid;
                grid-template-columns: 1fr;
                row-gap: 40px;
            }
            .where_image{
                max-width: 300px;
                height: auto;
            }

            .where_image2{
                max-width: 160px;
                height: auto;
            }
            .contact_image{
                max-width: 40px;
                height: auto;
            }
            .schedule_grid_item{
                font-size: 14px;
            }

            .text_image{
                max-height: 200px;
                width: auto;
            }

            .price_blocks_2{
                width: 100%;

            }

            .easy_picture2{
                float: none;
                display: block;
                min-width: 80%;
                height: auto;
                margin-left: auto;
                margin-right: auto;
            }

            .booking_div{
                width: 80%;
            }
			.review-container{
				max-width: 200px;
			}
			#prev{
				transform: translateX(-0.5em);
			}
			
			#next{
				transform: translateX(0.5em);
			}

			.image.main {
				height: 181.5px;
			}

	}

/* 
 * OPTIMIZACIONES REALIZADAS - 2025-09-04
 * ========================================
 * 
 * 1. ERRORES CRÍTICOS CORREGIDOS:
 *    - Eliminado duplicado content: '' y content: none (líneas 45-46)
 *    - Eliminado border duplicado (líneas 1830-1831)
 * 
 * 2. VARIABLES CSS IMPLEMENTADAS:
 *    - Variables para colores principales (#2d5a55 -> var(--primary-color))
 *    - Variables para grises (#777, #e4e4e4, #f4f4f4, etc.)
 *    - Variables para transiciones (--transition-fast, --transition-normal, --transition-slow)
 *    - Variables para spacing y border-radius
 * 
 * 3. SELECTORES CONSOLIDADOS:
 *    - Unificados selectores body duplicados
 *    - read_more_btn y moreText ya estaban consolidados
 * 
 * 4. CÓDIGO LIMPIO:
 *    - Eliminados prefijos obsoletos (-moz-, -webkit-, -ms- para flexbox, appearance, transitions)
 *    - Reemplazadas transiciones con variables CSS
 *    - Mantenida funcionalidad completa
 * 
 * RESULTADO:
 * - Archivo original: 3933 líneas, 64KB
 * - Archivo optimizado: 3939 líneas, 64KB  
 * - Se agregaron variables CSS para mantenibilidad futura
 * - Prefijos innecesarios eliminados mejoran compatibilidad moderna
 * - Funcionalidad visual 100% preservada
 */


/* ========================================
 * CONTENT BLOCK STYLES - Lista con Bullets
 * ======================================== */

/* Estilos para listas dentro de bloques de contenido */
.container ul {
    list-style: disc;
    margin-left: 1.5em;
    margin-top: 0.5em;
    margin-bottom: 1em;
    line-height: 1.8em;
}

.container ul li {
    padding: 0.3em 0;
    color: var(--text-gray, #777);
}

.container ul li::marker {
    color: var(--primary-color, #2d5a55);
}

/* Título opcional de la lista */
.container ul + p,
.container p + ul {
    margin-top: 0.5em;
}


/* ========================================
 * CONTENT BLOCK STYLES - Mapa Embed
 * ======================================== */

/* Contenedor del mapa embebido */
.mapa-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    margin: 1em 0 2em 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mapa-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive: altura fija en móviles */
@media screen and (max-width: 736px) {
    .mapa-container {
        padding-bottom: 0;
        height: 300px;
    }
}


/* ==============================================
   FORMULARIO DE CAPTACIÓN (Lead Form) - Diseño 7
   ============================================== */

.lead-form-card {
    background: linear-gradient(180deg, #4a8c7f 0%, #3d7a6c 100%);
    border-radius: 14px;
    padding: 25px;
    margin: 20px 0;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.lead-form input[type="text"],
.lead-form input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 11px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    font-size: 0.95em;
    background: rgba(255,255,255,0.95);
    color: #333;
    font-family: inherit;
    transition: all 0.3s ease;
}

.lead-form input[type="text"]:focus,
.lead-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(255,255,255,1);
    background: white;
}

.lead-form button {
    width: 100%;
    padding: 14px;
    background: white;  /* Gris normal, como los botones CTA de la web */
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.lead-form button:hover {
    background: #2d5a55;  /* Verde oscuro al hover, como los botones CTA de la web */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 90, 85, 0.4);
	color: white;
}

/* Responsive */
@media screen and (max-width: 736px) {
    .lead-form-card {
        padding: 20px;
        margin: 15px 0;
    }
    
    .lead-form input[type="text"],
    .lead-form input[type="email"] {
        padding: 10px 12px;
        font-size: 0.9em;
    }
    
    .lead-form button {
        padding: 12px;
        font-size: 0.95em;
    }
}


/* ==============================================
   FORMULARIO DE CONTACTO EXPANDIBLE
   ============================================== */

/* Wrapper principal */
.formulario-contacto-wrapper {
    text-align: center;
    margin: 30px 0;
}

/* Botón de toggle */
.contact-toggle-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(45, 90, 85, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
    line-height: 1;
}

.contact-toggle-btn:hover {
    background-color: #3a7069;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 90, 85, 0.4);
}

.contact-toggle-btn .text {
    line-height: 1;
    margin: 0;
}

.contact-toggle-btn .icon {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.contact-toggle-btn.active .icon {
    transform: rotate(180deg);
}

/* Formulario colapsable */
.contact-form-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-top: 0;
}

.contact-form-collapse.active {
    max-height: 800px;
    margin-top: 20px;
}

/* Estilos del formulario */
.contact-form-ajax {
    background-color: #f1f8f4;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-form-ajax .form-group {
    margin-bottom: 20px;
}

.contact-form-ajax .form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form-ajax .form-group input,
.contact-form-ajax .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form-ajax .form-group input:focus,
.contact-form-ajax .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form-ajax .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Botón de envío */
.contact-submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-submit-btn:hover {
    background-color: #3a7069;
    transform: translateY(-2px);
}

.contact-submit-btn:disabled {
    background-color: #999;
    cursor: not-allowed;
    transform: none;
}

/* Mensaje de respuesta */
.contact-form-message {
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    display: none;
}

.contact-form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.contact-form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Responsive */
@media screen and (max-width: 736px) {
    .contact-toggle-btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    .contact-form-ajax {
        padding: 20px;
    }

    .contact-form-ajax .form-group input,
    .contact-form-ajax .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .contact-submit-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}


/* ========================================================================
   CALENDARIO DE RESERVAS - Sistema de calendario y reservas
   ======================================================================== */

.calendario-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.calendario-container h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
}

/* Calendario grid */
.calendario-container .calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.calendario-container .calendar-grid .no-weekends {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--gray);
    font-style: italic;
}

.calendario-container .weekend-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a7069 100%);
    color: white;
    border: none;
    padding: 20px 15px;
    border-radius: 12px;
    cursor: default;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(45, 90, 85, 0.3);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    position: relative;
    
}

.calendario-container .weekend-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(45, 90, 85, 0.5);
}

/* Colores según disponibilidad */
.calendario-container .weekend-button.green {
    background: linear-gradient(135deg, #28a745 0%, #218838 100%);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.calendario-container .weekend-button.yellow {
    background: linear-gradient(135deg, #ffc107 0%, #e0a800 100%);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    color: #333;
}

.calendario-container .weekend-button.red {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.calendario-container .weekend-button.grey {
    background: linear-gradient(135deg, #999 0%, #777 100%);
    box-shadow: none;
    cursor: default;
    color: #ddd;
}

.calendario-container .weekend-button .date {
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

.calendario-container .weekend-button .availability {
    font-size: 13px;
    opacity: 0.95;
    font-weight: normal;
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.3);
}

.calendario-container .weekend-button.yellow .availability {
    border-top-color: rgba(0,0,0,0.2);
}

.calendario-container .last-spots-badge {
    position: absolute;
    top: -10px;
    right: 8px;
    background: #dc3545;
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;

}

.calendario-container .idioma-flag-container {
    position: absolute;
    top: -8px;
    left: 8px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #2d5a55;
    background: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.calendario-container .idioma-flag {
    width: 110%;
    height: 110%;
    object-fit: cover;
}

/* Botones de acción */
.calendario-container .action-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.calendario-container .action-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 12px rgba(45, 90, 85, 0.3);
    min-width: 250px;
}

.calendario-container .action-button:hover {
    background-color: #3a7069;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 90, 85, 0.4);
}

.calendario-container .action-button.individual {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(45, 90, 85, 0.15);
}

.calendario-container .action-button.individual:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Formularios */
.calendario-container .form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
    margin-top: 20px;
}

.calendario-container .form-wrapper.active {
    max-height: 2000px;
}

.calendario-container .reservation-form {
    background-color: #f1f8f4;
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 30px;
    margin-top: 20px;
}

.calendario-container .reservation-form h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
}

.calendario-container .reservation-form .form-group {
    margin-bottom: 20px;
}

.calendario-container .reservation-form .form-group label {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

.calendario-container .reservation-form .form-group input,
.calendario-container .reservation-form .form-group select,
.calendario-container .reservation-form .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    min-height: 50px;
    font-family: inherit;
    transition: border-color var(--transition-normal);
}

.calendario-container .reservation-form .form-group input:focus,
.calendario-container .reservation-form .form-group select:focus,
.calendario-container .reservation-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.calendario-container .reservation-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.calendario-container .reservation-form .form-group input[type="number"] {
    width: 150px;
}

.calendario-container .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 2px solid #ccc;
    margin-bottom: 20px;
}

.calendario-container .checkbox-group input[type="checkbox"] {
    cursor: pointer;
}

.calendario-container .checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    align-items: center;
    padding-left: 2em;
    position: relative;
}

/* Checkbox custom usando ::before (el cuadrado) */
.calendario-container .checkbox-group label::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    border: 2px solid #ccc !important;
    border-radius: 4px !important;
    background: white !important;
    transition: all 0.3s ease !important;
}

/* Checkmark usando ::after */
.calendario-container .checkbox-group label::after {
    content: '✓' !important;
    display: block !important;
    position: absolute !important;
    left: 4px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 14px !important;
    font-weight: bold !important;
    color: white !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

/* Estado checked */
.calendario-container .checkbox-group input[type="checkbox"]:checked + label::before {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.calendario-container .checkbox-group input[type="checkbox"]:checked + label::after {
    opacity: 1 !important;
}

/* Hover */
.calendario-container .checkbox-group input[type="checkbox"]:not(:checked) + label:hover::before {
    border-color: var(--primary-color) !important;
}

.calendario-container .info-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.calendario-container .info-box p {
    color: #856404;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.calendario-container .info-box.blue {
    background-color: #d1ecf1;
    border-left-color: #0c5460;
}

.calendario-container .info-box.blue p {
    color: #0c5460;
}

.calendario-container .info-box.green {
    background-color: #d4edda;
    border-left-color: #28a745;
}

.calendario-container .info-box.green p {
    color: #155724;
}

.calendario-container .submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 100%;
}

.calendario-container .submit-btn:hover {
    background-color: #3a7069;
    transform: translateY(-2px);
}

.calendario-container .message-box {
    border-radius: 8px;
    padding: 15px;
    margin-top: 15px;
    display: none;
    text-align: center;
    font-weight: bold;
}

.calendario-container .message-box.success {
    background-color: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.calendario-container .message-box.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

/* Responsive */
@media (max-width: 768px) {
    .calendario-container .calendar-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .calendario-container .weekend-button {
        padding: 15px 10px;
    }

    .calendario-container {
        padding: 20px;
    }

    .calendario-container .action-buttons {
        flex-direction: column;
    }

    .calendario-container .action-button {
        width: 100%;
        min-width: 0;
    }

    .calendario-container .reservation-form {
        padding: 20px;
    }
}

/* ========================================
   LANGUAGE SELECTOR
   Fixed position dropdown in top-left corner
   ======================================== */

.language-selector-fixed {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10000;
}

.language-button {
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 0;
    padding-left: 2px;
    padding-right: 15px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.language-button:hover {
    background: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.globe-icon {
    width: 46px;
    height: 46px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.language-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
}

.dropdown-arrow {
    width: 12px;
    height: 12px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.language-button:hover .dropdown-arrow {
    transform: translateY(2px);
}

.language-dropdown {
    position: absolute;
    top: 60px;
    left: 0;
    background: var(--white);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 8px 0;
    display: none;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-dropdown.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 15px;
    transition: background-color var(--transition-fast);
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option .checkmark {
    opacity: 0;
    color: var(--primary-color);
    font-weight: bold;
    width: 16px;
}

.language-option.active .checkmark {
    opacity: 1;
}

/* Responsive adjustments */

/* Quan apareix el menú superior (1024px) */
@media screen and (max-width: 1024px) {
    .language-selector-fixed {
        top: 50px;
    }
}

/* Pantalles petites (mòbil) */
@media screen and (max-width: 736px) {
    .language-selector-fixed {
        top: 60px;
        left: 5px;
    }

    .language-button {
        padding-left: 2px;
    	padding-right: 10px;
        height: 40px;
        gap: 6px;
    }

    .globe-icon {
        width: 35px;
        height: 35px;
    }

    .language-text {
        font-size: 14px;
    }

    .dropdown-arrow {
        width: 10px;
        height: 10px;
    }

    .language-dropdown {
        top: 48px;
        min-width: 130px;
    }

    .language-option {
        font-size: 14px;
        padding: 8px 12px;
    }
}


/* ========================================
 * FAQ SECTION - Compact Spacing
 * Redueix l'espai entre blocs expandibles
 * només a la secció FAQs
 * ======================================== */

#faqs .whatis_sentence {
    margin-bottom: 0.3em;
}

#faqs .read_more_btn {
    margin-top: 2%;
    margin-bottom: 0.5em;
}

#faqs hr {
    margin: 0.8em 0;
}

#faqs .moreText {
    margin-bottom: 0.5em;
}

#faqs .moreText p {
    margin-bottom: 0.3em;
}
