:root {
	--bs-blue: #0d6efd;
	--bs-indigo: #6610f2;
	--bs-purple: #6f42c1;
	--bs-pink: #d63384;
	--bs-red: #dc3545;
	--bs-orange: #fd7e14;
	--bs-yellow: #ffc107;
	--bs-green: #198754;
	--bs-teal: #20c997;
	--bs-cyan: #0dcaf0;
	--bs-white: #fff;
	--bs-gray: #6c757d;
	--bs-gray-dark: #343a40;
	--bs-gray-100: #f8f9fa;
	--bs-gray-200: #e9ecef;
	--bs-gray-300: #dee2e6;
	--bs-gray-400: #ced4da;
	--bs-gray-500: #adb5bd;
	--bs-gray-600: #6c757d;
	--bs-gray-700: #495057;
	--bs-gray-800: #343a40;
	--bs-gray-900: #212529;
	--bs-primary: #00204a;
	--bs-secondary: #005555;
	--bs-success: #198754;
	--bs-info: #0dcaf0;
	--bs-warning: #ffc107;
	--bs-danger: #dc3545;
	--bs-light: #f8f9fa;
	--bs-dark: #212529;
	--bs-primary-rgb: 0, 32, 74;
	--bs-secondary-rgb: 0, 85, 85;
	--bs-success-rgb: 25, 135, 84;
	--bs-info-rgb: 13, 202, 240;
	--bs-warning-rgb: 255, 193, 7;
	--bs-danger-rgb: 220, 53, 69;
	--bs-light-rgb: 248, 249, 250;
	--bs-dark-rgb: 33, 37, 41;
	--bs-white-rgb: 255, 255, 255;
	--bs-black-rgb: 0, 0, 0;
	--bs-body-color-rgb: 33, 37, 41;
	--bs-body-bg-rgb: 255, 255, 255;
	--bs-font-sans-serif: "Work Sans", sans-serif;
	--bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
	--bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
	--bs-body-font-family: var(--bs-font-sans-serif);
	--bs-body-font-size: 1rem;
	--bs-body-font-weight: 400;
	--bs-body-line-height: 1.5;
	--bs-body-color: #212529;
	--bs-body-bg: #fff;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
	:root {
	scroll-behavior: smooth; }
}

