:root {
	/* Colores */
	--blue: #0890ff;
	--blue-code: 8, 144, 255;
	--blue-dark: #002449;
	--blue-dark-code: 0, 36, 73;
	--blue-dark1: #081131;
	--blue-light: #edf3f9;
	--blue-light1: #e1ebf4;
	--blue-light2: #c7d6e2;
	--blue-light3: #d5e3ef;
	--blue-light4: #abc7dd;
	--blue-light5: #93aec1;
	--blue-light6: #d3e0ea;
	--blue-light7: #cfd9e2;
	--blue-light8: #aebfcc;
	--blue-gray: #3c5668;
	--blue-gray1: #e8e9ed;
	--purple: #353881;
	--purple-light: #666684;
	--purple-light1: #9e95c3;
	--gray: #dfe2e5;
	--gray1: #eaebef;
	--orange: #fbc231;
	--orange-code: 251, 194, 49;
	--orange1: #ff9f1d;
	--orange1-code: 255, 159, 29;
	--orange2: #fdc84a;
	--error: #f44336;
	--error-code: 244, 67, 54;

	/* Fuentes */
	--font-primary: 'Manrope', sans-serif;
	--font-secondary: 'Poppins', sans-serif;
	--font-third: 'Nunito', sans-serif;

	/* Tamaños */
	--64: 4rem;
	--60: 3.75rem;
	--58: 3.625rem;
	--52: 3.25rem;
	--50: 3.125rem;
	--48: 3rem;
	--46: 2.875rem;
	--45: 2.8125rem;
	--44: 2.75rem;
	--42: 2.625rem;
	--40: 2.5rem;
	--38: 2.375rem;
	--37: 2.3125rem;
	--36: 2.25rem;
	--34: 2.125rem;
	--35: 2.1875rem;
	--33: 2.0625rem;
	--32: 2rem;
	--30: 1.875rem;
	--29: 1.8125rem;
	--28: 1.75rem;
	--27: 1.6875rem;
	--26: 1.625rem;
	--25: 1.5625rem;
	--24: 1.5rem;
	--23: 1.4375rem;
	--22: 1.375rem;
	--20: 1.25rem;
	--19: 1.1875rem;
	--18: 1.125rem;
	--17: 1.0625rem;
	--16: 1rem;
	--15: 0.9375rem;
	--14: 0.875rem;
	--13: 0.8125rem;
	--12: 0.75rem;
	--11: 0.6875rem;
	--10: 0.625rem;

	/* Transiciones */
	--transition: 0.3s ease-in-out;
	--transition-slow: 0.5s ease-in-out;

	/* Animation */
	--circle-center-center-out: circle(0%);
	--circle-center-center-in: circle(125%);
	--circle-hesitate: circle(40%);
	--circle-top-left-out: circle(0% at top left);
	--circle-top-right-out: circle(0% at top right);
	--circle-bottom-right-out: circle(0% at bottom right);
	--circle-bottom-left-out: circle(0% at bottom left);
	--circle-top-left-in: circle(150% at top left);
	--circle-top-right-in: circle(150% at top right);
	--circle-bottom-right-in: circle(150% at bottom right);
	--circle-bottom-left-in: circle(150% at bottom left);
}

/* Estilos generales */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

html,
body {
	font-family: var(--font-primary);
	line-height: 1.5;
	color: var(--blue-dark);
	text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
	font-weight: 700;
	color: var(--blue-dark);
	text-wrap: balance;
}

a {
	font-family: var(--font-primary);
	text-decoration: none;
	color: var(--blue-dark);
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

.fi {
	display: flex;
	align-items: center;
}

.container_ {
	max-width: 1352px;
	margin: 0 auto;
	padding: 0 16px;
}

.titulo_principal {
	font-size: var(--26);
	font-weight: 800;
	line-height: 1;
	margin: 0;
}

.titulo_principal1 {
	font-size: var(--30);
	font-weight: 800;
	line-height: 1;
	margin: 0;
	color: var(--blue);
}

.subtitulo {
	font-size: var(--19);
	font-weight: 400;
	margin: 0;
	letter-spacing: -0.5px;
}

.hr {
	width: 100%;
	height: 1px;
	opacity: 1 !important;
	border-color: var(--blue-light1);
}

.overlay {
	position: fixed;
	top: -10px;
	left: 0;
	right: 0;
	z-index: 99;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.5);
	transition: opacity var(--transition);
}

.container__blue {
	position: relative;
	z-index: 1;
	border-radius: 25px;
	padding: 25px 12px;
	background-color: var(--blue-light);
}

.container__blue-small {
	padding: 25px 12px;
}

.container__blue-noPadding {
	padding: 0 !important;
}

.shadow-gray {
	position: relative;
}

.shadow-gray::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	opacity: 0.3;
	background: linear-gradient(180deg, #fff 0%, #e8e7eb 100%);
}

.ptb_ftr {
	padding-bottom: 40px;
}

.disabled {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	opacity: 0.5;
}

.texto-alt-2,
.texto-alt {
	font-size: var(--16);
	line-height: 1.2;
	font-weight: 500;
	color: var(--blue-light5);
	overflow-wrap: anywhere;
}

.texto-alt-2 {
	font-size: var(--14);
	font-weight: 400;
}
.bg-error,
.bg-alt {
	border-radius: 15px;
	padding: 24px 12px;
}

.bg-alt {
	background-color: rgba(var(--blue-code), 0.1);
}

.bg-error {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	color: var(--error);
	background-color: rgba(var(--error-code), 0.05);
}

/* Scroll */
.scroll-element {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 100dvh;
}

.scroll-element-initial {
	display: block;
	min-height: auto;
}

.scroll-null-small {
	position: relative;
	overflow: hidden !important;
	height: 100dvh;
}

.spin {
	-webkit-animation: 3s linear 0s infinite normal none running spin;
	animation: 3s linear 0s infinite normal none running spin;
}

/* Estilos de la barra de navegación */
.menu_ {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 16px;
	padding-top: 16px;
	padding-bottom: 16px;
	min-height: 95px;
}

.menu__logo {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 11;
	width: 100%;
	max-width: 250px;
	order: 0;
}

.menu__logo a {
	display: block;
	width: 100%;
	max-width: 250px;
	text-align: center;
}

.menu__logo img {
	width: auto;
	max-width: 253px;
}

.menu__content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}

.menu__content .menu__burger.btn__primary {
	border: none;
	order: 2;
	background-color: var(--blue);
}

.menu__content .btn__small.btn__primary {
	order: 0;
}

.menu__content .btn__primary {
	order: 1;
}

.menu__nav {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 100;
	width: 100%;
	max-width: 300px;
	pointer-events: none;
}

.menu__nav .nav {
	position: relative;
	z-index: 100;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 20px 20px 12px;
	height: 100%;
	width: 100%;
	flex-wrap: nowrap;
	opacity: 0;
	overflow-x: auto;
	overflow-y: visible;
	transition: opacity 0.4s ease-in-out;
}

.menu__nav .nav li:not(:last-child) {
	border-top: 1px solid var(--blue-light1);
}

.menu__nav::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	opacity: 0.5;
	background: #fff;
	-webkit-animation-name: circle-out-hesitate;
	animation-name: circle-out-hesitate;
	-webkit-animation-delay: 0;
	animation-delay: 0;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-timing-function: cubic-bezier(0.25, 1, 0.3, 1);
	animation-timing-function: cubic-bezier(0.25, 1, 0.3, 1);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	will-change: clip-path;
	transition: all 0.8s;
}

.menu__nav .nav-item {
	position: relative;
}

.open-menu .menu__nav::before {
	-webkit-animation-name: circle-in-hesitate;
	animation-name: circle-in-hesitate;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	z-index: 10;
	opacity: 1;
}

.open-menu .menu__nav .nav {
	opacity: 1;
}

.menu__close.btn__primary {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 101;
	padding: 6px;
	line-height: 1;
	border: none;
	border-radius: 50px;
	font-size: var(--24);
	cursor: pointer;
	color: var(--blue-light4);
	background-color: rgba(0, 0, 0, 0);
	transition: background-color var(--transition);
}

.menu__close.btn__primary::after,
.menu__close.btn__primary::before {
	display: none;
}

body.open-menu {
	overflow: hidden;
}

.open-menu .menu__nav {
	/* right: 0; */
	pointer-events: initial;
}

body.open-menu .overlay1 {
	bottom: 0;
	opacity: 1;
}

.menu__nav .nav-link {
	position: relative;
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 20px;
	line-height: 1;
	color: var(--purple);
	font-size: var(--15);
	font-weight: 300;
	font-family: var(--font-secondary);
	transition: color var(--transition);
}

