footer #bottom-line {
    background-color: #222;
    font-family: Poppins;
    border-top: 1px solid #181818
}

footer #bottom-line p {
    font-size: .8rem;
    text-align: center;
    color: #bbb;
    margin: 0;
}

footer #bottom-line a {
    text-decoration: none;
    text-align: center;
    color: white;
    transition: color .3s ease,
                transform .3s ease;
}

footer #bottom-line a:hover {
    color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-top {
    width: 100vw;
}

.footer-part {
    padding: 50px 20px;
    width: 0;
    background-color: #222;
    min-height: 250px;
}

.footer-part p {
    font-family: Poppins;
    color: white;
}

.social-link {
    text-decoration: none;
    font-size: 1.25rem;
    width: 3rem;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border: 1px solid white;
    border-radius: 100%;
    transition: background-color .3s ease,
                color .3s ease;
}

.social-link:hover {
    background-color: white;
    color: #222;
}

@media (max-width: 768px) {
    .footer-part {
        width: 100vw;
    }
}

.footer-title {
    margin: 0;
    margin-bottom: 20px;
    position: relative;
    color: white;
    font-family: "Poppins";
    font-size: 1.5rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    width: 80px; height: 5px;
    bottom: -10px; left: 0;
    background-color: var(--primary-color);
}



.footer-page-link {
    text-decoration: none;
    font-size: 1.2rem;
    color: white;
    font-family: "Poppins";
    transition: transform .3s ease,
                color .3s ease;
}

.footer-page-link:hover {
    color: var(--secondary-color);
    transform: translateX(10px);
}

.footer-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 0;
    margin-top: 10px;
}

.footer-info {
    margin: 0;
    font-weight: 300;
}