body {
	margin: 0;
	font-family: var(--bs-body-font-family);
	font-size: var(--bs-body-font-size);
	font-weight: var(--bs-body-font-weight);
	line-height: var(--bs-body-line-height);
	color: var(--bs-body-color);
	text-align: var(--bs-body-text-align);
	background-color: var(--bs-body-bg);
	-webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

hr {
	margin: 1rem 0;
	color: inherit;
	background-color: currentColor;
	border: 1px green solid;
	opacity: 0.9;
}

hr:not([size]) {
	height: 1px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 500;
	line-height: 1.2;
}

h1, .h1 {
	font-size: calc(1.375rem + 1.5vw);
}
	@media (min-width: 1200px) {
	h1, .h1 {
	font-size: 2.5rem; }
}

h2, .h2 {
	font-size: calc(1.325rem + 0.9vw);
}
	@media (min-width: 1200px) {
	h2, .h2 {
	font-size: 2rem; }
}

h3, .h3 {
	font-size: calc(1.2rem + 0.6vw);
}
	@media (min-width: 600px) {
	h3, .h3 {
	font-size: 1.75rem; }
}

h4, .h4 {
	font-size: calc(1rem + 0.3vw);
}
	@media (min-width: 600px) {
	h4, .h4 {
	font-size: 1.75rem; }
}

h5, .h5 {
	font-size: 1.25rem;
}

	@media (min-width: 500px) {
	h5, .h5 {
	font-size: 1rem; }
}

h6, .h6 {
	font-size: 1rem;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

abbr[title],
abbr[data-bs-original-title] {
	-webkit-text-decoration: underline dotted;
	text-decoration: underline dotted;
	cursor: help;
	text-decoration-skip-ink: none;
}

address {
	margin-bottom: 1rem;
	font-style: normal;
	line-height: inherit;
	text-align: left;
}

ol, ul {
	padding-left: 2rem;
}

ol, ul, dl {
	margin-top: 0;
	margin-bottom: 1rem;
}

ol ol, ul ul, ol ul, ul ol {
	margin-bottom: 0;
}

dt {
	font-weight: 700;
}

dd {
	margin-bottom: .5rem;
	margin-left: 0;
}

blockquote {
	margin: 0 0 1rem;
}

b, strong {
	font-weight: bolder;
}

small, .small {
	font-size: 0.875em;
}

mark, .mark {
	padding: 0.2em;
	background-color: #fcf8e3;
}

sub, sup {
	position: relative;
	font-size: 0.75em;
	line-height: 0;
	vertical-align: baseline;
}

sub {
	bottom: -.25em;
}

sup {
	top: -.5em;
}

a {
	color: #00204a;
	text-decoration: underline;
}
	a:hover {
	color: #001a3b;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
	color: inherit;
	text-decoration: none;
}

pre, code, kbd, samp {
	font-family: var(--bs-font-monospace);
	font-size: 1em;
	direction: ltr /* rtl:ignore */;
	unicode-bidi: bidi-override;
}

pre {
	display: block;
	margin-top: 0;
	margin-bottom: 1rem;
	overflow: auto;
	font-size: 0.875em;
}
	pre code {
	font-size: inherit;
	color: inherit;
	word-break: normal;
}

code {
	font-size: 0.875em;
	color: #d63384;
	word-wrap: break-word;
}

a > code {
	color: inherit;
}

kbd {
	padding: 0.2rem 0.4rem;
	font-size: 0.875em;
	color: #fff;
	background-color: #212529;
	border-radius: 0.2rem;
}

kbd kbd {
	padding: 0;
	font-size: 1em;
	font-weight: 700;
}

figure {
	margin: 0 0 1rem;
}

img, svg {
	vertical-align: middle;
}

table {
	caption-side: bottom;
	border-collapse: collapse;
}

caption {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	color: #6c757d;
	text-align: left;
}

th {
	text-align: inherit;
	text-align: -webkit-match-parent;
}

thead, tbody, tfoot, tr, td, th {
	border-color: inherit;
	border-style: solid;
	border-width: 0;
}

label {
	display: inline-block;
}

button {
	border-radius: 0;
}

button:focus:not(:focus-visible) {
	outline: 0;
}

input, button, select, optgroup, textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button, select {
	text-transform: none;
}

[role="button"] {
	cursor: pointer;
}

select {
	word-wrap: normal;
}

select:disabled {
	opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
	display: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button:not(:disabled),
	[type="button"]:not(:disabled),
	[type="reset"]:not(:disabled),
	[type="submit"]:not(:disabled) {
	cursor: pointer;
}

::-moz-focus-inner {
	padding: 0;
	border-style: none;
}

textarea {
	resize: vertical;
}

fieldset {
	min-width: 0;
	padding: 0;
	margin: 0;
	border: 0;
}

legend {
	float: left;
	width: 100%;
	padding: 0;
	margin-bottom: 0.5rem;
	font-size: calc(1.275rem + 0.3vw);
	line-height: inherit;
}

@media (min-width: 1200px) {
	legend {
		font-size: 1.5rem;
	}
}

legend + * {
	clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
	padding: 0;
}

::-webkit-inner-spin-button {
	height: auto;
}

[type="search"] {
	outline-offset: -2px;
	-webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
	direction: ltr;
}
*/
::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
	padding: 0;
}

::file-selector-button {
	font: inherit;
}

::-webkit-file-upload-button {
	font: inherit;
	-webkit-appearance: button;
}

output {
	display: inline-block;
}

iframe {
	border: 0;
}

summary {
	display: list-item;
	cursor: pointer;
}

progress {
	vertical-align: baseline;
}

[hidden] {
	display: none !important;
}

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

.container {
	width: 100%;
	padding-right: var(--bs-gutter-x, 0.75rem);
	padding-left: var(--bs-gutter-x, 0.75rem);
	margin-right: auto;
	margin-left: auto;
	margin-top: 10em;
}

.marg-top-0 {
	margin-top: 0;
}

.burger {
	width: 28px;
	height: 32px;
	cursor: pointer;
	position: relative;
}

.burger.light:before, .burger.light span, .burger.light:after {
	background: #1A7620;
}

.burger:before, .burger span, .burger:after {
	width: 100%;
	height: 2px;
	display: block;
	background: #000;
	border-radius: 2px;
	position: absolute;
	opacity: 1;
}

.burger:before, .burger:after {
	-webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
	transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
	transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
	transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
	-webkit-transition: top 0.35s cubic-bezier(0.23, 1, 0.32, 1), -webkit-transform 0.35s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s cubic-bezier(0.23, 1, 0.32, 1), background-color 1.15s cubic-bezier(0.86, 0, 0.07, 1);
	content: "";
}

.burger:before {
	top: 4px;
}

.burger span {
	top: 15px;
}

.burger:after {
	top: 26px;
}

/* Hover */
.burger:hover:before {
	top: 7px;
}

.burger:hover:after {
	top: 23px;
}

/* Click */
.burger.active span {
	opacity: 0;
}

.burger.active:before, .burger.active:after {
	top: 40%;
}

.burger.active:before {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=5);
	/*for IE*/
}

.burger.active:after {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=-5);
	/*for IE*/
}

