/* ==========================
   FOOTER COPYRIGHT
========================== */

.copyright{
    background:#434343;
    padding:15px 0;
}

.site-copy p{
    margin:0;
    color:#fff;
    font-size:14px;
    line-height:1.8;
}

.site-copy .sep{
    margin:0 8px;
    color:#c58b1d;
}

.site-by{
    text-align:right;
}

.social_foot{
    margin:0;
    padding:0;
    list-style:none;

    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;
}

.social_foot li{
    margin:0 !important;
}

.social_foot li a{
    display:block;
    background:none !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
}

.social_foot li img{
    max-height:32px;
    width:auto;
    display:block;
    transition:.3s;
}

.social_foot li img:hover{
    transform:scale(1.08);
}

/* ==========================
   TABLET
========================== */

@media(max-width:991px){

    .site-copy{
        text-align:center;
        margin-bottom:10px;
    }

    .site-by{
        text-align:center;
    }

    .social_foot{
        justify-content:center;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:767px){

    .copyright{
        padding:20px 0;
    }

    .site-copy{
        width:100%;
        text-align:center;
    }

    .site-copy p{
        font-size:13px;
        padding:0 10px;
    }

    .site-by{
        width:100%;
        text-align:center;
        margin-top:10px;
    }

    .social_foot{
        justify-content:center;
        gap:15px;
    }

    .social_foot li img{
        max-height:28px;
    }
}