.main-header {
    height: 70px;
    display: grid;
    grid-template-columns: 1fr min-content;
    align-items: center;
    z-index: 10;
    & p {
        white-space: nowrap;
        text-align: right;
        font-size: 12px;
    }
    & a {
        font-size: 20px;
        font-weight: bolder;
        text-decoration: none;
        color: black;
    }
}

@media (min-width: 768px) {
    .main-header {
        & > img {
            height: 40px;
        }
        & .desktop-contact {
            display: block;
        }
        & .mobile-contact {
            display: none;
        }
    }
}
@media (max-width: 767px) {
    .main-header {
        & > img {
            height: 24px;
        }
        & .desktop-contact {
            display: none;
            padding-right: 20px;
        }
        & .mobile-contact {
            display: block;
            width: 48px;
            height: 48px;
        }
    }
}