#contact-page {
    min-height: calc(var(--vh) * 100);
    max-height: calc(var(--vh) * 100);
}
/* CONTACTS */
#contact-page>ul {z-index: 5;}
#contact-page > ul li {grid-column: 1/-1;}
#contact-page > ul li:not(:last-of-type) {margin-bottom: 2rem;}

@media only screen and (min-width: 1200px) {
    #contact-page {
        display: flex;
        flex-direction: column;
    }

    #contact-page > ul {
        margin: auto 0;
        padding-bottom: calc(6.5rem + 15vw);
    }

    #contact-page > ul > li {grid-column: span 2;}
    #contact-page > ul > li:nth-of-type(1) * {text-align: left;}
    #contact-page > ul > li:nth-of-type(3) * {text-align: right;}
}

/* LABEL */
#contact_p-label {
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 5;
}
@media only screen and (min-width: 1200px) {
    #contact_p-label>div {
        flex-direction: row;
        justify-content: space-between;
        align-items: end;
    }

    #contact_p-label>div>div {
        display: flex;
        justify-content: space-between;
        order: 3;
    }

    #contact_p-label>div>a:nth-of-type(1) {
        order: 1;
        text-align: left;
    }

    #contact_p-label>div>a:nth-of-type(2) {
        order: 2;
    }

    #contact_p-label>div>div,
    #contact_p-label>div>a:nth-of-type(1) {
        width: 32rem;
    }
}