:root {
	/*Color Theme Pallet - including in this root thing*/
	--blanco: #fff;
	--GrisText: #3e3d3f;
	/* Color Theme Swatches in RGBA */
	--SolanoB-1-: rgba(131, 131, 198, 1);
	/* #8383c6 */
	--SolanoB-2: rgba(73, 73, 118, 1);
	/* #494976 */
	--SolanoB-3b: rgb(21, 16, 176);
	/* #494976 */
	--SolanoB-3: rgba(30, 28, 108, 1);
	/* #1e1c6c */
	--SolanoB-4: rgba(15, 13, 74, 1);
	/* #100e4b */
	--LightGrey: rgb(218, 218, 218);
	/* #e2e2e2 */
	--LightWhite-trans: rgba(255, 255, 255, 0.85);
	/* #e2e2e2 */
	--LightGrey-Trans: rgba(209, 205, 205, 0.9);
	/* #e2e2e2 */
	--SolanoB-5: rgb(173, 171, 171);
	/* #7b7b7b */
	--SolanoB-BacktoTop: rgba(30, 28, 108, .5);
	/* #7b7b7b */
	--SolanoB-SubNavBar: rgba(30, 28, 108, .8);
	/* #1e1c6c */
	--SolanoB-3b: #1510b0;

	--SolanoB-6: rgba(15, 13, 74, 0.8);
	/* #0f0d4acc */

	--fuente-parrafo-p-size: 1.5rem;

	--Fuente-A: 'Open Sans', sans-serif;

	--Fuente-B: 'Roboto', sans-serif;
}

/*Custom properties-  options*/

/* ---------------------------------------------------------------------- */
/*	Essentials
/* ---------------------------------------------------------------------- */
html {
	box-sizing: border-box;
	font-size: 62.5%;
}

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

body {
	font-size: 1.4rem;
	/*Con estas proporciones 62.5% y 16px - 1rem equivaldrá a 10pixeles*/
	font-family: 'Roboto', sans-serif;
	background-image: url(../images/bgs/bg-1.png);
	background-repeat: repeat;
	background-size: .5rem;
}

/* ---------------------------------------------------------------------- */
/*	Basic Elements
/* ---------------------------------------------------------------------- */
p {
	font-size: 1.7rem;
	padding: 0;
	line-height: 1.5em;
	text-align: justify;
	font-family: 'Open Sans', sans-serif;
}

h1 {
	font-size: 3.2rem;
}

h2 {
	font-size: 2.5rem;
	color: var(--SolanoB-3b);
	text-align: center;
	font-family: 'Roboto', sans-serif;
	margin: 1.5rem auto 1.5rem auto;
}

h3 {
	font-size: 1.8rem;
}

h3 span {
	text-transform: uppercase;
	color: var(--SolanoB-2);
	text-decoration: none;
	font-size: 2.2rem;
	font-family: 'Roboto', sans-serif;
}

h4 {
	font-size: 1.8rem;
	color: var(--SolanoB-3);
}

h5 {
	font-size: 1rem;
}

h6 {
	font-size: .6rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Open Sans", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	margin-bottom: 1.3rem;
	line-height: 1.25;
	letter-spacing: 0.02em;
}

.titulos-sb {
	color: var(--SolanoB-3);
	text-align: center;
	padding: 1.5rem 0 0 0;
	margin-top: 3.5rem;
	margin-bottom: 3.5rem;
}

.sub-titulos-sb {
	color: var(--SolanoB-2);
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 3.5rem;
}

/* ---------------------------------------------------------------------- */
/*	Header
/* ---------------------------------------------------------------------- */
.wrap-header {
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 21rem;
	background-image: linear-gradient(to top, var(--SolanoB-4) 5%, var(--SolanoB-3)100%);
	border-bottom: #112876;
	border-style: solid;
	border-width: 0rem 0rem 5.0rem 0rem;
}

.header {
	background-image: linear-gradient(to bottom, rgba(237, 237, 237, 1) 0%, rgba(240, 240, 240, 1) 16%, rgba(245, 245, 245, 1) 43%, rgba(251, 251, 251, 1) 78%, var(--LightGrey) 100%);
	border-top: var(--LightGrey) solid 1rem;
}

