.seccion-casos .card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #f8fafc;
    background-clip: border-box;
    border: none;
    border-radius: 0.25rem;
}

.seccion-casos .card:hover{
    box-shadow: 5px 5px 20px rgb(0 0 0 / 40%);
    transform: scaleX(1.05) scaleY(1.05)!important;
    transition: transform 300ms ease 0ms;
}

.seccion-casos .card-img, .card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
    height: auto;
    width: 100%;
    object-fit: cover;
}

.seccion-casos .card-body{
    text-align: center;
}

.seccion-casos .card-body .card-title{
    font-family: 'Inter-Bold';
    color: #2E6C89;
    margin-bottom: 0;
}

.seccion-casos .card-footer {
    padding: 0;
    background-color: #f8fafc;
    border-top: none;
    text-align: center;
    padding-bottom: 10%;
}

.seccion-casos .card-footer .btn-primary {
    color: #fff;
    background-color: #083349;
    border-color: #083349;
    font-family: 'Inter-Medium';
    width: 50%;
    border-radius: 3rem;
    padding: 0;
}

.seccion-casos .card-footer .btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #083349;
    border-color: #083349;
}

@media (max-width:767px){

    .seccion-casos .card-body .card-title{
        font-size: small;
    }

}