@charset "UTF-8";
/* CSS Document */
footer {
    background-color: var(--main);
    font-size: 1.4rem;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 20px;
}

.footer-logo {
    width: 180px;
}

.footer-logo img {
    width: 100%;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-contact {
    max-width: 222px;
    margin-bottom: 20px;
}

.privacy {
    text-decoration: underline;
}

.privacy:hover {
    color: white;
}

.copyright {
    font-size: 1.2rem;
}

@media screen and (max-width: 790px) {
    .site-footer {
        flex-direction: column;
        justify-content: center;
    }

    .footer-right {
        align-items: center;
        margin-top: 20px;
    }
}