/* ===== GENERAL DESIGN OF THE FOOTER ===== */
footer {
    height: 450px;
    width: 100%;
}

.div_footer {
    width: 100%;
    height: 100%;
    transition: all 0.5s;
}

/* ==== FIRST PART OF FOOTER ====== */
#first_footer {
    height: 89%;
    font-weight: 300;
    max-width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-left: auto;
    margin-right: auto;
}

/* ----- LINKS PART OF FOOTER ----- */
#footer_useful_links {
    max-width: 250px;
    width: 30%;
    text-align: justify;
}

#footer_useful_links a {
    text-decoration: none;
    color: rgb(100, 100, 100);
    line-height: 1.5;
}

#footer_useful_links span {
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    color: rgb(50, 50, 50);
    padding: 10px;
}

/* ---- CALL AND URGENT PART OF FOOTER ----- */
#call_urgent {
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 30%;
}

#call_urgent a {
    text-decoration: none;
    padding: 16px 12px;
    margin: 30px 5px;
    color: white;
    background: rgba(0, 153, 51, 0.6);
    border-radius: 25px;
    filter: brightness(100%);
    font-weight: 400;
    font-size: 17px;
    width: 60%;
    min-width: 120px;
    max-width: 250px;
    transition: filter 0.5s;
    margin-left: auto;
    margin-right: auto;
}

#call_urgent a:hover {
    filter: brightness(130%);
    transition: filter 0.5s;
}

/* ----- SCHEDULE REMINDER ----- */
#footer_schedule {
    display: flex;
    flex-direction: column;
    color: rgb(100, 100, 100);
}

#footer_schedule:not(.schedule_title) {
    text-align: center;
}

#schedule_title {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    color: rgb(50, 50, 50);
}

/* ===== SECOND PART OF FOOTER ===== */
#copyrights {
    height: 11%;
    background: rgba(50, 50, 50, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#copyrights a {
    border-bottom: 1px solid rgb(230, 230, 230);
    color: white;
    font-weight: 400;
}

#copyrights span {
    font-size: 14px;
    white-space: nowrap;
}