footer {
    box-shadow: 0px 0px 20px rgb(0 0 0 / 30%);
    background-color: white;
    max-width: 100vw;
    margin-top: 2rem;
}

footer .content {
    display: flex;
    flex-wrap: wrap;
    min-height: 250px;
    align-items: center;
    gap: 2rem;
    padding: 2rem 0;
}

footer .logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 300px !important;
    object-fit: contain;
    padding: 2rem 0;
}

footer .logo>img {
    width: 100%;
}

footer .information {
    flex: 3;
    display: flex;
    justify-content: space-evenly;
    gap:2rem;
    flex-wrap: wrap;
    padding: 2rem 0 4rem;
}

footer h6{
    color: var(--rr-blue);
    font-weight: bold;
}
footer a{
    font-size: 13px !important;
    line-height: 24px;
    text-decoration: none !important;
    color: #959595 !important;
    transition: all 0.3s;
    cursor: pointer;
}

footer li{
    list-style: none;
}
footer a:hover{
    color: black ;
}

footer .copyright {
    font-size: 0.7rem;
    color: #959595;
    text-align: center;
    padding: 0.5rem auto;
    border-top: 1px solid #95959580;
}

@media (max-width: 800px) {
    footer .content {
        flex-direction: column;
    }
}