footer .border {
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    justify-content: space-between;
}

footer .border a img {
    height: 35px;
}

footer .border .social-media p {
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
}

footer .border .social-media div {
    display: flex;
}

footer .border .social-media a {
    padding: 10px;
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.05);
    transition: all ease 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .border .social-media a:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color);
}

footer .border .social-media a:hover i {
    color: white;
    transform: scale(1.1);
}

footer .border .social-media a:nth-of-type(1) {
    margin-right: 5px;
}

footer .border .social-media i {
    color: var(--secondary-color);
    width: 16px;
    text-align: center;
    transition: all ease 0.3s;
}

footer .note {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

footer .note p {
    font-size: 12px;
}

    /* Desktop Version */
    @media screen and (min-width: 992px) {
        footer .border {
            padding-bottom: 30px;
        }

        footer .border a img {
            height: 45px;
        }


        footer .border .social-media {
            display: flex;
            align-items: center;
        }

        footer .border .social-media a {
            font-size: 20px;
        }

        footer .border .social-media a i {
            width: 20px;
            height: 20px;
        }

        footer .border .social-media p {
            margin: 0 10px 0 0;
            font-size: 18px;
        }


        footer .note {
            margin-top: 20px;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }
    }