/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');


.equipo{
    background-color: #1278BD;
    color: white;
    padding-bottom: 400px;
}


.card {
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    border: #1278BD;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card .card-image {
    width: 100%;
    max-height: 240px;
    background-size: cover;
}

.card .card-image img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    padding: 0 !important;
}

.card .card-content {
    position: absolute;
    bottom: -240px;
    color: #fff;
    background: #1278BD;
    opacity: 50%;
    backdrop-filter: blur(15px);
    min-height: 240px;
    width: 100%;
    transition: bottom .4s ease-in;
    box-shadow: 0 -10px 10px rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    
}

.card:hover .card-content {
    bottom: 0px;
}

.card:hover .card-content h4,
.card:hover .card-content h5 {
    transform: translateY(10px);
    opacity: 1;
}

.card .card-content h4,
.card .card-content h5 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    transition: 0.8s;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-40px);
    transition-delay: 0.2s;
}

.card .card-content h5 {
    transition: 0.5s;
    font-weight: 200;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.card .card-content .social-icons {
    list-style: none;
    padding: 0;
}


.card .card-content .social-icons li {
    margin: 10px;
    transition: 0.5s;
    transition-delay: calc(0.15s * var(--i));
    transform: translateY(50px);
}


.card:hover .card-content .social-icons li {
    transform: translateY(20px);
}

.card .card-content .social-icons li a {
    color: #fff;
}

.card .card-content .social-icons li a span {
    font-size: 1.3rem;
}

@media(min-width: 991.6px) {
    .responsive-in{
        display: none;
    }
}

@media(max-width: 991.5px) {
    .container {
        margin-top: 20px;
    }


    .card .card-content {
        position: absolute;
        bottom: -300px;
        color: #fff;
        background: #1278BD;
        opacity: 50%;
        backdrop-filter: blur(15px);
        min-height: 300px;
        width: 100%;
        transition: bottom .4s ease-in;
        box-shadow: 0 -10px 10px rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        
    }
}