.burger:focus {
	outline: none;
}

.btn {
	display: inline-block;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	border-radius: 0.5rem;
	-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	-o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.btn {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

.btn:hover {
	color: #212529;
}

.btn-primary {
	color: #fff;
	background-color: #2E368F;
	border-color: #00204a;
}

.btn-primary:hover {
	color: #fff;
	background-color: #001b3f;
	border-color: #001a3b;
}

.btn-primary:focus {
	color: #fff;
	background-color: #001b3f;
	border-color: #001a3b;
	-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 65, 101, 0.5);
	box-shadow: 0 0 0 0.25rem rgba(38, 65, 101, 0.5);
}

.btn-primary:active, .btn-primary.active,
.show > .btn-primary.dropdown-toggle {
	color: #fff;
	background-color: #001a3b;
	border-color: #001838;
}

.btn-primary:active:focus, .btn-primary.active:focus,

.show > .btn-primary.dropdown-toggle:focus {
	-webkit-box-shadow: 0 0 0 0.25rem rgba(38, 65, 101, 0.5);
	box-shadow: 0 0 0 0.25rem rgba(38, 65, 101, 0.5);
}

.btn-primary:disabled, .btn-primary.disabled {
	color: #fff;
	background-color: #00204a;
	border-color: #00204a;
}

.site-menu > li.active > a {
		color: rgba(0, 100, 0, 1);
}

.site-menu > li.active > a:hover {
		color: rgba(0, 255, 0, 1);
}

.me-auto {
	margin-right: auto !important;
}

.m-0 {
	margin: 0 !important;
}

.mb-2 {
	margin-bottom: 0.5rem !important;
}

.mb-3 {
	margin-bottom: 1rem !important;
}

.mb-5 {
	margin-bottom: 3rem !important;
}

.mt-1 {
	margin-top: 0.25rem !important;
}

.mt-5 {
	margin-top: 3rem !important;
}

.px-3 {
	padding-right: 1rem !important;
	padding-left: 1rem !important;
}

.py-2 {
	padding-top: 0.5rem !important;
	padding-bottom: 0.5rem !important;
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.producto {
	min-width: 185px;
	width: 15vw;
	/*border: 1px #ddd solid;*/
	float: left;
	margin: 0 auto;
}

.producto-about {
	width: 70%;
	margin: 0 auto;
}

.producto.mb-30 {
	margin-bottom: 30px;
}

.producto .img {
	position: relative;
	z-index: 1;
}

.producto .producto-des {
	background: #fff;
	padding: 8px;
	font-size: 13px;
	position: relative;
	width: 100%;
	margin-top: -100px;
	z-index: 2;
}

.producto .producto-des .interno {
	font-size: 3vh;
	font-weight: 700;
	color: #000;
}

.top-menu {
	background-color: rgba(255,255,255,1);
	padding: 0.3em 0.3em;
	position: relative;
	float: left;
	width: 100%;
	border: 1px #1A7620 solid;
	border-radius: 7px;
  -webkit-box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.1);
	box-shadow: 0 1em 2em -1em rgba(0, 0, 0, 1);
}

.logo {
	font-size: 24px;
	color: rgba(255, 255, 255, 0.8) !important;
	font-weight: 500;
	padding: 0.7vw 0.7vw;
}

.logo:hover {
	color: #fff !important;
}

.col-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%;
}

