footer {
    margin-left: 13%;
    margin-right: 13%;
}

@media (min-width: 40.625em) {   /* 650px */
    footer {
        margin-left: 5%;
        margin-right: 5%;
    }
}

@media (min-width: 62.5em) {   /* 1000px */
    footer {
        margin-left: 13%;
        margin-right: 13%;
    }
}

/* Footer top start */
.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top section {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-bottom: 2.5rem;
}

.footer-top section h6 {
    color: rgb(0, 168, 107);
    line-height: 2.25rem;
    letter-spacing: 0.0625rem;

    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.footer-top section a
.footer-top section p {
    color: black;
    line-height: 1.625rem;

    font-size: 0.9375rem;
    font-weight: 400;
}

.footer-top section a:hover,
.footer-top section p:hover {
    color: rgb(0,168,107);
    cursor: pointer;
}

@media (min-width: 40.625em) {   /* 650px */
    .footer-top {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        justify-content: space-between;

        margin-left: auto;
        margin-right: auto;
    }

    .footer-top section {
        align-items: start;
    }

    .footer-top section a,
    .footer-top section p {
        margin-bottom: 0.5rem;
    }
}
/* Footer top end */

/* Footer bottom start */
.footer-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;

    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.footer-bottom .footer-bottom-left {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom .footer-bottom-left img {
    border-radius: 50%;
}

.footer-bottom p {
    color: black;
    font-size: 0.9375rem;
}

@media (min-width: 62.5em) {   /* 1000px */
    .footer-bottom p {
        font-size: 1rem;
    }
}
/* Footer bottom end */