/* Footer */

footer {
    background: #fed061;
    margin-top: 2rem;
    color: #484495;
}

footer a {
    color: #484495;
    border-bottom: 2px solid transparent;
}

footer a:hover, footer a:focus {
    background: #f49645;
    border-color: #484495;
}

footer p {
    margin-bottom: 0;
    z-index: 1;
}

#footer-address {
    padding-top: 1rem;
}

#footer-address p {
    width: 100%;
}

#footer-address p:before {
    content: "\f041";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.15);
    z-index: -1;
    font-size: 11rem;
}

#footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

#footer-links ul {
    flex: 0 0 50%;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#footer-social {
    background: #484495;
}

#footer-social ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
}

#footer-social ul a {
    color: #fff;
}

#footer-social ul a:hover, #footer-social ul a:focus {
    background: transparent;
    color: #ffd060;
}

#footer-charity, #footer-logo {
    background: #f49645;
}

#footer-logo img {
    width: 100%;
}

#footer-logo a, #footer-logo a:hover, #footer-logo a:focus {
    background: transparent;
    border: 0;
}

@media (min-width: 576px) {
    
    #footer-logo img {
        width: 150px;
    }

}

@media (min-width: 768px) {
    
    footer {
        background: linear-gradient(90deg, #fed061 66.666%, #f4973b 66.666%);
    }
    
    #footer-charity, #footer-logo {
        background: transparent;
    }
    
    #footer-address {
        border-top: 0;
        padding-top: 0;
    }
    
}

@media (min-width: 992px) {
    
    #footer-links ul {
        flex: 0 0 25%;
    }

}