.col-12 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 100%;
}

.col-lg-6 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 50%;
}

.col-lg-8 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 auto;
	flex: 0 0 auto;
	width: 66.66667%;
}

.text-start {
	text-align: left !important;
}

.d-inline-block {
	display: inline-block !important;
}

.d-block {
	display: block !important;
}

.d-none {
	display: none !important;
}

@media (min-width: 992px) {
	.d-lg-inline-block {
	 	display: inline-block !important;
	}
	.d-lg-none {
	 	display: none !important;
	}
}

.row {
	--bs-gutter-x: 1.5rem;
	--bs-gutter-y: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: calc(-1 * var(--bs-gutter-y));
	margin-right: calc(-.5 * var(--bs-gutter-x));
	margin-left: calc(-.5 * var(--bs-gutter-x));
}

.row > * {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 100%;
	max-width: 100%;
	padding-right: calc(var(--bs-gutter-x) * .5);
	padding-left: calc(var(--bs-gutter-x) * .5);
	margin-top: var(--bs-gutter-y);
}

.dropdown {
	position: relative;
}

.justify-content-center {
	-webkit-box-pack: center !important;
	-ms-flex-pack: center !important;
	justify-content: center !important;
}

.align-items-center {
	-webkit-box-align: center !important;
	-ms-flex-align: center !important;
	align-items: center !important;
}

.eco-logo {
	font-weight: 600;
	font-style: italic;
	/*color: #1A7620;*/
	color: #009247;
}

.eco-list-item-text {
	width: 100%;
	text-align: center;
}

.eco-list-item-text-2 {
	width: 100%;
	text-align: center;
}

.eco-iconas {
	width: 55vh;
	height: 15vh;
	margin: 0 auto 1em auto;
	/*border: 1px #1A7620 solid;*/
}

.eco-iconas div {
	float: left;
	text-align: center;
	font-size: 1.4vh;
	color: #2E368F;
	padding: 2vh 1vh;
}

.eco-iconas img {
	width: 4vh;
}

.sec_app {
	min-width: 450px;
	width: 80%;
	text-align: center;
	margin: 5em auto 3em auto;
	min-height: 27vh;
	/*border: 10px #1A7620 solid;*/
}

.sec_app p {
	text-align: justify;
	color: black;
	font-size: 2.5vh;
}

/*@media (max-width: 600px) {
	.sec_app p {
		font-size: 1.5vh;
	}
}*/

.sec_app img {
	width: 12vw;
	margin: 0.5em 2em 0.5em 0;
	/*border: 1px #1A7620 solid;
	border-radius: 0.4em;*/
	float: left;
}

.sec_app-prod {
	padding: 0 2vw;
	margin: 1em auto 0.5em auto;
}

.img-bord img, .sec_app-prod img {
	border: 1px #1A7620 solid;
	border-radius: 0.4em;
}

.left-chars {
	width: 35%;
	min-width: 400px;
	float: left;
	font-size: 2vh;
	font-weight: bold;
	border: 1px #1A7620 solid;
	border-radius: 0.4em;
	color: #1A7620;
	margin: 0 2vw 0 0;
}

.left-chars-name {
	width: 50%;
	min-width: 70px;
	float: left;
	position: relative;
	font-weight: normal;
	text-align: left;
	padding: 0.25vw 0 0.25vw 0.5vw;
	color: #1A7620;
}

.left-chars-val {
	width: 50%;
	min-width: 80px;
	float: right;
	position: relative;
	font-weight: normal;
	text-align: right;
	padding: 0.25vw 0.5vw 0.25vw 0;
	color: #1A7620;
}

