:root {
    --green-900: #001E0A;
    --green-800: #143C14;
    --green-500: #76AD76;
    --green-200: #C5E47D;
    --off-white: #FFF7EE;
    --pale-lemon: #EEF3CB;
    --light-ivory: #FFF7C8;
    --white: #FFFFFF;
    --black: #0E0729;
    --grey: #808080;
}

* {
    box-sizing: border-box;
    font-family: "Aeonik", sans-serif;
}

body {
    margin: 0;
}

.footer-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.footer-container .footer-top-row {
    background-color: var(--green-500);
    padding: 64px 32px 100px 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

@media (max-width: 1024px) {
    .footer-container .footer-top-row .content h3 {
        font-size: 48px!important;
    }
    .footer-container .footer-top-row .content p {
        font-size: 18px!important;
    }
    .footer-container .footer-top-row .image-wrapper {
        width: 150px!important;
    }
    .footer-container .footer-top-row .content {
        max-width: 100%!important;
    }
}

@media (max-width: 767px) {
    .footer-container .footer-top-row {
        padding: 32px 16px 100px 16px;
    }
    .footer-container .footer-top-row .content .ctas-wrapper {
        flex-direction: column;
    }
    .footer-container .footer-top-row .content .ctas-wrapper a {
        width: 100%!important;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-container .footer-top-row .content h3 {
        font-size: 40px!important;
    }
}

.footer-container .footer-top-row .content {
    max-width: 800px;
    text-align: center;
    width: 100%;
}

.footer-container .footer-top-row .content h3 {
    margin-top: 0;
    font-size: 64px;
    margin-bottom: 16px;
    font-weight: bold;
    color: var(--white);
}

.footer-container .footer-top-row .content p {
    font-size: 20px;
    color: var(--white);
}

.footer-container .footer-top-row .content .ctas-wrapper {
    display: flex;
    gap: 20px;
    margin: 20px auto 0 auto;
    justify-content: center;
}

.footer-container .footer-top-row .content a {
    display: flex;
    align-items: center;
    padding: 12px 32px;
    width: fit-content;
    gap: 12px;
    font-size: 18px;
    font-weight: bold;
    height: 100%;
    text-decoration: none;
    border-radius: 12px;
    transition: .2s ease-in-out;
}

.footer-container .footer-top-row .content a.primary {
    background-color: var(--green-800);
    border: 1px solid transparent;
    color: var(--white);
}

.footer-container .footer-top-row .content a.primary:hover {
    background-color: var(--pale-lemon);
    border: 1px solid var(--green-800);
	color: var(--black);
}

.footer-container .footer-top-row .content a.secondary {
    background-color: transparent;
    border: 1px solid var(--green-800);
    color: #fff;
}

.footer-container .footer-top-row .content a.secondary:hover {
    background-color: var(--green-800);
	color: var(--white);
}


.footer-container .footer-top-row .image-wrapper {
    position: absolute;
    bottom: -5px;
    left: 32px;
    width: 240px;
}

.footer-container .footer-top-row .image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
}


/* bottom row  */

.footer-container .footer-bottom-row {
    width: 100%;
    padding: 100px 64px;
    background-color: var(--green-900);
    display: flex;
    flex-direction: column;

}

@media (max-width: 767px) {
    .footer-container .footer-bottom-row {
        padding: 64px 32px!important;
    }
    .footer-container .footer-bottom-row .wrapper .legal-wrapper ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px!important;
    }
}

@media (max-width: 576px) {
    .footer-container .footer-bottom-row .logo {
        width: 100%!important;
        max-width: 250px;
    }
    .footer-container .footer-bottom-row {
        padding: 64px 16px!important;
    }
}

.footer-container .footer-bottom-row .wrapper {
    width: 100%;
    margin: auto;
    max-width: 1200px;
}

.footer-container .footer-bottom-row .logo {
    width: 250px;
    margin: auto;
}

.footer-container .footer-bottom-row .logo img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.footer-container .footer-bottom-row .wrapper .legal-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    color: #fff;
}

.footer-container .footer-bottom-row .wrapper .legal-wrapper ul {
    padding: 0;
    list-style-type: none;
    margin: 0;
    display: flex;
    gap: 40px;
}

.footer-container .footer-bottom-row .wrapper .legal-wrapper ul li {
    color: #fff;
}

.footer-container .footer-bottom-row .wrapper .legal-wrapper ul li a {
    color: #fff;
    text-decoration: none;
    display: flex;
}

.footer-container .footer-bottom-row .wrapper .legal-wrapper ul li a:hover {
    text-decoration: underline;
}

.footer-container .footer-bottom-row .wrapper .separator {
    width: 100%;
    margin: 40px 0;
    background-color: rgba(255, 255, 255, .3);
    height: 1px;
}

.footer-container .footer-bottom-row .wrapper .copyright {
    display: flex;
    justify-content: center;
    width: 100%;
    color: var(--white)
}