body {
    background-color:#333;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: bolder;
    text-transform: uppercase;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: bolder;
    text-transform: uppercase;
}

h3 {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: lighter;
    font-size: 16px;
}

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

a:hover {
    color: #b33a12;
    text-decoration: none;
}

a:focus {
    color: #DC4816;
    text-decoration: none;
}

.mynav {
    background-color: #fff;
}

    .mynav a {
        color: #0074A9;
    }

    .mynav .mynav-brand > img {
        height: 30px;
        margin: 15px 0;
    }

    .mynav .mynav-social {
        text-align: center;
        height: 60px;
        margin: 0;
        padding: 15px;
    }

    .socialicon {
        display: inline-block;
        width: 24px;
        height: 24px;
        margin: 0 4px;
    }

    .socialicon.twitter {
        background: url(images/hollow-cut-twitter.svg) no-repeat;      
    }

    .socialicon.facebook {
        background: url(images/hollow-cut-facebook.svg) no-repeat;      
    }
    .socialicon.youtube {
        background: url(images/hollow-cut-youtube.svg) no-repeat;      
    }

    .socialicon.white.twitter {
        background: url(images/hollow-cut-twitter-white.svg) no-repeat;      
    }

    .socialicon.white.facebook {
        background: url(images/hollow-cut-facebook-white.svg) no-repeat;      
    }
    .socialicon.white.youtube {
        background: url(images/hollow-cut-youtube-white.svg) no-repeat;      
    }

    .mynav .mynav-nav > ul {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;  

        -webkit-justify-content: flex-end;
        justify-content: flex-end;

        list-style: none;
        margin: 0;
        line-height: 30px;
        padding: 15px 0;
        font-size: 15px;
        text-transform: uppercase;
        vertical-align: center;
    }
    
    .mynav .mynav-nav > ul > li {
        font-family: 'Montserrat', sans-serif;
        flex: 0 1 auto;
        margin: 0 8px;
    }

    .mynav .overflow > ul {
        display: block;
        padding: 0;
    }

    .mynav .overflow > ul > li {
        text-align: left;
        margin: 0;
        border-top: 1px solid #ddd;
        padding: 15px;
    }

    .mynav .overflow > ul > li > a {
        display: block;
    }

.content {
    color: #1a1a1a;
    background-color: #ddd;
}

.carousel-inner > .item {
    height: 64px;
    padding: 15px 0;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

    /* Small Devices, Tablets */
    @media only screen and (min-width : 768px) {
        .carousel-inner > .item {
            font-size: 18px;
        }
    }

    .carousel-inner > .item > p {
        margin: auto;
        text-align: center;
    }
    .carousel-inner > .item > p.quote {
        font-style: italic;
    }

    .carousel-inner > .item > p.quote::before, .carousel-inner > .item > p.quote::after {
        content: '"';
    }    

    .carousel-inner > .item > p.source {
        color: #DC4816;
    }

section {
    margin: 5px 0 20px 0;
}

    section h1 {
        margin: 15px 0 5px 0;
    }

ul.products {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: -10px;
    list-style: none;
}
    ul.products > li {
        width: 100%;
        padding: 10px;

        display: flex;
    }

    ul.products > li > article {
        width: 100%;
    }

    @media only screen and (min-width : 768px) {
        ul.products > li {
            width: 50%;
        }
    }

    @media only screen and (min-width : 1200px) {
        ul.products > li {
            width: 25%;
        }
    }

.card {
    border: 1px solid #0074A9;
    color: #1a1a1a; 
    background-color: white;
    position: relative;
}

    .card > a {
        position: absolute;
        top: 0; 
        left: 0;
        width: 100%;
        height: 100%;
    }

    .card > a:hover {
        border: 2px solid #0074A9;
    }

    .card > img {
        width: 100%;
        height: auto;
    }

    .card > .caption {
        text-align: center;
        margin: 15px;
    }

    .card > .foot {
        margin: 15px;
        text-align: center;
    }

        .card > .foot > .appstore {
            display: flex;  
            flex-wrap: wrap;
            justify-content: space-around;

            line-height: 40px;
        }

        .card > .foot > .appstore > * {
            margin: 5px;
        }

        .card > .foot > .appstore > span.price {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
        }

        .card > .foot > span.comingsoon {
            font-family: 'Montserrat', sans-serif;
            font-weight: bolder;
            color: #DC4816;
            width: 100%;
            font-size: 20px;
            text-align: center;
        }

    /* Small Devices, Tablets */
    @media only screen and (min-width : 768px) {
        .card .caption {
            min-height: 150px;
        }
    }

.block {
    border: 1px solid #0074A9;
    margin: 0 auto;
    background-color: #fff;
    color: #1a1a1a;
}
    .block a {
        text-decoration: underline;
    }

    .block > article, .block > div {
        margin: 15px;
    }

.contact-form {
    display: block;
    color: #888;
    margin: 0 auto 0 auto;
    font-size: 16px;

    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;  

    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;

    -webkit-justify-content: flex-start;
    justify-content: flex-start;

    margin: 0 -5px;
}

    .contact-form > div {
        flex: 0 1 100%;
        padding: 0 5px;
        margin: 10px 0;
        font-family: 'Montserrat', sans-serif;
    }

    .contact-form > div.buttons {
        text-align: center;
    }

    @media only all and (min-width : 768px) {
        .contact-form > div.halfwidth {
            flex: 0 1 50%;
        }
    }

    .contact-form input, textarea, select {
        margin-top: 5px;
        width: 100%;
        color:#1a1a1a;
        padding: 10px;
        border: solid 1px #0074A9;
        background-color: #fff;

        -webkit-transition: all 0.12s ease-in-out;
        -moz-transition: all 0.12s ease-in-out;
        -ms-transition: all 0.12s ease-in-out;
        -o-transition: all 0.12s ease-in-out;
        transition: all 0.12s ease-in-out;
        outline:none;
    }

    .contact-form select {
        height: 44px;
        -webkit-appearance: none; 
        -moz-appearance: none;

        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        background: url(images/icon_dropdown.svg) no-repeat;
        background-position: right center;

        padding-right: 36px;
    }

    .contact-form input:focus, textarea:focus {
        box-shadow: 0 0 5px #0074A9;
    }

    .contact-form textarea {
        resize: none;
    }

    .contact-form button {
        margin-top: 5px;
        color: #fff;
        background-color: #0074A9;
        border: none;
        width: 100%;
        max-width: 248px;
        height: 40px;
    }

    .contact-form .invalid {
        background-color: #fdd !important;
    }

    .contact-form-response {
        text-align: center;
        padding: 20px;
    }

.footer {
    padding: 15px;
    font-size: 14px;
    color: #ddd;
}

    .footer .copyright {
        text-align: center;
        padding-top: 15px;
    }

    .footer a {
        color: #ddd;
        text-decoration: underline;
    }