.menu__nav .dropdown-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	border-radius: 10px;
	color: var(--purple);
	transition: background-color var(--transition), color var(--transition);
}

.menu__nav .dropdown-item.activo,
.menu__nav .dropdown-item:active,
.menu__nav .dropdown-item:focus,
.menu__nav .dropdown-item:hover {
	color: var(--purple);
	background-color: var(--blue-light);
}

.menu__nav .nav-link i {
	margin-left: 4px;
	margin-right: 8px;
	color: var(--blue-dark);
}

.menu__nav .nav-link::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 12px;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--purple);
	transform: translateY(-50%) scale(0);
	transition: transform var(--transition);
}

.menu__nav .nav-item:hover a::before {
	transform: translateY(-50%) scale(1);
}

.menu__nav .sub-arrow {
	display: none;
}

.menu__nav .dropdown-menu {
	position: initial;
	padding: 16px 12px;
	width: 100%;
	border: none;
	border-radius: 0;
	transform: none;
	background-color: #fff;
}

.menu__nav .dropdown-toggle::after {
	content: '\f153';
	display: inline-flex;
	vertical-align: initial;
	margin: 0;
	font-family: 'uicons-regular-rounded';
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	border: none;
}

.menu__nav .nav-link.activo {
	font-weight: 600;
}

.menu__titulo {
	padding-left: 20px;
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.menu__titulo p {
	font-weight: 700;
	margin: 0;
}

.icono {
	width: 15px;
	height: 15px;
	display: flex;
	border-radius: 50%;
	background: var(--blue);
	position: relative;
}

.icono::before {
	content: '';
	width: 100%;
	height: 100%;
	background: var(--blue);
	opacity: 0.3;
	border-radius: 50%;
	right: -8px;
	position: absolute;
}

/* Banner */
.banner_ {
	position: relative;
	max-width: 1472px;
	/* overflow: hidden; */
	padding: 0;
}

.banner__container {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 214px;
	border-radius: 30px;
	overflow: initial;
}

.banner__bg {
	display: block;
	width: 100%;
}

.banner__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.banner__container-float .banner__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.banner__container-logo img {
	width: 100%;
	max-width: 300px;
	height: auto;
	margin: 0 auto 16px;
	object-fit: contain;
}

.banner__container-logo .banner__content .titulo {
	position: absolute;
	font-size: 0;
	user-select: none;
	pointer-events: none;
}

.banner__single {
	flex-direction: column;
	padding: 24px 16px;
	gap: 40px;
}

.banner_element {
	margin-bottom: 40px;
}

.banner__filter {
	position: absolute;
	inset: 0;
	opacity: 0.2;
	overflow: hidden;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: left;
}

.banner__filter::after {
	content: '';
	position: absolute;
	top: 70%;
	right: 0;
	height: 408px;
	width: 360px;
	z-index: -1;
	background-repeat: no-repeat;
	transform: translateY(-50%);
	background-image: url('../images/BolivarianaCoop-marcabanner.png');
	background-size: contain;
}

.banner__single::after,
.banner__single:before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
}

.banner__single::after {
	opacity: 0.1;
	background-color: #0d2450;
}

.banner__single::before {
	z-index: -1;
	background: url('../images/filtro-azul.jpg') no-repeat center / cover;
}

.banner__content {
	position: relative;
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 100%;
}

.banner__content.left_ {
	align-items: flex-start;
	text-align: left;
	padding: 24px 12px;
}

.banner__content > .titulo {
	margin-bottom: 24px;
	font-weight: 800;
	font-size: var(--24);
	line-height: var(--28);
	color: #fff;
}

.banner__content > .subtitulo {
	margin-bottom: 0;
	font-weight: 800;
	font-size: var(--30);
	line-height: var(--30);
	font-style: normal;
	font-family: var(--font-third);
	letter-spacing: initial;
	color: #fff;
}

.banner__content > p {
	margin-bottom: 0;
	color: #fff;
	font-family: var(--font-secondary);
}

.banner__img {
	width: 100%;
	text-align: center;
	z-index: 10;
}

.banner__img img {
	border-radius: 30px;
	width: auto;
	max-height: 280px;
	max-width: 350px;
}

.banner__border {
	content: '';
	position: absolute;
	top: -1px;
	left: -1px;
	z-index: 10;
	display: none;
	width: 100%;
	max-width: 400px;
	height: 39px;
	background-image: url('../images/curva.svg');
	background-position: left;
	background-repeat: no-repeat;
}

.banner__border::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -39px;
	z-index: -1;
	width: 120px;
	height: 120px;
	border: 40px solid #fff;
	border-radius: 100px 0 0 0;
	border-bottom: none;
	border-right: none;
	background-color: transparent;
}

.banner_ .swiper img {
	border-radius: 0;
	width: 100%;
}

/* Swiper */
.banner_ .swiper_nav .swiper-next,
.banner_ .swiper_nav .swiper-prev {
	display: none;
	transition: transform var(--transition);
}

.banner_:hover .swiper_nav .swiper-next,
.banner_:hover .swiper_nav .swiper-prev {
	transform: scale(1);
}

.banner_ .swiper_nav .swiper-next {
	right: -16px;
}

.banner_ .swiper_nav .swiper-prev {
	left: -16px;
}

.banner_ .swiper-pag {
	bottom: 16px;
}

/*  */
.btn__primary {
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	border-radius: 40px;
	line-height: 1;
	padding: 17px 24px;
	color: #fff;
	font-size: var(--15);
	font-weight: 600;
	overflow: hidden;
	border: none;
	background-size: 1px 100px;
	background-color: var(--purple);
}

.btn__primary::after,
.btn__primary::before {
	content: '';
	position: absolute;
	width: 100%;
	aspect-ratio: 1;
	background: var(--blue-dark);
	opacity: 1;
	border-radius: 50%;
	transition: transform var(--transition-slow), background-color var(--transition-slow);
}

.btn__primary::before {
	left: 0;
	transform: translateX(-110%);
}

.btn__primary::after {
	right: 0;
	transform: translateX(110%);
}

.btn__primary:hover:before {
	transform: translateX(0);
}

.btn__primary:hover:after {
	transform: translateX(0);
}

.btn__primary:active:before,
.btn__primary:active:after {
	background: var(--blue-dark);
}

.btn__primary i,
.btn__primary p {
	position: relative;
	z-index: 1;
}

.btn__primary-blue {
	text-align: center;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 20px 34px;
	font-weight: 800;
	line-height: 1;
	background-color: var(--blue);
}

.btn__primary-blue p,
.btn__primary-blue h3 {
	position: relative;
	color: #fff;
	font-size: var(--16);
	z-index: 1;
}

.boton-link-2,
.boton-link2 {
	position: relative;
	z-index: 2;
	display: flex !important;
	align-items: center;
	gap: 16px;
	min-height: 80px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 12px 24px;
	border-radius: 12px;
	font-size: var(--20) !important;
	line-height: var(--25) !important;
	font-weight: 600 !important;
	color: #fff !important;
	background: linear-gradient(150deg, var(--orange2) 0%, var(--orange1) 100%);
	transition: background var(--transition), color var(--transition);
}

.btn__segundary p {
	line-height: var(--25);
}

.btn__segundary > * {
	color: #fff;
}

.boton-modal,
.boton-simulador,
.boton-link {
	position: relative;
	z-index: 2;
	display: inline-flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	gap: 16px !important;
	padding: 24px !important;
	width: 100%;
	max-width: 300px;
	margin-bottom: 16px !important;
	border-radius: 14px;
	font-weight: 700 !important;
	font-size: var(--18) !important;
	border: 2px solid rgb(0, 0, 0, 0) !important;
	color: #fff !important;
	background-color: var(--blue) !important;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition) !important;
}

.boton-modal::after,
.boton-link-2::after,
.boton-link2::after,
.boton-link::after {
	content: '';
	display: inline-block;
	height: 100%;
	width: 100%;
	border-radius: 14px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 1;
	pointer-events: none;
	transition: transform var(--transition), opacity var(--transition);
	background-color: var(--blue);
}

.boton-link2:hover::after,
.boton-link-2:hover::after,
.boton-modal:hover::after,
.boton-link:hover::after {
	transform: scaleX(1.4) scaleY(1.6);
	opacity: 0;
}

.boton-link:focus,
.boton-modal:focus,
.boton-simulador:focus,
.boton-link2:focus,
.boton-simulador:hover,
.boton-modal:hover,
.boton-link2:hover,
.boton-link:hover {
	text-decoration: none !important;
}

.boton-link-2::after,
.boton-link2:after {
	background: linear-gradient(150deg, var(--orange2) 0%, var(--orange1) 100%);
}

.boton-simulador {
	color: var(--blue) !important;
	border-color: var(--blue) !important;
	background-color: rgba(0, 0, 0, 0) !important;
}