.left-chars-name .gray, .left-chars-val .gray {
	background-color: Gainsboro;
}

.left-chars-val p {
	font-size: 1vw;
	margin: 0;
	text-align: right;
}

.left-chars-name p {
	font-size: 1vw;
	margin: 0;
}

div.left-chars p.chars-notes {
	color: red;
	font-weight: normal;
	font-size: 0.9vw;
	padding: 0.2em 0.5em;
	margin-bottom: 0;
}

@media (max-width: 1200px) {
	.left-chars-val p, .left-chars-name p {
		font-size: 1.1vw;
	}
	div.left-chars p.chars-notes {
		font-size: 1vw;
	}
}

@media (max-width: 800px) {
	.left-chars-val p, .left-chars-name p {
		font-size: 2vw;
	}
	div.left-chars p.chars-notes {
		font-size: 1.8w;
	}
}

@media (max-width: 600px) {
	.left-chars-val p, .left-chars-name p {
		font-size: 3.3vw;
	}
	div.left-chars p.chars-notes {
		font-size: 3.1vw;
	}
}

.hero {
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: white;
}

.hero, .hero > .container > .row {
	height: 50vh;
	min-height: 300px;
}

.hero.page-inner, .hero.page-inner > .container > .row {
	height: 40vh;
	min-height: 300px;
}

.hero > .container {
	position: relative;
	z-index: 2;
}

.hero .heading {
	color: #fff;
	font-size: clamp(1.5rem, 2.5vw, 2.5rem);
	margin-bottom: 30px;
	font-weight: 600;
}

.hero-slide {
	top: 0;
	position: absolute;
	left: 0;
	right: 0;
}

