.bg-home {
    position: relative;
    z-index: 100;
    min-height: calc(100vh - 120px);
    background-size: cover;
    background-image: url('../assets/img/banv2.jpg');
    background-position: center;
    display: flex;
    align-items: center;
}


.filter-img {
    position: absolute;
    z-index: 1;
    opacity: 0;
    color: white;
    font-size: clamp(1.5rem, 3vw, 5rem);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-img:hover {
    opacity: 1;
    transition: all 0.2s ease-in;
}

.filter-img.filter-1:hover {
    /* background-color: #3A37AD; */
    background-color: var(--color-azul-oscuro);
    opacity: 75%;
}

.filter-img.filter-2:hover {
    /* background-color: #001489; */
    background-color: var(--color-morado);
    opacity: 75%;
}

.logo {
    width: 300px;
}

.section-info-general {
    gap: 6em;
}

.section-info-general p{
    font-size: 24px;
}

.content-img-edu {
    gap: 1em;
}

/*Underline*/

.underline-card {
    position: relative;
    font-size: clamp(24px, 2vw, 26px);
    z-index: 1;
}

/* .underline-card::before {
    position: absolute;
    content: '';
    left: 0;
    background-color: yellow;
    z-index: -1;
    height: 20px;
    top: 150px;
    
} */

/* background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 300 12" xmlns="http://www.w3.org/2000/svg"><path d="M0 6 Q15 0, 30 6 T60 6 T90 6 T120 6 T150 6 T180 6 T210 6 T240 6 T270 6 T300 6" stroke="yellow" fill="none" stroke-width="8"/></svg>') no-repeat; */
    /* background-size: 100% 12px; */

.underline-card::after {
    content: '';
    position: absolute;
    background-color: yellow;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 7px;
    z-index: -1;
}

/*Underline*/

/*Contact*/

.card-contact h3{
    font-size: 28px;
}

.card-contact{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1em;
}

.card-contact i{
    font-size: 1.5em;
}


.card-contact a:hover::before {
    content: "[";
    left: -5px;
}

.card-contact a:hover::after {
    content: "]";
    right: -5px;
}


/*Contact*/





@media screen and (max-width: 1280px) {

    .filter-img {
        position: absolute;
        opacity: 1;
        bottom: 0;
        /* height: fit-content; */
    }

    .filter-img:hover {
        filter: none;
    }

    .filter-img.filter-1 {
        /* background-color: #3A37AD; */
        background-color: #0037AA;
        opacity: 75%;
    }

    .filter-img.filter-2 {
        /* background-color: #001489; */
        background-color: #550096;
        opacity: 75%;
    }

    .logo {
        width: 150px;
    }

    .section-info-general {
        gap: 1em;
    }

    .section-info-general p{
        font-size: 18px;
    }

    .card-contact h3{
        font-size: 22px;
    }


}

@media screen and (max-width: 768px) {
    .content-img-edu {
        gap: 0.5em;
    }

    .content-img-edu {
        gap: 0.5em;
    }
}