* {
    font-family: "Red Hat Display", sans-serif;
    box-sizing: border-box;
}


.footer-container {
    padding: 100px 64px;
    width: 100%;
    display: flex;
    justify-content: center;
    background: #065397;
}

.footer-container .footer-wrapper {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-container .footer-wrapper .logo {
    max-width: 200px;
    width: 100%;
    height: auto;
}

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

@media (max-width: 767px) {
    .footer-container .footer-wrapper {
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }
    .footer-container {
        padding: 64px 16px!important;
    }
    .footer-container .footer-wrapper .contact-ctas {
        flex-wrap: wrap;
    }
}

.footer-container .footer-wrapper .contact-ctas {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-container .footer-wrapper .contact-ctas a {
    display: flex;
    width: auto;
    gap: 8px;
    align-items: center;
    border: 1px solid transparent;
    padding: 8px 20px;
    background-color: #fff;
    border-radius: 100px;
    color: black;
    text-decoration: none;
    transition:  .2s ease-in-out;
}

.footer-container .footer-wrapper .contact-ctas a:hover {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.footer-container .footer-wrapper .contact-ctas a:hover svg {
    fill: #fff;
    color: #fff;
    stroke: #fff;
}

.footer-container .footer-wrapper .contact-ctas a svg {
    width: 32px;
    min-width: 32px;
    height: 32px;
    fill: black;
    color: black;
    stroke: black;
    max-width: 100%;
    transition: .2s ease-in-out;
}

