.footer{

    background:#111;

    color:#fff;

    margin-top:60px;

}

.footer-container{

    max-width:1200px;

    margin:auto;

    padding:60px 20px;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:40px;

}

.footer-logo{

    text-align:center;

}

.footer-logo img{

    width:90px;

    margin-bottom:15px;

}

.footer-logo h2{

    font-size:30px;

    margin-bottom:10px;

}

.footer-slogan{

    color:#f4c542;

    font-size:15px;

    font-weight:bold;

    margin-top:10px;

}

.footer-about p{

    color:#ccc;

    line-height:2.1;

    text-align:justify;

}

.footer-contact h3,
.footer-hours h3{

    font-size:20px;

    margin-bottom:18px;

}

.footer-contact p,
.footer-hours p{

    color:#ddd;

    line-height:2;

}

.footer-social{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-top:15px;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#1d1d1d;

    border:1px solid #333;

    border-radius:50%;

    transition:.3s;

}

.footer-social img{

    width:22px;

    height:22px;

    filter:invert(1);

}

.footer-social a:nth-child(1):hover{

    background:#E1306C;

    transform:translateY(-4px);

}

.footer-social a:nth-child(2):hover{

    background:#229ED9;

    transform:translateY(-4px);

}

.footer-social a:nth-child(3):hover{

    background:#25D366;

    transform:translateY(-4px);

}

.footer-bottom{

    border-top:1px solid #2a2a2a;

    margin-top:20px;

    padding:20px;

    text-align:center;

    color:#999;

    font-size:14px;

}

.footer-bottom p{

    margin:0;

}

@media(max-width:768px){

.footer{

    text-align:center;

}

.footer-container{

    grid-template-columns:1fr;

    gap:35px;

}

.footer-about p{

    text-align:center;

}

}