/* 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;
}

.slide-container{
  	max-width: 1200px;
  	width: 100%;
  	padding: 40px 0;
	margin-top: 0;
	margin-bottom: 60px;
	align-items: center;
}	
.slide-content{
  	margin: 0 40px;
  	overflow: hidden;
	height: 35vh;
}
.image-content,
.card-content{
  	display: flex;
  	flex-direction: column;
  	align-items: center;
}
.image-content{
  	position: relative;
  	row-gap: 3px;
}
.overlay{
  	position: absolute;
  	left: 0;
  	top: 0;
  	height: 100%;
  	width: 100%;
}
.card {
	background-color: #FFFDF0;
	border: none;
}
.overlay::before,
.overlay::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: -40px;
  height: 40px;
  width: 40px;
}
.overlay::after{
  border-radius: 0 0 0 0;
}
.card-image{ 
  	position: relative;
	width: auto;
}
.card-image .card-img{
  	height: 100%;
  	width: 100%;
  	object-fit: cover;
}
.name{
  	font-size: 17px;
  	font-weight: 400;
  	color: #293C7F;
	margin: 10px 0px 10px 0px;
}

.swiper-navBtn{
  	color: black;
  	transition: black 0.3s ease;
}
.swiper-navBtn:hover{
  	color: black;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
	color: black;
  	font-size: 20px;
}
.swiper-button-next{
	right: 0;
}
.swiper-button-prev{
  	left: 0;
}


@media screen and (max-width: 768px) {
 	.slide-content{
    	margin: 0 10px;
 	}
 	.swiper-navBtn{
    	display: none;
	}
	.slide-container {
		max-height: 45%;
		margin-bottom: 10px;
	}
	.slide-content {
		height: 20%;
	}
	
}
