
.boxSwiper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 300px) ;
    /* background: #f1f4fd;*/
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.swiper{
    width: 100%;
}

.slide-container{
    /* max-width: 1120px;*/
    width: 100%;
    /* background-color: gray;*/
    padding: 30px 0;
}

.slide-content{
    padding: 30px 20px;
    margin: 0 40px;
    /* background-color: red;*/
    overflow: hidden;
    border-radius: 25px;
    user-select: none;
}

.tarjeta{
    position: relative;
    /* width: 320px;*/
    /* border-radius: 25px;*/
    background-color: #fff;
}


.image-content, .card-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 10px 14px;*/
    width: 100%;
}

.image-content{
    position: relative;
    row-gap: 5px;
    /* padding: 25px 0;*/
}

.card-content{
    position: absolute;
    bottom: 6px;
}

.card-content a{
    width: 100%;
}

.overlay{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #4070F4;
    border-radius: 25px 25px 0 25px;
}

.overlay::after,
.overlay::before{
    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;
    height: 100%;
    width: 100%;
    background-color: #fff;
    /* padding: 3px;*/
}

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

.name{
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

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

.boxSwiper .boton{
    border: none;
    font-size: 16px;
    color: black;
    padding: 8px 16px;
    width: 100%;
    background-color: white;
    /* border-radius: 6px;*/
    /* margin: 14px;*/
    /* cursor: pointer; */
    transition: all 0.3s ease;
    font-family: 'Botera';
    font-size: 1.3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 3px;
}

/*
.boxSwiper .boton:hover{
    background: #606060;
    color: white;
}
*/
.tarjeta:hover .boton {
    background: #606060;
    color: white;
}

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

.swiper-navBtn:hover{
    color: gray;
}

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

.swiper-button-next{
    right: 6px;
}

.swiper-button-prev{
    left: 6px;
}

.swiper-pagination-bullet{
    background-color: #606060;
    opacity: 1;
}

.swiper-pagination-bullet-active{
    background-color: gray;
}

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