#blocs-footer {
    background-color: rgba(175, 172, 172, 0.394);
    min-height: 185px;
    bottom: 0;
}

#rs-container {
    display: flex;
    justify-content: end;
    align-items: end;
    gap: 10px;
    padding: 30px 20px 20px 0;
}

#rs-container a:hover {
    transform: scale(1.3);
    transition: transform 0.5s;
}

.footer-contact ul,
.footer-adress ul {
    list-style-type: none;
    margin: 0;
}

.fa-phone, .fa-envelope, .fa-location-dot {
    margin-right: 8px;
    color: var(--primary-bg-color);
}
.footer-adress ul li:not(:first-child) {
    padding-left: 18px;
}

.fa-brands {
    color: var(--primary-bg-color);
    font-size: 1.2em;
}

#footer-info {
    display: flex;
    justify-content: space-around;
    line-height: 1.5;
    font-size: 12px;
}

#footer-info h3 {
    font-size: 16px;
    padding-bottom: 5px;
}

#myLinks-footer {
    display: none;
}

#myLinks-footer a:hover {
    text-decoration: underline;
}

@media screen and (min-width: 780px) {
    #footer-info h3 {
        font-size: 24px;
    }

    #footer-info {
        font-size: 14px;
    }

    #blocs-footer {
        min-height: 215px;
    }
    #myLinks-footer {
        display: flex;
        flex-direction: column;
    }
    #myLinks-footer a {
        display: flex;
        text-decoration: none;
        color: black;
    }
}

#arrow-up {
    position: fixed;
    display: none;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    bottom: 50px;
    right: 50px;
    background-color: var(--primary-bg-color);
    opacity: 0.8;
    border-radius: 50%;
}

#arrow-up a {
    color: var(--button-text-color);
}

#arrow-up a:hover {
    transform: scale(1.3);
    transition: transform 0.3s;
}