footer {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
}

.partenaires {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    background: white;
    padding: 50px 200px;
    box-sizing: border-box;
}

.partenaires img {
    max-width: 150px;
    max-height: 150px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex: 1;
    width: 100%;
    padding: 150px 100px 20px;
    box-sizing: border-box;
}

.footer-first-line {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 20px;
    width: 100%;
}

.footer-first-line img {
    width: 150px;
    flex: 1;
}

.footer-content {
    font-size: .7em;
    flex: 1;
}

.footer-content ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.footer-content h2 {
    color: var(--text);
    margin-top: 0;
    text-align: left !important;
}

.footer-contact {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    color: var(--text);
    text-decoration: none;
    margin-top: 10px;
    overflow: hidden;
}

.footer-contact::after {
    content: "";
    background: var(--text);
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    transition: transform .2s linear;
}

.footer-contact:hover::after {
    transform: translateX(0);
}

.footer-phone {
    display: block;
    color: white;
    font-weight: bold;
    margin-top: 10px;
}

.footer-book-link {
    display: block;
    width: fit-content;
    background: var(--green-medium);
    color: var(--text);
    padding: 10px 15px;
    border-radius: 20px;
    font-weight: normal;
    font-family: 'Uncial Antiqua', serif;
    margin: 20px auto;
    text-decoration: none;
}

.footer-book-link:hover {
    background: var(--cream);
    color: var(--green-medium);
}

.rs-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 10px;
}