/* Google Fonts - Poppins */
/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body{
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EFEFEF;
} */

.card-wrapper {
	z-index: 0;
}
.slide-container {
	max-width: 100vw;
	width: 100%;
	padding: 0;
	overflow: hidden ;
	display: inline-block ;
}
.slide-content {
	margin: 0;
	overflow: hidden;

}
.card {
	border-radius: 25px;
	background-color: #fff;
}
.image-content,
.card-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 0;
}
.image-content {
	position: relative;
	row-gap: 5px;
	padding: 25px 0;
}
.overlay {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #4070f4;
	border-radius: 25px 25px 0 25px;
}
.overlay::before,
.overlay::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -40px;
	height: 40px;
	width: 40px;
	background-color: #4070f4;
}
.overlay::after {
	border-radius: 0 25px 0 0;
	background-color: #fff;
}
.card-image {
	position: relative;
	background: #fff;
	padding: 0;
}
.card-image .card-img {
	height: 100%;
	width: 100%;
	object-fit: cover;

}
.name {
	font-size: 18px;
	font-weight: 500;
	color: #333;
}
.description {
	font-size: 12px;
	color: #707070;
	text-align: center;
}
.button {
	border: none;
	font-size: 16px;
	color: #fff;
	padding: 8px 16px;
	background-color: #122d7c;
	border-radius: 6px;
	margin: 14px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.button:hover {
	background: #122d7c;
}

.swiper-navBtn {
	color: #6e93f7;
	transition: color 0.3s ease;
}
.swiper-navBtn:hover {
	color: #122d7c;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
	font-size: 35px;
}
.swiper-button-next {
	right: 0;
}
.swiper-button-prev {
	left: 0;
}
.swiper-pagination-bullet {
	background-color: #6e93f7;
	opacity: 1;
}
.swiper-pagination-bullet-active {
	background-color: #4070f4;
}

@media screen and (max-width: 768px) {
	.slide-content {
		margin: 0 10px;
	}
	.swiper-navBtn {
		display: none;
	}
}


/* Modificaciones evoratec */
.card {
	height: 400px;
	padding: 0 !important;
	border-radius: 0 !important ;
	border: none !important ;

}
.image-content {
	padding: 0 !important ;
}
.card-content {
	display: flex;
	flex-direction: column;
	position: absolute;
	bottom: 0;
	color: white;
	background: #376C96;
	padding: 16px 24px;
	width: auto;
	height: auto;
	right: 0 ;

}
.card-content h2 {
	color: white ;
	font-size: 20px;
	font-weight: 400;
	font-family: 'Jost',Arial,sans-serif;

}
.card-content p {
	color: white ;
	text-align: left ;
	font-size: 12px;
	display: none ;
}
.card-image {
	position: relative;
	height: 400px;
	width: 100%;
	background: #fff;
	/* padding: 3px; */
}

/* Formato blog */
.blog-post {
	padding: 10px;
}


.blog-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 15px;
}
.blog-content h2 {
	font-size: 20px;
	font-weight: 600;
}
.blog-content p {
	color: white ;
	text-align: left ;
}

.swiper-button-next-evo,
.swiper-button-prev-evo {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	width: 35px;
	height: 44px;
	margin-top: -22px;
	z-index: 100000;
	cursor: pointer;
	background-size: 27px 44px;
	background: no-repeat 50%;
	background-color: #ffffff8c ;
	padding: 5px;
}
.swiper-button-next-evo svg,
.swiper-button-prev-evo svg {
	stroke: black ;
}

.swiper-button-prev-evo {
	left: 15px;
}
.swiper-button-next-evo {
	right: 15px;
}
@media screen and (max-width:767px) {
	.card-content h2 {
		font-size: 16px;
	}
	.card-content .description {
		font-size: 12px;
	}
}
