.card .img-bg {
    border-radius: .25rem;
}

.card.hide-content > ::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
    border-radius: .25rem;
    z-index: 0;
    transition: .2s;
}

.card.hide-content:hover > ::after {
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%), #0b33479d;
}

.card.hide-content > a:hover {
    text-decoration: none !important;
}

.card.hide-content * {
    z-index: 1;
}

.card.hide-content .card-content .head, .card.hide-content .card-content .body {
    position: absolute;
    bottom: 0;
    left: 0;
    transition: .2s;
}

.card.hide-content:hover .card-content .head {
    opacity: 0;
    transition: .5s;
}

.card.hide-content .card-content .body {
    opacity: 0;
    transition: .5s;
}

.card.hide-content:hover .card-content .body {
    opacity: 1;
}

.card.hide-content .card-content .head * {
    margin: 0;
    padding: 10px;
}

.card.hide-content h4 {
    color: white;
    padding: 0 10px 0 10px;
}

.card.hide-content span.title-divider-l {
    margin: 0 10px 10px 10px;
}

.card.hide-content p {
    color: white;
    padding: 0 10px 10px 10px;
    text-overflow: ellipsis;
}




.card.proyecto {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 200px;
}

.card.proyecto img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card.proyecto .card-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}





/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {  
 
}
 
/* Medium devices (tablets, 768px and up) The navbar toggle appears at this breakpoint */
@media (max-width: 992px) {  
    .card.hide-content {
        min-height: 300px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) { 
    .card.hide-content {
        min-height: 350px;
    }
}
 
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {  
    .card.hide-content {
        min-height: 400px;
    }
}


.owl-nav {
    display: flex;
    justify-content: center;
}

.owl-nav button span {
    font-size: 24px;
    font-weight: bolder;
    margin: 0 10px 0 10px;
    color: #0d4c6e;
}

.owl-nav button {
    background: rgba(13, 76, 110, .2) !important;
    margin: 10px;
    transition: .2s;
}

.owl-nav button:hover {
    background: rgba(13, 76, 110, .3) !important;
}

.owl-nav button:focus {
    background: rgba(13, 76, 110, .4) !important;
}