.footer {
    position: relative;
    background-color: #410000;
    padding: 40px 0 60px 0;
    height: fit-content;
    margin-top: 5%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    direction: rtl;
}

.footerList {
    display: flex;
    justify-content: right;
    align-items: center;
    width: 40%;
    height: 300px;
    /* background-color: aqua; */
    gap: 20px;
}

.categoriesList {
    display: flex;
    flex-direction: column;
    border-left: 2px solid white;
    gap: 25px;
    padding-left: 50px;
}

.categoriesList2 {
    border-left: none;
    padding-left: 0;
    padding-right: 50px;
}

.categoriesList a {
    font-size: 20px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 14%;
    align-items: center;
}

.socials i {
    color: white;
    font-size: 35px;
}

.bottomFooter {
    /* background-color: #4e0000; */
    background-color: rgb(43, 43, 43);
    width: 100%;
    height: fit-content;
    padding: 10px 5% 10px 5%;
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20%;
    direction: ltr;
}

.bottomFooter p {
    color: white;
    font-weight: 600;
}

.bottomFooter p>a {
    color: white;
}

.footer a {
    margin: 0;
    color: white;
    font-weight: 800;
}

@media screen and (min-width: 851px) and (max-width: 1200px){
    .footerList{
        margin-left: 10%;
    }
}

@media screen and (max-width: 850px){

    .footer{
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }

    .footerList{
        width: 100%;
        justify-content: center;
        align-items: center;
    }

    .categoriesList{
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        margin-left: -1vw;
    }

    .categoriesList a{
        font-size: 1rem;
    }

    .socials{
        justify-content: center;
        gap: 50px;
    }

    .bottomFooter {
        font-size: 0.8rem;
    }

}