.footer {
    display: flex;
    flex-direction: row;
    background-color: #7eb056;
    justify-content: center;
    padding: 2% 0;
    margin-top: 10vh;
}

.footerLogo a{
    display:block;
    width:100%;
    height:100%;
}
.footerSVGIcon svg {
    width: 100%;
    height: 100%;
}

.footerSVGIcon {
    width: 30px;
    height: 30px;
}

.leftFooter>div {
    display: flex;
    flex-direction: row;
}

.leftFooter p {
    font-family: 'General Sans';
    color: white;
    margin: 0;
    font-size: 1.1em;
}


.leftFooter {
    width: 40%;
}

.rightFooter {
    width: 40%;
    display: flex;
    flex-direction: row;
    padding-top: 5vh;
}

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

.footerLogo {
    width: 54%;
}

.leftFooter {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.footerSVGIcon {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.plannet a {
    width: 100%;
    font-size: 0.7em;
    text-decoration: unset;
    color: black;
    font-family: 'General Sans';
    font-weight: 600;
    text-align: center;
    display: block;
    padding: 0.5em 0;
}

.rightFooterMenu>p, .rightFooterAbout>p {
    color: white;
    font-family: 'General Sans';
    font-size: 1.2em;
    font-weight: 300;
}

.rightFooterMenuInner, .rightFooterAboutInner {
    display: flex;
    flex-direction: column;
}

.rightFooterMenuInner a, .rightFooterAboutInner a {
    color: white;
    text-decoration: unset;
    font-family: 'General Sans';
    font-size: 1.1em;
}

.rightFooterMenu {
    padding-right: 8vh;
}

@media only screen and (max-width:900px){
html body .footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
html body .leftFooter {
    justify-content: center;
    align-items: center;
}
html body .rightFooter {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
html body .rightFooterMenu {
    padding-right: unset;
    text-align: center;
}
html body .rightFooterAbout {
    text-align: center;
    margin-top: 6vh;
}
}

@media only screen and (max-width:550px){
    html body .leftFooter {
    width: 100%;
}
html body .rightFooter {
    width: 60%;
    margin-bottom: 6vh;
}
}