.banner-hero {
	height: 100%;
}
/* .swiper-slide .banner-hero__img{
	opacity: 0;
} */
/* .swiper-slide-active .banner-hero__img {
    animation: fadeIn 0.5s ease-in-out forwards;
} */
.banner-hero__img {
	width: 100%;
	height: 800px !important;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	object-fit: cover;
}
.swiper-slide .banner-hero__content {
    opacity: 0;
    transform: translateY(20px);
}
.swiper-slide-active .banner-hero__content {
    animation: slideUp 0.7s ease-out forwards;
}
.banner-hero__content {
	max-width: 1170px;
	margin-inline: auto;
	height: 100%;
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.banner-hero__title {
	font-family: Plus Jakarta Sans;
    font-size: 44px !important;
    font-weight: 400 !important;
    line-height: 56px !important;
    letter-spacing: 1px;
    color: #FFF;
    max-width: 630px;
    margin: 0 0 30px 0;    
}
.swiper-slide .banner-hero__title {
	opacity: 0;
}
.swiper-slide-active .banner-hero__title{
	transform: translateY(20px);
    animation: slideUp 1s ease-out 0.7s forwards;
}
.text-highlighted {
    font-weight: 800;
    color: #BDFFFD;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.swiper-slide-active .text-highlighted {
	animation: moverRight 0.8s cubic-bezier(0.85, 0, 0.15, 1) 0.6s forwards;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
}
@keyframes moverRight {
    0% {
        -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}
.banner-hero__description {
	font-family: Plus Jakarta Sans;
	font-size: 20px;
	font-weight: 300;
	line-height: 32px;
	letter-spacing: 1px;
	color: #FFF;
	max-width: 500px;
	margin-bottom: 70px;
}
.swiper-slide .banner-hero__description {
	opacity: 0;
}
.swiper-slide-active .banner-hero__description{
	transform: translateY(20px);
    animation: slideUp 1s ease-out 0.9s forwards;
}
.banner-hero__description strong {
	font-weight: 700;
}
.banner-hero__btn {
	padding: 21.5px 30px;
	border-radius: 4px;
	font-family: Gilroy;
	font-size: 15px !important;
	font-weight: 600 !important;
	line-height: 19.09px;
	letter-spacing: 1px;
	text-align: center;
	color: #FFF !important;
	cursor: pointer;
	text-transform: uppercase;
	transition: all 0.3s ease-in-out;
}
.banner-hero__btn:hover{
	transform: scale(1.05);
	background-color: var(--e-global-color-ce443c1);
	color: var(--e-global-color-4d25e8f) !important;
	border: none !important;
}
.banner-hero__btn-container {
	display: flex;
	align-items: center;
	gap: 23px;
}
.swiper-slide .banner-hero__btn-container {
	opacity: 0;
}
.swiper-slide-active .banner-hero__btn-container{
	transform: translateY(20px);
    animation: slideUp 1s ease-out 1.1s forwards;
}
.banner-hero__btn--primary {
	background: #1463FF;
	border: 1px solid #1463FF;
}
.banner-hero__btn--alt {
	background: transparent;
	border: 1px solid #FFF;
}
/* ANIMACIONES */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@media(max-width: 768px) {
	.banner-hero__img {
		height: 560px !important;
	}
	.banner-hero__content {
		max-width: 100%;
		padding: 60px 30px 100px;
		justify-content: flex-start;
	}
	.banner-hero__title {
		font-size: 24px !important;
		line-height: 34px !important;
		margin-bottom: 10px;
	}
	.banner-hero__description {
		font-size: 16px;
		line-height: 28px;
		margin-bottom: 42px;
	}
	.banner-hero__btn-container {
		flex-wrap: wrap;
		gap: 20px;
	}
	.banner-hero__btn {
		width: 100%;
	}
}