.footerLogo svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}



.footerStripe {
    position: absolute;
    height: 13px;
    background-color: white;
    top: 30px;
    left: 0;
    width: 100%;
}

.footer {
    background-color: #014421;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 80px 0;
    padding-bottom: 30px;
    overflow: hidden;
    min-height: 350px;
}

.footerLogo {
    width: 400px;
    height: 400px;
    position: absolute;
    top: 100%;
    left: 0;
    transform: translate(-22%,-88%);
}

.footerLinks {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateX(10%);
}

.footerLinks a {
    font-family: 'Roboto', sans-serif;
    color: white;
    text-decoration: unset;
    font-size: 1.3em;
    position: relative;
}

.footerLegal a {
    font-family: 'Roboto', sans-serif;
    color: white;
    font-weight: 300;
    opacity: 0.8;
    text-decoration: unset;
    font-size: 0.9em;
    position: relative;
    margin: 0 15px;
}




a.footerContact {
    font-size: 1.2em;
    text-decoration: unset;
    font-family: 'Roboto', sans-serif;
    color: #014421;
    background-color: white;
    padding: 10px 25px;
    border-radius: 50px;
    transition: all 0.15s ease-in-out;
    outline: 2px solid #014421;
}

.footer a{
    transition: all 0.15s ease-in-out;
}
.footer a:hover{
    opacity:0.8;
}



@media only screen and (max-width:1600px){
    .footerLinks {
    width: 60%;
}

}

@media only screen and (max-width:1100px){
.footerLinks {
    flex-direction: column;
    transform: unset;
    align-items: flex-start;
    width: 90%;
}

.footerLinks a {
    margin: 20px 0;
}
.footerLinks {
    margin-bottom: 50px;
}

.footerLogo {
    width: 300px;
    height: 300px;
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translate(-80%,-50%) scaleX(-1);
}

}

@media only screen and (max-width:600px){
.footerLegal a {
    opacity: 0.8;
    text-decoration: unset;
    font-size: 0.75em;
    position: relative;
    margin: 0 5px;
}

.footerLogo {
    width: 200px;
    height: 200px;
    top: 40%;
}

}