footer{
background: #9ed9df;
}

footer .container {
    width: 300px;
}

@media (min-width:450px) {
    footer .container {width: 350px; }   
}

@media (min-width:550px) {
    footer .container {width: 400px; }   
}

@media (min-width:650px) {
    footer .container {width: 450px; }   
}

@media (min-width:651px) {
    footer .container {width: 100%; }   
}
footer #iconesRS a {
    background: #fff;
    color: #FF4F9D;
    display: block;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: .5s;
}

footer #iconesRS a:hover {
    background-color: #FF4F9D;
    color: #fff;
    transform: translateY(-10px);
    transition: .1s;
}

footer #iconesRS svg {
    width: 25px
}




footer h6 {
    font-size: 18px;
    color: #7e7e7e;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}

footer h6::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #FF4F9D;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

footer #navigation a {
    text-decoration: none ;
    color: #817d7e;
    text-transform: capitalize;
    transition: all 0.3s ease;
    font-size: 16px;
}

footer #navigation a:hover {
    font-weight: 500;
    letter-spacing: .3px;
    padding-left: 8px;
    font-size: 16.5px;
    color: #7e7e7e;
}

footer #navigation svg {
    width: 26px;
}




/* Boite aux lettres */
footer .boiteAuxLettres {
    display: flex;
}

footer .boiteAuxLettres input {
    background: #2E2E2E;
    border: 1px solid #2E2E2E;
    color: #fff;
    border-radius: 5px 0 0 5px;
}

footer .boiteAuxLettres input:focus-visible  {
    outline: none!important;
}

footer .boiteAuxLettres button {
    background: #FF4F9D;
    border: unset;
    border-radius: 0 5px 5px 0;
}

footer .boiteAuxLettres button svg {
    color: #fff;
    width: 30px;
    rotate: 43deg;
}