footer {
    width: 80%;
    filter: drop-shadow(0 0 50px #00000048);
    padding: 6vh 10%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: white;
    flex-direction: row;
    overflow: hidden;
    z-index: 999;


    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.line-blue-vertical {
    width: 1px;
    height: 12rem;
    background: #000780;
}

#footer-lists-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 30vw;
}

#footer-lists-list > figure {
    margin-right: 1.7rem;
    margin-right: 1.7rem;
}

figcaption {
    color:#000780;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    transition: all 0.2s ease-in-out;
}

figcaption:hover {
    text-shadow: 0 0 15px #00068085;
}

.footer-list {
    list-style: none;
    padding-top: 0.6rem;
}

.footer-list > li {
    padding-top: 0.2rem;
    color:#000780;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.2s ease-in-out;
}

.footer-list > li:hover {
    cursor: pointer;
    text-shadow: 0 0 35px #000780;
}

#after-footer-cr {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 9vh;
    background: rgb(0,6,130);
    background: -moz-linear-gradient(128deg, rgba(0,6,130,1) 0%, rgba(0,4,89,1) 100%);
    background: -webkit-linear-gradient(128deg, rgba(0,6,130,1) 0%, rgba(0,4,89,1) 100%);
    background: linear-gradient(128deg, rgba(0,6,130,1) 0%, rgba(0,4,89,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000682",endColorstr="#000459",GradientType=1);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}


@media only screen and (max-width: 800px) {

    .line-blue-vertical {
        display: none;
    }

    footer > img {
        display: none;
    }

    footer > #footer-lists-list {
        scale: 0.9;
    }

    footer {
        width: 100%;
        padding: 0;
    }

    #footer-lists-list {
        display: flex;
        justify-content: left;
        align-items: left;
        flex-direction: column;
        width: 50%;
        padding: 0px 0px;
    }

    #after-footer-cr {
        text-align: center;
        padding: 3rem 0;
    }
}


@media only screen and (max-width: 1580px) {
    footer > img, .line-blue-vertical {
        display: none;
    }

    #footer-lists-list {
        width: fit-content;
    }

    footer {
        padding: 3rem 0px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}