/*
Theme Name: OCM Theme 2026
Theme URI: https://vigilanteamazonico.pe
Author: Cocoa Perú
Author URI: https://cocoa.pe/
Description: Plantilla desarrollada para uso de CooperAcción: OCM
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

:root{
	--font-family: "futura", sans-serif;
	--font-headlines: "futura", sans-serif;
	--turquesa:#5ec589;
	--rojo:#ae3028;
	--ocre:#ce8031;
	--amarillo:#f0bc40;
	--link: inherit;
	--black: #232323;
	--gris: #888888;
	--light: #f8f8f8;
	--white: #ffffff;
	--border: #c9c9c9;

	--header-height: 70px;
	--col: 110px;
	--container: 1320px;
}
@media only screen and (max-width: 1399px){ :root{ --col: 95px; --container: 1140px; } }
@media only screen and (max-width: 1199px){ :root{ --col: 79.98px; --container: 960px; } }
@media only screen and (max-width: 991px){ :root{ --col: 60px; --container: 710px; } }
@media only screen and (max-width: 767px){ :root{ --col: 45px; --container: 540px; } }
@media only screen and (max-width: 575px){ :root{ --col: calc(100vw/12); --container: 100vw; } }

html{
	font-size: 18px;
}

body, table, td{
	font-family: var(--font-family);
	line-height: 1.3;
	color: var(--black);
	font-weight: 400;
	font-size: 1rem;
	font-style: normal;
}

h1, .h1{ font-size: 3.75rem; }
h2, .h2{ font-size: 3rem; }
h3, .h3{ font-size: 2.5rem; }
h4, .h4{ font-size: 2rem; }
h5, .h5{ font-size: 1.5rem; }
h6, .h6{ font-size: 1.3333rem; }
.p{ font-size: 1rem; }

a{
	color: var(--link);
	text-decoration: underline;
	text-underline-offset: 3px;
	text-decoration-thickness: 1px;
	text-decoration-color: var(--rojo);
}
a:hover{
	color: var(--link);
	text-decoration-thickness: 2px;
}

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

a.text-white{
	text-decoration-color: var(--white);
}

small, .small{ font-size: 88.889%; }

.font-extralight{ font-weight: 200;}
.font-light{ font-weight: 300;}
.font-medium{ font-weight: 500;}
.font-bold,
b, strong{ font-weight: 700; }
.font-semibold{ font-weight: 600;}

.has-medium-font-size{ font-size: 1.3333rem !important; }
.has-small-font-size{ font-size: 0.88889rem !important; }

h1,h2,h3,h4,h5,h6{ font-family: var(--font-headlines); font-weight: 400; margin-bottom: 1rem; line-height: 1.1; }

ul,ol{
	margin-bottom: 1.5rem;
}

ol:last-child,
ul:last-child,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child{
	margin-bottom: 0 !important;
}

p:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child{
	margin-top: 0 !important;
}

p{
	margin-bottom: 1rem;
}

ul, ol{
	padding-left: 1.5em;
}

.overflow-hidden{
	overflow: hidden;
}

.wp-block-separator,
hr{
	border: 0 solid;
	border-top-width: 1px;
	opacity: 1;
	margin: 0;
}

/*------------------------------ btn-trigger -------------------------*/

.btn-trigger{
	position: relative;
	display: block;
	min-width: 3rem;
	height: 3rem;
	border: 0 none;
	background-color: transparent;
	z-index: 100;
	border-radius: 0;
}

.btn-trigger span{
	display: block;
	position: absolute;
	width: 24px;
	height: 2px;
	background-color: var(--black);
	left: calc(50% - 12px);
	-webkit-transition: all 0.1s ease;
	-moz-transition: all 0.1s ease;
	-ms-transition: all 0.1s ease;
	-o-transition: all 0.1s ease;
	transition: all 0.1s ease;
	z-index: 9;
	border-radius: 0;
}
.btn-trigger span:nth-child(1){
	top: calc(50% - 8px);
}
.btn-trigger span:nth-child(2){
	bottom: calc(50% - 8px);
}