.boton-simulador:hover {
	text-decoration: none !important;
	color: #fff !important;
	border-color: var(--blue-dark) !important;
	background-color: var(--blue-dark) !important;
}

.boton-modal {
	padding: 0 30px !important;
	border-radius: 50px;
	min-height: 75px;
	color: #fff !important;
	background-color: var(--orange) !important;
}

.boton-modal:hover {
	background-color: var(--orange1) !important;
}

.boton-modal::after {
	border-radius: 50px;
	background-color: var(--orange) !important;
}

.boton-link-2::after {
	border-radius: 60px;
}

.boton-link-2 {
	margin: 0 auto !important;
	border-radius: 60px;
	min-height: 60px;
}

.boton-link-2:focus,
.boton-link-2:hover {
	text-decoration: none !important;
}

.btn__third {
	position: relative;
	z-index: 1;
	display: block !important;
	max-width: 350px;
	margin: 0 auto 40px !important;
}

.btn__third:focus {
	text-decoration: none !important;
}

.btn__third .btn__third-button {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 16px 40px;
	border-radius: 60px;
	color: #fff;
	font-weight: 600;
	margin-bottom: 0;
	background-color: var(--blue);
	transform: translateY(15px) rotate(-5deg);
	transition: transform var(--transition);
}

.boton-alt-amarillo .btn_animado_amarillo {
	background: linear-gradient(150deg, var(--orange2) 0, var(--orange1) 100%);
}

.btn__third:after {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border-radius: 60px;
	border: 1px dashed rgba(var(--blue-code), 0.15);
	background-color: rgba(var(--blue-code), 0.1);
}

.boton-alt-amarillo:after {
	border: 1px dashed var(--orange1);
	background-color: rgba(var(--orange1-code), 0.1);
}

a.btn_animado:hover,
a.btn__third:hover {
	text-decoration: none !important;
}

.btn_animado:hover .btn_animado-button,
.container__blue-small:hover .btn__third-button,
.btn__third:hover .btn__third-button {
	transform: translateY(0) rotate(0);
}

.icon-azul-claro,
.icon-azul,
.icon-naranja {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 60px;
	width: 60px;
	font-size: var(--26);
	border-radius: 60px;
}

.icon-naranja {
	color: var(--orange);
	background-color: rgba(var(--orange1-code), 0.1);
}

.icon-azul {
	color: var(--blue);
	background-color: rgba(var(--blue-code), 0.1);
}

.icon-azul-claro {
	color: var(--blue-light5);
	background-color: rgba(var(--blue-code), 0.05);
}

.btn__primary-orange {
	border-radius: 50px;
	background-color: var(--orange);
	transition: background-color var(--transition);
}

.btn__primary-orange i {
	color: #fff;
	transition: color var(--transition-slow);
}

.btn__primary-orange:hover {
	background-color: var(--orange1);
}

.btn__small {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 16px;
	font-size: var(--16);
}

.btn__small p {
	color: #fff;
	font-weight: 500;
}

.btn__small .tooltip_ {
	top: initial;
	left: 50%;
	bottom: -90px;
	width: 110px;
	font-size: var(--16);
	text-align: center;
	transform: translateX(-50%);
}

.btn__small .tooltip_::before {
	top: -26px;
	left: 50%;
	bottom: initial;
	right: initial;
	border-style: solid;
	border-width: 15px;
	border-color: transparent transparent #fff transparent;
	transform: translateX(-50%);
}

/*  */
.menu__nav .btn__primary {
	order: 1;
}

.menu__btn-search {
	border: none;
	padding: 10px;
	border-radius: 20px;
	font-size: var(--13);
	margin: 0 14px 0 6px;
	color: var(--purple);
	background-color: rgb(0, 0, 0, 0);
	transition: background var(--transition), transform var(--transition);
}

.menu__btn-search:hover {
	background-color: var(--blue-light);
}

.menu__btn-search i::before {
	font-weight: 600 !important;
}

/* Footer */
.footer_ {
	border-top: 1px solid var(--blue-light1);
}

.footer__1 {
	position: relative;
	z-index: 101;
	display: none;
	padding: 16px 0;
	min-height: 60px;
	color: var(--purple-light);
	font-size: var(--16);
	font-weight: 500;
	background-color: var(--blue-dark1);
}

.footer__1 .container_ {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	gap: 8px;
	text-align: center;
}

.footer__1 a {
	color: var(--purple-light);
	transition: color var(--transition);
}

.footer__1 a:hover {
	color: var(--purple-light1);
}

.footer__1-float {
	display: none;
}

.footer__1_icon {
	position: absolute;
	top: -32px;
	left: 50%;
	z-index: 10;
	display: block;
	width: 100%;
	max-width: 290px;
	height: 50px;
	background-image: url('../images/curva2.svg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transform: translateX(-50%);
}

.footer__1_icon i {
	position: absolute;
	left: 50%;
	top: 0;
	justify-content: center;
	align-items: center;
	width: 190px;
	height: 70px;
	font-size: var(--24);
	line-height: 1;
	cursor: pointer;
	color: #fff;
	transform: translateX(-50%);
	transition: transform var(--transition);
	-webkit-animation: escala 0.5s forwards;
	animation: escala 0.5s forwards;
}

.footer__1_icon i::before {
	font-weight: 800 !important;
}

.footer__1-float {
	position: absolute;
	left: 50%;
	top: 19px;
	display: block;
	font-size: var(--14);
	font-weight: 500;
	color: #fff;
	transform: translateX(-50%);
}

.footer__1 .container_ {
	flex-direction: row;
}

.footer__2 {
	padding: 36px 0 30px;
	color: var(--purple-light1);
	background: #fff;
}

.open-footer .footer__2 {
	transform: translateY(0);
	bottom: 60px;
	visibility: visible;
}

.open-footer .overlay:not(.overlay1, .overlay2) {
	bottom: 0;
	opacity: 1;
}

.open-footer .float-middle {
	z-index: 0;
	opacity: 0;
}

.footer__2 i,
.footer__2 a {
	color: var(--purple-light1);
	transition: color var(--transition);
}

.footer__2 .container_ {
	max-width: 1440px;
}

.footer__2-img .swiper-prev i,
.footer__2-img .swiper-next i {
	color: var(--blue-dark);
}

.footer__2-img .swiper-prev {
	left: 0;
}

.footer__2-img .swiper-next {
	right: 0;
}

.footer__2-img a {
	justify-content: center;
	width: 100%;
}

.footer__2-links {
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 30px;
	padding: 24px 0 0;
}

.footer__2 a {
	display: flex;
	align-items: center;
	line-height: 1;
	gap: 12px;
	transition: color var(--transition);
}

.footer__2 a i {
	font-size: var(--19);
}

.footer__2 a.activo i,
.footer__2 a:hover i {
	color: var(--blue);
}

.footer__2 a.activo,
.footer__2 a:hover {
	color: var(--blue-dark);
}

.footer__2-links > .footer__2-links-container {
	display: none;
}

.footer__2-links-container {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 0 0 25px;
}

.footer__2-links-container ul {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer__2-links-container .hr {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0.1;
	margin: 0;
}

.footer__2-text {
	width: 100%;
}

.footer__2-text h2 {
	font-size: var(--23);
	font-weight: 600;
	line-height: 26px;
	color: var(--purple-light1);
	font-family: var(--font-secondary);
	margin-bottom: 18px;
}

.footer__2-text,
.footer__2-text a {
	justify-content: center;
	font-size: var(--16);
	font-weight: 400;
	line-height: 27px;
	font-family: var(--font-secondary);
	word-break: break-word;
	line-height: 1.5;
	text-align: center;
}

.footer__2-text img {
	margin: 16px 0 50px;
}

.footer__2-logos {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 40px 0 0;
}

.footer__2-super a {
	display: flex;
	justify-content: center;
	align-items: self-start;
}

.footer__2-super .footer__2-links-container a {
	justify-content: flex-start;
}

.footer__2-media {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	width: 100%;
	padding-bottom: 50px;
	max-width: 350px;
}

.footer__2-media a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 45px;
	height: 45px;
	border-radius: 45px;
}

.footer__2-media a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
	height: 90%;
	border-radius: 50%;
	border: 2px solid #fff;
	transform: translate(-50%, -50%) scale(0);
	transition: transform var(--transition);
}

.footer__2-media a:hover::before {
	transform: translate(-50%, -50%) scale(1);
}

.footer__2-media a:hover img {
	transform: scale(0.8);
}

.footer__2-media i {
	opacity: 0.3;
}

.footer__2-media a.facebook {
	background-color: #3c5994;
}

.footer__2-media img {
	max-height: 18px;
	transition: transform var(--transition);
}

