body{
    min-height: 100vh;
    display: block;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
}

/* Contenedor adentro de el */
.slide-container{
    max-width: 1200;
    width: 100%;
    /* background-color: rgb(255, 255, 255); */
    padding: 20px;
    height: 650px;

}

.slide-content{
    height: 80%;
    margin: 0 40px;
    /* background: linear-gradient(to bottom rgb(104, 54, 54), rgb(234, 216, 216)); */
    /* background-color: rgb(234, 216, 216);  */
    overflow: hidden;
    border-radius: 25px;
}


.card:hover {
    transform: scale(1.1);
    transition: all 600ms;
    background: #5ad93a;
    opacity:0.8;
    box-shadow: 0 0 20px rgb(24, 178, 239);
    
}

.card:hover {
    transform: scale(1.1);
    transition: all 600ms;
    
}
.card {
	image-rendering: auto;
	transition: all 400ms;
	width: 100%;
	height: 100%;
    /* background: #cacbce; */
}

.image-content, .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 0px;
    
}

.image-content{
    position:static;
    row-gap: 5px;
    padding: 35px 0;
    padding-left: 5px;
    padding-right: 5px;
    /* background: rgb(226, 226, 226); */
    
   
}

.overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    /* background-color:rgb(234, 216, 216); */
    border-radius: 20px 20px 0;
}

.overlay::before, .overlay::after{
    /* content: ''; */
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #ffffff;
}
.overlay::after{
   
    border-radius: 0 25px 0 0;
    background-color: #b82626;
}

.card-image{
    position: relative;
    height: 300px;
    width: 300px;
    border-radius: 10%;
    background: #ffffff;
    padding: 0px;
}

.card-image .card-img{
    height: 100%;
    width: 100%;
    object-fit:cover;
    
    border-radius: 10%;
    /* border: 4px solid #4070f4; */
}

.name{
    font-size: 23px;
    font-weight: 500;
    text-align: center;
    color: #212121;

}

.description{
    font-size: 14px;
    color: #000000;
    text-align: center;
}

.swiper-navBtn{
    color: #6E93F7;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover{
    color: #4070F4;
}

.swiper-navBtn::before,.swiper-navBtn::after{
    font-size: 40px;
}

.swiper-button-next{
    right: 0;
}

.swiper-button-prev{
    right: 0;
}
.swiper-pagination.bullet{
        background-color: #6E93F7;
        opacity: 1;
}


.swiper-pagination.bullet.active{
    background-color: #6E93F7;
    opacity: 1;
    box-shadow: 0 0 20px rgb(255, 7, 78);
}

@media screen and (max-width: 768px){
    .slide-content{
        height: 150%;
        margin: 0 40px;
    }
    .swiper-navBtn{
        display: none;
    }
}
