.footer {
    color: rgb(44, 44, 159);
    border-top: 2px solid rgb(44, 44, 159);
    padding: 2rem;
    line-height: 1.6;
}

.content-container {
    margin: auto;
    font-size: .85rem;
}

.content-container p,
.content-container a {
    font-weight: 500;
}

.content-container>div {
    margin-bottom: 1rem;
}

.footer-address,
.footer-socials,
.footer-links {
    padding-top: 1rem;
}

.footer-logo {
    border-bottom: 1px solid rgb(44, 44, 159);
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: rgb(44, 44, 159);
}

.content-container .head {
    font-weight: 700;
}

.footer-social-icons {
    display: flex;
    gap: 30px;
    padding-left: 6px;
}


/************************ Media Queries ***********************/
@media (min-width: 768px) {
    .content-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-logo {
        border-bottom: none;
        border-right: 1px solid rgb(44, 44, 159);
    }

    .footer-address,
    .footer-socials,
    .footer-links {
        padding-left: 4rem;
    }

    .footer-socials {
        border-right: 1px solid rgb(44, 44, 159);
    }

}

@media (min-width: 992px) {
    .content-container {
        grid-template-columns: 1.3fr 1.3fr 1fr 1fr;
    }

    .content-container>div {
        margin-bottom: 0;
    }

    .footer-socials {
        border-right: none;
    }
}