.contact-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 280px;
    gap: 15px;
}

.contact-menu-link {
    color: var(--white-text-color);
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    text-wrap: nowrap;
    width: 100%;
    margin-bottom:5px;
}

.child-contact-menu-link {
    color: var(--white-text-color);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}
@media (max-width: 780px) {
    .contact-menu {
        gap: 10px;
    }
    .contact-menu-link {
        font-size: 18px;
    }
    .child-contact-menu-link {
        font-size: 14px;
    }
}