.footer__2-media > div {
	display: flex;
	align-items: center;
	gap: 30px;
}

.footer__2-media a.instagram {
	background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #dc2743 75%, #bc1888 100%);
}

.footer__2-media a.x-twitter {
	background-color: #000;
}

.footer__2-media a.youtube {
	background-color: #d84e42;
}

.footer__2-media a.youtube svg {
	max-height: 14px;
}

.footer__2-super {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	max-height: 640px;
	height: calc(100% - 50px);
	/* max-height: calc(100dvh - 50px); */
	padding-top: 16px;
	background-color: #fff;
	transform: translateY(110%);
	transition: transform var(--transition);
}

.footer__2-super::before {
	content: '';
	position: absolute;
	top: -39px;
	left: 0;
	right: 0;
	height: 40px;
	background-image: url('../images/curva3.png');
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

.footer__2-super > div:nth-child(1) i {
	position: absolute;
	top: -40px;
	left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 230px;
	height: 40px;
	font-size: var(--30);
	color: #fff;
	transform: translateX(-50%);
}

.footer__2-super > div:nth-child(2) {
	overflow-y: auto;
	height: 100%;
	padding: 24px 16px 0;
}

.footer__2-super > div:nth-child(2) > div {
	max-width: 330px;
	margin-left: auto;
	margin-right: auto;
}

.footer__2-super .swiper_nav {
	padding-top: 24px;
}

.footer__2-super .swiper_nav .hr {
	margin-top: 40px;
	margin-bottom: 0;
}

.open-footer1 .footer__2-super {
	transform: translateY(0);
}

.footer__2-super > div:nth-child(2) img {
	max-width: 180px;
	max-height: 45px;
	-o-object-fit: contain;
	object-fit: contain;
}

.open-footer1 .overlay2 {
	bottom: 0;
	opacity: 1;
}

.footer__2-1 {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 24px 0;
	text-align: center;
}

.footer__2-1 p {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.footer__3 {
	position: relative;
	z-index: 100;
	min-height: 60px;
	background-color: var(--blue-dark1);
	transition: transform var(--transition);
}

.open-footer1 .footer__3 {
	transform: translateY(100px);
}

/* Swiper */
.swiper_nav .swiper-next::after,
.swiper_nav .swiper-prev::after {
	display: none;
}

.swiper_nav .swiper-next,
.swiper_nav .swiper-prev {
	font-size: var(--30);
	width: 40px;
	height: 40px;
	border-radius: 40px;
	background-color: var(--blue-dark);
	color: #fff;
}

.swiper_nav.swiper_nav-transparent .swiper-prev,
.swiper_nav.swiper_nav-transparent .swiper-next {
	background-color: rgba(0, 0, 0, 0);
}

.swiper-pag.left_ {
	left: initial !important;
	right: 24px;
	transform: none !important;
}

.swiper-pag .swiper-pagination-bullet {
	height: 20px;
	width: 20px;
	min-width: 20px;
	opacity: 1;
	border: 2px solid var(--blue-dark);
	background-color: transparent;
	transform: scale(1);
}

.swiper-pag .swiper-pagination-bullet-active {
	background-color: var(--blue-dark);
}

/* Items */
.port_links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	gap: 45px;
}

.item3 {
	display: flex;
	position: relative;
	align-items: center;
	width: 100%;
	max-width: 430px;
	margin: 0 auto;
	padding: 30px 105px 30px 16px;
	border-radius: 22px;
	/* gap: 12px; */
	background-color: var(--blue-light);
	transition: background-color var(--transition);
}

.item3-destacado {
	background-color: rgba(var(--blue-code), 0.1);
}

.item3-destacado:hover::before {
	background-color: rgba(var(--blue-code), 1);
}

.item3-destacado:hover h3 {
	color: #fff;
}

.item3-destacado:hover > i {
	color: rgba(255, 255, 255, 0.9);
}

.item3::before {
	content: '';
	position: absolute;
	right: 24px;
	top: 50%;
	width: 60px;
	height: 60px;
	border-radius: 60px;
	background-color: rgba(var(--blue-code), 0.08);
	transform: translateY(-50%);
	transition: background-color var(--transition-slow);
	-webkit-animation: hoverItem3Out 0.5s linear forwards;
	animation: hoverItem3Out 0.5s linear forwards;
}

.item3:hover::before {
	-webkit-animation: hoverItem3 0.5s linear forwards;
	animation: hoverItem3 0.5s linear forwards;
}

.item3 > img {
	position: absolute;
	right: 0px;
	bottom: 0;
	width: 100%;
	max-width: 130px;
}

.item3 h3 {
	position: relative;
	z-index: 1;
	font-size: var(--18);
	font-weight: 800;
	line-height: 1;
	transition: color var(--transition-slow);
}

.item3 i {
	font-size: var(--34);
	color: var(--blue-light2);
	transition: color var(--transition-slow);
}

.item3 > i {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--blue-light5);
	font-size: 30px;
}

.item3 i::before {
	font-weight: 500 !important;
}

.item3 .items__img {
	display: none;
}

.item5 {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px 24px 20px;
	height: 100%;
	border: 1px solid var(--gray);
	border-radius: 15px;
	overflow: hidden;
	transition: border-color var(--transition);
}

.item5:hover {
	border-color: var(--blue);
}

.item5 h2 {
	margin: 0;
	font-family: var(--font-primary);
	font-size: var(--20);
	font-weight: 700;
	letter-spacing: -0.5px;
}

.item5 p {
	margin-bottom: 16px;
	font-family: var(--font-primary);
	font-size: var(--16);
	min-height: 48px;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.item5 .btn-rojo {
	padding: 12px 24px;
	font-size: var(--16);
	gap: 3px;
	line-height: var(--16);
	color: #fff;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin: auto;
	border-radius: 30px;
	background-color: var(--blue);
}

.item6 {
	display: block;
	padding: 24px 24px 30px;
}

.item6 .titulo_principal {
	font-size: var(--20);
	font-weight: 700;
	margin-bottom: 16px;
}

.item6 img {
	border-radius: 30px;
	margin-bottom: 30px;
}

/* Botones flotantes */
.float-middle {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 99;
	opacity: 0;
	transform: translate(100%, -50%);
	transition: transform var(--transition), opacity var(--transition), z-index var(--transition);
}

.float-bottom {
	position: fixed;
	bottom: 14px;
	right: 15px;
	z-index: 110;
}

.avatar_ {
	height: 100px;
	width: 100px;
	border-radius: 100px;
	aspect-ratio: 1;
	cursor: pointer;
	opacity: 1;
	transition: opacity var(--transition);
}

.avatar_ img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
	filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.1));
	transition: opacity var(--transition);
}

.avatar_ img:nth-child(2) {
	opacity: 0;
}

.avatar_:hover img:nth-child(1) {
	opacity: 0;
}

.avatar_:hover img:nth-child(2) {
	opacity: 1;
}

.open-menu .avatar_ {
	z-index: 10;
	opacity: 0;
	pointer-events: none;
}

.tooltip_contenedor {
	position: relative;
}

.tooltip_ {
	position: absolute;
	top: -70%;
	left: -165px;
	z-index: 100;
	padding: 20px 16px;
	border-radius: 10px;
	line-height: 1;
	font-size: var(--18);
	font-weight: 600;
	opacity: 0;
	min-width: 100px;
	color: var(--blue-dark);
	letter-spacing: -1px;
	background-color: #fff;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	transition: top var(--transition-slow), opacity var(--transition-slow), bottom var(--transition-slow);
	box-shadow: 0px 0px 40px 0 rgba(0, 0, 0, 0.1);
}

.tooltip_::before {
	content: '';
	position: absolute;
	bottom: -28px;
	right: 24px;
	border-style: solid;
	border-width: 15px;
	border-color: #fff transparent transparent transparent;
}

.avatar_:hover .tooltip_ {
	top: -80%;
	opacity: 1;
}

.options_ {
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-right: 10px;
}

.item4 {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 8px;
	width: 95px;
	height: 95px;
	padding: 10px 24px;
	border: none;
	text-align: center;
	border-radius: 8px;
	color: #fff;
	font-size: var(--15);
	font-weight: 600;
	background-color: var(--blue-light3);
	transition: background var(--transition);
}

.item4::before {
	content: '';
	position: absolute;
	top: 35px;
	right: 35px;
	width: 0;
	height: 0;
	z-index: -1;
	border-radius: 8px;
	-webkit-filter: blur(20px);
	filter: blur(20px);
	opacity: 0.2;
	pointer-events: none;
	background-color: var(--blue);
	transition: width var(--transition), height var(--transition);
}

.item4 p {
	margin: 0;
	font-weight: 600;
	font-family: var(--font-primary);
	color: var(--blue-gray);
	transition: color var(--transition);
}

