* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

p {
    margin-bottom: 4px !important;
}

.desktop {
    display: block;
}

.mobile {
    display: none
}

.footer_link:hover {
    text-decoration: underline;
}

@media only screen and (max-width:768px) {
    p a {
        font-size: 13px !important;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block
    }
}