.footer {
    width: 100%;
    height: auto;
    background-color: #263238;
    color: white;
    margin: 0 auto;
}

.footerElements {
    padding: 0px 50px;
    padding-top: 40px;
    padding-bottom: 30px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.footerElement1 {
    width: 15%;
    flex: 1;
}

.newsletter {
    font-weight: 400;
    font-size: 14px;
    font-family: var(--font-text);
    margin-top: 40px;
}

.texte {
    line-height: 30px;
    font-size: 14px;
    font-family: var(--font-text);
}

.title {
    padding: 20px 0px;
}

.support {
    flex: 1.5;
    margin-left: auto;
}

.menu {
    flex: 1;
    /* margin-left: auto; */
}

.contact {
    flex: 1;
}

.nav ul li :link {

    font-size: 14px;
    font-family: var(--font-text);
    line-height: 2rem;
}

.tel {
    font-size: 13px;
    font-family: var(--font-text);
    text-align: justify;
}

.compte {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.rsIcon {
    width: 30px;
    height: 30px;
    align-self: flex-end;
}

.ligneHorizontal {
    border: 1px solid #FFFFFF40;
    position: relative;
    bottom: 10px;
}

.copyright {
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright .texte {
    font-size: 13px;
    font-family: var(--font-text);
    text-align: center;
}

.form {
    display: flex;
    justify-content: start;
    align-items: center;
}

.inputContainer {
    display: flex;
    align-items: center;
    font-size: 10px;
    color: black;
}

.emailInput {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    margin-right: 10px;
    width: 200px;
}

.submitButton {
    background-color: #FFD700;
    /* Jaune doré */
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.submitButton svg {
    color: white;
    font-size: 20px;
}

.submitButton:hover {
    background-color: #fbb800;
    /* Couleur hover */
}