.footer{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.top{
    width: 100%;
    display: flex;
    border-top: 3px solid #ff3131;
    background: linear-gradient(to right, #fff, #707070); 
    height: 250px;
    padding: 2% 0;
}

.bottom{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #707070;  
    border-top: 2px solid #ff3131;
    height: 100px;
}

.left{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

.footerLocation{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.left a{
    margin-left: 0.5%;
    text-decoration: none;
    color: #000;
    font-family: verdana;
    font-size: 16px;
    font-weight: bold;
}

.right{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    font-family: verdana;
    font-size: 26px;
    color: #ff3131;
    font-weight: bold;
}

.right ul{
    width: 60%;
    margin: 0;
    padding: 0;
    background-color: #000;
    list-style: none;
    border: 2px solid #ff3131;
    border-radius: 10px;
    margin-top: 3%;
}

.right li{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid #ff3131;
    margin: 3% 0;
}

.right a{
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    transition: color 0.3s;
}

.active{
    color: #ff3131 !important;
}

.right li:hover a{
    color: #ff3131;
}

.right p{
    color: #ff3131;
    font-size: 22px;
    padding: 0.1%;
    margin: 0;
    font-weight: bold;
}

.bottom p{
    width: 60%;
    font-family: verdana;
    font-size: 16px;
    color: #000;
    display: flex;
    justify-content: start;
    align-items: center;
    padding-left: 1%;
}

.left .logo{
    height: 250px;
    width: 250px;
}

.bottom .socials_menu{
    width: 25%;
    display: flex;
    justify-content: end;
    align-items: center;
    height: 100%;
}

.bottom ul{
    display: flex;
    justify-content: end;
    align-items: center;
    list-style: none;
    width: 25%;
}

.bottom ul li{
    width: 20%;
    margin: 0 0.2%;
    padding: 0;
    padding-top: 0;
    padding-bottom: 0;
    cursor: pointer;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

  @media (max-width: 991px) {
    .footer .left{
        display: none;
    }   
    
    .footer .right{
        width: 100%;
    }
    
    .footer .socials_menu{
        display: none;
    }
    
    .footer .bottom p{
        width: 100%;
        justify-content: center;
        align-items: center;
        font-size: 12px;
    }
  }

