.contact-page {
    width: 100%;
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5%;

    background: #fffaf6;
}

.business-card {
    position: relative;
    width: 92%;
    max-width: 78vw;
}

.business-card__image {
    display: block;
    width: 100%;
    height: auto;
}

.business-card__link {
    position: absolute;
    display: block;
}

.business-card__link--mobile {
    display: none;
}

.business-card__link--phone {
    left: 66%;
    top: 48%;
    width: 23%;
    height: 7%;
}

.business-card__link--email {
    left: 66%;
    top: 57%;
    width: 30%;
    height: 7%;
}

.business-card__link--website {
    left: 66%;
    top: 66%;
    width: 30%;
    height: 7%;
}

.business-card__link--facebook {
    left: 66%;
    top: 75%;
    width: 28%;
    height: 10%;
}

@media (max-width: 700px) {

    .contact-page {
        padding: 0;
    }

    .business-card {
        width: 115%;
        max-width: none;
    }

    .business-card__link--desktop {
        display: none;
    }

    .business-card__link--mobile {
        display: block;
    }

    .business-card__link--mobile-phone {
        left: 29%;
        top: 72.1%;
        width: 50%;
        height: 4.2%;
    }

    .business-card__link--mobile-email {
        left: 29%;
        top: 78.3%;
        width: 58%;
        height: 4.2%;
    }

    .business-card__link--mobile-website {
        left: 29%;
        top: 84.7%;
        width: 58%;
        height: 4.2%;
    }

    .business-card__link--mobile-facebook {
        left: 29%;
        top: 91%;
        width: 62%;
        height: 4.2%;
    }
}