.footer {
    display: flex;
    flex-direction: column;
    height: auto;
}

.footer-contact {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
/*    background-color: #3494BA; */
	background-color: #75BDA7;
    padding: 1rem 1rem;
    height: auto;
	min-height: 100px;
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    width:50%;
	margin: 0 0 0 20%;
}

.footer-titles {
    font-size: clamp(2rem, 2vw + 0.5rem, 2rem);
    font-weight: bold;
    color: white;
}

.footer-subtitle {
    font-size: clamp(1rem, 1vw + 0.5rem, 1rem);
    color: white;
}

.footer-contact-btn {   
    display: flex;
    justify-content: center;
    align-items: center;
	padding: 1rem 1rem;
    width: 20%;
    height: auto;
    margin: 1rem;
}

.footer-contact-cta {
    font-size: clamp(1rem, 2vw + 0.5rem, 1rem);
    font-weight: bold;
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
/*    color: #3494BA; */
    color: #75BDA7;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.footer-contact-cta:hover {
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    align-items: center;
}

.footer-bottom-cat {
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 5%;
}

.footer-h3 {
/*    color: #3494BA; */
    color: #75BDA7;
    font-size: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    padding: 0.3rem 0;
}

.footer-li {
    text-decoration: none;
    font-size: 1rem;
    color: black;
}