/* Global App Styles */

@font-face {
    font-family: Garamond;
    src: url('../fonts/Garamond.ttf');
}

body {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-family: Garamond, sans-serif;
    color: #2e2e2e;
}
.wrap {
    width: 1024px;
    margin: 0 auto;
}
ul {
    margin: 0;
    padding: 0;
    padding-left: 15px;
}

h1 {
    font-size: 18px;
    color: #2f6e95;
    text-transform: uppercase;
}
h2 {
    font-size: 18px;
    color: #4994ce;
}

.desktop {
    display: block;
}
.mobile {
    display: none;
}

@media only screen and (max-width: 1045px) and (min-width: 0)  {
    .wrap {
        width: 100%;
        padding: 0 10px;
        margin: 0;
        box-sizing: border-box;
    }
    .desktop {
        display: none !important;
    }
    .mobile {
        display: block !important;
    }
}
