/* Importing Google Fonts: Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');

* {
    font-family: "Inter", sans-serif;
}
/*body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(#f7f9ff, #cfd6fb);
}*/
.ancho {
    width: 90%;
}

.card-wrapper {
    max-width: 1100px;
    margin: 0 auto 25px;
    padding: 20px 10px;
    overflow: hidden;
}

.card-list .card-item {
    list-style: none;
}
.card-list .card-item .card-link {
    max-width: 300px;
    user-select: none;
    display: block;
    padding: 0 10px;
    background-color: #fff;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.4);
}
.card-list .card-item .card-link:active {
    cursor: grabbing;
}
.card-list .card-item .card-link:hover {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.6);
}

.card-list .card-link .card-image {
    width: 100%;
    /* Define la proporción entre el alto y el ancho de un a imagen
    aspect-ratio: 9 / 16;*/
    object-fit: cover;
    border-radius: 10px;
}

/* Title and button styles... (It was not designed on this page...)
.card-list .card-link .card-title {
    font-size: 1.19rem;
    color: #000;
    font-weight: 600;
}
.card-list .card-link .card-button {
    height: 35px;           width: 35px;
    color: #f07253;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;       cursor: pointer;
    border: 2px solid #5372f0;
    transform: rotate(-45deg);
    transition: 0.4s ease;
}
.card-list .card-link:hover .card-button {
    color: #fff;
    background: #5372f0;
}*/

/* Bullets and buttons */
.card-wrapper .swiper-pagination-bullet {
    height: 13px;           width: 13px;
    opacity: 0.5;           background-color: #5372f0;
}

/* Define la nitidez de los bullets */
.card-wrapper .swiper-pagination-bullet-active {
    opacity: 1;
}

.card-wrapper .swiper-slider-button {
    margin-top: -35px;
    color: #fff;
    background-color: #5372f022;
    border-radius: 8px;
    width: 40px;
    height: 60px;
}
.card-wrapper .swiper-slider-button:hover {
    background-color: #5372f077;
}

/* Let´s hide the swiper slide buttons on small devices */
@media screen and (max-width: 1025px) {
    .ancho {
        width: 100%;
    }
    .card-wrapper {
        width: 90%;
    }
}
