footer {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
}

.partenaires {
    width: 100%;
    background: white;
    padding: 50px 0;
    box-sizing: border-box;
}

.carrousel-wrapper {
    width: 60%;
    margin: 0 auto;
    overflow: hidden;
}

.carrousel {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: max-content;
    min-width: 100%;
}

.carrousel a {
    flex: 0 0 auto;
}

.carrousel img {
    max-width: 150px;
    max-height: 150px;
}

.carrousel-wrapper.is-active .carrousel {
    justify-content: flex-start;
    min-width: max-content;
}

.carrousel-wrapper.is-paused .carrousel {
    cursor: default;
}

.carrousel-wrapper:not(.is-active) .carrousel {
    width: 100%;
}

.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;
    margin-right: 50px;
}

.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;
    font-weight: bold;
}

.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-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;
}

.footer-bottom-line {
    font-size: .7em;
    text-align: center;
}

.footer-bottom-line a {
    color: var(--cream);
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom-line a:hover {
    color: white;
}
