.footer {
    padding: 0 20px;
    color: white;
    text-align: center;
    font-family: "Raleway", sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer > ul.footer_menu {
    margin: 50px 0 10px;
    font-size: 14px;
    padding: 0;
    list-style: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}
.footer > ul.footer_menu li a {
    color: white;
    text-decoration: none;
}
.footer > ul.footer_menu li a:hover,
.footer > ul.footer_menu li a:focus {
    color: #f7964e;
}
.footer .menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    padding: 0;
    margin: 0;
}
.footer .menu ul li {
    position: relative;
}
.footer .menu ul li a {
    display: block;
    letter-spacing: 2px;
    padding: 10px 10px 15px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.5rem;
    position: relative;
    color: white;
}
.footer .menu ul li a:hover,
.footer .menu ul li a:focus {
    color: #f7964e;
}
.footer .menu ul li a:hover svg path,
.footer .menu ul li a:focus svg path{
    fill: #f7964e;
}

.footer .menu.rs {
    display: none;
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 10px 0 0;
}

@media screen and (min-width: 1192px) {
    .footer .menu.rs {
        display: block;
    }
}

.footer .menu.rs ul {
    flex-direction: column;
    gap: 0;
}