/* Footer */
footer {
    background-color: #2c292f;
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 2%;
    max-width: 1300px;
    margin: auto;
    padding: 50px 90px;
}

.footer h2 {
    font-weight: 400;
    margin-bottom: 15px;
}

.footer h3 {
    font-size: 22px;
    font-weight: 400;
    color: #777;
    margin-bottom: 15px;
}

.footer p, .footer nobr {
    color: #ccc;
    font-size: 18px;
    padding-bottom: 20px;
}

.footer a {
    color: #c5a437;
}

.footer .fa {
    color: #ccc;
    font-size: 20px!important;
    padding-right: 10px;
}

.footer-copyright {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-copyright-items {
    padding: 20px 0;
    width: 90%;
    max-width: 1130px;
    margin: auto;
    display: grid;
    grid-template-columns: 87% 1fr;
}

.footer-copyright-items .copyright {
    margin-bottom: 20px;
}

.footer-copyright-items p {
    color: #ccc;
    font-size: 18px;
    font-weight: 200;
}

.footer-copyright-items a {
    color: #c5a437;
    font-size: 18px;
    font-weight: 200;
}

/* Footer Social */

.footer-copyright-items .social {
    width: min-content;
    list-style-type: none;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.footer-copyright-items .social li {
    padding-right: 40px;
}

.footer-copyright-items .social .fa {
    color: #ccc;
}

.footer-copyright-items .social li:last-child  {
    padding-right: 0px;
}

@media(max-width: 880px) {
    .footer {
        display: block;
        width: 90%;
        padding: 50px 0;
    }

    .footer-item {
        margin-bottom: 40px;
    }

    .footer-item:last-child  {
        margin-bottom: 0px;
    }

    .footer p, .footer nobr {
        padding-bottom: 10px;
    }

    .footer-copyright-items {
        display: block;
        text-align: center;
    }

    .footer-copyright-items .social {
        margin: auto;
    }
}