@font-face {
    font-family: "MCSaatchi-Black";
    src: url("../fonts/MCSaatchi-Black.woff2") format("woff2"),
         url("../fonts/MCSaatchi-Black.woff") format("woff"),
         url("../fonts/MCSaatchi-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: "MCSaatchi-Bold";
    src: url("../fonts/MCSaatchi-Bold.woff2") format("woff2"),
         url("../fonts/MCSaatchi-Bold.woff") format("woff"),
         url("../fonts/MCSaatchi-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "MCSaatchi-Book";
    src: url("../fonts/MCSaatchi-Book.woff2") format("woff2"),
         url("../fonts/MCSaatchi-Book.woff") format("woff"),
         url("../fonts/MCSaatchi-Book.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

body {
    font-family: "MCSaatchi-Book", Arial, sans-serif;
    background-color: black;
    color: white;
    font-size: 18px;
    line-height: 1.35;
}


h1, h2 {
    font-family: "MCSaatchi-Black", Arial, sans-serif;
}

strong {
    font-family: "MCSaatchi-Black", Arial, sans-serif;
}

.heading {
    margin-top: 5px;
    font-size: 42px;
}

.rounded {
    border-radius: 6px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
}



.container {
    position: relative;
    width: 100%;
    max-width: 1020px;
    box-sizing: border-box;
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
}

.col-half {
    grid-column: span 12 / span 12;
}

.col-half img {
    margin-bottom: 15px;
}


.site-main {
    margin-top: 40px;
}


.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}

.site-logo {
    color: white;
}

.site-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-nav ul li:first-child {
    margin-left: 0;
}

.site-nav li {
    margin-left: 20px;
}

.site-nav li {
    border-bottom: 1px solid white;
}

.site-nav li a {
    color: white;
    text-decoration: none;
    padding: 10px 35px 10px 0;
    font-size: 20px;
}

.site-main img {
    max-width: 100%;
}

.logo {
    max-width: 100%;
}

a {
    color: #00aeef;
}

.is-active {
    color: #00aeef!important;
}

.button {
    display: block;
    border-radius: 6px;
    background-color: #00aeef;
    line-height: 1.5;
    color: #fff;
    text-decoration: none;
    border: 0;
    font-family: MCHeavy, Helvetica Neue, sans-serif;
    font-size: 16px;
    padding: 24px 40px;
    letter-spacing: .75px;
    color: black;
    text-align: center;
}

.button:hover {
    opacity: 0.8;
    cursor: pointer;
}

@media screen and (min-width: 1000px) {
    .grid-gap {
        grid-gap: 0 60px;
    }

    .col-half {
        grid-column: span 6 / span 6;
    }

    .site-header {
        flex-direction: row;
    }

    .logo {
        width: 500px;
        margin-left: -20px;
        transform: translateY(5px);
    }

    .site-main {
        margin-top: 80px;
    }

    .button {
        display: inline-block;
        min-width: 234px;
    }
}