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, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
* { 	
	color: #000;
	font-size: 1rem; 
	font-weight: 500; 
	font-style: normal;
	line-height: 1.5rem;
	letter-spacing: -0.002rem; 	
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
	font-family: "Montserrat", sans-serif;
}
/*ROOT*/
:root {
	--color-negro: #000000;
	--color-principal: #CC242D;
	--radius-00: 1.5rem;
	--radius-01: 2.5rem;
	--radius-02: 4.5rem;
	--radius-03: 10rem;
	--radius-04: 12.5rem;
	--radius-05: 17.5rem;
	--section-padding: 4rem;
}
/*FLEX*/
.flex {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.flex-center {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex-column, .flex-columnStart {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	display: -webkit-box; 
	display: -ms-flexbox; 
	display: flex;
}
.flex-columnStart {
	-webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; 
}
.flex-justSpace {
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; 
}
.same-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flex-centerWrap, .lista--footer, .lista--redes {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.flex-columnCenter {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center; 
	display: -webkit-box; 
	display: -ms-flexbox; 
	display: flex;
}
.flex-wrap {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
/*COMUN*/
.responsive-img {
	display: block;
	max-width: 100%;
	max-height: 100%;
}
/*IDIOMAS*/
.nav__superior {
	gap: 0.75rem;
}
.idioma {
	gap: 12px;
	margin: 0;
  	padding: 0;  	
	list-style-type: none;
}
.idioma__button {
	text-transform: uppercase;
	position: relative;
	line-height: inherit;
	padding: 0;
  	border: none;
  	cursor: pointer;
  	color: #FFFFFF;
  	font-size: 0.875rem;  	
  	background-color: transparent;
	text-decoration: none;
}
.header--active .idioma__button {
	color: #000000;
}
.idioma__button::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -4px;
	left: 0;
	pointer-events: none;
	-webkit-transform-origin: right;
	-ms-transform-origin: right;
	transform-origin: right;
	opacity: 0;
  	-webkit-transform: scaleX(1);
  	-ms-transform: scaleX(1);
  	transform: scaleX(1);
	-webkit-transition: -webkit-transform 300ms ease-in-out;
	transition: -webkit-transform 300ms ease-in-out;
	-o-transition: transform 300ms ease-in-out;
	transition: transform 300ms ease-in-out;
	transition: transform 300ms ease-in-out,-webkit-transform 300ms ease-in-out;
}
.idioma__button--active::before, .idioma__button:hover::before {
	opacity: 1;
  	-webkit-transform: scaleX(1);
  	-ms-transform: scaleX(1);
  	transform: scaleX(1);
}
.separador {
	color: #FFFFFF;
}
/*HEADER*/
header {
	z-index: 9;
	width: 100%;
	position: fixed;
}
.header--active {
	background-color: #FFFFFF;
	-webkit-box-shadow: 0 1px 4px 0 rgb(0 0 0 / 0.1);
  	box-shadow: 0 1px 4px 0 rgb(0 0 0 / 0.1);
}
nav {
	padding: 1rem 0rem !important; 
	border-bottom: 1px solid rgba(255, 255, 255, 0.30);
}
.nav__contenido {
	gap: .5rem;
	-webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
header nav ul.menu {
	gap: 0 1rem;
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
header nav ul.menu li {
	padding: 0;
}
.container--header {
	gap: 5rem;
}
.nav__contenido {
	display: none;
}
.nav__items {
	gap: 1.5rem;
}
.nav__btns {
	-ms-flex-negative: 0;
    flex-shrink: 0;
}
.menu-mobile .idioma__button::before {
	background-color: #FFFFFF !important;
}
@media only screen and (min-width: 1024px) {
	.nav__contenido {
		display: inherit;
	}
}
/*BTN*/
.btn {
	color: #FFFFFF;
	border: none;
	min-height: 3rem;
	padding: 0rem 1.5rem; 
	font-weight: 700;
	line-height: 1.5rem;
	cursor: pointer;
	text-transform: uppercase;
	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;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}
.btn--small {
	font-size: 0.75rem;
	line-height: 1.25rem;
	min-height: 2rem;
	min-width: inherit;
	padding: 0rem 1rem;
	color: #FFFFFF !important;
}
.btn-donacion {
	text-transform: uppercase;
}
/*PRINCIPAL*/
.principal {
	overflow: hidden;
	border-radius: 0 0 var(--radius-03) 0;
}
@media only screen and (min-width: 1024px) {
	.principal {
		border-radius: 0 0 var(--radius-05) 0;
	}
}
/*MAIN*/
.info-section .encabezados {
	font-weight: 700;
	font-style: normal;
	font-size: 2.1875rem;
	line-height: 2.625rem;
	margin-bottom: 0.5rem;
	letter-spacing: -0.00544rem;
}
.faq-container {
	margin-bottom: 0;
	border: none !important;
}
#accordion-group button {
	cursor: pointer;
	padding: 1rem 0;
	border: none !important;
	border-top: 1px solid rgba(0, 0, 0, 0.10) !important;
}
.accordion-title, .faq-active .accordion-trigger span {
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.75rem;
	letter-spacing: -0.00188rem;
}
.accordion-icon {
	right: 0;
}
.collapsible-body, .collapsible-body p {
	padding: 0;
	font-weight: 400;
}
#K06 {
	padding-top: 0;
}
/*CALCULADORA*/
.calculadora {
	padding-top: var(--section-padding);
	margin-bottom: var(--section-padding);
	padding-bottom: var(--section-padding);
}
.calculadora__contenido {
	gap: 2rem;
	align-items: center;
}
.calculadora__container {
	gap: 2rem;
	width: 100%;
	padding: 1rem;
	background-color: rgba(255, 255, 255, 0.15);
}
.calculadora__info {
	gap: 1.5rem;
	width: 100%;
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.calculadora__container:last-child {
	border-radius: 0 0 var(--radius-02) 0;	
}
.calculadora__small {
	color: #FFFFFF;
	display: block;	
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.25rem;
	word-break: break-word;
}
.calculadora__titulo {
	color: #FFFFFF;
	font-weight: 700;
	font-size: 1.25rem;	
	line-height: 1.75rem;
	letter-spacing: -0.0025rem; 
}
.calculadora__cifra {
	color: #FFFFFF;
	font-weight: 400;
	font-size: 2.1875rem;
	line-height: 2.625rem;
	margin-bottom: 0.5rem;
	letter-spacing: -0.01094rem; 
}
.calculadora__cifra--weight {
	font-weight: 700;
}
.calculadora__top--first {
	width: 40%;
	padding-right: 1rem;
}
.calculadora__top--last {
	gap: 2rem;
	width: 60%;
	padding-left: 1rem;
	border-left: 0.0625rem solid rgba(255,255,255,0.5);
}
.calculadora__tabla--info .calculadora__top {
	padding: 0.5rem 1rem; 
	background-color: #191A1E;
}
.calculadora__tabla--info .calculadora__top:last-child {	
	background-color: #FFFFFF;
}
.calculadora__tabla--info .calculadora__top:last-child .calculadora__small {
	color: #191A1E;
}
.calculadora__items--last {
	padding-bottom: 1.5rem;
}
.col--calculadora {
	text-align: center;
}
.calculadora__sub {
	color: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.25rem;
	text-transform: uppercase;
}
.encabezados--calculadora, .encabezados--calculadora h2 {
	font-size: 1.75rem;
	line-height: 2.25rem;
	letter-spacing: -0.00438rem;
	margin: 1rem 0;
	color: #FFFFFF;
}
@media only screen and (max-width: 767px) {	
	.calculadora__container:last-child {
		padding: 1rem 1rem 2rem 1rem;
	}
}
@media only screen and (min-width: 768px) {
	.calculadora__container {
		width: 37rem;
		padding: 2rem;
	}
	.calculadora__container:last-child {
		border-radius: 0 0 var(--radius-03) 0;
	}
	.calculadora__cifra {
		font-size: 3rem;
		line-height: 3.5rem;
		letter-spacing: -0.015rem; 
	}
	.calculadora__top--first {
		width: 9.625rem;
		padding-right: 1.5rem;
	}
	.calculadora__top--last {
		flex-wrap: nowrap;	
		padding-left: 1.5rem;	
		width: calc(100% - 9.625rem);
	}	
	.calculadora__top--last .calculadora__items:first-child {
		flex: 1.5;
	}
	.calculadora__top--last .calculadora__items:last-child {
		flex: 2;
	}	
	.calculadora__container:last-child .calculadora__small {
		max-width: 12.5rem;
	}
}	
@media only screen and (min-width: 1024px) {
	.calculadora__info {
		flex-wrap: nowrap;
	}
	.calculadora__container:first-child {
		width: 55%;
	}
	.calculadora__container:last-child {
		width: 45%;
	}
}
@media only screen and (min-width: 1280px) {
	.calculadora__container:first-child {
		width: 37.3125rem;
	}
	.calculadora__container:last-child {
		width: 32.0625rem;
	}
}
/*FOOTER*/
footer {
	background-color: inherit;
}
.footer__down {
	gap: 3rem; 
	padding: 4rem 0; 
	border-radius: 0 var(--radius-02) 0 0;	
	background-color: var(--color-negro);
}
.footer__logo {
	max-width: 13.8rem;
	margin: 0 auto 1.5rem auto; 
}
.col--footer {
	text-align: center;
	margin-top: 1.5rem;
}
.footer__titulos {
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.25rem;
	color: #FFFFFF;
	margin-bottom: 1rem;
	text-transform: uppercase;
}
.footer__li {
	margin-top: 0.25rem;
}
.footer__divider {
	width: 100%;
	height: 0.0625rem; 
	background-color: rgba(255, 255, 255, 0.2);
}
.lista--footer {
	gap: 1rem;
	font-size: 0.875rem; 
	font-weight: 400;
	line-height: 1.25rem;
}
.lista--redes {
	gap: 1.5rem;
	margin-top: 0.5rem;
}
.footer__descripcion p {
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 400;
	letter-spacing: -0.00188rem;
}
.footer__img {
    margin: 1.5rem auto 0 auto;
}
.t-white {
	color: #FFFFFF;
	text-decoration: none;
}
@media only screen and (max-width: 600px) {
	.li {
		width: 100%;
		text-align: center;
	}
}
@media only screen and (min-width: 768px) {
	.footer__down {
		border-radius: 0 var(--radius-03) 0 0;	
	}
	.col--footer {
		text-align: left;
	}
	.lista--redes {
		-webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
	}
	.footer__descripcion p {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}
	.row .col.m4 {
    	width: 33.3333333333%;
  	}
}
@media only screen and (min-width: 992px) {
	.footer__logo {
		margin: 0;
	}
	.col--footer {
		margin-top: 0;
	}	
	.row .col.l3 {
    	width: 25%;
  	}
  	.row .col.offset-l3 {
		margin-left: 25%;
	}
}
@media only screen and (min-width: 1280px) {
  	.row .col.xl3 {
    	width: 25%;
  	}
}
@media only screen and (min-width: 1440px) {
  	.row .col.lg2 {
    	width: 16.6666666667%;
  	}
  	.row .col.offset-lg1 {
    	margin-left:8.3333333333%
  	}
}
.no-bordes {
	border-radius: 0;
}