* {
    box-sizing: border-box;
}

/* text highlight */
::-moz-selection { /* Code for Firefox */
    color: #000;
    background: #cacc2c;
}

::selection {
    color: #000;
    background: #cacc2c;
}

body{
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    color: #4d4d4d;
    line-height: 1.45;
    margin: 0;
    font-size: 16px;
    font-size: 1em;
}

h1 {
    font-weight: 300;
    color: #000;
    line-height: .9;
    font-size: 3.8em;
    border-top: 20px solid #cacc2c;
    padding-top: 1em;
    margin: 0;
    letter-spacing: -.02em;
}

p {
    margin: 1.8em 0;
}

strong{
    font-weight: 600;
    color: #d1d128;
}

.container {
    padding: 0 1.5em 3em 1.5em;
}

.btn {
    text-transform: uppercase;
    background: #cacc2c;
    border-radius: 2em;
    text-decoration: none;
    color: #fff;
    letter-spacing: .1em;
    padding: .8em 1.5em;
    font-weight: 500;
    display: inline-block;
    font-size: .85em;
    width: 100%;
    text-align: center;
    transition: background .2s linear;
}

.btn:hover{
    background: #dadc5b;
}

.mobile-image {
    width: 100%;
    margin: 2em 0 0 0;
}

.image--outer {
    display: none;
}


/* ===================================== Responsive  ===================================== */

/*  Tablet Portrait  */
@media screen and (min-width: 728px) {

    h1 {
        border-top: 22px solid #cacc2c;
        padding-top: .6em;
        display: inline-block;
        font-size: 4.5em;
    }

    .container {
        padding: 0 4em 5em 4em;
    }

    .btn {
        width: auto;
    }

}

/*  Desktop  */
@media screen and (min-width: 1024px) {

    .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .content {
        padding: 0 4em 4em 4em;
        max-width: 680px;
        margin: 0 auto;
    }

    .mobile-image {
        display: none;
    }

    .image--outer {
        display: block;
        position: relative;
    }

    .image {
        position: fixed;
        overflow: hidden;
        height: 100vh;
        width: 50vw;
    }

    .image img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}