footer {
    background-color: var(--tertiary-bg-color);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem;

    .logo {
        width: 60px;
        height: 60px;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;

    a {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--secondary-text-color);
        font-size: 1.2rem;

        &:hover {
            color: var(--primary-hover-color);
        }
    }
}

.footer-links {
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--secondary-text-color);
    font-size: 1.2rem;

    a{
        color: var(--secondary-text-color);
        position: relative;

        &:hover {
            
            color: var(--primary-hover-color);
            cursor: pointer;

            &::after{
                
                transform: scale(1);
            }
            
        }
    }
    a::after{
        content: "";
        position: absolute;
        width: 100%;
        transform: scale(0);
        bottom: -5px;
        border-radius: 5px;
        left: 0%;
        height: 2px;
        background-color: var(--secondary-text-color);
        transition: all 0.5s;
    }
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;

    a {
        display: flex;
        align-items: center;
        gap: 5px;
        color: var(--secondary-text-color);

        &:hover {
            color: var(--primary-hover-color);
        }

    }
}

.feather {
    width: 24px;
    height: 24px;
    color: var(--secondary-text-color);

    &:hover {
        color: var(--primary-hover-color);
    }

}

@media screen and (max-width: 600px) {

    .footer-logo{
        a{
            p{
                display: none;
            }
        }
    }

}