.btn-trigger span:nth-child(3){
	bottom: calc(50% - 1px);
}

.btn-trigger.show span:nth-child(1){
	-moz-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	top: calc(50% - 1px);
}
.btn-trigger.show span:nth-child(2){
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	bottom: calc(50% - 1px);
}
.btn-trigger.show span:nth-child(3){
	width: 0;
	opacity: 0;
}
/*------------------------------ spinner -------------------------*/

.spinner-border {
	display: inline-block;
	flex-shrink: 0;
	width: var(--bs-spinner-width);
	height: var(--bs-spinner-height);
	vertical-align: var(--bs-spinner-vertical-align);
	border-radius: 50%;
	animation: var(--bs-spinner-animation-speed) linear infinite var(--bs-spinner-animation-name);
}

@keyframes spinner-border {
	to {
		transform: rotate(360deg) /* rtl:ignore */;
	}
}
.spinner-border {
	--bs-spinner-width: 2rem;
	--bs-spinner-height: 2rem;
	--bs-spinner-vertical-align: -0.125em;
	--bs-spinner-border-width: 0.25em;
	--bs-spinner-animation-speed: 0.75s;
	--bs-spinner-animation-name: spinner-border;
	border: var(--bs-spinner-border-width) solid currentcolor;
	border-right-color: transparent;
}
/*------------------------------ Forms -----------------------------*/

.label,
label{
	font-size: 1rem;
	margin-bottom: .25rem;
	font-weight: 400;
}

.form-select,
.form-control{
	height: 3rem;
	display: block;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	font-size: 1rem;
	color: var(--black);
	border-radius: 0;
	border: 1px solid var(--border);
	padding: .25rem .75rem;
}

.form-select:not(:disabled):hover,
.form-control:not(:disabled):hover{
	border-color: var(--black);
}

textarea.form-control{
	height: auto !important;
	padding-top: .75rem;
}

input::-webkit-input-placeholder{color: var(--gris);}
input::-moz-placeholder{color: var(--gris);}
input:-ms-input-placeholder{color: var(--gris);}
input::-ms-input-placeholder{color: var(--gris);}
input::placeholder{color: var(--gris);}

.form-select{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23242423' viewBox='0 0 16 16'%3E%3Cpath d='M0,4.9l1.8-1.8,6.2,6.2,6.2-6.2,1.8,1.8-8,8L0,4.9Z'/%3E%3C/svg%3E");
	background-position: right 1rem center;
	background-repeat: no-repeat;
	background-size: .74rem auto;
}

.form-select:focus,
.form-select:active{
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23242423' viewBox='0 0 16 16'%3E%3Cpath d='M16,11.1l-1.8,1.8-6.2-6.2L1.8,12.9l-1.8-1.8L8,3.1l8,8Z'/%3E%3C/svg%3E");
}