.item4 i {
	color: var(--blue-light4);
	font-size: var(--26);
	transition: color var(--transition);
}

.item4-1.active,
.item4.activo,
.item4.active,
.item4:hover {
	z-index: 10;
	color: #fff !important;
	background-color: var(--blue) !important;
}

.item4:hover::before {
	width: 80px;
	height: 80px;
}
.item4.active p,
.item4.active i,
.item4.activo p,
.item4.activo i,
.item4:hover p,
.item4:hover i {
	color: #fff;
}

.item4 .item4_img img:nth-child(2) {
	display: none;
}

.item4.active .item4_img img:nth-child(1),
.item4:hover .item4_img img:nth-child(1) {
	display: none;
}

.item4.active .item4_img img:nth-child(2),
.item4:hover .item4_img img:nth-child(2) {
	display: block;
}

/* Card */
.card_ {
	position: relative;
	display: block;
	width: 100%;
	max-width: 380px;
	margin: 0 auto;
	padding: 24px;
	overflow: hidden;
	border-radius: 70px;
	box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.03);
	background-color: #fff;
}

.card__header {
	position: relative;
	border-radius: 50px;
	text-align: center;
}

.card__img {
	max-height: 240px;
	overflow: hidden;
	border-radius: 50px;
}

.card__img::after {
	content: '';
	position: absolute;
	inset: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	z-index: 1;
	border-radius: 50px;
	background-color: rgba(0, 0, 0, 0.25);
	transform: scale(0);
	overflow: hidden;
	transition: transform var(--transition), opacity 0.5s ease-in-out;
}

.card__img img {
	border-radius: 50px;
	width: auto;
	-o-object-fit: cover;
	object-fit: cover;
	min-height: 241px;
	transition: transform var(--transition);
}

.card__i {
	position: absolute;
	right: -1px;
	bottom: -1px;
	z-index: 10;
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	width: 96px;
	height: 96px;
	border-radius: 87px 87px 0 0;
	background-color: #fff;
}

.card__i::before {
	content: '';
	position: absolute;
	left: -25px;
	bottom: -25px;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0);
	border: 25px solid #fff;
	border-radius: 0 0 60px;
	border-top: none;
	border-left: none;
}

.card__i::after {
	content: '';
	position: absolute;
	right: -40px;
	bottom: 55px;
	width: 80px;
	height: 70px;
	background: rgba(0, 0, 0, 0);
	border: 40px solid #fff;
	border-radius: 0 0 70px;
	border-top: none;
	border-left: none;
	z-index: -1;
}

.card__i i {
	position: relative;
	z-index: 10;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	margin: 0 12px 12px 0;
	border-radius: 60px;
	font-size: var(--24);
	color: #fff;
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.03);
	background-color: var(--gray);
	transition: background-color var(--transition), color var(--transition);
}

.card__i i::before {
	font-weight: 800 !important;
}

.card__i > div::after {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
	width: 60px;
	height: 60px;
	border-radius: 60px;
	opacity: 0;
	-webkit-filter: blur(20px);
	filter: blur(20px);
	background: linear-gradient(160deg, #ffc107 0%, #ff9800 100%);
	transition: top 0.5s ease-in-out, opacity var(--transition);
}

.card__i > div {
	position: relative;
	background-color: #fff;
}

.card__i > div::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 60px;
	height: 60px;
	opacity: 0;
	border-radius: 60px;
	background-color: var(--orange);
	/* background: linear-gradient(160deg, #ffc107 0%, #ff9800 100%); */
	transition: opacity var(--transition), transform var(--transition);
}

.card__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-top: 24px;
	padding-bottom: 22px;
	gap: 12px;
}

.card__content b {
	color: var(--blue);
	margin: 0;
	line-height: 1;
	font-size: var(--16);
	font-weight: 800;
}

.card__content p {
	margin: 0;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	font-size: var(--19);
	font-weight: 400;
	line-height: 25px;
	min-height: 50px;
	max-width: 270px;
	transition: background var(--transition);
}

.card_large:hover .card__i i,
.card_:hover .card__i i {
	background-color: rgba(0, 0, 0, 0);
}

.card_large:hover .card__i > div::before,
.card_:hover .card__i > div::before {
	opacity: 1;
	transform: scale(1.1);
}

.card_large:hover .card__i > div::after,
.card_:hover .card__i > div::after {
	opacity: 0.15;
	top: 30px;
}

.card_large:hover .card__img::after,
.card_:hover .card__img::after {
	opacity: 1;
	transform: scale(1);
}

.card_1 {
	max-width: 350px;
	border-radius: 40px;
}

.card_1 .card__img img {
	border-radius: 20px;
}

.card_1 h2 {
	font-weight: 700;
	font-size: var(--23);
	color: var(--blue);
	margin-bottom: 0;
}

.card_blue .card__i i {
	background-color: var(--blue-light);
	color: var(--blue);
}

.card_large:hover .card__i i,
.card_blue:hover .card__i i {
	color: #fff;
}

.card_blue .card__i > div::before {
	background-color: var(--blue);
}

.card_blue .card__i > div::after {
	background: linear-gradient(160deg, #007bff 0%, #0056b3 100%);
}

.card__content1 {
	gap: 0;
	padding-bottom: 0;
}

.card__content1 > div:not(.card_big-btn) {
	display: flex;
	align-items: center;
	gap: 12px;
}

.card__content1 p {
	display: block;
	text-align: start;
	font-size: var(--17);
	line-height: var(--23);
}

.card_borde {
	border: 1px solid var(--blue-gray1);
}

.card_big {
	position: relative;
	z-index: 1;
	display: block;
	padding: 40px;
	margin: 0 auto;
	width: 100%;
	max-width: 500px;
	min-height: 460px;
	border-radius: 40px;
	color: #fff;
	background-color: var(--blue);
}

.sombra-radial {
	overflow: hidden;
}

.sombra-radial::after,
.sombra-radial::before {
	content: '';
	position: absolute;
	width: 600px;
	height: 600px;
	border-radius: 100%;
	background: radial-gradient(circle, var(--blue) 0%, rgba(0, 0, 0, 0) 70%);
	z-index: 1;
}

.sombra-radial::before {
	bottom: -250px;
	left: -200px;
}

.sombra-radial::after {
	bottom: -320px;
	right: -220px;
}

.card_big-img {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 135px;
	height: 135px;
	margin-bottom: 70px;
	background-color: #e3f4ff;
	border-radius: 50%;
	line-height: 0;
}

.card_big-img::after {
	content: '';
}

.card_big-content {
	position: relative;
	z-index: 2;
}

.card_big-content h2 {
	font-weight: 700;
	font-size: var(--23);
	color: #ffffff;
}

.card_big-content p {
	font-size: var(--17);
	line-height: var(--23);
	color: #ffffff;
}

.card_big-btn {
	position: absolute;
	bottom: 16px;
	left: 50%;
	z-index: 2;
	padding: 12px 20px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: 100%;
	max-width: 260px;
	text-align: center;
	font-weight: 800;
	font-size: var(--16);
	border-radius: 50px;
	color: var(--blue);
	background-color: #fff;
	transform: translate(-50%);
}

.card_big-btn::after {
	content: '';
	display: inline-block;
	height: 100%;
	width: 100%;
	border-radius: 50px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	opacity: 1;
	pointer-events: none;
	transition: transform var(--transition), opacity var(--transition);
	background-color: #fff;
}

.card_big:hover .card_big-btn::after {
	transform: scaleX(1.4) scaleY(1.6);
	opacity: 0;
}

.card_big-bgimg {
	position: absolute;
	bottom: 0;
	right: 0;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	border-radius: 40px;
}
.card__btn {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 24px;
	padding: 12px 20px;
	border-radius: 50px;
	border: none;
	font-weight: 700;
	color: #fff;
	background-color: var(--blue);
}

.card_large {
	max-width: 350px;
	margin: auto;
	border-radius: 40px;
	padding-bottom: 30px;
}

.card_large-content {
	padding-left: 30px;
}

.card_large-content span {
	font-weight: bold;
	font-size: var(--14);
	line-height: 30px;
	text-transform: uppercase;
	color: #bcc5ca;
}

.card_large-content h2 {
	font-weight: 700;
	font-size: var(--23);
	color: var(--blue);
}

.card_large-content p {
	font-size: var(--17);
	line-height: var(--29);
	color: #002449;
	overflow-wrap: anywhere;
}

/* Input de búsqueda */
.nav-item-btn {
	border: none !important;
	margin-top: 16px;
}

.nav-item-end {
	display: flex;
	align-items: center;
	margin-top: auto;
}

.search-input > div {
	position: relative;
}

.search-input input {
	width: 100%;
	min-height: 40px;
	color: var(--blue-dark);
	border-radius: 40px;
	padding: 16px 45px 16px 16px;
	border: 1px solid var(--gray);
	background-color: rgba(0, 0, 0, 0);
	transition: border var(--transition);
}

.search-input input:focus,
.search-input input:focus-visible {
	outline: none;
	border-color: var(--blue);
}

.search-input i {
	position: absolute;
	top: 50%;
	right: 20px;
	color: var(--blue-dark);
	transform: translateY(-50%);
}

.search-input label {
	position: absolute;
	transform: scale(0);
}

.title_search {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	margin-bottom: 50px;
}

.title_search > i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 60px;
	height: 60px;
	color: var(--blue);
	border-radius: 60px;
	font-size: var(--20);
	background-color: rgba(var(--blue-code), 0.1);
}

