/*==================================================
                Footer
==================================================*/

.site-footer{
    background:#1f1f1f;
    color:#ddd;
    margin-top:70px;
    padding-top:60px;
}

.site-footer .container{
    max-width:1320px;
    margin:auto;
    padding:0 15px;
}

/*==========================
Footer Grid
==========================*/

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1.3fr 1.3fr 1.5fr;
    gap:40px;
}

/*==========================
Widgets
==========================*/

.footer-widget h3{
    color:#fff;
    font-size:22px;
    margin-bottom:20px;
    position:relative;
}

.footer-widget h3::after{
    content:"";
    width:60px;
    height:3px;
    background:#b30000;
    display:block;
    margin-top:8px;
}

.footer-widget ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-widget li{
    margin-bottom:14px;
}

.footer-widget a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-widget a:hover{
    color:#d40000;
    padding-right:8px;
}

/*==========================
About
==========================*/

.footer-about{
    line-height:2.2;
    margin-top:20px;
    color:#bbb;
}

/*==========================
Designer
==========================*/

.designer-card{
    text-align:center;
}

.designer-card img{
    width:140px;
    height:140px;
    object-fit:cover;
    border-radius:50%;
    border:5px solid #b30000;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    margin-bottom:20px;
}

.designer-card h3{
    margin-bottom:10px;
}

.designer-card p{
    color:#bbb;
    line-height:2;
}

/*==========================
Bottom
==========================*/

.footer-bottom{
    margin-top:50px;
    padding:20px 0;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#999;
    font-size:14px;
}

.footer-bottom strong{
    color:#fff;
}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

.footer-grid{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-widget h3::after{
    margin:10px auto 0;
}

.footer-bottom{
    flex-direction:column;
    gap:12px;
    text-align:center;
}

}

.footer-bottom-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.copyright{
    color:#aaa;
}

.designer-credit{
    color:#aaa;
}

.designer-credit a{
    color:#d61f26;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.designer-credit a:hover{
    color:#fff;
}

/*==========================
Footer Logo
==========================*/

.footer-logo{
    margin-bottom:15px;
}

.footer-logo img{
    width:90px;
    height:90px;
    object-fit:contain;
    display:block;
}

.footer-site-title{
    color:#fff;
    font-size:22px;
    font-weight:700;
    margin-bottom:12px;
}

.footer-about{
    color:#ddd;
    line-height:2;
}