.investor-swiper .swiper-slide {
    display: flex;
    justify-content: center;
}

.investor-swiper .card {
    border: none;
    display: grid;
    grid-template-rows: 1fr 1fr;
    height: 100%;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
}

.investor-swiper .card .card-top {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease;
    background-color: #FFFFFF;
    padding: 12px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* hover interaction base state */
    
}

.investor-swiper .card .card-top img {
    /*
    height: 100%;
    width: 100%;
    object-position: center;
    object-fit: contain;
    */
    width: 250px;
    height: auto;
}

.investor-swiper .card-body {
    z-index: 1;
    box-sizing: border-box;
    padding: 20px;
    background: #ffffff;
    max-height: 100%;
    overflow: auto;
    transition: all 0.5s ease;
    /* hover base state */
    
    color: var(--Azul-Hysun, #25355C);
    font-family: Lato, sans-serif;
    line-height: 26px;
}

.investor-swiper .card-body h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: inherit;
    margin-bottom: 20px;
}
.investor-swiper .card-body p {
    font-weight: 400;
    font-size: 16px;
    line-height: inherit;
}

@media(min-width: 768px){
    .investor-swiper .card .card-top {
        transform: translateY(52%);
    }
    .investor-swiper .card-body {
        transform: translateY(-50%);
    }

    .investor-swiper .swiper-slide.swiper-slide-next .card .card-top,
    .investor-swiper .card:hover .card-top {
        transform: translateY(2%);
    }

    .investor-swiper .swiper-slide.swiper-slide-next .card .card-body,
    .investor-swiper .card:hover .card-body {
        transform: translateY(0);
    }
}