.form-check{
	display: block;
    min-height: 1.5rem;
    padding-left: 1.5em;
}
.form-check-input{
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	margin-top: .15em;
	vertical-align: top;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: var(--white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 16 16'%3E%3Cpath d='M1,8.604l1.75-1.75,3.097,3.097,7.403-7.403,1.75,1.75L5.847,13.451,1,8.604Z'/%3E%3C/svg%3E"); 
	background-repeat: no-repeat;
	background-position: center;
	background-size: .75rem;
	border: 1px solid var(--border);
	border-radius: 4px;
	-webkit-print-color-adjust: exact;
	color-adjust: exact;
	print-color-adjust: exact;
	cursor: pointer
}
.form-check .form-check-input{
	float: left;
    margin-left: -1.5em;
}

.form-check-input:checked{
	background-color: var(--black);
	border-color: var(--black);
}
.form-check:hover .form-check-input{
	border-color: var(--black);
}

.form-check-input[type=radio]{
	border-radius: 50%;
	width: 1rem;
	height: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFF' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3C/svg%3E"); 
	background-size: 60% auto;
}
.form-check-input[type=radio]:checked{
	background-color: var(--white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23242423' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3C/svg%3E"); 
	border-color: var(--black);
}
.form-check-label{
	margin-bottom: 0;
	cursor: pointer
}

.form-floating {
	position: relative;
}
.form-floating .form-control,
.form-floating .form-control-plaintext,
.form-floating .form-select {
	height: 3.5rem;
	min-height: 3.5rem;
	line-height: 1.25;
}
.form-floating label {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	max-width: 100%;
	height: 3.5rem;
	padding: .5rem 0.75rem;
	overflow: hidden;
	color: var(--gris);
	text-align: start;
	text-overflow: ellipsis;
	white-space: nowrap;
	pointer-events: none;
	transform-origin: 0 0;
	transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
	margin-bottom: 0;
}
@media (prefers-reduced-motion: reduce) {
	.form-floating label {
		transition: none;
	}
}
.form-floating .form-control,
.form-floating .form-control-plaintext {
	padding: .5rem 0.75rem;
}
.form-floating .form-control::placeholder,
.form-floating .form-control-plaintext::placeholder {
	color: transparent;
}
.form-floating .form-control:focus, .form-floating .form-control:not(:placeholder-shown),
.form-floating .form-control-plaintext:focus,
.form-floating .form-control-plaintext:not(:placeholder-shown) {
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
}
.form-floating .form-control:-webkit-autofill,
.form-floating .form-control-plaintext:-webkit-autofill {
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
}
.form-floating .form-select {
	padding-top: 1.625rem;
	padding-bottom: 0.625rem;
	padding-left: 0.75rem;
}
.form-floating .form-control:focus ~ label,
.form-floating .form-control:not(:placeholder-shown) ~ label,
.form-floating .form-control-plaintext ~ label,
.form-floating .form-select ~ label {
	transform: scale(0.8) translateY(-0.5rem) translateX(0.175rem);
	color: var(--gris);
}
.form-floating .form-control:-webkit-autofill ~ label {
	transform: scale(0.8) translateY(-0.5rem) translateX(0.175rem);
	color: var(--gris);
}
.form-floating textarea:focus ~ label::after,
.form-floating textarea:not(:placeholder-shown) ~ label::after {
	position: absolute;
	inset: 1rem 0.375rem;
	z-index: -1;
	height: 1.5em;
	content: "";
	background-color: var(--bs-body-bg);
	border-radius: var(--bs-border-radius);
}
.form-floating textarea:disabled ~ label::after {
	background-color: var(--bs-secondary-bg);
}
.form-floating .form-control-plaintext ~ label {
	border-width: var(--bs-border-width) 0;
}
.form-floating :disabled ~ label,
.form-floating .form-control:disabled ~ label {
	color: #6c757d;
}

.form-select:disabled,
.form-control:disabled{
	cursor: not-allowed;
	pointer-events: none;
	opacity: .42
}

/*------------------------------ VIDEO RESPONSIVE -----------------------------*/

.ratio {
	position: relative;
	width: 100%;
}
.ratio::before {
	display: block;
	padding-top: var(--bs-aspect-ratio);
	content: "";
}
.ratio > * {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.ratio-1x1{--bs-aspect-ratio: 100%;}
.ratio-4x3{--bs-aspect-ratio: 75%;}
.ratio-16x9{--bs-aspect-ratio: 56.25%;}
.ratio-21x9{--bs-aspect-ratio: 42.8571428571%;}

/*------------------------------ MODAL -----------------------------*/
.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 500px;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: var(--bs-body-color);
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(var(--bs-border-radius-lg) - (var(--bs-border-width)));
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: var(--bs-modal-margin);
  pointer-events: none;
}
.modal.fade .modal-dialog {
  transform: translate(0, -50px);
  transition: transform 0.3s ease-out;
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - var(--bs-modal-margin) * 2);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - var(--bs-modal-margin) * 2);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: var(--bs-modal-color);
  pointer-events: auto;
  background-color: var(--bs-modal-bg);
  background-clip: padding-box;
  border: var(--bs-modal-border-width) solid var(--bs-modal-border-color);
  border-radius: var(--bs-modal-border-radius);
  outline: 0;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1050;
  --bs-backdrop-bg: #000;
  --bs-backdrop-opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-backdrop-zindex);
  width: 100vw;
  height: 100vh;
  background-color: var(--bs-backdrop-bg);
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: var(--bs-backdrop-opacity);
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding: var(--bs-modal-header-padding);
  border-bottom: var(--bs-modal-header-border-width) solid var(--bs-modal-header-border-color);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
  border-top-right-radius: var(--bs-modal-inner-border-radius);
}
.modal-header .btn-close {
  padding: calc(var(--bs-modal-header-padding-y) * 0.5) calc(var(--bs-modal-header-padding-x) * 0.5);
  margin-top: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-right: calc(-0.5 * var(--bs-modal-header-padding-x));
  margin-bottom: calc(-0.5 * var(--bs-modal-header-padding-y));
  margin-left: auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: var(--bs-modal-title-line-height);
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: var(--bs-modal-padding);
}

