/* ==========================
   FOOTER
========================== */

.footer{
    background:#4aa7c8;
    padding:40px 25px;
    font-family:'Poppins',sans-serif;
}

.footer-container{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

/* ==========================
   LOGO
========================== */

.footer-logo{
    flex:1;
    text-align:center;
}

.footer-logo img{
    width:180px;
    max-width:100%;
    background:#fff;
    border-radius:4px;
}

/* ==========================
   BANNER
========================== */

.footer-banner{
    flex:2;
    text-align:center;
}

.footer-banner img{
    width:100%;
    max-width:740px;
    display:block;
    margin:auto;
}

.footer-copyright{
    margin-top:15px;
    color:#fff;
    font-size:16px;
    font-weight:500;
}

/* ==========================
   ADDRESS
========================== */

.footer-info{
    flex:1;
    color:#fff;
}

.footer-info h3{
    margin-bottom:20px;
    font-size:32px;
    font-weight:600;
}

.footer-info p{
    font-size:18px;
    line-height:2;
    margin-bottom:25px;
}

/* ==========================
   SOCIAL LINKS
========================== */

.footer-social{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
}

.footer-social a{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    border:2px solid rgba(255,255,255,.35);
    border-radius:50%;
    transition:.3s ease;
}

.footer-social a:hover{
    background:#fff;
    color:#4aa7c8;
    transform:translateY(-4px);
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .footer-container{
        flex-direction:column;
        text-align:center;
        gap:35px;
    }

    .footer-info{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-info h3{
        font-size:28px;
    }

}

/* ==========================
   MOBILE
========================== */

@media(max-width:768px){

    .footer{
        padding:30px 15px;
    }

    .footer-logo img{
        width:140px;
    }

    .footer-banner img{
        width:100%;
    }

    .footer-info h3{
        font-size:24px;
    }

    .footer-info p{
        font-size:15px;
        line-height:1.8;
    }

    .footer-social a{
        width:42px;
        height:42px;
        font-size:18px;
    }

}