.title_search > h2 {
	font-family: var(--font-primary);
	color: var(--blue-dark);
	font-size: var(--26);
	font-weight: 800;
	margin-bottom: 25px;
}

.search-border {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 50px;
	opacity: 0;
	z-index: -1;
	position: absolute;
}

.search-box .border {
	fill: none;
	stroke: var(--blue-faint);
	stroke-width: 5;
	stroke-miterlimit: 10;
	opacity: 1;
}

.search-box .border {
	stroke-dasharray: 740;
	stroke-dashoffset: 0;
	transition: stroke-dashoffset 400ms cubic-bezier(0.6, 0.04, 0.735, 0.99);
	-webkit-transition: stroke-dashoffset 400ms cubic-bezier(0.6, 0.04, 0.735, 0.99), opacity 1s;
	-moz-transition: stroke-dashoffset 400ms cubic-bezier(0.6, 0.04, 0.735, 0.99);
	-o-transition: stroke-dashoffset 400ms cubic-bezier(0.6, 0.04, 0.735, 0.99);
}

.border-searching .border {
	stroke-dasharray: 740;
	stroke-dashoffset: 459;
	transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.15, 0.205, 1);
	-webkit-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.15, 0.205, 1), opacity 1s;
	-moz-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.15, 0.205, 1);
	-o-transition: stroke-dashoffset 650ms cubic-bezier(0.755, 0.15, 0.205, 1);
	opacity: 0;
}

/* Loader */
.loader {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 1;
	background: #fff;
}

.loader img {
	width: 100%;
	/* max-width: 550px; */
	max-width: 200px;
	-webkit-animation: zoominoutsinglefeatured 1.5s infinite;
	animation: zoominoutsinglefeatured 1.5s infinite;
}

/* bootstrap */
.modal_::-webkit-scrollbar-thumb {
	background-color: #fff;
	border-radius: 10px;
	border: 5px solid transparent;
}

.btn-close {
	position: absolute;
	right: 0;
	top: 0;
	z-index: 11;
	margin: 12px 12px 0 0;
	font-size: var(--24);
	border-radius: 50px;
	opacity: 1;
	background: #fff;
	color: var(--blue-gray);
	transition: background-color var(--transition), opacity var(--transition);
}

.btn-close:focus,
.btn-close:active {
	outline: none;
	box-shadow: none;
}

.btn-close:hover {
	opacity: 1;
	background-color: var(--blue-light);
}

.modal_ .modal-header {
	border: none;
}

.modal_ .modal-header .btn-close {
	right: 5%;
	top: 4%;
}

.modal_ .modal-body {
	padding: 12px 16px 12px;
}

.modal_ .modal-content {
	border-radius: 0px;
}

.modal-2xl {
	max-width: 1330px;
}

.modalSinFondo .modal-content {
	padding: 0;
	border: none;
	background-color: rgb(0, 0, 0, 0);
}

.breadcrumb_ .breadcrumb-item + .breadcrumb-item::before {
	color: #fff;
}

.breadcrumb_ i {
	color: #fff;
}

.toast_ {
	opacity: 1;
	border-radius: 20px;
}

.toast_ .toast {
	display: block;
	overflow: hidden;
	border: none;
	-webkit-animation-name: backOutRight;
	animation-name: backOutRight;
	border-radius: 20px;
	opacity: 1 !important;
}

.toast_ .toast.show {
	-webkit-animation-name: backInRight;
	animation-name: backInRight;
}

.toast_header {
	position: relative;
	justify-content: center;
	padding: 0;
	width: 100%;
	min-height: 210px;
	border: none;
	background-color: #e6f4ff;
}

.toast_header i {
	font-size: var(--50);
	color: var(--blue);
}

.toast_body {
	padding: 16px 24px;
	border-radius: 0 0 20px 20px;
	background-color: #fff;
}

.toast_body h2 {
	font-size: var(--20);
	line-height: var(--24);
	font-weight: 800;
	color: var(--blue-dark);
}

.toast_body > p {
	font-size: var(--16);
	line-height: var(--24);
	color: var(--blue-dark);
}

/* Offcanvas */
.offcanvas_ .offcanvas-header {
	min-height: 40px;
}

.offcanvas_ .btn-close {
	top: 12px;
	right: 24px;
}

/* Cookies */
.cookies_ {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 100;
	max-width: 900px;
	padding: 40px 24px 30px;
	border-radius: 30px;
	opacity: 0;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
	transition: opacity var(--transition-slow);
}

.cookies_:not(.show),
.cookies_.collapsing {
	height: auto !important;
	display: block !important;
	overflow: initial !important;
	pointer-events: none;
}

.cookies_.show {
	opacity: 1;
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

.cookies_icon {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px;
	width: 40px;
	border-radius: 50px;
	background-color: rgba(var(--blue-code), 0.1);
}

.cookies_icon i {
	font-size: var(--24);
	color: var(--blue);
}

.cookies_ h2 {
	font-size: var(--16);
	font-weight: 800;
	margin-bottom: 0;
}

.cookies_ p {
	font-size: var(--14);
	line-height: var(--18);
	margin-bottom: 0;
}

.cookies_ button:not(.btn-close) {
	padding: 17px 25px;
}

.cookies_ button p {
	font-size: var(--16);
}

.cookies_ .cookies_primary {
	background-color: rgba(0, 0, 0, 0);
}

.cookies_ .cookies_primary p {
	color: var(--blue);
}

.cookies_ .cookies_primary:hover p {
	color: #fff;
}

.cookies_ .cookies_primary p {
	color: var(--blue);
	transition: color var(--transition-slow);
}

.cookies_ .btn-close {
	margin: 6px 12px 0 0;
}

/* Nubes */
.nubes_::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 50px;
	width: 100%;
	background: url('../images/nubes.png') no-repeat center / cover;
}

