footer#footer {
    padding-top: 35vh;
    padding-bottom: 15vh;
    background-color: rgb(247, 240, 229);
}

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

.kdBanner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 90px;
}

.footerLogo {
    display: block;
    width: 70%;
    height: 100%;
    margin: 0 auto;
    margin-bottom: 30vh;
}

.footerContent {
    text-align: center;
}

.footerContent svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footerNav a {
    text-decoration: none;
    font-family: 'Din Pro';
    font-weight: 500;
    font-size: 0.9em;
    color: rgb(103, 113, 87);
    margin-right: 75px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.footerNav a:hover {
    transform: scale(1.1);
}

.footerNav a:last-of-type {
    margin-right: 0;
}

.footerNav {
    margin-bottom: 50px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footerText p {
    margin: 0;
    font-family: 'Din Pro';
    font-weight: 500;
    font-size: 1.3em;
    color: rgb(103, 113, 87);
    margin-bottom: 5px;
}

.footerText p:last-of-type {
    margin-bottom: 0;
}

.footerText {
    margin-bottom: 50px;
}

.footerMedia a {
    width: 50px;
    border: 1px solid rgb(103, 113, 87);
    border-radius: 50%;
    height: 50px;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-right: 30px;
}

.footerMedia {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 50px;
}

.footerMedia a:last-of-type {
    margin-right: 0;
}

.footerLegales {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.footerLegales a {
    text-decoration: none;
    font-family: 'Din Pro';
    font-weight: 700;
    font-size: 0.9em;
    color: rgb(103, 113, 87);
    margin-right: 25px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.footerLegales a:hover {
    transform: scale(1.1);
}

.footerLegales a:last-of-type {
    margin-right: 0;
}

@media only screen and (max-width: 1200px) {
    .footerLogo {
        width: 550px;
    }
    .footerText p {
        font-size: 1em;
    }
}

@media only screen and (max-width: 1000px) {
    footer#footer {
        padding: 0 7%;
        padding-top: 25vh;
        padding-bottom: 10vh;
    }
}

@media only screen and (max-width: 800px) {
    footer#footer {
        padding: 0 7%;
        padding-top: 15vh;
        padding-bottom: 6vh;
    }
    .footerLogo {
        width: 450px;
        height: 100%;
        margin: 0 auto;
        margin-bottom: 20vh;
    }
    .footerNav, .footerText, .footerMedia {
        margin-bottom: 30px;
    }
    .footerNav a {
        margin-right: 30px;
    }
    .footerText p {
        font-size: 0.9em;
    }
    .footerMedia a {
        width: 40px;
        height: 40px;
        padding: 12px;
    }
    .footerLegales a {
        margin-right: 15px;
    }
    .footerNav a:last-of-type, .footerMedia a:last-of-type, .footerLegales a:last-of-type {
        margin-right: 0;
    }
}

@media only screen and (max-width: 600px) {
    footer#footer {
        padding: 0 20px;
        padding-top: 10vh;
        padding-bottom: 5vh;
    }
    .footerLogo {
        width: 80%;
        margin-bottom: 10vh;
    }
    .footerNav a, .footerLegales a, .footerText p {
        font-size: 0.8em;
    }
    .footerLegales, .footerNav {
        flex-direction: column;
    }
    .footerLegales a, .footerNav a {
        margin-right: 0;
        margin-bottom: 5px;
    }
}