@charset "UTF-8";

footer {
    background-color: var(--color-main);
    color: #fff;
    padding: 50px 0px;
}

footer ul li a {
    color: #fff;
    font-size: 1.6rem;
}

.footer-right ul.flex {
    gap: 20px;
}

@media screen and (max-width: 480px) {
    footer .flex {
        flex-direction: column-reverse;
    }

    .footer-right ul.flex {
        gap: 30px;
        flex-direction: row;
        margin-bottom: 14px;
    }

    footer .flex.flex--between {
        flex-direction: column-reverse;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .footer-right ul.flex {
        justify-content: center;
    }

    .footer-right {
        margin-bottom: 10px;
    }

    footer ul li a {
        color: #fff;
        font-size: 1.3rem;
    }
}