.restaurant-footer{

background:#171717;
color:#fff;
direction:rtl;
font-family:Vazirmatn;
margin-top:80px;

}

.footer-top{

max-width:1300px;
margin:auto;
display:grid;
grid-template-columns:2fr 1fr 1fr 1fr;
gap:50px;
padding:80px 20px;

}

.footer-logo img{

width:140px;
margin-bottom:20px;

}

.footer-logo p{

color:#bbb;
line-height:2;

}

.socials{

display:flex;
gap:15px;
margin-top:25px;

}

.socials a{

width:45px;
height:45px;
background:#252525;
display:flex;
justify-content:center;
align-items:center;
border-radius:50%;
font-size:20px;
color:#fff;
transition:.4s;

}

.socials a:hover{

background:#ff3d00;
transform:translateY(-5px);

}

.footer-box h3{

margin-bottom:25px;
font-size:24px;
color:#fff;

}

.footer-box ul{

list-style:none;
padding:0;

}

.footer-box li{

margin-bottom:14px;

}

.footer-box a{

text-decoration:none;
color:#bbb;
transition:.3s;

}

.footer-box a:hover{

color:#ff3d00;
padding-right:8px;

}

.footer-box p{

margin-bottom:12px;
color:#bbb;
line-height:2;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.1);
padding:25px;
display:flex;
justify-content:space-between;
align-items:center;
max-width:1300px;
margin:auto;

}

#goTop{

width:50px;
height:50px;
border:none;
background:#ff3d00;
color:#fff;
font-size:22px;
border-radius:50%;
cursor:pointer;
transition:.4s;

}

#goTop:hover{

transform:translateY(-6px);

}

@media(max-width:991px){

.footer-top{

grid-template-columns:1fr 1fr;

}

}

@media(max-width:650px){

.footer-top{

grid-template-columns:1fr;
text-align:center;

}

.socials{

justify-content:center;

}

.footer-bottom{

flex-direction:column;
gap:20px;

}

}