footer.home-footer {
    align-items: center;
    background-color: var(--gin-color-primary);
    color: white;
    display: flex;
    flex-direction: column;
    min-height: var(--footer-height);
    justify-content: center;
    position: absolute;
    right: 0px;
    width: 100vw;
    font-size: var(--gin-font-size-s);

    .footer-links-block {
        display: flex;
        flex-direction: row;
        text-align: center;
    }

    .footer-link {
        color: inherit;
        margin: 0 10px;
        text-decoration: unset;
    }

    .footer-link:hover {
        color: var(--gin-color-contextual-text);
    }

    .copy {
        margin: 0 auto 0 auto;
        text-align: center;
    }
}

@media (min-width: 1280px) {
    .copy.portrait {
        display: none;
    }
}

@media (max-width: 1279px) {

    @media (orientation: landscape) {
        .copy.portrait {
            display: none;
        }
    }

    @media (orientation: portrait) {
        .copy.landscape {
            display: none;
        }
    }
}