.modal-footer {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: calc(var(--bs-modal-padding) - var(--bs-modal-footer-gap) * 0.5);
  background-color: var(--bs-modal-footer-bg);
  border-top: var(--bs-modal-footer-border-width) solid var(--bs-modal-footer-border-color);
  border-bottom-right-radius: var(--bs-modal-inner-border-radius);
  border-bottom-left-radius: var(--bs-modal-inner-border-radius);
}
.modal-footer > * {
  margin: calc(var(--bs-modal-footer-gap) * 0.5);
}

@media (min-width: 576px) {
  .modal {
    --bs-modal-margin: 1.75rem;
    --bs-modal-box-shadow: var(--bs-box-shadow);
  }
  .modal-dialog {
    max-width: var(--bs-modal-width);
    margin-right: auto;
    margin-left: auto;
  }
  .modal-sm {
    --bs-modal-width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    --bs-modal-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    --bs-modal-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header,
.modal-fullscreen .modal-footer {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header,
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header,
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header,
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header,
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header,
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}

button.close{
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: var(--black);
	border: 0 none;
	width: 2.25rem;
	height: 2.25rem;
	position: fixed;
	z-index: 999;
	color: var(--white);
	top: 1rem;
	right: 1rem;
	padding: 0;
}
button.close svg{
	width: 55%;
	height: auto;
}
button.close:hover{
	transform: scale(1.2);
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.img-fluid{
	max-width: 100%;
	height: auto;	
}

.img-fit{
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.shadow{
	-webkit-box-shadow: 0 .277778rem .8rem 0 rgba(0,0,0,.1);
	box-shadow: 0 .277778rem .8rem 0 rgba(0,0,0,.1);
}

.text-uppercase{text-transform: uppercase !important;}
.text-underline{ text-decoration: underline !important; }
.w-100{width: 100%;}
.h-100{height: 100%;}
.position-relative{	position: relative;}
.position-static{	position: static !important;}
.position-absolute{	position: absolute !important;}

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

@media (min-width: 576px) {
	.text-sm-start {text-align: left !important;}
	.text-sm-end {text-align: right !important; }
	.text-sm-center {text-align: center !important;}
}
@media (min-width: 768px) {
	.text-md-start {text-align: left !important;}
	.text-md-end {text-align: right !important;}
	.text-md-center {text-align: center !important;}
}
@media (min-width: 992px) {
	.text-lg-start {text-align: left !important;}
	.text-lg-end {text-align: right !important;}
	.text-lg-center {text-align: center !important;}
}
@media (min-width: 1200px) {
	.text-xl-start {text-align: left !important;}
	.text-xl-end {text-align: right !important;}
	.text-xl-center {text-align: center !important;}
}
@media (min-width: 1400px) {
	.text-xxl-start {text-align: left !important;}
	.text-xxl-end {text-align: right !important;}
	.text-xxl-center {text-align: center !important;}
}

.py,.pt{ padding-top: 5rem; }
.py,.pb{ padding-bottom: 5rem; }
.my,.mt{ margin-top: 5rem; }
.my,.mb{ margin-bottom: 5rem; }

.text-turquesa{color: var(--turquesa) !important;}
.text-rojo{color: var(--rojo) !important;}
.text-ocre{color: var(--ocre) !important;}
.text-amarillo{color: var(--amarillo) !important;}
.text-black{color: var(--black) !important;}
.text-gris{color: var(--gris) !important;}
.text-light{color: var(--light) !important;}
.text-white{color: var(--white) !important;}
.text-border{color: var(--border) !important;}

.bg-turquesa{background-color: var(--turquesa) !important;}
.bg-rojo{background-color: var(--rojo) !important;}
.bg-ocre{background-color: var(--ocre) !important;}
.bg-amarillo{background-color: var(--amarillo) !important;}
.bg-black{background-color: var(--black) !important;}
.bg-gris{background-color: var(--gris) !important;}
.bg-light{background-color: var(--light) !important;}
.bg-white{background-color: var(--white) !important;}
.bg-border{background-color: var(--border) !important;}
.bg-glass{
	background: rgba(255, 255, 255, 0.6); 
	backdrop-filter: blur(10px); 
	-webkit-backdrop-filter: blur(10px); /* For Safari support */
}

.text-truncate{overflow: hidden; text-overflow: ellipsis; white-space: nowrap;}
.stretched-link::after{ position: absolute;top: 0;right: 0;bottom: 0;left: 0;z-index: 1;content: "";}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
	padding-right: 15px;
    padding-left: 15px;
}
.row:not([class*=gx]){
	--bs-gutter-x: 30px;
}

.wp-block-button__link,
.btn{
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	line-height: 1;
	text-decoration: none;
	vertical-align: middle;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	border: 1px solid transparent;
	background-color: transparent;
	padding: 0.35rem 2.5rem;
	font-size: 1rem;
	min-height: 3rem;
	z-index: 1;
	gap: 0 0.35em;
	border-radius: 0;
	color: inherit;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-ms-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.wp-block-button__link:hover,
.btn:hover{
	text-decoration: none;
	color: inherit;
}

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

.btn svg{
	width: 1rem;
	height: 1rem;
}

.wp-block-button.is-style-btn-link .wp-block-button__link,
.btn-link{
	padding: 0;
	min-height: 0;
}
.wp-block-button.is-style-btn-link .wp-block-button__link:hover,
.btn-link:hover{
	color: var(--verde);
	text-decoration: none;
}

.btn-rojo,
.wp-block-button:not(.is-style-outline) .wp-block-button__link{
	background-color: var(--rojo);
	border-color: var(--rojo);
	color: var(--white);
}
.wp-block-button:not(.is-style-outline) .wp-block-button__link:hover,
.btn-rojo:hover{
	background-color: var(--rojo);
	border-color: var(--rojo);
	color: var(--white);
	box-shadow: 0 0 0 2px var(--rojo, var(--rojo));
}

.wp-block-button.is-style-outline .wp-block-button__link,
.btn-outline{
	background-color: transparent;
	border-color: var(--rojo);
	color: var(--rojo);
	border: 1px solid;
	padding: 0.35rem 2.5rem;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.btn-outline:hover{
	background-color: var(--rojo);
	border-color: var(--rojo);
	color: var(--white);
	box-shadow: 0 0 0 2px var(--rojo, var(--rojo));
}

.wp-block-button.is-style-outline .wp-block-button__link.has-white-color,
.btn-outline-white{
	background-color: transparent;
	border-color: var(--white);
	color: var(--white);
}
.wp-block-button.is-style-outline .wp-block-button__link.has-white-color:hover,
.btn-outline-white:hover{
	background-color: var(--white);
	border-color: var(--white);
	color: var(--rojo) !important;
	box-shadow: 0 0 0 2px var(--white, var(--white));
}

.is-style-btn-glass .wp-block-button__link,
.btn-glass{
	color: var(--white);
	background: rgba(255, 255, 255, 0.2); 
	backdrop-filter: blur(7px); 
	-webkit-backdrop-filter: blur(7px); /* For Safari support */
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.is-style-btn-glass .wp-block-button__link:hover,
.btn-glass:hover{
	color: var(--white);
	backdrop-filter: blur(15px); 
	-webkit-backdrop-filter: blur(15px); /* For Safari support */
	border: 1px solid rgba(255, 255, 255, 0.5);
}
.is-style-btn-glass:not(.download) .wp-block-button__link::before,
.btn-glass:not(.download)::before{
	content: '';
	display: block;
	width: 1rem;
	height: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M1 8a.5.5 0 0 1 .5-.5h11.793l-3.147-3.146a.5.5 0 0 1 .708-.708l4 4a.5.5 0 0 1 0 .708l-4 4a.5.5 0 0 1-.708-.708L13.293 8.5H1.5A.5.5 0 0 1 1 8'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	order: 2;
	transition: transform .3s ease;
}
.is-style-btn-glass:not(.download) .wp-block-button__link:hover::before,
.btn-glass:not(.download):hover::before{
	transform: translateX(.3em);
}

.btn-verde.download::before,
.is-style-btn-glass.download .wp-block-button__link::before,
.btn-glass.download::before{
	content: '';
	display: block;
	width: 1rem;
	height: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M.5 9.9a.5.5 0 0 1 .5.5v2.5a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1v-2.5a.5.5 0 0 1 1 0v2.5a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2v-2.5a.5.5 0 0 1 .5-.5'/%3E%3Cpath d='M7.646 11.854a.5.5 0 0 0 .708 0l3-3a.5.5 0 0 0-.708-.708L8.5 10.293V1.5a.5.5 0 0 0-1 0v8.793L5.354 8.146a.5.5 0 1 0-.708.708z'/%3E%3C/svg%3E");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	order: 2;
	transition: transform .3s ease;
}

/*------------------------------ Responsive -----------------------------*/

@media only screen and (max-width: 1399px){
	html{
		font-size: 16px;
	}
	
	h1, .h1{ font-size: 3.5rem; }
}
@media only screen and (max-width: 1199px){
	html{
		font-size: 18px;
	}
}
@media only screen and (max-width: 991px){
	html{
		font-size: 16px;
	}
	
	h1, .h1{ font-size: 3.25rem; }
	h2, .h2{ font-size: 2.5rem; }
	h3, .h3{ font-size: 2.25rem; }
	h4, .h4{ font-size: 1.75rem; }
	h5, .h5{ font-size: 1.5rem; }
	h6, .h6{ font-size: 1.2222rem; }
	
}
@media only screen and (max-width: 767px){
	
	.py,.pt{ padding-top: 4rem; }
	.py,.pb{ padding-bottom: 4rem; }
	.my,.mt{ margin-top: 4rem; }
	.my,.mb{ margin-bottom: 4rem; }
	
}
@media only screen and (max-width: 575px){
	
	h1, .h1{ font-size: 2.75rem; }
	h2, .h2{ font-size: 2rem; }
	h3, .h3{ font-size: 1.75rem; }
	h4, .h4{ font-size: 1.5rem; }
	
	.py,.pt{ padding-top: 3.42rem; }
	.py,.pb{ padding-bottom: 3.42rem; }
	.my,.mt{ margin-top: 3.42rem; }
	.my,.mb{ margin-bottom: 3.42rem; }
	
}