footer {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

footer h1,
h2,
h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 10px 0;
    padding: 0;
}


footer p {
    text-align: justify;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}

footer a:hover {
    color: var(--primary-color-50);
}

.footer-container {
    /* display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap; */
    padding: 20px;
    width: 75%;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.6fr 0.7fr 0.7fr;
    grid-template-rows: 1fr;
    gap: 0px 15px;
    grid-template-areas:
        "footer-left footer-mid footer-right";
}

.footer-left {
    grid-area: footer-left;
}

.footer-mid {
    grid-area: footer-mid;
}

.footer-right {
    grid-area: footer-right;
}

footer::before {
    content: "";
    position: absolute;
    top: -35%;
    left: -45%;
    width: 150%;
    height: 150%;
    background-image: radial-gradient(circle, rgba(244, 117, 181, 1), rgba(251, 169, 142, 1), rgba(0, 0, 0, 0));
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    z-index: -1;
}

.footer-mid {
    display: flex;
    flex-direction: column;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1000px) {

    footer h1,
    h2,
    h3 {
        font-size: 1.2rem;
    }

    footer p {
        font-size: 1.1rem;
    }

    footer a {
        font-size: 1.1rem;
    }

    .footer-container {
        /* display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-wrap: wrap; */
        padding: 20px;
        width: 75%;
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 15px 15px;
        grid-template-areas:
            "footer-left footer-left"
            "footer-mid footer-right";
    }
}