html, body {
    background-color: #FAFAFA;
}

body {
    font-family: 'Maven Pro', sans-serif;
    color: #002345;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    color: #00C5B4;
}

input[type="email"] {
    background-color: #F2F2F2;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    display: block;
    width: 100%;
    border: none;
    height: 44px;
    text-align: center;
    margin: 0 auto 0.67em;
    max-width: 350px;
    color: inherit;
    padding: 0;
}

    input[type="email"]::placeholder {
        font-weight: 700;
        text-transform: uppercase;
    }

button, input[type="submit"] {
    background-color: #00C5B4;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    border-radius: 4px;
    display: block;
    width: 100%;
    font-weight: 700;
    height: 44px;
    max-width: 350px;
    margin: 0 auto;
}

.nowrap {
    white-space: nowrap;
}

.topnav {
    font-size: 14px;
    max-width: 940px;
    margin: 0 auto;
}

    .topnav ul {
        list-style: none;
        padding-left: 0;
        margin: 0 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 90px;
    }

    .topnav__item {
        display: flex;
        height: 40px;
        color: #002345;
        text-decoration: none;
        align-items: center;
    }

        .topnav__item--link {
            opacity: 0.8;
        }

            .topnav__item--link:hover {
                opacity: 1;
            }

            .topnav__item--link img {
                margin-right: 0.5em;
            }

.hero {
    text-align: center;
    padding: 0 30px; 
    margin-bottom: 4em;
}

.subscribe {
    padding: 0 30px;
    text-align: center;
}

    .subscribe--top {
        display: none;
    }

.feature {
    padding: 0 30px;
    border-bottom: 1px solid #EEEEEE;
    margin: 0 auto;
}

    .feature h2 {
        position: relative;
        padding-bottom: 22px;
    }

        .feature h2:after {
            content: '';
            width: 80px;
            height: 7px;
            background-color: #00C5B4;
            position: absolute;
            left: 0;
            bottom: 0;
        }
    
    .feature img {
        display: block;
        margin: 0 auto;
    }

.footer {
    padding: 30px;
    font-size: 12px;
    text-align: center;
}

@media only screen and (min-width: 728px) {

    h1 {
        font-size: 50px;
    }

    .subscribe {
        margin-bottom: 4em;
    }

        .subscribe--top {
            display: block;
        }

    .feature {
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 700px;
        padding: 0;
        margin-bottom: 4em;
    }

        .feature:nth-child(even) {
            flex-direction: row-reverse;
        }

        .feature__details {
            width: 300px;
        }

        .feature img {
            margin: 0;
        }

}