footer {
    position: relative;
    /* height: 500px; */
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*  */
    margin-top: 20vh;
    text-align: center;
    padding: 10px;
    width: 100%;
}
.footer-container {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0;
    padding-bottom: 0;
    max-width: 1480px;
}

footer .logo-section {
    width: 220px;
    margin: 0 auto;
}

footer p {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto;
    width: 150px;
}

footer .links-section .col {
    width: 150px;
}

footer .links-section  {
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

footer li {
    margin: 0 auto;
    color: #fff;
    width: 150px;
}

footer .copyrigth-section {
    background-color: rgb(17 24 39);
    position: relative;
    bottom: 0;
    margin: 0;
    height: 50px;
    width: 100vw;
    left: 0;
    padding-left: 25px;
    display: flex;
    justify-content: center;
}

footer .copyrigth-section p {
    width: 100%;
    margin: 0;
    max-width: 1380px;
}



footer .social-media-section {
    display: flex;
    gap: 15px;
    justify-content: center;
    transition: 0.2s;
}

footer .social-media-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #5F5F5F;
    color: #fff;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .social-media-item:hover {
    transform: scale(1.1);
}

footer .social-media-item a {
    color: #fff;
    text-decoration: none;
}

footer .footer-limks {
    width: 100%;
    display: flex;
    justify-content: space-between;
    color: #fff;
    max-width: 1200px;
    margin: 0 auto;
}

footer .footer-limks ul {
    padding: 0;
}

footer .footer-limks li {
    list-style: none;
    font-size: 1.3rem;
}

footer .footer-limks .info li {
    display: flex;
    gap: 15px;
}

footer .copyright-section {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    text-align: center;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 767px) {
    footer {
        height: auto;
    }

    footer .logo-section {
        margin-bottom: 20px;
    }

    footer .row {
        padding: 0 15px;
    }

    footer .col {
        margin: 15px 0;
        padding: 0 15px;
    }

    footer p,
    footer li {
        margin: 0;
    }

    footer .copyright-section {
        margin-top: 15px;
    }

    footer .social-media-section {
        margin-bottom: 20px;
    }
}