footer img {
    width: 30%;
    height: auto;
}

footer {
    color: var(--spaceCadet);
    display: flex;
    flex-direction: column;
    /*margin-top: 45px;*/
}

/* Footer */

.solutions, .footer-base {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--platinium);
    color: #212D52;
    padding: 3%;
}

#menu-footer li a {
    line-height: 36px;
}

/* First part */
.solutions a{
    display: flex;
    gap: 10%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: x-large;
    line-height: 5rem;
    flex-basis: 19%;
}

.solutions img{
    width: 40%;
    height: auto;
}
.contact {
    display: flex;
    flex-direction: row;
    font-size: x-large;
    flex: 2;
}

/* 2nd part */
.left-column{
    display: flex;
    flex:1;
    background-color: var(--orangeYellow);
    align-items: center;
    justify-content: center;
    font-style: italic;
    font-size: 1.2em;
    line-height: 50px;
    padding: 5%;
    text-align:left;
    margin: 0;
}

.right-column p:not(.footer-title) {
    color: var(--orangeYellow);
    font-size: 24px;
    margin: 10px 0;
}

.footer-title {
    font-size: 28px;
    text-transform: uppercase;
    font-weight: bold;
    margin: 8px 0;
}

footer svg{
    height: 5%;
}

.right-column {
    flex:2;
    padding: 5% 10% 5% 18%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.right-column h2{
    font-weight: bold;
    font-size: 1.7rem;
    line-height: 0;
}
/* 3rd part */

.footer-base{
    justify-content: space-around;
    gap: 5%;
    padding: 5%;
    padding-top: 3%;
    padding-left: 8%;
}
.footer-base h2{
    font-size: 1.3rem;
}
.subscribe-newsletter{
    flex-basis: 40%;
}
.email-for-newsletter {
    display: flex;
    flex-direction: unset;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

::placeholder, .footer-menu ul {
    color: var(--spaceCadet);
    font-family: var(--fontFamily);
    font-size: medium;
}

.email-for-newsletter input {
    background-color: transparent;
    border: 1px;
    font-family: var(--fontFamily);
    font-size: 20px;
    border-bottom: 1px solid var(--spaceCadet);
    color: var(--spaceCadet);
    width: 50%;
    padding-bottom: 2%;
}

.email-for-newsletter input:focus {
    outline: none;
    border: 1px solid var(--spaceCadet);
}

.inscription-button button {
    font-weight: bold;
    text-transform: none;
}

.accept-cgv {
    position: relative;
    font-size: small;
    overflow-wrap: break-word;
}
.accept-cgv a{
    text-decoration: underline;
    color: #212529;
}

.footer-menu, .find-us, .yellow-buttons{
    flex-basis: 20%;
}
.footer-menu ul{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    padding: 0;
}

.footer-menu a:hover{
    display: inline-block;
}

.footer-menu a:hover{
    color: var(--orangeYellow);
}

.social-media{
    display: flex;
    align-items: center;
    gap: 5%;
}

.find-us{
    display: flex;
    flex-direction: column;
    justify-content:space-around;
    gap: 1rem;

}
.social-media path{
    fill: var(--spaceCadet);
    height: 100px;
}
.social-media svg:hover {
    transform: scale(1.2);
    transition: all .4s ease-in-out;
}
.partenaires{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 4%;
    padding: 10px;
}

.partenaires img{
    object-fit: contain;
    height: 70px;
    width: auto;
}

.yellow-buttons{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.yellow-buttons a{
    display: flex;
    align-items: center;
    gap: 5px;
    background-color: var(--orangeYellow);
    color: white;
    padding: 12px 24px;
}
.yellow-buttons svg{
    height: 1rem;
}
.email-for-newsletter a{
    font-size: medium;
    font-weight: bold;
}

@media screen and (max-width: 1500px) {
    .partenaires{
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 980px) {
    .solutions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 1rem;
        padding: 1rem 10px;
    }

    .solutions a {
        font-size: large;
        line-height: initial;
    }

    .contact, .footer-base{
        display: flex;
        flex-direction: column;
        font-size: small;
    }
    .contact div{
        width: 100%;
    }
    .footer-base, .right-column div{
        align-items: flex-start;
    }
    .email-for-newsletter {
        flex-direction: column;
    }
    .email-for-newsletter input{
        width: 100%;
        padding-bottom: 2%;
    }
    .email-for-newsletter div{
        padding-top: 2%;
    }
    .email-for-newsletter svg{
        width: 20px;
        height: 16px;
    }

    .inscription-button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
    }


    .footer-menu{
        padding: 0;
        margin: 0;
    }
    .right-column{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        gap: 20px;
        padding: 35px 25px;
    }
    .right-column h2{
        font-size: 22px;
    }
    .right-column p{
        font-size: 20px;
    }
    .left-column{
        font-size: 24px;
    }
    .partenaires{
        flex-wrap: nowrap;
    }

    p.center, .yellow-buttons a{
        font-size: 15px;
    }
}
section.prefooter a {
    color: var(--spaceCadet);
}
section.prefooter .blue_button {
	color: var(--platinium) !important;
}
.LienNRV {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 100%;
	background-color: white;
	text-align: center;
	padding-top: 12px;
	padding-bottom: 12px;
}
.LienNRV .LienNRV_texte {
	margin-right: 20px;
}
.LienNRV .LienNRV_lien {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}
.LienNRV .LienNRV_logo {
	width: 180.82px;
	object-fit: contain;
	object-position: center center;
	height: 40px !important;
}