.container-nav {
	width: 90%;
	margin: 0 auto;
}

.nav-header {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
	height: 16rem;
	padding-top: 2rem;
}

.nav-header__logo {
	display: flex;
	margin: .7rem 0 0 1.5rem;
	width: 28rem;
	padding-top: 3rem;

}

@media (min-width: 769px) {
	.nav-header__logo {
		width: 18rem;
		padding-bottom: 3rem;
	}
}

.nav-header__social {
	margin: 1rem 1rem 0 1rem;
	text-decoration: none;
	color: var(--SolanoB-1-);
}

.fb-x:hover {
	color: var(--SolanoB-2);
}



.boton-asesorias {
	text-decoration: none;
	text-align: center;
	background-color: var(--SolanoB-4);
	padding: 2rem;
	margin-left: 1.5rem;
	max-height: 5.5rem;
	width: 25rem;
	color: var(--blanco);
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 2px;
	word-spacing: 1.5px;
	transition: background-color .6s ease-in;
}

.boton-asesorias:hover {
	background-color: var(--SolanoB-5);
}

@media (max-width: 768px) {
	.nav-header {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.nav-header__logo {
		margin: 2.5rem auto 1rem auto;
		width: 75%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.boton-asesorias {
		width: 100%;
		text-align: center;
		margin-top: 1rem;
	}

	.nav-header__social {
		visibility: hidden;
	}
}

/* ---------------------------------------------------------------------- */
/*	Navegation
/* ---------------------------------------------------------------------- */
.navprincipal {
    background-color: var(--SolanoB-4);
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    position: relative; /* Ensure the nav bar is the context for absolute positioning */
}

.nav__enlace {
    font-family: var(--Fuente-B);
    color: var(--blanco);
    background-color: var(--SolanoB-4);
    padding: 1.5rem 0rem;
    width: 100%;
    height: 5rem;
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-decoration: none;
    font-weight: bold;
}

.nav__enlace a {
    font-family: var(--Fuente-B);
    color: var(--blanco);
    text-decoration: none;
}

.nav__enlace--activo,
.nav__enlace:hover {
    color: var(--SolanoB-4);
    background-color: var(--LightGrey);
}

.servicios {
    position: relative; /* Ensure the submenu is positioned relative to this element */

}

.servicios_navBar {
    display: none;
    position: absolute;
    top: 3.5rem;
    left: 0;
    background-color: var(--SolanoB-SubNavBar);
    z-index: 10; /* Ensure it is above other elements */
    padding-left: 0;
}

.servicios_navBar li {
    padding: 1.8rem 1rem;
    border-bottom: 0.1rem solid var(--LightGrey);
	list-style: none;
}

.servicios_navBar li:hover {
    background-color: var(--SolanoB-3);
	list-style: none;
}

.servicios_navBar a {
    color: var(--blanco);
    text-decoration: none;
    font-size: 1.3rem;
    line-height: 1.5rem;
}

.servicios:hover .servicios_navBar {
    display: block;
}

.servicios__link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
}

@media (min-width: 769px) {
	.servicios__link {
		display: inline-block;
		text-decoration: none;
		color: inherit;
		position: relative;
		left: 38%;
	}
}

/*Mobiel Media Query*/
@media (max-width: 768px) {
    .navprincipal {
        flex-direction: column;
    }

    .nav__enlace {
        border-bottom: .1rem solid var(--blanco);
    }

    .servicios_navBar {
        position: relative;
        margin-top: -2rem;
    }
}

/* ---------------------------------------------------------------------- */
/*	Layout
/* ---------------------------------------------------------------------- */
.container {
	width: 80%;
	margin: 0 auto;
	position: relative;
	background-color: #fff;
}

.containerG {
	box-shadow: 0 0 0 10px rgba(0, 0, 0, .07);
}

.content {
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
	border: var(--LightGrey);
}

/* Comienza enlaces a indicadores financieros */
.sat-news {
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.indic2023 {
		display: flex;
		justify-content: space-around;
		gap: none;
		padding: 2.5rem 0 3.5rem 0;
		margin: 0 auto;
	}
}

.indicadores-financieros {
	background-color: var(--LightGrey);
	color: var(--SolanoB-3);
	width: 100%;
	border: var(--blanco);
	border-style: solid;
	border-width: .1rem;

}

.iconos-contenido {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem 0 1.5rem 0;
	text-decoration: none;
	font-family: 'Lato', sans-serif;
}

.iconos-contenido span {
	font-size: 1.2rem;
	text-decoration: none;
}

.iconos-contenido:hover {
	background-color: var(--SolanoB-4);
	color: var(--blanco);
}

.iconos-contenido:hover svg {
	stroke: #E0E1E3;
}

.content-idc {
	display: flex;
	flex-direction: row;
	justify-content: center;
	padding: 0 1.5rem 0 1.5rem;
	margin-bottom: 2.5rem;
	margin-top: 3.5rem;
	margin-left: auto;
	margin-right: auto;
	width: 90%;
}

/* Comienza sección contenido - profesionales SB */
.presentacion {
	margin: 0 auto;
	text-align: center;
}

.presentacion h1 {
	color: var(--SolanoB-2);
	margin-top: 3rem;
}

.presentacion p {
	color: var(--GrisText);
	font-size: 1.6rem;
	letter-spacing: 0.04em;
	text-align: center;
}

.content-solano {
	display: grid;
	grid-template-columns: 2fr 1fr;
	padding: 0 1.2rem;
	margin-bottom: 1.5rem;
	gap: 1.5rem;
}

.conten-solano__imagen {
	width: 100%;
}

.conten-solano__leyenda {
	width: 100%;
	background-color: var(--LightGrey);
	padding: 0 1rem 0 1rem;
}

.conten-solano__text {
	margin: 0 auto;
	width: 80%;
	font-size: 2.8rem;
	text-align: center;
	font-family: var(--Fuente-B);
	color: var(--SolanoB-5);
	padding-top: 20%;
}

.conten-solano__text span {
	font-family: var(--Fuente-B);
	font-style: italic;
}

.conten-solano__p {
	font-size: 1.8rem;
	font-family: var(--Fuente-A);
	text-align: center;
}

.conten-solano__p span {
	font-style: italic;
	font-weight: bold;
}

@media (max-width: 768px) {
	.profesionales_comprometidos {
		display: flex;
		flex-direction: column;
		grid-template-columns: 1fr;
		column-gap: 2rem;
		margin-top: 2.5rem;
		padding: 2.5rem auto 3.5rem auto;
	}

	.content-solano {
		display: grid;
		grid-template-columns: 1fr;
		padding: 0 1.2rem;
		margin-bottom: 1.5rem;
		gap: 1.5rem;
	}

	.conten-solano__leyenda {
		background-color: var(--LightGrey);
		padding: 0 1rem 0 1rem;
	}

	.conten-solano__text {
		display: block;
		font-size: 1.8rem;
		text-align: center;
		font-family: var(--Fuente-B);
		color: var(--SolanoB-5);
		padding-top: 8%;
		padding-bottom: 8%;
	}
}

/* Comienza Sección Servicios con Barra Lateral "Aside" */
.servicios {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 2rem;
}

@media (max-width: 768px) {
	.servicios {
		display: block;
		width: 100%;
	}

	.servicios__solano {
		padding: 0 1.2rem 1.2rem 1.2rem;
		margin-bottom: 1.5rem;
		background-color: var(--LightGrey);
		width: auto;
	}
}

.servicios__solano {
	padding: 0 1.2rem 1.2rem 1.2rem;
	margin-bottom: 1.5rem;
	background-color: var(--LightGrey);
}

.servicios-solano__imagen {
	width: 100%;
	grid-column: 1 / 2;
	padding-top: 1rem;
}

.servicios__solano--leyenda {
	width: 100%;
	padding: 0 1rem 0 1rem;
	margin-bottom: 2.5rem;
}

.servicios__solano--leyenda h2 {
	margin-bottom: 2.5rem;
}

.servicios--solano__text {
	margin: 0;
	width: 100%;
	font-size: 2.2rem;
	text-align: left;
	font-family: var(--Fuente-B);
	color: var(--SolanoB-5);
	padding-top: 3rem;
	padding-left: 1rem;
}

.servicios__solano--leyenda p {
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: .15rem;
	line-height: 2rem;
	font-family: var(--Fuente-A);
	text-align: left;
	color: var(--GrisText);
	margin-left: 2.5rem;

}

li {
	list-style: none;
	background-image: url(../images/logout.svg);
	background-repeat: no-repeat;
	background-size: 2rem;
	background-position: left center;

}

.articles {
	width: 100%;
	text-align: center;
	margin-bottom: 3.5rem;
}

.articles h4 {
	margin-bottom: 3.5rem;
	color: var(--SolanoB-5);
}

/* ---------------------------------------------------------------------- */
/*	Sidebar
/* ---------------------------------------------------------------------- */

.sidebar {
	width: auto;
	grid-column: 2 / 3;
	padding-right: 1rem;
}

@media (max-width: 768px) {
	.sidebar {
		display: block;
		width: 100%;
	}

	.ocultando-videos {
		display: none;
	}
}

/* ---------------------------------------------------------------------- */
/*	Social Networks
/* ---------------------------------------------------------------------- */
.redes_Sociales {
	display: flex;
	flex-direction: column;
	margin-bottom: 2.5rem;
	margin-top: 3.5rem;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

.sn {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.facebook {
	margin-bottom: 2.5rem;
}

.twitter {
	width: 28rem;
	margin-bottom: 2.5rem;
}

@media (min-width: 768px) {

	.redes_Sociales {
		margin: 0 auto;
		width: 100%;
	}

	.sn {
		width: 85%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		margin: 0 auto;
	}

	.facebook {
		flex: 0 0 calc(50% - 2rem);
		margin-bottom: 0;
	}

	.twitter {
		flex: 0 0 calc(50% - 2rem);
		margin-bottom: 1rem;
	}
}


/* -------------------------------------------------- */
/*	Termina Layout
		/* -------------------------------------------------- */


/* -------------------------------------------------- */
/*	Buttons
	/* -------------------------------------------------- */

/*	input.button {padding: 7px 14px 9px;}*/
.button {
	margin: auto;
	background-color: var(--SolanoB-3);
	color: var(--blanco) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.6rem;
	cursor: pointer;
	width: 25rem;
	height: 4rem;
}

.button:hover {
	background-color: var(--SolanoB-1-);
	color: var(--blanco) !important;
}

.button-servicios {
	margin-top: 0;
	margin-left: 3rem;
	width: 20rem;
}

/* ---------------------------------------------------------------------- */
/*	Contacto Página de Contacto
/* ---------------------------------------------------------------------- */

.map {
	height: auto;
	margin: 0 1.5rem;
	position: relative;
	z-index: 0;
}

.ubicacion-formulario {
	margin: 0 auto;
}

.ubicacion {
	display: flex;
	flex-direction: column;
	font: 1.1rem, "Lato", sans-serif;
	text-align: center;
	color: var(--SolanoB-3);
	letter-spacing: .13rem;
	margin-bottom: 1rem;
}

@media (min-width: 769px) {
	.ubicacion-formulario {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 1.5rem;
	}

	.ubicacion {
		display: flex;
		flex-direction: column;
		font: 1.2rem, "Lato", sans-serif;
		text-align: left;
		color: var(--SolanoB-3);
		letter-spacing: .18rem;
	}
}

.address {
	width: 100%;
	margin: 0 auto;
}

.imagen-ubicacion {
	width: 100%;
}

/* Inicia Formulario de Contacto*/
.contact {
	width: 100%;
	background-color: transparent;
	letter-spacing: .15rem;
	align-items: center;
}

@media (min-width: 768px) {
	.contact {
		width: 100%;
		letter-spacing: .18rem;
	}
}

.contact p,
label,
legend {
	font: 1.2rem, "Lato", sans-serif;
	text-align: left;
}

/* Form style - */

.contact label {
	height: 2.6rem;
	line-height: 1.8rem;
	width: auto;
	font-size: 1.5rem;
}

.contact input,
textarea,
select {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding: .5rem;
	color: #666;
	background: #f5f5f5;
	border: none;
	margin: .5rem 0;
	font: 1.5rem "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
}

.contact input:focus,
textarea:focus,
select:focus {
	border: none;
	background-color: #fff;
	color: #333;
}

.contact input.submit {
	font-size: 1.7rem;
	width: 100%;
	height: 5.0rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	background-color: #1e408f;
	transition: background-color .4s ease-in-out;
}

.contact input.submit:hover {
	font: 3.5.8rem;
	background-color: #08175B;
}

.contact input[type="submit"][disabled] {
	background: #888;
}

.contact fieldset {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 1rem;
	border: none;
}

.contact legend {
	padding: .7rem 1rem;
	font-weight: bold;
	color: #000;
	border: none;
	margin-bottom: 0 !important;
	margin-bottom: 1rem;
}

.contact span.required {
	font-size: 11px;
	color: #ff0000;
}

.verify {
	display: flex;
	flex-direction: row;
	row-gap: 3rem;
	justify-content: space-around;
	text-align: left;
}

/* Select the colour of the * if the field is required. */

.form-messages {
	text-align: center;
	font-family: var(--Fuente-A);
	font-size: 1.2rem;
	font-weight: 400;
	background-color: var(--LightGrey-Trans);
}

/* ---------------------------------------------------------------------- */
/*	Acerca de Solano Barbosa
/* ---------------------------------------------------------------------- */
.contenedor-acerca {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 2rem;
}

@media (max-width: 768px) {
	.contenedor-acerca {
		display: grid;
		grid-template-columns: 1fr;
		column-gap: 2rem;
	}
}

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

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

.right-side {
	text-align: right;
	margin: 0 .8rem;
	display: flex;
	flex-direction: column;
	align-items: end;
}

.acerca-solano__p {
	font-size: 1.8rem;
	font-family: var(--Fuente-A);
	text-align: justify;
}

.separation {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
}

.contenedor-valores {
	display: block;
	width: 40%;
	margin: 0 auto;
	text-align: center;
}

.contenedor-valores h2 {
	font-size: 3rem;
}

.contenedor-valores li p {
	font-size: 2.4rem;
	line-height: 2.8rem;
}

@media (max-width: 768px) {
	.contenedor-valores {
		width: 60%;
		font-size: 1.5rem;
	}

	.contenedor-valores li p {
		font-size: 1.2rem;
		line-height: 1.8rem;
	}

}

/* ---------------------------------------------------------------------- */
/*	Servicios Página
/* ---------------------------------------------------------------------- */

.contenedor-servicios {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 2rem;
}

@media (max-width: 768px) {
	.contenedor-servicios {
		display: grid;
		grid-template-columns: 1fr;
		column-gap: 2rem;
	}
}

/* ---------------------------------------------------------------------- */
/*	Indicadores Financieros - Tarifas ISR & Tipo de Cambio
/* ---------------------------------------------------------------------- */

.titulos-inpc,
.align-center {
	text-align: center;
}

.titulos-inpc h2 {
	font-size: 1.7rem;
}

.titulos-inpc h3 {
	font-size: 1.5rem;
}

.titulos-inpc h4 {
	font-size: 1.1rem;
}

.titulos-inpc p {
	text-align: center;
	color: var(--LightGrey);
}

@media (min-width: 768px) {
	.titulos-inpc h2 {
		font-size: 2.5rem;
	}

	.titulos-inpc h3 {
		font-size: 2.0rem;
	}

	.titulos-inpc h4 {
		font-size: 1.4rem;
	}
}

.tabla-inpc {
	justify-content: center;
	align-items: center;
	height: 22rem;
	width: 100%;
	border: none;
	overflow-x: scroll;
}

.charts {
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: center;
	text-align: center;
	gap: 1rem;
}

@media (min-width: 924px) {
	.charts {
		margin-top: 2.5rem;
		flex-direction: row;
		gap: 1rem;
	}
}

@media (min-width: 768px) {
	.charts {
		margin-top: 1.5rem;
	}
}

.tablas-sb {
	height: 50rem;
	border: none;
}

.graficos-sb {
	height: 31rem;
	border: none;
}

@media (min-width: 768px) {
	.tablas-sb {
		width: 27.4rem;
		margin: 0 auto;
		max-height: 70rem;
	}

	.graficos-sb {
		margin-top: 1.5rem;
		width: 100%;
		margin: 0 auto;
		height: 40rem;
	}
}

@media (min-width: 924px) {
	.tablas-sb {
		flex-basis: calc(28%);
	}

	.graficos-sb {
		margin-top: 1.5rem;
		padding-top: 2.5rem;
		flex-basis: calc(72%);
	}
}

.charts-salarios {

	margin: 0 auto;

	width: 100%;
}

.grafico-salarios {
	margin: 0 auto;
	padding-top: 1.5rem;
	width: 65rem;
	height: 41rem;
	border: none;
}

@media (max-width: 984px) {
	.grafico-salarios {
		width: 100%;
	}
}

.tabla-salarios {
	justify-content: center;
	align-items: center;
	min-height: 112rem;
	width: 100%;
	border: none;
	overflow-x: scroll;
}



/* ---------------------------------------------------------------------- */
/*	Tarifas ISR
/* ---------------------------------------------------------------------- */
.tarifa-section {
	display: flex;
	flex-basis: calc(60%);
	margin: 0 auto;
}

.tabla-tarifa-isr {
	justify-content: center;
	align-items: center;
	height: 31rem;
	width: 51rem;
	border: none;
	overflow-x: scroll;
}

@media (max-width: 768px) {
	.tabla-tarifa-isr {
		width: 100%;
	}
}

/* ---------------------------------------------------------------------- */
/*	Tipo de Cambio
/* ---------------------------------------------------------------------- */

.tipo-de-cambio-section {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
}

.tabla-tipo-de-cambio-today {
	width: 100%;
	height: 100%;
	border: none;
	justify-content: center;

}

.grafico-tipo-de-cambio-today {
	width: 100%;
	height: 41rem;
	border: none;
	justify-content: center;

}

@media (min-width: 768px) {
	.tabla-tipo-de-cambio-today {
		width: 44rem;
	}

	.grafico-tipo-de-cambio-today {
		flex-basis: calc(65%);
		width: 100%;
		height: 40rem;
		justify-content: space-between;
		overflow-x: scroll;
	}
}

.tipo-de-cambio-section2024 {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.tipo-de-cambio-2024-tabla {
	border: none;
	flex-basis: calc(15% - 1rem);
	height: 30rem;
	width: 25rem;
	margin-left: 1rem;
}

.tipo-de-cambio-2024-grafica {
	border: none;
	flex-basis: calc(75% - 1rem);
	width: 45rem;
	height: 40rem;
}

@media (max-width: 768px) {
	.tipo-de-cambio-section2024 {
		width: 100%;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.tipo-de-cambio-2024-tabla {
		width: 25rem;
		height: 20rem;
		margin: 0 auto;
	}

	.tipo-de-cambio-2024-grafica {
		max-width: 40rem;
		width: 100%;
		min-height: 33rem;
	}
}

/* ---------------------------------------------------------------------- */
/*	Footer
/* ---------------------------------------------------------------------- */

.footer {
	position: relative;
	margin: 1.5rem 0 2rem 0;
	padding: 3rem;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	gap: 1.5rem;
	background-color: var(--LightGrey);
}

@media (min-width: 768px) {
	.mobile-footer {
		display: none;
	}
}

.big-footer {
	display: none;
}

.blocks {
	width: 30%;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.block__logo {
	max-width: 70%;
	display: flex;
	align-items: start;
	margin-bottom: 2rem;
	padding-top: 1.4rem;
}

.block__title {
	text-transform: uppercase;
	font-size: 1.6rem;
	font-family: 'Lato', sans serif;
	font-weight: 700;
	color: var(--SolanoB-5);
}

.block__text {
	font-size: 1.2rem;
	text-align: justify;
	line-height: .8rem;
}

.block__text p {
	line-height: 2.1rem;
	font-size: 1.4rem;
}

.block__footer-menu {
	display: flex;
	flex-direction: column;
	line-height: 3rem;
	color: var(--SolanoB-2);
	font-size: 1.6rem;
	padding-top: 2rem;
}

.block__footer-menu a {
	text-decoration: none;
}

.block__footer-menu a:hover {
	color: var(--SolanoB-5);
	text-decoration: underline;
}

.block__footer-enlaces-interes {
	display: flex;
	flex-direction: column;
	line-height: 1.5rem;
	color: var(--SolanoB-2);
	font-size: 1.2rem;
	padding-left: 15%;
	padding-right: 15%;
}

.block__footer-enlaces-interes a {
	margin-bottom: .5rem;
	text-align: center;
	border-bottom: .15rem solid var(--GrisText);
	text-decoration: none;
}

.block__footer-enlaces-interes a:hover {
	color: var(--SolanoB-1-);
}

.block__footer-enlaces-interes span {
	font-size: .8rem;
}

@media (max-width: 767px) {
	.mobile-footer {
		position: relative;
		margin: 0 auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		background-color: var(--LightGrey);
	}

	.big-footer {
		display: none;
	}
}

.block__element--mobile {
	width: auto;
}

.block__logo--mobile {
	width: 100%;
	display: block;
	align-items: center;
}

.block__text--mobile {
	margin-top: 2.2rem;
	;
}

/* -------------------------------------------------- */
/*	Copyright Elements
/* -------------------------------------------------- */

.copyright {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 3.5rem;
	margin: 1.5rem auto 0 auto;
	width: 80%;
	border-top: .15rem solid var(--LightGrey);
	text-align: center;
	letter-spacing: .21rem;
	font-size: 1rem;
	color: var(--GrisText);
}

.copyright__before {
	display: flex;
	justify-content: center;
	position: absolute;
	margin: 0 auto 5rem auto;
	background: url(../images/stars.png) no-repeat 50% 0 #fff;
	width: 135px;
	height: 16px;
	content: '';
}

.copyright a {
	display: inline;
	font-size: 1rem;
	text-decoration: none;
	color: var(--SolanoB-2);
	font-weight: 700;
	letter-spacing: .21rem;
}

/* ---------------------------------------- */
/*	OTHER ELEMENTS /* ////////////////////////////////////
Utilities & Other Traits
///////////////////////////////////// */
/* ---------------------------------------- */

/* -------------------------------------------------- */
/*	Divider
	/* -------------------------------------------------- */

.divider {
	margin: 0 auto 3rem auto;
	width: 70%;
	height: 0.2rem;
	background-color: var(--LightGrey);
}

.divider-transparent {
	margin: 2rem auto 2rem auto;
	height: 0.2rem;
	background-color: transparent !important;
}

.divider-transparent-sm {
	margin: 1rem auto 1rem auto;
	height: 0.5rem;
	background-color: transparent !important;
}

.divider-sm {
	margin: 0 auto 3rem auto;
	width: 40%;
	height: 0.15rem;
	border-top: double var(--LightGrey);
}

/* Toggle */

/* Set the style for the content that will be displayed */

.toggle-container {
	margin-bottom: 1rem;
	height: 100%;
}

.toggle-btn {
	color: #fff;
	background-color: var(--SolanoB-3);
	border: none;
	cursor: pointer;
	width: 100%;
	text-align: center;
}

.toggle-btn:hover {
	background-color: var(--SolanoB-3b);
}

.toggle-btn p {
	color: var(--blanco);
	letter-spacing: .15rem;
	font-size: 1.1rem;
}

.custom-content {
	display: none;
	padding-left: .2rem;
	padding-right: .2rem;
	padding-top: 1rem;
	padding-bottom: 1rem;
	border: .2rem solid var(--SolanoB-1-);
	margin: 0 auto;
}

.active-btn {
	background-color: #e74c3c;
	/* Change this color for the active button */
}

/* GO TO TOP BUTTON */

.go-to-top-btn {
	position: fixed;
	bottom: 2.5rem;
	right: 2.5rem;
	height: 5rem;
	width: 5rem;
	background-color: rgba(73, 73, 118, .5);
	color: #fff;
	border: none;
	padding: .5rem;
	cursor: pointer;
	display: none;
	border-radius: 10rem;
	font-size: 2.5rem;
}

.go-to-top-btn:hover {
	-webkit-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(0, 0, 0, .2);
	box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(0, 0, 0, .2);
	background-color: var(--SolanoB-4);
}

.display-center {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: auto;
}

/* ////////////////////////////////////
 PopUP Window and button //////////////////////////////////// */

/* Popup container - can be anything you want */
.popup {
	position: relative;
	display: inline-block;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@media (max-width: 700px) {
	.popup {
		display: none;
	}
}

/* The actual popup */
.popup .popuptext {
	visibility: hidden;
	width: 28.5rem;
	background-color: var(--LightGrey-Trans);
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 1rem 1rem;
	position: absolute;
	z-index: 1;
	top: 5.5rem;
	left: 0rem;
	margin: 0 auto;
}

/* Popup arrow */
.popup .popuptext::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent var(--LightGrey-Trans) transparent;
}

@media (min-width: 360px) {
	.popup .popuptext {
		visibility: hidden;
		width: 28rem;
		background-color: var(--SolanoB-6);
		color: #fff;
		text-align: center;
		border-radius: 6px;
		padding: 1rem 1rem;
		position: absolute;
		z-index: 1;
		top: 5.5rem;
		left: 0;
		margin: 0 auto;
	}

	/* Popup arrow */
	.popup .popuptext::after {
		content: "";
		position: absolute;
		bottom: 100%;
		left: 50%;
		margin-left: -5px;
		border-width: 5px;
		border-style: solid;
		border-color: transparent transparent var(--LightGrey-Trans) transparent;
	}
}

@media (min-width: 768px) {
	.popup .popuptext {
		width: 30rem;
		left: 23%;
	}
}

@media (min-width: 769px) {

	.popup .popuptext {
		visibility: hidden;
		width: 30rem;
		text-align: center;
		border-radius: 6px;
		padding: 1rem 1rem;
		position: absolute;
		z-index: 10;
		top: 5rem;
		left: -2.5rem;
		margin-left: 0;
	}

	/* Popup arrow */
	.popup .popuptext::after {
		content: "";
		position: absolute;
		bottom: 100%;
		left: 50%;
		margin-left: -5px;
		border-width: 5px;
		border-style: solid;
		border-color: transparent transparent var(--LightGrey-Trans) transparent;
	}
}

/* Toggle this class - hide and show the popup */
.popup .show {
	visibility: visible;
	-webkit-animation: fadeIn 1s;
	animation: fadeIn 1s;
}

/* Add animation (fade in the popup) */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.asesorias {
	z-index: 1;
	background-color: var(--LightWhite-trans);
	border-radius: 6px;
}

/* /////////////  Inicia Formulario de Solicitar Asesoría ///////////// */


@media (min-width: 768px) {
	.contact-asesoria {
		width: 100%;
		background-color: transparent;
		letter-spacing: .18rem;
		align-items: center;
	}
}

.contact-asesoria p,
label,
legend {
	font: 1.1rem, "Lato", sans-serif;
	text-align: left;
	color: var(--GrisText);
}

.contact-asesoria h4 {
	font: 1.1rem, "Lato", sans-serif;
	text-align: center;
	letter-spacing: .1rem;
	color: var(--LightGrey);
}

/* Form style - */

.contact-asesoria label {
	height: 1.8rem;
	line-height: 1.1rem;
	width: auto;
	font-size: 1.1rem;
}

.contact-asesoria input,
select {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	padding: .5rem;
	color: #666;
	background: #f5f5f5;
	border: none;
	margin: .5rem 0;
	font: 1.2rem "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
}

.contact-asesoria input:focus,
textarea:focus,
select:focus {
	border: none;
	background-color: #fff;
	color: #333;
}

.contact-asesoria input.submit {
	font-size: 1.2rem;
	width: 100%;
	height: 3.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	background-color: #1e408f;
	transition: background-color .3s ease-in-out;
}

.contact-asesoria input.submit:hover {
	font: 3.2rem;
	background-color: #08175B;
}

.contact-asesoria input[type="submit"][disabled] {
	background: #888;
}

.contact-asesoria fieldset {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 1rem;
	border: none;
}

.contact-asesoria legend {
	padding: .7rem 1rem;
	font-weight: bold;
	color: var(--SolanoB-2);
	border: none;
	margin-bottom: 0 !important;
	margin-bottom: 1rem;
}

.contact-asesoria span.required {
	font-size: 11px;
	color: #ff0000;
}

.verify {
	display: flex;
	flex-direction: row;
	row-gap: 3rem;
	justify-content: space-around;
	text-align: left;
}

/* Select the colour of the * if the field is required. */


.loader {
	padding: 0 1rem;
}


#successMessage {
	color: green;
}