/* Footer */
/* ---------------------------------------------------------- */

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary-color);
    font-family: 'Verdana', sans-serif;
    font-size: 0.9em;
    align-items: center;
    padding: 32px;
    width: 100vw;
}

.copyright {
    padding: 16px;
    text-align: right;
    justify-items: right;
    align-items: right;
    font-family: 'Verdana', sans-serif;
    color: grey;
    font-size: 0.7em !important;
}

.footer-logo {
    height: 140px;
    margin: 16px;
    border: solid 6px var(--secondary-color);
    border-radius: 100%;
}

.footer-heading {
    font-weight: bold;
    color: var(--secondary-color);
    font-size: 2.5em;
}

.footer p {
    color: var(--secondary-color);
    font-weight: bold;
}

.footer a {
    font-size: 1.2em;
}

.footer h1 {
    padding-bottom: 16px;
}

/* Less than 650px */
@media screen and (max-width: 650px) {
    .socials i {
        color: var(--secondary-color);
        margin: 0px 8px 16px 8px;
        font-size: 2em;
    }

    .socials i:hover {
        color: white;
        cursor: pointer;
    }

    .socials {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }

    .footer {
        grid-template-columns: 1fr;
    }

    .footer a:hover {
        color: white;
    }

    .footer-left p {
        text-align: center;
        justify-items: center;
        align-items: center;
        font-size: 0.9em;
    }

    .footer-right {
        text-align: center;
        justify-items: center;
        align-items: center;
        font-size: 0.8em;
    }
}

/* Between 600px and 1000px */
@media screen and (min-width: 650px) and (max-width: 1000px) {
    .socials i {
        color: var(--secondary-color);
        margin: 0px 16px 0px 0px;
        font-size: 2.5em;
    }

    .socials i:hover {
        color: white;
        cursor: pointer;
    }

    .socials {
        display: inline-flex;
        flex-direction: row;
        /* flex-wrap: wrap; */
        align-content: left;
        padding: 0px;
    }

    .footer {
        grid-template-columns: 1fr 1fr;
        padding: 32px 64px;
    }

    .footer-left p {
        text-align: left;
        font-size: 0.9em;
    }

    .footer-left p:hover {
        color: white;
    }

    .footer-right p {
        text-align: right;
        /* justify-items: right; */
        /* align-items: right; */
        font-size: 0.8em;
        padding: 0px;
    }

    .footer-left a:hover {
        color: white;

    }

    .footer-heading {
        text-align: left;
        margin: 16px 0;
    }

    .footer-right {
        text-align: right;
        justify-items: right;
        /* align-items: right; */
        align-content: right;
        font-size: 0.8em;
    }

    .footer-logo {
        height: 200px;
        margin: 16px 0px;
        border: solid 6px var(--secondary-color);
        border-radius: 100%;
    }
}

/* Greater than 1000px */
@media screen and (min-width: 1000px) {
    .socials i {
        color: var(--secondary-color);
        margin: 0px 32px 0px 0px;
        font-size: 2.5em;
    }

    .socials i:hover {
        color: white;
        cursor: pointer;
    }

    .socials {
        display: inline-flex;
        flex-direction: row;
        /* flex-wrap: wrap; */
        align-content: left;
        padding: 0px;
    }

    .footer {
        font-size: 1.2em;
        padding: 64px 160px 64px 160px;
    }

    .footer-right p {
        text-align: right;
        /* justify-items: right; */
        /* align-items: right; */
        font-size: 1em;
        padding: 0px;
        margin-bottom: 16px;
    }

    .footer-right {
        text-align: right;
        justify-items: right;
        /* align-items: right; */
        align-content: right;
        font-size: 0.8em;
    }

    .footer-logo {
        height: 250px;
        margin: 16px 0px;
        border: solid 6px var(--secondary-color);
        border-radius: 100%;
    }

    .footer-heading {
        text-align: left;
        margin: 16px 0;
    }
}