/* =========================================
   FOOTER
========================================= */

.site-footer {

    background: #15191d;

    color: #ffffff;

    padding: 70px 0 25px;

}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding-top: 25px;

    margin-top: 50px;

    border-top: 1px solid rgba(255,255,255,0.12);

}


.footer-bottom p {

    margin: 0;

    color: #aeb7bf;

    font-size: 13px;

}


.footer-bottom strong {

    color: var(--color-white);

}


@media (max-width: 767px) {

    .site-footer {

        padding: 50px 0 20px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 10px;

        margin-top: 30px;

    }

}