.progress_ {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: conic-gradient(var(--blue) 0%, #fff 0);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.toast_ .progress_ {
	position: absolute;
	top: 16px;
	right: 16px;
}

/* Grid noticias */
.grid__ {
	min-height: 360px;
}

/* Tabla border */
.tabla-borde {
	padding: 16px 12px;
	border: 1px solid var(--gray1);
	border-radius: 50px;
}

.tabla-borde p {
	margin-bottom: 0 !important;
}

.tabla-borde p,
.tabla-borde table tbody tr td {
	line-height: var(--27);
	word-break: break-word;
}

/* Responsive */
@media (min-width: 450px) {
	.footer__2-super > div:nth-child(1)::before,
	.footer__2-super > div:nth-child(1)::after {
		content: '';
		position: absolute;
		top: -39px;
		height: 40px;
		width: 100%;
		background-color: #fff;
	}

	.footer__2-super > div:nth-child(1)::after {
		left: -80%;
	}

	.footer__2-super > div:nth-child(1)::before {
		right: -80%;
	}
}

@media (min-width: 500px) {
	/* Portafolio */
	.btn__primary-blue p,
	.btn__primary-blue h3 {
		font-size: var(--19);
	}

	.item3 {
		padding: 30px 130px 30px 20px;
	}

	.item3 > img {
		max-width: 100%;
		width: auto;
	}

	.item3 h3 {
		font-size: var(--22);
	}

	.container__blue {
		padding: 30px 30px 55px;
	}

	/* Banner */
	.banner__content > .titulo {
		margin-bottom: 6px;
	}

	.banner_element {
		position: relative;
		margin-bottom: 0;
	}

	.banner_element .banner__container {
		padding-bottom: 64px;
	}

	.banner_element::before {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 50%;
		z-index: 10;
		height: 42px;
		width: 500px;
		background: url(../images/curva4.svg) no-repeat center / contain;
		transform: translate(-50%);
	}

	.tabla-borde {
		padding: 30px;
	}
}

@media (min-width: 550px) {
	/* Menu */
	.menu_ {
		flex-direction: row;
		justify-content: space-between;
	}

	.menu__logo img {
		max-height: 70px;
	}

	.item3 {
		padding: 30px 110px 30px 30px;
	}

	/* Banner */
	.banner__single {
		flex-direction: row;
	}

	/*  */
	.card_big-content {
		padding-right: 100px;
	}

	.card_big-btn {
		bottom: 30px;
	}

	/*  */
	.modal_ .modal-body {
		padding: 12px 24px 12px;
	}
}

@media (min-width: 700px) {
	.banner_element::before {
		bottom: -1px;
		width: 700px;
	}
}

@media (min-width: 768px) {
	/* Banner */
	.banner_ {
		padding: 0 16px;
	}

	.banner_ .swiper img {
		border-radius: 30px;
	}

	.banner__container {
		overflow: hidden;
	}

	.banner_ .swiper_nav .swiper-next {
		right: 10px;
	}

	.banner_ .swiper_nav .swiper-prev {
		left: 10px;
	}

	.banner__content.left_ {
		padding: 24px 30px;
	}

	.banner__content > p {
		font-size: var(--24);
		line-height: var(--30);
	}

	/* Items */
	.item3 .items__img {
		display: block;
	}

	.item3 {
		max-width: 650px;
	}

	/* Botón */
	.boton-link,
	.boton-simulador {
		width: initial;
		max-width: initial;
	}

	.boton-modal {
		width: max-content;
		max-width: max-content;
	}

	/* Footer */
	.footer__2-text,
	.footer__2-text a {
		word-break: initial;
	}

	.footer__2-links {
		gap: 20px;
	}

	.footer__2-img a {
		max-width: none;
	}

	.footer__2-super > div:nth-child(1)::after {
		left: -70%;
	}

	.footer__2-super > div:nth-child(1)::before {
		right: -70%;
	}

	.footer__2-img .swiper-prev {
		left: 20px;
	}

	.footer__2-img .swiper-next {
		right: 20px;
	}

	/* Modal */
	.modal_ .modal-body {
		padding: 12px 40px 24px;
	}

	/*  */
	.cookies_ {
		left: 24px;
		bottom: 24px;
	}

	.tabla-borde {
		padding: 40px;
	}
}

@media (min-width: 992px) {
	.ptb_ftr {
		padding-bottom: 60px;
	}

	.container__blue {
		border-radius: 50px;
		padding: 30px 30px 55px;
	}

	.tab-content-sticky {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}

	.bg-error {
		align-items: baseline;
		flex-direction: row;
	}

	.btn__small p {
		display: none;
	}

	/* Menu */
	.menu_ {
		padding-top: 24px;
		padding-bottom: 24px;
		flex-direction: column;
		gap: 16px;
	}

	.menu__content {
		justify-content: center;
	}

	.menu__nav {
		display: block;
	}

	.menu__logo img {
		max-height: none;
	}

	.float-middle {
		opacity: 1;
		transform: translate(0, -50%);
	}

	.scroll-null-small {
		overflow: visible !important;
	}

	.scroll-null {
		position: relative;
		overflow: hidden !important;
		height: 100%;
	}

	.menu__nav {
		position: initial;
		max-width: none;
		pointer-events: initial;
	}

	.menu__nav .nav {
		flex-direction: row;
		opacity: 1;
		padding: 0;
		overflow: initial;
	}

	.menu__nav .nav-link {
		padding: 16px 6px 16px 22px;
	}

	.menu__nav .nav-link i {
		display: none;
	}

	.menu__nav .dropdown-menu {
		position: absolute;
		box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
		border-radius: 10px;
		padding: 12px;
		border: none;
		transform: none !important;
	}

	.menu__titulo {
		display: none;
	}

	.menu__nav .nav li:not(li.nav-item-end) {
		border: none;
	}

	.nav-item-btn {
		order: 1;
		margin-top: 0;
	}

	.nav-item-end {
		order: 0;
	}

	.btn__small:hover .tooltip_ {
		opacity: 1;
		bottom: -95px;
	}

	/* Banners */
	.banner__container {
		border-radius: 60px;
	}

	.banner__content.left_ {
		padding: 80px 90px 50px;
		min-height: 485px;
	}

	.banner__content.left_ .titulo {
		margin-bottom: 0;
	}

	.banner__img {
		max-width: 40%;
	}

	.banner__single:not(.banner__container-logo) {
		padding: 64px 24px 40px;
	}

	.banner__container-logo img {
		margin-bottom: 24px;
	}

	.banner_ .swiper img {
		border-radius: 60px;
	}

	.banner_ .swiper_nav .swiper-next,
	.banner_ .swiper_nav .swiper-prev {
		display: flex;
		transform: scale(0);
	}

	.banner_ .swiper_nav .swiper-next {
		right: 50px;
	}

	.banner_ .swiper_nav .swiper-prev {
		left: 50px;
	}

	.banner_item::after,
	.banner_item::before {
		border-radius: 60px;
	}

	/* Item 3 */
	.port_links {
		flex-direction: row;
		gap: 32px;
	}

	.item3 {
		max-width: none;
	}

	/* .item3 h3 {
    font-size: var(--26);
  } */

	.item3 .items__img {
		display: none;
	}

	/* card */
	.card_large {
		padding-bottom: 0;
		max-width: 100%;
	}

	.card_large img {
		min-width: 200px;
	}

	/* Modal */
	.btn-close {
		margin: 30px 30px 0 0;
	}

	.modal_ .modal-body {
		padding: 30px 60px 60px;
	}

	.modal_ .modal-content {
		border-radius: 60px;
	}

	/*  */
	.card__btn-big {
		/* font-size: var(--26); */
		font-size: var(--22);
		gap: 24px;
		margin-top: 48px;
	}

	/* .banner__content > p {
    font-size: var(--30);
    line-height: var(--36);
  } */

	.banner__content > h3 {
		font-size: var(--34);
		line-height: var(--38);
	}

	/* Footer */
	.footer_.flt_ {
		position: absolute;
		left: 0;
		right: 0;
		bottom: -1px;
		z-index: 100;
	}

	.footer__1 {
		display: block;
	}

	.footer__2 {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 100;
		padding: 30px 0 45px;
		box-shadow: 0 0 20px 0 rgb(0 0 0 / 10%);
		visibility: hidden;
		transform: translateY(100%);
		transition: transform var(--transition), bottom var(--transition), visibility var(--transition);
	}

	.footer__2-links {
		flex-direction: row;
		padding: 24px 0 0 24px;
	}

	.footer__2-text h2 {
		margin-bottom: 26px;
		max-width: 220px;
	}

	.footer__2-links-container {
		justify-content: center;
		flex-direction: row;
		gap: 16px;
		margin: 0 auto;
		padding: 0 0 12px;
	}

	.footer__2-links-container ul {
		display: block;
		-moz-columns: 3 auto;
		columns: 3 auto;
		-moz-column-gap: 0;
		column-gap: 0;
	}

	.footer__2-links-container ul > li {
		padding: 10px;
		-moz-column-break-inside: avoid;
		break-inside: avoid;
	}

	.footer__2-logos {
		flex-direction: row;
		justify-content: space-between;
		padding: 25px 0 0 24px;
	}

	.footer__2-img {
		display: flex;
		align-items: center;
		gap: 30px;
	}

	.footer__2-img .swiper {
		overflow: initial;
	}

	.footer__2-img .swiper-wrapper {
		align-items: center !important;
		gap: 30px;
	}

	.footer__2-img .swiper-slide {
		width: auto !important;
		flex-shrink: initial;
	}

	.footer__2-links > .footer__2-links-container {
		display: flex;
	}

	.footer__2-text {
		text-align: start;
		max-width: 350px;
	}

	.footer__2-text,
	.footer__2-text a {
		justify-content: start;
	}

	.footer__2-logos > div {
		justify-content: start;
		padding: 0;
	}

	.footer__2-super {
		position: initial;
		width: 100%;
		transform: translateY(0);
	}

	.footer__2-super::before {
		display: none;
	}

	.footer__2-super > div:nth-child(1) {
		display: none;
	}

	.footer__2-super > div:nth-child(2) > div {
		max-width: none;
		margin: 0;
	}

	.footer__2-super .swiper_nav .hr {
		display: none;
	}

	.footer__2-super > div:nth-child(2) {
		padding: 0;
	}

	.footer__2-super > div:nth-child(2) .swiper-wrapper {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
		align-items: center;
		gap: 8px;
	}

	.footer__2-super > div:nth-child(2) .swiper-slide {
		width: auto !important;
		margin: 0 !important;
	}

	.footer__2-super > div:nth-child(2) .swiper-button-prev,
	.footer__2-super > div:nth-child(2) .swiper-button-next {
		display: none;
	}

	.footer__2-text img {
		display: none;
	}

	.footer__2-1 {
		display: none;
	}

	.footer__3 {
		display: none;
	}

	.copia__links {
		display: none;
	}

	/* Btn search */
	.nav-item-end {
		margin: 0;
	}
}

@media (min-width: 1200px) {
	.container__blue {
		border-radius: 50px;
		padding: 55px 60px;
	}

	/* Menu */
	.menu_ {
		flex-direction: row;
		gap: 0px;
		padding-top: 0;
		padding-bottom: 0;
		width: 100%;
	}

	.menu__logo {
		margin-bottom: -45px;
	}

	/* Banner */
	.banner__container {
		border-radius: 0 60px 60px 60px;
	}

	.banner__border {
		display: block;
	}

	/* items */
	.item3 .items__img {
		display: block;
	}

	/* Footer */
	.footer__2-logos {
		padding: 25px 0 0 40px;
		gap: 40px;
	}

	.footer__2-links {
		padding: 24px 0 0 40px;
	}
}

@media (min-width: 1250px) {
	/* Footer */
	.footer__2-super {
		padding-left: 70px;
	}

	.footer__2-links-container {
		gap: 80px;
		padding: 0 50px 30px;
	}
}

@media (min-width: 992px) and (max-width: 1400px) {
	.space-right {
		padding-right: 121px;
	}
}

@media (min-width: 1600px) {
	.container_ {
		max-width: 1600px;
	}

	.banner_ {
		max-width: 1680px;
	}

	.banner__border::after {
		bottom: -79px;
	}

	.banner__content.left_ {
		min-height: 540px;
	}
}

@media (max-width: 768px) {
	.banner__container-float .banner__content::before {
		content: '';
		position: absolute;
		inset: 0;
		z-index: -1;
		background: radial-gradient(circle, rgba(var(--blue-dark-code), 0.4) 0%, rgba(0, 0, 0, 0) 100%);
	}

	.banner__container-img {
		padding-bottom: 170px;
		margin-bottom: 100px;
	}

	.banner__img {
		position: absolute;
		top: calc(100% - 140px);
	}
}

@media (max-width: 992px) {
	/* Menú */
	.menu__nav .dropdown-menu {
		position: initial !important;
		transform: none !important;
	}

	/* Bootstrap */
	.modal_ .modal-dialog {
		margin: 0 auto;
		min-height: 100dvh;
		max-width: 100%;
	}
}
/* Animation */
@-webkit-keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

@-webkit-keyframes escala {
	0% {
		transform: translateX(-50%) scale(1);
	}

	50% {
		transform: translateX(-50%) scale(0);
	}

	100% {
		transform: translateX(-50%) scale(1);
	}
}

@keyframes escala {
	0% {
		transform: translateX(-50%) scale(1);
	}

	50% {
		transform: translateX(-50%) scale(0);
	}

	100% {
		transform: translateX(-50%) scale(1);
	}
}

@-webkit-keyframes circle-in-hesitate {
	0% {
		-webkit-clip-path: var(--circle-top-right-out);
		clip-path: var(--circle-top-right-out);
	}

	40% {
		-webkit-clip-path: var(--circle-hesitate);
		clip-path: var(--circle-hesitate);
	}

	to {
		-webkit-clip-path: var(--circle-center-center-in);
		clip-path: var(--circle-center-center-in);
	}
}

@keyframes circle-in-hesitate {
	0% {
		-webkit-clip-path: var(--circle-top-right-out);
		clip-path: var(--circle-top-right-out);
	}

	40% {
		-webkit-clip-path: var(--circle-hesitate);
		clip-path: var(--circle-hesitate);
	}

	to {
		-webkit-clip-path: var(--circle-center-center-in);
		clip-path: var(--circle-center-center-in);
	}
}

@-webkit-keyframes circle-out-hesitate {
	0% {
		-webkit-clip-path: var(--circle-center-center-in);
		clip-path: var(--circle-center-center-in);
	}

	40% {
		-webkit-clip-path: var(--circle-hesitate);
		clip-path: var(--circle-hesitate);
	}

	to {
		-webkit-clip-path: var(--circle-top-right-out);
		clip-path: var(--circle-top-right-out);
	}
}

@keyframes circle-out-hesitate {
	0% {
		-webkit-clip-path: var(--circle-center-center-in);
		clip-path: var(--circle-center-center-in);
	}

	40% {
		-webkit-clip-path: var(--circle-hesitate);
		clip-path: var(--circle-hesitate);
	}

	to {
		-webkit-clip-path: var(--circle-top-right-out);
		clip-path: var(--circle-top-right-out);
	}
}

@-webkit-keyframes hoverItem3 {
	0% {
		right: 24px;
		top: 50%;
		width: 60px;
		height: 60px;
		border-radius: 60px;
	}
	50% {
		width: 50%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
	75% {
		width: 75%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
	100% {
		width: 100%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
}

@keyframes hoverItem3 {
	0% {
		right: 24px;
		top: 50%;
		width: 60px;
		height: 60px;
		border-radius: 60px;
	}
	50% {
		width: 50%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
	75% {
		width: 75%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
	100% {
		width: 100%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
}

@-webkit-keyframes hoverItem3Out {
	0% {
		width: 100%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
	25% {
		width: 75%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
	50% {
		width: 50%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
	100% {
		right: 24px;
		top: 50%;
		width: 60px;
		height: 60px;
		border-radius: 60px;
	}
}

@keyframes hoverItem3Out {
	0% {
		width: 100%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
	25% {
		width: 75%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
	50% {
		width: 50%;
		height: 100%;
		right: 0;
		bottom: 0;
		border-radius: 22px;
	}
	100% {
		right: 24px;
		top: 50%;
		width: 60px;
		height: 60px;
		border-radius: 60px;
	}
}

@-webkit-keyframes zoominoutsinglefeatured {
	0% {
		opacity: 1;
		transform: scale(0.9, 0.9);
	}

	50% {
		opacity: 0.8;
		transform: scale(0.94, 0.94);
	}

	100% {
		opacity: 1;
		transform: scale(0.9, 0.9);
	}
}

@keyframes zoominoutsinglefeatured {
	0% {
		opacity: 1;
		transform: scale(0.9, 0.9);
	}

	50% {
		opacity: 0.8;
		transform: scale(0.94, 0.94);
	}

	100% {
		opacity: 1;
		transform: scale(0.9, 0.9);
	}
}

/* Scroll */
::-webkit-scrollbar {
	width: 15px;
}

::-webkit-scrollbar-thumb {
	background: #3c5668;
	border-radius: 10px;
	border: 5px solid #fff;
}

::-webkit-scrollbar-thumb:hover {
	background: #e1ebf4;
}

/* Animate css */
@-webkit-keyframes heartBeat {
	0% {
		transform: scale(1);
	}

	14% {
		transform: scale(1.3);
	}

	28% {
		transform: scale(1);
	}

	42% {
		transform: scale(1.3);
	}

	70% {
		transform: scale(1);
	}
}

@keyframes heartBeat {
	0% {
		transform: scale(1);
	}

	14% {
		transform: scale(1.3);
	}

	28% {
		transform: scale(1);
	}

	42% {
		transform: scale(1.3);
	}

	70% {
		transform: scale(1);
	}
}

.animate__animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes heartBeat {
	0% {
		transform: scale(1);
	}
	14% {
		transform: scale(1.3);
	}
	28% {
		transform: scale(1);
	}
	42% {
		transform: scale(1.3);
	}
	70% {
		transform: scale(1);
	}
}
@keyframes heartBeat {
	0% {
		transform: scale(1);
	}
	14% {
		transform: scale(1.3);
	}
	28% {
		transform: scale(1);
	}
	42% {
		transform: scale(1.3);
	}
	70% {
		transform: scale(1);
	}
}
@-webkit-keyframes tada {
	0% {
		transform: scaleX(1);
	}
	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		transform: scaleX(1);
	}
}
@keyframes tada {
	0% {
		transform: scaleX(1);
	}
	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		transform: scaleX(1);
	}
}
@-webkit-keyframes slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
}
@keyframes slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	to {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
}
@-webkit-keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
@keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
@-webkit-keyframes backOutRight {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	20% {
		opacity: 0.7;
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 0.7;
		transform: translateX(2000px) scale(0.7);
	}
}
@keyframes backOutRight {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	20% {
		opacity: 0.7;
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 0.7;
		transform: translateX(2000px) scale(0.7);
	}
}
@-webkit-keyframes backInRight {
	0% {
		opacity: 0.7;
		transform: translateX(2000px) scale(0.7);
	}
	80% {
		opacity: 0.7;
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@keyframes backInRight {
	0% {
		opacity: 0.7;
		transform: translateX(2000px) scale(0.7);
	}
	80% {
		opacity: 0.7;
		transform: translateX(0) scale(0.7);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
