* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
    overflow-y: scroll;
    background-color: #fed404;
    color: #4c4135;
    font-family: 'Literata', serif;
}

.font-sans {
    font-family:'Novecento Sans W01 Bd';
}

.font-sans-2 {
    font-family: "Helvetica Neue", Helvetica, sans-serif;
}

.lead-copy {
    color: #885031;
    font-weight: 300;
}

.lead-copy .standout {
    text-transform: upper;
    font-weight: bold;
    color: #f05052;
}

a {
    color: #E14E43;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.logo {
    position: relative;
    z-index: 10;
}

.top {
    background-color: #FFFBF2;
}

.product-image {
    display: block;
    max-height: 640px;
    margin: 0 auto;
}

.button {
    background-color: #E14E43;
    color: #ffffff;
}

.benefits-section {
}

.benefits-heading {
    color: #E14E43;
}

.benefits-section ol {
    padding-left: 15px;
}

.feature-box {
    background-color: #fcf6e2;
    padding: .5rem;
    margin-bottom: 1.5rem;
}

.perfect-for-box {
    background-color: #FFFBF2;
}

.perfect-for-list {
    list-style-type: none;
    text-align: center;
    font-size: 1.75rem;
    font-weight: bold;
    text-transform: uppercase;
}

.feature-box .heading {
    color: #fff;
    text-align: center;
}

.feature-box li {
    margin: 1.5rem 0;
}

.color-darker {
    color: #6d5a46;
}

.color-lighter {
    color: #9d8a73;
}

.heading-green {
    background-color: #D6D449;
}

.heading-red {
    background-color: #f05052;
}

.heading-mustard {
    background-color: #fed501;
}

.cloud1 {
    position: absolute;
    top: 50px;
    left: 10%;
    width: 300px;
    z-index: 1;

    -webkit-animation: moveclouds 10s linear infinite;
    -moz-animation: moveclouds 10s linear infinite;
    -o-animation: moveclouds 10s linear infinite;
}

.cloud2 {
    position: absolute;
    top: 25%;
    left: 23%;
    width: 160px;
    z-index: 1;
}

.cloud3 {
    position: absolute;
    top: 135px;
    left: 65%;
    width: 300px;
    z-index: 1;

    -webkit-animation: moveclouds 10s linear infinite;
    -moz-animation: moveclouds 10s linear infinite;
    -o-animation: moveclouds 10s linear infinite;
}

@-webkit-keyframes moveclouds {
    0% {margin-left: 0px;}
    50% {margin-left: 40px;}
    100% {margin-left: 0px;}
}
@-moz-keyframes moveclouds {
    0% {margin-left: 0px;}
    50% {margin-left: 40px;}
    100% {margin-left: 0px;}
}
@-o-keyframes moveclouds {
    0% {margin-left: 0px;}
    50% {margin-left: 40px;}
    100% {margin-left: 0px;}
}

@media screen and (max-width: 1200px) {
    .cloud2 {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .mobile-primary {
        order: 0;
    }
    
    .mobile-secondary {
        order: 1;
    }

    .cloud1 {
        left: -15%;
    }
}