.footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 10vw;
    background-color: var(--background-color);
    padding: 2vw 0;
}

.footer .footer-subtitle {
    width: 100%;
    text-align: center;
    color: var(--accent-color);
    font-size: 2.5vw;
}

.footer .footer-title {
    width: 100%;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5vw;
    text-align: center;
}

.footer .footer-bottom {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
}

.footer .footer-bottom .footer-bottom-copyright {
    width: 30%;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8vw;
}

.footer .footer-bottom .footer-bottom-copyright b {
    color: var(--accent-color);
    font-size: 0.65vw;
}

.footer .footer-bottom .footer-bottom-social {
    width: 20%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1vw;
    font-size: 1.5vw;
}

.footer .footer-bottom .footer-bottom-social a {
    cursor: pointer;
    transition: all 0.5s;
    opacity: 0.8;
}

.footer .footer-bottom .footer-bottom-social a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer .footer-bottom .footer-bottom-links {
    width: 30%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1vw;
    font-family: 'Montserrat', sans-serif;
}

.footer .footer-bottom .footer-bottom-links a {
    opacity: 0.8;
    transition: all 0.5s;
    font-size: 0.8vw;
}

.footer .footer-bottom .footer-bottom-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}