@charset "utf-8";
/* CSS Document */

.footer {
    background-color: #14257C;
    padding: 7.6rem 6.5rem;
    border-radius: 2.5rem 2.5rem 0rem 0rem;
}
.footer .logo {
    width: 6.56788rem;
    height: 1.62463rem;
}
.footer .logo img {
    width: 100%;
    height: 100%;
}
.footer .social-media {
    max-width: 17.4375rem;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 2.5rem;

	margin: 20px 0;
}
.footer .social-icon {
    width: 30px;
    height: 30px;
}
.footer .logo-social {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}
.footer .footer-nav .footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4rem;
    margin-bottom: 2rem;
}
.footer .footer-nav .footer-links strong {
    color: #00CCFC;
    font-size: 11px;
    font-family: "Space Grotesk";
}
.footer .footer-nav .footer-links ul {
    list-style: none;
    padding: 0;
    font-size: 11px;
}
.footer .footer-nav .footer-links ul li {
    margin-bottom: 10px;
}
.footer .footer-nav .footer-links li:first-child {
    margin-bottom: 1.5rem;
}
.footer .footer-nav .footer-links ul li a {
    color: white;
    text-decoration: none;
    font-family: "Space Grotesk";
}
.footer .footer-nav .footer-links ul li a:hover {
    text-decoration: underline;
}
.footer .body-copy {
    margin-top: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: white;
}
.footer .body-copy p {
    font-size: 11px;
}

/* Media Queries */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem;
    }
    .footer .logo-social {
        flex-direction: column;

    }

    .footer .footer-nav .footer-links ul {
        padding-left: 0;
    }
    .footer .body-copy {

        margin-top: 1rem;
    }
    .footer .body-copy p {
        margin-bottom: 1rem;
    }
}
