footer {
    border-top: 1px solid var(--delfiMediumGrey);
    min-height: 424px;
    padding: 60px 0 0;
}
footer .first-section,
footer .second-section {
    justify-content: space-between;
}
footer li a, footer p {
    font-size: 15px;
    line-height: 133%;
    color: var(--delfiDarkGrey) !important;
    text-decoration: none !important;
}
/*******FOOTER FIRST SECTION*******/
footer .first-section {
    min-height: 260px;
}
footer .footer-links {
    padding: 10px;
}
footer li {
    list-style: none;
    margin-top: 24px;
    cursor: pointer;
}
footer li a {
    transition: color 0.2s ease-in-out;
}
footer h6, footer li a:hover {
    color: var(--delfiBlack) !important;
}
footer h6 {
    font-size: 17px;
    line-height: 118%;
}
.footer-logo {
    margin-bottom: 36px;
}
.app-store-btns a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    border: 1px solid var(--footerAppStoreBorder);
    border-radius: 4px;
    width: 135px;
    height: 40px;
}

/*******FOOTER SECOND SECTION*******/
footer .second-section {
    min-height: 104px;
    margin-right: 2px;
}
/*Socials transition*/
.social:hover > svg > path {
    transition: all 0.5s ease;
}
footer svg:hover > path {
    fill: var(--delfiBlack);
}

@media screen and (max-width: 991px) {
    footer .first-section {
        flex-direction: column;
    }
    footer .footer-links {
        padding: 10px 10px 10px 0;
        margin-top: 50px;
    }
}

@media screen and (max-width: 578px) {
    .app-store-btns {
        flex-wrap: wrap;
    }
    .app-store-btns a {
        margin-bottom: 24px;
    }
    .footer-links {
        margin-top: 36px !important;
    }
    .second-section {
        margin-top: 50px;
        flex-direction: column-reverse;
    }
    .second-section p {
        margin-bottom: 50px !important;
        margin-top: 50px;
    }
    footer svg {
        margin-left: 0;
    }
    footer .social:last-of-type svg {
        margin-right: 0;
    }
}