.hero-slide .img {
	height: 68vh;
	min-height: 300px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

.hero-slide .img.overlay {
	position: relative;
}
	.hero-slide .img.overlay:before {
		content: "";
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		top: 0;
		z-index: 1;
		background: rgba(34, 34, 34, 0.4);
}

.section {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.section .heading {
	font-weight: 500;
}
	@media (max-width: 767.98px) {
	.section .heading {
		font-size: 36px; }
}

.float-izq {
	float: left !important;
}

.float-der {
	float: right !important;
}

.form-control {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	color: #212529;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0.25rem;
	-webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	-o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.form-control {
		-webkit-transition: none;
		-o-transition: none;
		transition: none;
	}
}

.form-control[type="file"] {
 	overflow: hidden;
}

.form-control[type="file"]:not(:disabled):not([readonly]) {
	cursor: pointer;
}

.form-control:focus {
	color: #212529;
	background-color: #fff;
	border-color: #8090a5;
	outline: 0;
	-webkit-box-shadow: 0 0 0 0.25rem rgba(0, 32, 74, 0.25);
	box-shadow: 0 0 0 0.25rem rgba(0, 32, 74, 0.25);
}

.form-control::-webkit-date-and-time-value {
	height: 1.5em;
}

.form-control::-webkit-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control:-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::-ms-input-placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control::placeholder {
	color: #6c757d;
	opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
	background-color: #e9ecef;
	opacity: 1;
}

.form-control::file-selector-button {
	padding: 0.375rem 0.75rem;
	margin: -0.375rem -0.75rem;
	-webkit-margin-end: 0.75rem;
	margin-inline-end: 0.75rem;
	color: #212529;
	background-color: #e9ecef;
	pointer-events: none;
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-inline-end-width: 1px;
	border-radius: 0;
	-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	-o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
	@media (prefers-reduced-motion: reduce) {
	.form-control::file-selector-button {
		-webkit-transition: none;
		-o-transition: none;
		transition: none; }
}

.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
	background-color: #dde0e3;
}

.form-control::-webkit-file-upload-button {
	padding: 0.375rem 0.75rem;
	margin: -0.375rem -0.75rem;
	-webkit-margin-end: 0.75rem;
	margin-inline-end: 0.75rem;
	color: #212529;
	background-color: #e9ecef;
	pointer-events: none;
	border-color: inherit;
	border-style: solid;
	border-width: 0;
	border-inline-end-width: 1px;
	border-radius: 0;
	-webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
	-o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
	@media (prefers-reduced-motion: reduce) {
	.form-control::-webkit-file-upload-button {
		-webkit-transition: none;
		-o-transition: none;
		transition: none; }
}

.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
	background-color: #dde0e3;
}

textarea.form-control {
	min-height: calc(1.5em + 0.75rem + 2px);
}


.form-control {
	font-size: 16px;
	height: 52px;
	padding-left: 15px;
	padding-right: 15px;
}

.form-control:hover, .form-control:active, .form-control:focus {
	outline: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.site-nav {
	padding-top: 20px;
	padding-bottom: 20px;
	position: fixed;
	top: 0;
	z-index: 9;
	width: 100%;
}

.site-nav h1, .site-nav .h1 {
	margin: 0;
	padding: 0;
	font-size: 1.3em;
}

.site-nav .site-navigation .site-menu {
	margin-bottom: 0;
	padding-top: 1vh;
}

.site-nav .site-navigation .site-menu > li {
	display: inline-block;
}
	.site-nav .site-navigation .site-menu > li > a {
		font-size: 150%;
		padding: 0.5em 0.7em;
		display: inline-block;
		text-decoration: none !important;
		/*color: rgba(0, 100, 0, 1);*/
		color: #009247;
}
		.site-nav .site-navigation .site-menu > li > a:hover {
		color: #00A020;
}
	.site-nav .site-navigation .site-menu > li.cta-button a {
		padding: 6px 20px;
		border: 2px solid rgba(0, 0, 0, 0.1);
		color: #000;
		border-radius: 30px;
}
		.site-nav .site-navigation .site-menu > li.cta-button a:hover {
		color: #000;
		background: #00204a;
		border-color: #00204a;
}
	.site-nav .site-navigation .site-menu > li.active > a {
		/*color: rgba(0, 100, 0, 1);*/
		color: #009247;
		text-decoration: none;
}
	.site-nav .site-navigation .site-menu > li.active > a:hover {
		/*color: rgba(0, 255, 0, 1);*/
		color: #00A020;
		text-decoration: none;
}

.site-nav .site-navigation .site-menu .has-children {
	position: relative;
}

.site-nav .site-navigation .site-menu .has-children > a {
	position: relative;
	padding-right: 20px;
	text-decoration: none;
}

.site-nav .site-navigation .site-menu .has-children > a:before {
	position: absolute;
	content: "\e313";
	font-size: 14px;
	top: 50%;
	right: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-family: 'icomoon';
}

.site-nav .site-navigation .site-menu .has-children .dropdown {
	visibility: hidden;
	opacity: 0;
	top: 100%;
	z-index: 999;
	position: absolute;
	text-align: left;
	-webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
	padding: 4px 4px;
	margin-top: 0;
	margin-left: 0.5em;
	background: #ddd;
	border-radius: 0.5em;
	-webkit-transition: 0.2s 0s;
	-o-transition: 0.2s 0s;
	transition: 0.2s 0s;
}

.site-nav .site-navigation .site-menu .has-children .dropdown.arrow-top {
	position: absolute;
}

.site-nav .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
	display: none;
	bottom: 100%;
	left: 20%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.site-nav .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
	display: none;
	border-color: rgba(136, 183, 213, 0);
	border-bottom-color: #fff;
	border-width: 10px;
	margin-left: -10px;
}

.site-nav .site-navigation .site-menu .has-children .dropdown a {
	font-size: 14px;
	text-transform: none;
	text-decoration: none;
	letter-spacing: normal;
	-webkit-transition: 0s all;
	-o-transition: 0s all;
	transition: 0s all;
	color: #000;
}

.site-nav .site-navigation .site-menu .has-children .dropdown .active a {
	color: #00204a !important; }

.site-nav .site-navigation .site-menu .has-children .dropdown > li {
	list-style: none;
	white-space: nowrap;
	padding: 0;
	margin: 0;
	min-width: 100px;
}

.site-nav .site-navigation .site-menu .has-children .dropdown > li > a {
	white-space: nowrap;
	text-decoration: none;
	padding: 5px 5px;
	display: block;
	border-radius: 5px;
}

.site-nav .site-navigation .site-menu .has-children .dropdown > li > a:hover {
	white-space: nowrap;
	text-decoration: none;
	background-color: lightgray;
	color: #009247;
	border-radius: 5px;
}

.site-nav .site-navigation .site-menu .has-children .dropdown > li > a span:hover {
	text-decoration: none;
	background-color: lightgray;
	color: #009247;
	border-radius: 5px;
}

.site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > a:before {
	content: "\e316";
	right: 20px;
}

.site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > ul {
	left: 100%;
	top: 0;
}

.site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > .dropdown li a:hover, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children > ul li a:hover {
	color: #00204a;
}

.site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children:hover > a, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children:active > a, .site-nav .site-navigation .site-menu .has-children .dropdown > li.has-children:focus > a {
	color: #00204a;
}

.site-nav .site-navigation .site-menu .has-children:hover > a, .site-nav .site-navigation .site-menu .has-children:focus > a, .site-nav .site-navigation .site-menu .has-children:active > a {
	color: #:00A020;
}

.site-nav .site-navigation .site-menu .has-children:hover, .site-nav .site-navigation .site-menu .has-children:focus, .site-nav .site-navigation .site-menu .has-children:active {
	cursor: pointer;
}
.site-nav .site-navigation .site-menu .has-children:hover > .dropdown, .site-nav .site-navigation .site-menu .has-children:focus > .dropdown, .site-nav .site-navigation .site-menu .has-children:active > .dropdown {
	-webkit-transition-delay: 0s;
	-o-transition-delay: 0s;
	transition-delay: 0s;
	margin-top: 0px;
	visibility: visible;
	opacity: 1;
}

.site-mobile-menu-close {
	display: block;
	position: relative;
	height: 30px;
	width: 30px;
	z-index: 99;
	cursor: pointer;
	top: -20px;
}

.site-mobile-menu-close > span {
	cursor: pointer;
	display: block;
	position: absolute;
	height: 30px;
	width: 30px;
}

.site-mobile-menu-close > span:before, .site-mobile-menu-close > span:after {
	position: absolute;
	content: "";
	width: 2px;
	height: 30px;
	background: #000;
}

.site-mobile-menu-close > span:before {
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.site-mobile-menu-close > span:after {
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.site-mobile-menu {
	width: 250px;
	position: fixed;
	right: 0;
	z-index: 2000;
	padding-top: 20px;
	background: #fff;
	height: calc(80vh);
	max-height: 400px;
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
	-o-transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
	transition: 0.8s all cubic-bezier(0.23, 1, 0.32, 1);
	border-radius: 8px;
}

.offcanvas-menu .site-mobile-menu {
	-webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
	box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
	width: 100%;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
	float: right;
	margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
	font-size: 30px;
	display: inline-block;
	padding-left: 10px;
	padding-right: 0px;
	line-height: 1;
	cursor: pointer;
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
	float: left;
	margin-top: 10px;
	margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
	display: inline-block;
	text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
	max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
	text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	position: relative;
	padding: 0 20px 20px 20px;
	height: calc(100vh - 52px);
	padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
	padding: 0;
	margin: 0;
	list-style: none;
	position: relative;
}

.site-mobile-menu .site-nav-wrap a {
	padding: 5px 20px;
	display: block;
	position: relative;
	color: #000;
}
	.site-mobile-menu .site-nav-wrap a:hover {
		color: #00204a;
}

.site-mobile-menu .site-nav-wrap li {
	position: relative;
	display: block;
}
	.site-mobile-menu .site-nav-wrap li.active > a {
		color: #00204a;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 20;
	width: 36px;
	height: 36px;
	text-align: center;
	cursor: pointer;
	border-radius: 50%;
	border: 1px solid #f8f9fa;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
	font-size: 14px;
	z-index: 20;
	font-family: "icomoon";
	content: "\e313";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-180deg);
	-ms-transform: translate(-50%, -50%) rotate(-180deg);
	transform: translate(-50%, -50%) rotate(-180deg);
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap > li {
	display: block;
	position: relative;
	float: left;
	width: 100%;
}
.site-mobile-menu .site-nav-wrap > li > a {
		padding-left: 20px;
		font-size: 14px;
}

.site-mobile-menu .site-nav-wrap > li > ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.site-mobile-menu .site-nav-wrap > li > ul > li {
	display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > a {
	padding-left: 40px;
	font-size: 14px;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul {
	padding: 0;
	margin: 0;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li {
	display: block;
}

.site-mobile-menu .site-nav-wrap > li > ul > li > ul > li > a {
	font-size: 14px;
	padding-left: 60px;
}

.pag-bottom {
	background: #ddd;
	font-size: 14px;
	color: #333;
	padding: 70px 0;
}

.pag-bottom a {
	color: #777;
	position: relative;
	display: inline-block;
	text-decoration: underline;
}

.pag-bottom a:hover {
	color: #000;
	text-decoration: none;
}

.pag-bottom a:hover:before {
		background: #00204a;
}

.pag-bottom .footer-cta h2, .pag-bottom .footer-cta .h2 {
	font-size: 30px;
	color: #00204a;
}

.pag-bottom .btn:before {
	display: none;
}

.pag-bottom .pag-bottom-div {
	min-width: 225px;
	width: 15vw;
	margin-left: 10px;
	margin-bottom: 40px;
	padding-left: 0;
	display: block;
}

ul.lista-notype {
	list-style-type: none;
}

.our-prod {
	width: 130vh;
	margin: 1vh auto 0 auto;
	text-align: justify;
}

.our-prod p {
	font-size: 2.5vh;
	text-align: justify;
	padding-top: 0;
}

.ecores {
	font-weight: bold;
	font-style: italic;
	color: #009247;
}

.ecorescolor {
	font-weight: bold;
	color: #1B75BB;
}

.ecoresdecor {
	font-weight: bold;
	color: #652D90;
}

.ecoresimper {
	font-weight: bold;
	color: #2E3191;
}

.ecoresmalt {
	font-weight: bold;
	color: #F05A28;
}

.ecoresplast {
	font-weight: bold;
	color: #6D6E70;
}

.colores {
	width: 55vh;
	height: 15vh;
	margin: 0 auto;
}

.tablecolors {
	width: 100%;
	height: 4vh;
	margin: 0 auto 0.6em auto;
}

.ecocolor-line {
	float: left;
}

.ecocolor {
	float: left;
	width: 4vh;
	height: 4vh;
	padding: 2px 2px;
	margin: 2px 2px;
	background-color: white;
	border: 4px darkgreen double;
	border-radius: 5px;
}

.ecocolor-name {
	float: left;
	width: 12vh;
	height: 4vh;
	padding: 0.4em 0.3em;
	text-align: left;
	max-width: 120px;
	vertical-align: middle;
	font-size: 2vh;
}

.pag-bottom .pag-bottom-div h3, .pag-bottom .pag-bottom-div .h3 {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 15px;
	color: #00204a;
}

.pag-bottom .pag-bottom-div .linkk {
	margin-left: 0;
	padding-left: 0;
	text-align: left;
	width: 150px;
}

.pag-bottom .pag-bottom-div .linkk li {
	margin-left: 0;
	padding-left: 0;
	margin-bottom: 10px;
}

.pag-bottom .soc li {
	display: inline-block;
	margin-left: 0;
	padding-left: 0;
	text-align: left;
}

.pag-bottom .soc li a img {
	min-width: 25px;
	width: 1.5vw;
	margin: 0.3em 0.5em;
}

.pag-bottom .soc li a img:hover {
	margin: 0.1em 0.5em 0.5em 0.5em;
}

.pag-bottom .soc li a:before {
 	display: none;
}

.pag-bottom .soc li a:hover {
 	background: #bbb;
}

.loader {
	z-index: 7700;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

body {
	font-family: "Verdana", sans-serif;
	font-weight: 400;
	font-size: 14px;
	overflow-x: hidden;
}
	body:before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9;
	background-color: rgba(0, 0, 0, 0.5);
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
	opacity: 0;
	visibility: hidden;
}
	body.offcanvas-menu:before {
	opacity: 1;
	visibility: visible;
}

