/**
 * CONTENTS
 *
 * GENERIC
 * Box-sizing............Better default `box-sizing`.
 * Image Aligns..........WP specific img aligns.
 *
 * BASE
 * Typography............@fontfaces, base text and vertical rhythem setup.
 *
 * COMPONENTS
 * Wrappers..............Wrapping and constraining elements.
 * Grid System...........Bootstrap based grid.
 * Clearfix..............Properly clear floats.
 *
 * Objects
 * Icons.................Icon Elements.
 * Buttons...............Button elements.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Breadcrumbs...........Breadcrumbs.
 * Pagination............Pagination.
 * Sliders/Carousels.....Sliders/Carousels.
 *
 * UI
 * Page head.............The main page header.
 * Navigation............Navigation elements.
 * Masthead..............Page title/image/slideshow header block.
 * Page footer...........The main page footer.
 *
 * TRUMPS
 * Images................Round, Circle, Square Images.
 * Visiblity.............Make items visible.
 * Hiding................Make items invisible/hidden.
 * Screen Readers........Display for screen readers.
 * Print.................Display for printing.
 * Clears................Clearing floats.
 * Text alignment........Align text.
 * Font weights..........Adjust font weights.
 * Borders...............Add borders.
 * Add/remove margins....Remove margins.
 * Add/remove paddings...Remove padding.
 * Positioning...........float, center, and stick items.
 */


/**
 * Fix fonts that render as bold in Firefox
 *
 * Put this near the top of your style.css
 * Before any overriding styles
 */

html {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-weight: 400;
}


/*------------------------------------*\
    Generic
\*------------------------------------*/

/**
 * Box-sizing
 */

* {
    box-sizing: border-box;
}



/**
 * Images
 *
 * These selectors are hard cast because they are only used
 * by wordpress wyswyg when adding images to content
 */

img.alignright,
.wp-caption.alignright,
img.alignleft,
.wp-caption.alignleft {
    height: auto;
    max-width: 50%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
    height: auto;
    max-width: 100%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
    margin: 0 0 20px 0;
}

img.alignright,
.wp-caption.alignright,
.page-article.wysiwyg iframe {
    float: right;
    margin: 0 0 20px 50px;
}

.page-article.wysiwyg iframe {
    max-width: 306px;
    max-height: 230px;
}

img.alignleft,
.wp-caption.alignleft {
    float: left;
    margin: 0 50px 20px 0;
}

img.aligncenter,
.wp-caption.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 599px) {

    img.alignright,
    .wp-caption.alignright,
    img.alignleft,
    .wp-caption.alignleft,
    img.alignnone,
    .wp-caption.alignnone,
    img.aligncenter,
    .wp-caption.aligncenter,
    .page-article.wysiwyg iframe {
        float: none;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }
}



/*------------------------------------*\
    Typography
\*------------------------------------*/

/* Please set up line-heights in ems */

@font-face {
    font-family: 'Bebas Neue';
    src: url('../fonts/bebasneue-regular-webfont.woff2') format('woff2'),
        url('../fonts/bebasneue-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue Bold';
    src: url('../fonts/bebasneue-bold-webfont.woff2') format('woff2'),
        url('../fonts/bebasneue-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue Book';
    src: url('../fonts/bebasneue-book-webfont.woff2') format('woff2'),
        url('../fonts/bebasneue-book-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    color: #1a1a1a;
    font: 14px/1.429em 'Titillium Web', sans-serif;
    /*20px*/
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.cta-box--title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-style: italic;
    line-height: 1em;
    margin-top: 0;
    text-transform: uppercase;
}

h1,
.h1 {
    font-size: 30px;
    line-height: 1em;
    letter-spacing: -0.01em;
    margin-bottom: 0.6em;
    /*18px*/
}

h2,
.h2 {
    font-size: 26px;
    margin-bottom: 0.538em;
    /*14px*/
}

h3,
.h3,
.cta-box--title {
    font-size: 22px;
    line-height: 1.227em;
    /*27px*/
    margin-bottom: 0.545em;
    /*12px*/
}

h4,
.h4 {
    font-size: 18px;
    margin-bottom: 0.667em;
    /*12px*/
}

.sub-title {
    color: #777;
    display: block;
    font: 300 20px 'Roboto Condensed';
    font-style: italic;
    margin-bottom: 0.545em;
    /*12px*/
    text-transform: uppercase;
}

.section-title {
    position: relative;
    padding-bottom: 10px;
    z-index: 1;
}

.section-title:before,
.section-title:after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    height: 6px;
}

.section-title:before {
    left: 0;
    width: 10%;
    background-color: #e7160f;
}

.section-title:after {
    width: 100%;
    right: -1px;
    background-color: #e7160f;
    transform-origin: bottom left;
    -webkit-transform: skew(-25deg, 0deg);
    -ms-transform: skew(-25deg, 0deg);
    transform: skew(-25deg, 0deg);
}

.bg-dark-gray .section-title,
.bg-gray .section-title {
    color: #fff;
}

p,
ul,
ol {
    margin-top: 0;
}

article p {
    margin-bottom: 0.929em;
    /*13px*/
    letter-spacing: 0.02em;
}

article>p:last-child {
    margin-bottom: 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

article ul:not(.js-tabs),
.page-sidebar ul {
    padding-left: 1.429em;
    /*20px*/
    margin-bottom: 0.929em;
    /*13px*/
}

article ul:not(.js-tabs) li,
.page-sidebar ul li {
    background: url(../img/list-style.png) no-repeat left 5px;
    padding-left: 1.143em;
    /*16px*/
}

article ol {
    list-style: symbols outside;
    padding-left: 1.429em;
    /*20px*/
    margin-bottom: 0.929em;
    /*13px*/
}

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

a:hover {
    color: #ffba00;
}

article a:not(.btn):not(.btn-basic):not(.js-tabs-link):not(.js-social-share):not(.post__title--link) {
    position: relative;
    font-weight: 700;
    color: #1a1a1a;
    z-index: 0;
    display: inline-block;
}

article a:not(.btn):not(.btn-basic):not(.js-tabs-link):not(.js-social-share):not(.post__title--link):before {
    content: "";
    border-bottom: 2px solid #e92d27;
    padding: 3px;
    position: absolute;
    z-index: -1;
    left: -3px;
    bottom: 0;
    width: 100%;
    height: 0;
}

article a:not(.btn):not(.btn-basic):not(.js-tabs-link):not(.js-social-share):not(.post__title--link):hover {
    color: #fff;
}

article a:not(.btn):not(.btn-basic):not(.js-tabs-link):not(.js-social-share):not(.post__title--link):hover:before {
    background-color: #e92d27;
    border-bottom: none;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    height: 72%;
}

blockquote {
    background-color: #e9e9e9;
    border-left: 10px solid #d60e16;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin: 1.5em 0;
    padding: 1.429em;
    /*20px*/
    position: relative;
    z-index: 1;
}

blockquote p:last-child {
    margin-bottom: 0;
}

@media (max-width: 599px) {
    .section-title {
        display: inline-block;
    }
}

@media (min-width: 600px) {
    .section-title {
        padding-bottom: 0;
    }

    .section-title span {
        background-color: #fff;
        padding-right: 15px;
        z-index: 2;
    }

    .bg-dark-gray .section-title span {
        background-color: #212121;
    }

    .bg-gray .section-title span {
        background-color: #2e2e2e;
    }

    .bg-light-gray .section-title span {
        background-color: #f6f6f6;
    }

    .bg-texture .section-title span {
        background-image: url(../img/texture.png);
        background-repeat: repeat;
        background-position: left top;
    }

    .section-title:before {
        display: none;
    }

    .section-title:after {
        width: 98%;
        right: 5px;
        bottom: 4px;
        z-index: -1;
    }
}

@media (min-width: 768px) {
    body {
        font-size: 17px;
        line-height: 1.529em;
        /*26px*/
    }

    h1,
    .h1 {
        font-size: 40px;
        margin-bottom: 0.7em;
        /*28px*/
    }

    h2,
    .h2 {
        font-size: 32px;
        margin-bottom: 0.563em;
        /*18px*/
    }

    h3,
    .h3,
    .cta-box--title {
        font-size: 24px;
        margin-bottom: 0.667em;
        /*16px*/
    }

    h4,
    .h4 {
        margin-bottom: 1.25em;
    }

    .section-title:after {
        height: 9px;
    }

    blockquote {
        margin-top: 2.857em;
        /*40px*/
        margin-bottom: 2.857em;
        /*40px*/
        padding: 2.071em 2.286em;
        /*29px 32px*/
        width: 87%;
    }

    blockquote:after {
        content: "";
        position: absolute;
        display: block;
        width: 50%;
        height: 100%;
        top: 0;
        right: 0;
        z-index: -1;
        background-color: inherit;
        transform-origin: bottom left;
        -webkit-transform: skew(-25deg, 0deg);
        -ms-transform: skew(-25deg, 0deg);
        transform: skew(-25deg, 0deg);
    }
}

@media (min-width: 1025px) {

    h1,
    .h1 {
        font-size: 48px;
        line-height: 1.1em;
        margin-bottom: 0.625em;
        /*30px*/
    }

    h2,
    .h2 {
        font-size: 38px;
        margin-bottom: 0.474em;
        /*18px*/
    }

    h3,
    .h3,
    .cta-box--title {
        font-size: 28px;
        margin-bottom: 0.571em;
        /*16px*/
    }

    .section-title:after {
        bottom: 10px;
    }

    article p,
    article ul,
    article ol {
        margin-bottom: 1.25em;
        /*20px*/
    }

    blockquote {
        width: 90%;
    }
}



/**
 * Transitions
 */

a,
a img,
a:before,
a:after,
a span,
input,
textarea,
button,
button:after,
button:before,
svg,
.button,
.button:after,
.button:before,
nav li a,
nav li a:after,
.sub-menu,
.sub-menu-toggle,
.social-share a,
.social-share a:after,
.page-header,
.page-header>*,
.location-track__img--hover,
.masthead--slider .slider-item--text>* {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

a:active,
a:active:before,
a:active:after,
.js-tabs li a,
.btn-accent:after {
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}



/**
 * Selection
 */

::-moz-selection {
    background: #ffba00;
    color: #fff;
}

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



/*------------------------------------*\
    COMPONENTS
\*------------------------------------*/


/**
 * Wrappers
 */

.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 18px;
    padding-right: 18px;
}

.container {
    max-width: 1800px;
}

@media (min-width: 1025px) {

    .container,
    .container-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }
}


/**
 * Grid System
 *
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 * Base setup 20px gutters
 *
 * Phones         - xxs - <  600px    ** Default **
 * Small Tablets  - xs - >=  600px
 * Tablets        - sm - >= 768px
 * Desktop        - md - >= 1025px
 * Large Desktop  - lg - >= 1200px
 * --------------------------------------------------------------------------
 * Learn more here: http://getbootstrap.com/css/#grid
 * -------------------------------------------------------------------------- */

.row {
    margin-left: -18px;
    /* TODO: Update margin number to match container padding */
    margin-right: -18px;
}

[class*="col-"] {
    position: relative;
    min-height: 1px;
    padding-left: 18px;
    padding-right: 18px;
}

@media (min-width: 1025px) {
    .row {
        margin-left: -24px;
        margin-right: -24px;
    }

    [class*="col-"] {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* Extra Extra small devices (devices, less than 600px) */
[class*="col-xxs-"] {
    float: left;
}

.col-xxs-12 {
    width: 100%;
}

.col-xxs-11 {
    width: 91.66666667%;
}

.col-xxs-10 {
    width: 83.33333333%;
}

.col-xxs-9 {
    width: 75%;
}

.col-xxs-8 {
    width: 66.66666667%;
}

.col-xxs-7 {
    width: 58.33333333%;
}

.col-xxs-6 {
    width: 50%;
}

.col-xxs-5 {
    width: 41.66666667%;
}

.col-xxs-4 {
    width: 33.33333333%;
}

.col-xxs-3 {
    width: 25%;
}

.col-xxs-2 {
    width: 16.66666667%;
}

.col-xxs-1 {
    width: 8.33333333%;
}

.col-xxs-pull-12 {
    right: 100%;
}

.col-xxs-pull-11 {
    right: 91.66666667%;
}

.col-xxs-pull-10 {
    right: 83.33333333%;
}

.col-xxs-pull-9 {
    right: 75%;
}

.col-xxs-pull-8 {
    right: 66.66666667%;
}

.col-xxs-pull-7 {
    right: 58.33333333%;
}

.col-xxs-pull-6 {
    right: 50%;
}

.col-xxs-pull-5 {
    right: 41.66666667%;
}

.col-xxs-pull-4 {
    right: 33.33333333%;
}

.col-xxs-pull-3 {
    right: 25%;
}

.col-xxs-pull-2 {
    right: 16.66666667%;
}

.col-xxs-pull-1 {
    right: 8.33333333%;
}

.col-xxs-pull-0 {
    right: auto;
}

.col-xxs-push-12 {
    left: 100%;
}

.col-xxs-push-11 {
    left: 91.66666667%;
}

.col-xxs-push-10 {
    left: 83.33333333%;
}

.col-xxs-push-9 {
    left: 75%;
}

.col-xxs-push-8 {
    left: 66.66666667%;
}

.col-xxs-push-7 {
    left: 58.33333333%;
}

.col-xxs-push-6 {
    left: 50%;
}

.col-xxs-push-5 {
    left: 41.66666667%;
}

.col-xxs-push-4 {
    left: 33.33333333%;
}

.col-xxs-push-3 {
    left: 25%;
}

.col-xxs-push-2 {
    left: 16.66666667%;
}

.col-xxs-push-1 {
    left: 8.33333333%;
}

.col-xxs-push-0 {
    left: auto;
}

.col-xxs-offset-12 {
    margin-left: 100%;
}

.col-xxs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xxs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xxs-offset-9 {
    margin-left: 75%;
}

.col-xxs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xxs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xxs-offset-6 {
    margin-left: 50%;
}

.col-xxs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xxs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xxs-offset-3 {
    margin-left: 25%;
}

.col-xxs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xxs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xxs-offset-0 {
    margin-left: 0%;
}

/* Extra small devices (phones, 600px and up) */
@media (min-width: 600px) {
    [class*="col-xs-"] {
        float: left;
    }

    .col-xs-12 {
        width: 100%;
    }

    .col-xs-11 {
        width: 91.66666667%;
    }

    .col-xs-10 {
        width: 83.33333333%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-8 {
        width: 66.66666667%;
    }

    .col-xs-7 {
        width: 58.33333333%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-5 {
        width: 41.66666667%;
    }

    .col-xs-4 {
        width: 33.33333333%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-2 {
        width: 16.66666667%;
    }

    .col-xs-1 {
        width: 8.33333333%;
    }

    .col-xs-pull-12 {
        right: 100%;
    }

    .col-xs-pull-11 {
        right: 91.66666667%;
    }

    .col-xs-pull-10 {
        right: 83.33333333%;
    }

    .col-xs-pull-9 {
        right: 75%;
    }

    .col-xs-pull-8 {
        right: 66.66666667%;
    }

    .col-xs-pull-7 {
        right: 58.33333333%;
    }

    .col-xs-pull-6 {
        right: 50%;
    }

    .col-xs-pull-5 {
        right: 41.66666667%;
    }

    .col-xs-pull-4 {
        right: 33.33333333%;
    }

    .col-xs-pull-3 {
        right: 25%;
    }

    .col-xs-pull-2 {
        right: 16.66666667%;
    }

    .col-xs-pull-1 {
        right: 8.33333333%;
    }

    .col-xs-pull-0 {
        right: auto;
    }

    .col-xs-push-12 {
        left: 100%;
    }

    .col-xs-push-11 {
        left: 91.66666667%;
    }

    .col-xs-push-10 {
        left: 83.33333333%;
    }

    .col-xs-push-9 {
        left: 75%;
    }

    .col-xs-push-8 {
        left: 66.66666667%;
    }

    .col-xs-push-7 {
        left: 58.33333333%;
    }

    .col-xs-push-6 {
        left: 50%;
    }

    .col-xs-push-5 {
        left: 41.66666667%;
    }

    .col-xs-push-4 {
        left: 33.33333333%;
    }

    .col-xs-push-3 {
        left: 25%;
    }

    .col-xs-push-2 {
        left: 16.66666667%;
    }

    .col-xs-push-1 {
        left: 8.33333333%;
    }

    .col-xs-push-0 {
        left: auto;
    }

    .col-xs-offset-12 {
        margin-left: 100%;
    }

    .col-xs-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xs-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xs-offset-9 {
        margin-left: 75%;
    }

    .col-xs-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xs-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xs-offset-6 {
        margin-left: 50%;
    }

    .col-xs-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xs-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xs-offset-3 {
        margin-left: 25%;
    }

    .col-xs-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xs-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xs-offset-0 {
        margin-left: 0%;
    }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    [class*="col-sm-"] {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0%;
    }
}

/* Medium devices (desktops, 1025px and up) */
@media (min-width: 1025px) {
    [class*="col-md-"] {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0%;
    }
}

/* Large devices (large desktops, 1200px) */
@media (min-width: 1200px) {
    [class*="col-lg-"] {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0%;
    }
}

/* Extra Large devices (1600px and up) */
@media (min-width: 1600px) {
    [class*="col-xl-"] {
        float: left;
    }

    .col-xl-12 {
        width: 100%;
    }

    .col-xl-11 {
        width: 91.66666667%;
    }

    .col-xl-10 {
        width: 83.33333333%;
    }

    .col-xl-9 {
        width: 75%;
    }

    .col-xl-8 {
        width: 66.66666667%;
    }

    .col-xl-7 {
        width: 58.33333333%;
    }

    .col-xl-6 {
        width: 50%;
    }

    .col-xl-5 {
        width: 41.66666667%;
    }

    .col-xl-4 {
        width: 33.33333333%;
    }

    .col-xl-3 {
        width: 25%;
    }

    .col-xl-2 {
        width: 16.66666667%;
    }

    .col-xl-1 {
        width: 8.33333333%;
    }

    .col-xl-pull-12 {
        right: 100%;
    }

    .col-xl-pull-11 {
        right: 91.66666667%;
    }

    .col-xl-pull-10 {
        right: 83.33333333%;
    }

    .col-xl-pull-9 {
        right: 75%;
    }

    .col-xl-pull-8 {
        right: 66.66666667%;
    }

    .col-xl-pull-7 {
        right: 58.33333333%;
    }

    .col-xl-pull-6 {
        right: 50%;
    }

    .col-xl-pull-5 {
        right: 41.66666667%;
    }

    .col-xl-pull-4 {
        right: 33.33333333%;
    }

    .col-xl-pull-3 {
        right: 25%;
    }

    .col-xl-pull-2 {
        right: 16.66666667%;
    }

    .col-xl-pull-1 {
        right: 8.33333333%;
    }

    .col-xl-pull-0 {
        right: auto;
    }

    .col-xl-push-12 {
        left: 100%;
    }

    .col-xl-push-11 {
        left: 91.66666667%;
    }

    .col-xl-push-10 {
        left: 83.33333333%;
    }

    .col-xl-push-9 {
        left: 75%;
    }

    .col-xl-push-8 {
        left: 66.66666667%;
    }

    .col-xl-push-7 {
        left: 58.33333333%;
    }

    .col-xl-push-6 {
        left: 50%;
    }

    .col-xl-push-5 {
        left: 41.66666667%;
    }

    .col-xl-push-4 {
        left: 33.33333333%;
    }

    .col-xl-push-3 {
        left: 25%;
    }

    .col-xl-push-2 {
        left: 16.66666667%;
    }

    .col-xl-push-1 {
        left: 8.33333333%;
    }

    .col-xl-push-0 {
        left: auto;
    }

    .col-xl-offset-12 {
        margin-left: 100%;
    }

    .col-xl-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xl-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xl-offset-9 {
        margin-left: 75%;
    }

    .col-xl-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xl-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xl-offset-6 {
        margin-left: 50%;
    }

    .col-xl-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xl-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xl-offset-3 {
        margin-left: 25%;
    }

    .col-xl-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xl-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xl-offset-0 {
        margin-left: 0%;
    }
}

/* Extra Extra Large devices (1800px and up) */
@media (min-width: 1800px) {
    [class*="col-xxl-"] {
        float: left;
    }

    .col-xxl-12 {
        width: 100%;
    }

    .col-xxl-11 {
        width: 91.66666667%;
    }

    .col-xxl-10 {
        width: 83.33333333%;
    }

    .col-xxl-9 {
        width: 75%;
    }

    .col-xxl-8 {
        width: 66.66666667%;
    }

    .col-xxl-7 {
        width: 58.33333333%;
    }

    .col-xxl-6 {
        width: 50%;
    }

    .col-xxl-5 {
        width: 41.66666667%;
    }

    .col-xxl-4 {
        width: 33.33333333%;
    }

    .col-xxl-3 {
        width: 25%;
    }

    .col-xxl-2 {
        width: 16.66666667%;
    }

    .col-xxl-1 {
        width: 8.33333333%;
    }

    .col-xxl-pull-12 {
        right: 100%;
    }

    .col-xxl-pull-11 {
        right: 91.66666667%;
    }

    .col-xxl-pull-10 {
        right: 83.33333333%;
    }

    .col-xxl-pull-9 {
        right: 75%;
    }

    .col-xxl-pull-8 {
        right: 66.66666667%;
    }

    .col-xxl-pull-7 {
        right: 58.33333333%;
    }

    .col-xxl-pull-6 {
        right: 50%;
    }

    .col-xxl-pull-5 {
        right: 41.66666667%;
    }

    .col-xxl-pull-4 {
        right: 33.33333333%;
    }

    .col-xxl-pull-3 {
        right: 25%;
    }

    .col-xxl-pull-2 {
        right: 16.66666667%;
    }

    .col-xxl-pull-1 {
        right: 8.33333333%;
    }

    .col-xxl-pull-0 {
        right: auto;
    }

    .col-xxl-push-12 {
        left: 100%;
    }

    .col-xxl-push-11 {
        left: 91.66666667%;
    }

    .col-xxl-push-10 {
        left: 83.33333333%;
    }

    .col-xxl-push-9 {
        left: 75%;
    }

    .col-xxl-push-8 {
        left: 66.66666667%;
    }

    .col-xxl-push-7 {
        left: 58.33333333%;
    }

    .col-xxl-push-6 {
        left: 50%;
    }

    .col-xxl-push-5 {
        left: 41.66666667%;
    }

    .col-xxl-push-4 {
        left: 33.33333333%;
    }

    .col-xxl-push-3 {
        left: 25%;
    }

    .col-xxl-push-2 {
        left: 16.66666667%;
    }

    .col-xxl-push-1 {
        left: 8.33333333%;
    }

    .col-xxl-push-0 {
        left: auto;
    }

    .col-xxl-offset-12 {
        margin-left: 100%;
    }

    .col-xxl-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xxl-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xxl-offset-9 {
        margin-left: 75%;
    }

    .col-xxl-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xxl-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xxl-offset-6 {
        margin-left: 50%;
    }

    .col-xxl-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xxl-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xxl-offset-3 {
        margin-left: 25%;
    }

    .col-xxl-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xxl-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xxl-offset-0 {
        margin-left: 0%;
    }
}



/**
 * Clearfix
 * Apply clearing without adding additional markup
 */

.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}


/*--------------------------------------------------------------*\
    OBJECTS
    Objects are independent generic stylibf classes or UI peices.
    All styles for objects should be self contained.

    e.g. an object shouldn't rely on trump helpers to apply padding etc.
\*--------------------------------------------------------------*/


/**
 * Buttons
 */

button {
    background: none;
    border: none;
    outline: none;
}

.btn {
    background-color: #e7160f;
    /* Default - Red */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font: 16px 'Bebas Neue Bold', sans-serif;
    letter-spacing: 0.06em;
    padding: .5em 1.188em;
    /*8px 19px*/
    text-transform: uppercase;
    vertical-align: middle;
}

.btn:hover,
.btn.btn-diagonal:hover,
.btn.btn-diagonal:hover:before,
.cta-box:hover .btn {
    background-color: #ffba00;
    color: #000;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}

.btn-secondary,
.btn-secondary.btn-diagonal,
.btn-secondary.btn-diagonal:before {
    background-color: #ffba00;
    /* Yellow */
    color: #000;
}

.btn-secondary:hover,
.btn-secondary.btn-diagonal:hover,
.btn-secondary.btn-diagonal:hover:before,
.location-track:hover .btn {
    background-color: #000;
    color: #fff;
}

.btn-tertiary,
.btn-tertiary.btn-diagonal,
.btn-tertiary.btn-diagonal:before {
    background-color: #000;
    /* Black */
    color: #fff;
}

.btn-tertiary:hover,
.btn-tertiary.btn-diagonal:hover,
.btn-tertiary.btn-diagonal:hover:before {
    background-color: #ffba00;
    color: #000;
}

.btn-quaternary,
.btn-quaternary.btn-diagonal,
.btn-quaternary.btn-diagonal:before {
    background-color: #35353f;
    /* Gray */
    color: #fff;
}

.btn-quaternary:hover,
.btn-quaternary.btn-diagonal:hover,
.btn-quaternary.btn-diagonal:hover:before {
    background-color: #ffba00;
    color: #000;
}

.btn-basic {
    color: #fff;
    font: 22px 'Bebas Neue Bold', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.btn-basic:hover {
    color: #e7160f;
}

.btn-accent:after {
    content: "»";
    padding-left: 0.313em;
    /*5px*/
}

.btn-diagonal {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    position: relative;
    z-index: 1;
}

.btn-diagonal:before {
    content: "";
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    top: 0;
    right: -1px;
    z-index: -1;
    background-color: inherit;
    transform-origin: bottom left;
    -webkit-transform: skew(-25deg, 0deg);
    -ms-transform: skew(-25deg, 0deg);
    transform: skew(-25deg, 0deg);
}

.btn-diagonal:hover,
.btn-diagonal:hover:before {
    background-color: inherit;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn+.btn {
    margin-left: 0.143em;
    /*5px*/
    /* Add margin-left when 2 buttons are next to each other */
    margin-top: 0.1em;
}

@media (min-width: 768px) {
    .btn {
        font-size: 18px;
        padding: 0.889em 1.222em;
        /*16px 22px*/
    }

    .btn-small {
        padding: .5em 1.188em;
    }

    .btn+.btn {
        margin-left: 0.667em;
        /*12px*/
        /* Add margin-left when 2 buttons are next to each other */
        margin-top: 0;
    }
}

@media (min-width: 1025px) {
    .btn-basic {
        display: inline-block;
        border-bottom: 1px solid #fff;
    }

    .btn-basic:hover {
        border-color: #e7160f;
    }
}



/**
 * Icons
 */

@font-face {
    font-family: 'icomoon';
    src: url('../icons/icomoon.eot?kgpb06');
    src: url('../icons/icomoon.eot?kgpb06#iefix') format('embedded-opentype'),
        url('../icons/icomoon.ttf?kgpb06') format('truetype'),
        url('../icons/icomoon.woff?kgpb06') format('woff'),
        url('../icons/icomoon.svg?kgpb06#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
    vertical-align: middle;
}

[class^="icon-"]:before,
[class*=" icon-"]:before,
[class^="icon-"]:after,
[class*=" icon-"]:after,
.callout .btn[href^="tel:"]:before {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
    padding-right: 0.214em;
    /*3px*/
}

[class^="icon-"]:after,
[class*=" icon-"]:after {
    padding-left: 0.214em;
    /*3px*/
}

.icon-gift:before {
    content: "\e91a";
}

.icon-credit-card-alt:before {
    content: "\e91b";
}

.icon-instagram-with-circle:before {
    content: "\e919";
}

.icon-clock:before {
    content: "\e917";
}

.icon-mail:before {
    content: "\e918";
}

.icon-chevron-right:before {
    content: "\e900";
}

.icon-minus-square:before {
    content: "\e901";
}

.icon-plus-square:before {
    content: "\e902";
}

.icon-x:before {
    content: "\e903";
}

.icon-x:before {
    content: "\e903";
}

.icon-arrow-up:before {
    content: "\e904";
}

.icon-cards:before {
    content: "\e905";
}

.icon-chevron-down:before {
    content: "\e906";
}

.icon-facebook:before {
    content: "\e907";
}

.icon-flag:before {
    content: "\e908";
}

.icon-linkedin:before {
    content: "\e909";
}

.icon-menu:before {
    content: "\e90a";
}

.icon-person:before {
    content: "\e90b";
}

.icon-phone-basic:before,
.callout .btn[href^="tel:"]:before {
    content: "\e90c";
    padding-right: 5px;
}

.icon-phone:before {
    content: "\e90d";
}

.icon-pin-in-map:before {
    content: "\e90e";
}

.icon-pin:before {
    content: "\e90f";
}

.icon-plus:before {
    content: "\e910";
}

.icon-search:before {
    content: "\e911";
}

.icon-star:before {
    color: #f0c537;
    content: "\e912";
}

.icon-twitter:before {
    content: "\e913";
}

.icon-up-down:before {
    content: "\e914";
}

.icon-waiver:before {
    content: "\e915";
}

.icon-youtube:before {
    content: "\e916";
}

.icon-mail4:before {
    content: "\ea86";
}


/**
 * Multi-list
 *
 * Stack lists into columns
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 */

.multi-list {
    list-style: none;
    margin-left: 0;
}

.multi-list>li {
    float: left;
}

.multi-list-padded>li {
    padding-left: 12px;
    padding-right: 12px;
}

/* TODO: update to match container padding */

/**
 * Apply these classes alongside the `.matrix` or `.multi-list` classes on
 * lists to determine how wide their columns are.
 */

.two-cols>li {
    width: 50%;
}

.three-cols>li {
    width: 33.333%;
}

.four-cols>li {
    width: 25%;
}

.five-cols>li {
    width: 20%;
}

/**
     * Unfortunately we have to qualify this selector in order to bring its
     * specificity above the `.[number]-cols > li` selectors above.
     */
.matrix>.all-cols,
.multi-list>.all-cols {
    width: 100%;
}


/**
 * Tables
 */

table {
    border-collapse: separate;
    border: 2px solid #ddd;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 1.5em;
    width: 100%;
}

.pricing-specials table {
    text-align: center;
}

/*tr:nth-child(odd) { background-color: #ddd; }*/

td {
    border: none;
    padding: 0.571em 1.429em;
    /*8px 20px*/
}

th,
tr:first-child td {
    background-color: #ddd;
    border: none;
    font: 20px 'Bebas Neue Bold', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.5em 1em;
    /*10px 20px*/
}

/* Responsive Tables */
.table-wrap-outer {
    position: relative;
}

.table-wrap-inner {
    overflow: auto;
}

.js-table-fade {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.table-wrap-outer:after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    width: 80px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=1);
    /* IE6-9 */
}

@media (min-width: 600px) {
    .table-wrap-outer:after {
        display: none;
    }

    .table-wrap-inner {
        overflow: visible !important;
    }
}

@media (min-width: 1025px) {
    table {
        margin-bottom: 1.5em;
        /*24px*/
    }
}



/**
 * Forms
 */

.form-field {
    margin-bottom: 0.929em;
    /*13px*/
}

label {
    color: #000;
    display: block;
    font: 20px 'Bebas Neue', sans-serif;
    margin-bottom: 0.4em;
    /*8px*/
    text-transform: uppercase;
    vertical-align: middle;
}

.req,
.required {
    color: #e7160f;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
    -webkit-appearance: none;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #666;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #666;
}

::placeholder {
    color: #666;
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"],
textarea {
    background-color: #fff;
    border: 2px solid #ddd;
    color: #000;
    font: 20px 'Bebas Neue', sans-serif;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    padding: 0.7em 0.75em;
    /*14px 15px*/
    text-transform: uppercase;
    width: 100%;
    outline: none;
}

[type="text"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="week"]:focus,
[type="date"]:focus,
textarea:focus {
    border-color: #e7160f;
}


/* Default Submit Button Style */
[type="submit"] {
    background-color: #e7160f;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    display: inline-block;
    font: 18px 'Bebas Neue Bold', sans-serif;
    letter-spacing: 0.06em;
    padding: 0.889em 2.333em;
    /*16px 42px*/
    text-transform: uppercase;
}

[type="submit"]:hover {
    background-color: #ffba00;
    color: #000;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border: none;
    padding: 0;
}

/* Default Radio/Checkbox Style (if using CF7) */
.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle;
    cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
    display: block;
}

.wpcf7-radio label,
.wpcf7-checkbox label {
    display: inline-block;
}

/* Mailpoet */
.mailpoet_text,
.mailpoet_textarea,
.mailpoet_submit {
    width: 100% !important;
}

@media (min-width: 1025px) {
    .form-row {
        margin-bottom: 1.143em;
        /*16px*/
    }

    .form-field {
        margin-bottom: 0;
    }
}


/* Selectric */
select,
select:focus {
    outline: none;
}

.selectric-wrapper {
    position: relative;
    cursor: pointer;
}

.selectric-responsive {
    width: 100%;
}

.selectric {
    border: 1px solid #DDD;
    border-radius: 0px;
    background: #F8F8F8;
    position: relative;
    overflow: hidden;
}

.selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 38px 0 10px;
    font-size: 12px;
    line-height: 38px;
    color: #444;
    height: 38px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background-color: #F8f8f8;
    color: #BBB;
    text-align: center;
    font: 0/0 a;
    *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: #BBB;
    border-bottom: none;
}

.selectric-focus .selectric {
    border-color: #aaaaaa;
}

.selectric-hover .selectric {
    border-color: #c4c4c4;
}

.selectric-hover .selectric .button {
    color: #a2a2a2;
}

.selectric-hover .selectric .button:after {
    border-top-color: #a2a2a2;
}

.selectric-open {
    z-index: 9999;
}

.selectric-open .selectric {
    border-color: #c4c4c4;
}

.selectric-open .selectric-items {
    display: block;
}

.selectric-disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectric-hide-select {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0;
}

.selectric-hide-select select {
    position: absolute;
    left: -100%;
}

.selectric-hide-select.selectric-is-native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.selectric-hide-select.selectric-is-native select {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border: none;
    z-index: 1;
    box-sizing: border-box;
    opacity: 0;
}

.selectric-input {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    outline: none !important;
    border: none !important;
    *font: 0/0 a !important;
    background: none !important;
}

.selectric-temp-show {
    position: absolute !important;
    visibility: hidden !important;
    display: block !important;
}

/* Items box */
.selectric-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #F8F8F8;
    border: 1px solid #c4c4c4;
    z-index: -1;
    box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto;
}

.selectric-above .selectric-items {
    top: auto;
    bottom: 100%;
}

.selectric-items ul,
.selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    min-height: 20px;
}

.selectric-items li {
    display: block;
    padding: 10px;
    color: #666;
    cursor: pointer;
}

.selectric-items li.selected {
    background: #E0E0E0;
    color: #444;
}

.selectric-items li.highlighted {
    background: #D0D0D0;
    color: #444;
}

.selectric-items li:hover {
    background: #D5D5D5;
    color: #444;
}

.selectric-items .disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: none;
    color: #444;
}

.selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1;
}

.selectric-items .selectric-group li {
    padding-left: 25px;
}


/* iCheck plugin Minimal skin, red
----------------------------------- */
.icheckbox_minimal-red,
.iradio_minimal-red {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 18px;
    height: 18px;
    background: url(../img/red.png) no-repeat;
    border: none;
    cursor: pointer;
}

.icheckbox_minimal-red {
    background-position: 0 0;
    margin-left: 2em;
}

.icheckbox_minimal-red+label {
    margin-bottom: 0;
    margin-left: 5px;
}

.icheckbox_minimal-red.hover {
    background-position: -20px 0;
}

.icheckbox_minimal-red.checked {
    background-position: -40px 0;
}

.icheckbox_minimal-red.disabled {
    background-position: -60px 0;
    cursor: default;
}

.icheckbox_minimal-red.checked.disabled {
    background-position: -80px 0;
}

.iradio_minimal-red {
    background-position: -100px 0;
}

.iradio_minimal-red.hover {
    background-position: -120px 0;
}

.iradio_minimal-red.checked {
    background-position: -140px 0;
}

.iradio_minimal-red.disabled {
    background-position: -160px 0;
    cursor: default;
}

.iradio_minimal-red.checked.disabled {
    background-position: -180px 0;
}

/* HiDPI support */
@media (-o-min-device-pixel-ratio: 5/4),
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 120dpi),
(min-resolution: 1.25dppx) {

    .icheckbox_minimal-red,
    .iradio_minimal-red {
        background-image: url(../img/red@2x.png);
        -webkit-background-size: 200px 20px;
        background-size: 200px 20px;
    }
}


/* CF7 Validation (Replace if not using CF7) */
.wpcf7-form-control-wrap {
    position: relative;
}

/* Individual field error messages */
.wpcf7-not-valid-tip {
    color: #e7160f;
    font: 700 12px 'Roboto Condensed';
    font-style: italic;
    text-transform: uppercase;

    left: 15%;
    top: -40px;
    position: absolute;
}

/* Entire form error message */
.wpcf7-response-output {
    font-weight: 700;
    color: green;
}

.wpcf7-validation-errors {
    color: #e7160f;
}

/* Styling for fields that have errors */
select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .selectric {
    border: 2px solid #e7160f;
}

@media (min-width: 600px) {

    .label-inline,
    .wpcf7-radio .wpcf7-list-item,
    .wpcf7-checkbox .wpcf7-list-item {
        display: inline-block;
    }
}



/**
 * Breadcrumbs
 */

.breadcrumbs {
    background-color: #252525;
    color: #fff;
    font: 600 16px 'Titillium Web', sans-serif;
    padding-top: 0.438em;
    /*7px*/
    padding-bottom: 0.438em;
    /*7px*/
    text-transform: uppercase;
}

.breadcrumbs a {
    color: #fff;
}

.breadcrumbs a:hover {
    color: #d60e16;
}

.breadcrumbs .separator:before {
    color: #d60e16;
    padding-right: 0;
    font-size: 16px;
}



/**
 * Pagination
 */

.wp-pagenavi a,
.wp-pagenavi span {
    color: #1a1a1a;
    padding: 3px 10px;
}

.wp-pagenavi a {
    font-weight: 700 !important;
}

.wp-pagenavi a:hover,
.wp-pagenavi .current {
    border-color: #d60e16 !important;
    color: #d60e16 !important;
}

.wp-pagenavi a:before {
    display: none;
}



/**
 * Sliders/Carousels
 * Slick Slider - http://kenwheeler.github.io/slick/
 */

/* General styling */

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-slide,
.slick-arrow,
.slick-dots button,
.slick-slide:focus * {
    outline: none !important;
}

.slick-initialized .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
}

.slick-dots {
    text-align: center;
    margin-top: 15px;
    position: relative;
}

.slick-dots li {
    display: inline-block;
    font-size: 0;
    line-height: 0;
    padding-left: 4px;
    padding-right: 4px;
    vertical-align: middle;

}

.slick-dots button {
    background-color: #fff;
    width: 57px;
    height: 5px;
}

.slick-dots li.slick-active button {
    background-color: #e7160f;
}

/* Preload affect */

.slick-slider .slide {
    display: none;
}

.slick-slider .slide:first-child {
    display: block;
}

.slick-slider.slick-initialized .slide {
    display: block;
}

.js-slider-has-preloader {
    /* Add this class to your slider */
    min-height: 50px;
    position: relative;
}

.js-slider-has-preloader:before {
    content: url('../img/loading.gif');
    /* Create and upload a loading gif to your image directory */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    /* Update width based on gif size */
    height: 50px;
    /* Update height based on gif size */
    transition: all .5s ease;
    transform: translate(-50%, -50%);
}

.js-slider-has-preloader-init:before {
    transform: scale(0);
}

@media (max-width: 767px) {
    .slick-dots:before {
        content: "";
        background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(33, 33, 33, 1) 75%, rgba(33, 33, 33, 1) 100%);
        background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(33, 33, 33, 1) 75%, rgba(33, 33, 33, 1) 100%);
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(33, 33, 33, 1) 75%, rgba(33, 33, 33, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#212121', GradientType=0);
        position: absolute;
        bottom: 25px;
        left: 0;
        width: 100%;
        height: 70px;
    }
}

@media (min-width: 768px) {
    .slick-dots {
        position: absolute;
        bottom: 20px;
        width: 100%;
        margin-top: 0;
    }
}



/**
 * Tabs
 */

/*hide the inputs/checkmarks*/
input.js-tabs-select {
    display: none;
}

/*position the label*/
.tabs label {
    position: relative;
    display: block;
    cursor: pointer;

    color: #fff;
    background: url(../img/select-bg.png) no-repeat 96% center #e7160f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font: 18px 'Bebas Neue Bold';
    padding: 0.333em 0.778em;
    /*6px 14px*/
    cursor: pointer;
    border: none;
    width: 100%;
    margin-bottom: 0;
}

/*hide the submenu*/
.js-tabs {
    background-color: #e7160f;
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -o-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
    font: 18px 'Bebas Neue Bold';
    cursor: pointer;
    margin-top: -4px;

    display: none;
    overflow: hidden;
}

.js-tabs li {
    padding: 0.333em 0.778em;
    /*6px 14px*/
}

.js-tabs .active {
    background-color: #000;
}

.js-tabs a {
    color: #fff;
    display: block;
}

/*show the submenu when checked*/
input.js-tabs-select:checked~.js-tabs {
    display: block;
}

.tab-content {
    width: 100%;
    position: relative;
    display: none;
    margin-top: 20px;
}

.tab-content.active {
    text-align: center;
    display: table;
}

.tab-content .btn {
    display: none;
}

.tab-content--inner:first-of-type {
    border-bottom: 1px solid #dedede;
}

.tab-content--inner:first-of-type:last-of-type {
    border-bottom: none;
}

.tab-content:last-child .tab-content--inner {
    width: 100%;
}

.tab-content--inner h4 {
    color: #777;
    font-size: 20px;
}

.tab-content--inner img {
    width: auto;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .tabs {
        border: 3px solid #dedede;
        border-top: none;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
    }

    .js-tabs {
        padding: 0;
        margin: 0 -3px;
        display: block;
    }

    .js-tabs li {
        background: #ddd;
        float: left;
        padding: 0;
        width: 50%;
    }

    .js-tabs li.active {
        background: #ddd;
    }

    .js-tabs li:first-child a {
        -webkit-border-radius: 5px 0 0 5px;
        -moz-border-radius: 5px 0 0 5px;
        -o-border-radius: 5px 0 0 5px;
        border-radius: 5px 0 0 5px;
    }

    .js-tabs li:last-child a {
        -webkit-border-radius: 0 5px 5px 0;
        -moz-border-radius: 0 5px 5px 0;
        -o-border-radius: 0 5px 5px 0;
        border-radius: 0 5px 5px 0;
    }

    .js-tabs a {
        color: #7b7b7b;
        cursor: pointer;
        font: 30px 'Bebas Neue Bold';
        padding: 0.4em 0.533em;
        /*12px 16px*/
        position: relative;
        z-index: 1;
        display: block;
    }

    .js-tabs a:before {
        display: none;
    }

    .js-tabs li.active a {
        background-color: #e81d17;
        color: #fff;
        width: 94%;
    }

    .js-tabs li.active a:after {
        content: "";
        position: absolute;
        display: block;
        width: 50%;
        height: 100%;
        top: 0;
        right: -1px;
        z-index: -1;
        background-color: inherit;
        transform-origin: bottom left;
        -webkit-transform: skew(-25deg, 0deg);
        -ms-transform: skew(-25deg, 0deg);
        transform: skew(-25deg, 0deg);
    }

    .js-tabs li.active:last-child a {
        width: 100%;
    }

    .js-tabs li.active:last-child a:after {
        left: -28px;
        right: auto;
    }

    .tab-content {
        margin-bottom: 60px;
    }

    .tab-content--inner {
        width: 50%;
        display: table-cell;
    }

    .tab-content--inner:first-of-type {
        border-right: 2px solid #dedede;
        border-bottom: none;
    }

    .tab-content--inner:first-of-type:last-of-type {
        border-right: none;
    }

    .tab-content .btn {
        display: inline-block;
        position: absolute;
        right: -3px;
        bottom: -63px;

        -webkit-border-radius: 5px 0 5px 0;
        -moz-border-radius: 5px 0 5px 0;
        -o-border-radius: 5px 0 5px 0;
        border-radius: 5px 0 5px 0;
    }
}


/**
 * Accordion
 */

.page-content+.accordion-section {
    padding-top: 0;
}

.accordion-section .accordion--item:nth-child(odd) {
    clear: left;
}

.accordion-section .accordion-toggle {
    background: none;
    color: #000;
    padding: 0;
    margin-bottom: 2.143em;
    /*30px*/
    position: relative;
}

.accordion-section .accordion-toggle:before {
    border: 2px solid #e7160f;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    color: #e7160f;
    font-size: 21px;
    display: inline-block;
    vertical-align: middle;
    padding: 0.571em;
    /*12px*/
    margin-right: 0.952em;
    /*20px*/
}

.accordion-section .accordion-toggle.active:before {
    content: "\e903";
}

.accordion-section .accordion-toggle h3 {
    font: 700 18px 'Roboto Condensed', sans-serif;
    font-style: italic;
    text-transform: none;
    margin-bottom: 0;
    width: calc(100% - 77px);
    display: inline-block;
    vertical-align: middle;
}

.accordion-section .accordion-toggle:after {
    display: none;
}

.accordion-section .accordion-content {
    font: 16px 'Titillium Web', sans-serif;
    text-align: left;
    margin-left: 4.625em;
    /*74px*/
    margin-bottom: 1.625em;
    /*26px*/
    margin-top: -2em;
    width: calc(100% - 76px);
}

.accordion-homepage .track-img {
    width: auto;
    margin: 0 auto;
}

@media (min-width: 600px) {
    .accordion .accordion-content .accordion-content--item:first-child {
        border-right: 1px solid #ddd;
        border-bottom: none;
    }
}



/**
 * Read More
 */

.read-more-link {
    display: block;
    width: 100%;
    text-align: center;
    font: 14px 'Bebas Neue Bold', sans-serif;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding-top: 100px;
    padding-bottom: 25px;
    margin-top: -100px;
    z-index: 0;
    position: relative;
}

.read-more-link:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;

    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 75%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#ffffff', GradientType=0);
}

.flex-content--even .read-more-link:before {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 1) 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(246, 246, 246, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#f6f6f6', GradientType=0);
}

.bg-dark-gray .read-more-link {
    color: #fff;
}

.bg-dark-gray .read-more-link:before {
    background: -moz-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 1) 70%, rgba(33, 33, 33, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 1) 70%, rgba(33, 33, 33, 1) 100%);
    background: linear-gradient(to bottom, rgba(33, 33, 33, 0) 0%, rgba(33, 33, 33, 1) 70%, rgba(33, 33, 33, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3a3a3a', endColorstr='#212121', GradientType=0);
}

.read-more-link.expanded {
    margin-top: -35px;
    padding-top: 0;
}

.read-more-link.expanded:before {
    display: none;
}



/* --------------------------------------------------*\
    UI
    UI peices are site specific non generic styles.
    eg: header, footer, sidebar, page specific styles
\* -----------------------------------------------------*/

/**
 * Page-head
 */

.page-header {
    text-transform: uppercase;
    /*position: relative;*/
    top: -100px;
}

.page-header.affix-head {
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
}

.header__sub {
    background-color: #14141f;
    padding-top: 0.286em;
    /*4px*/
    padding-bottom: 0.286em;
    /*4px*/
}

.header__sub--mobile {
    width: 600px;
    padding-left: 4px;
    padding-right: 4px;
}

.header__sub--mobile .btn {
    font-size: 12px;
    padding-left: 9px;
    padding-right: 9px;
}

.header__sub--mobile .btn:before {
    color: #d60e16;
    /*                    display: none;*/
}

/*
                .header__sub--mobile .btn { 
                    border-top-left-radius: 0px;
                    border-bottom-left-radius: 0px;
                }*/

/*                .header__sub--mobile .btn-icon {
                    background-color: #d60e16;
                    display: inline-block;
                    text-align: center;
                    width: 24px;
                    border-top-left-radius: 4px;
                    border-bottom-left-radius: 4px;
                    height: 24px;
                    vertical-align: top;
                    display: -webkit-inline-box;
                    display: -ms-inline-flexbox;
                    display: inline-flex;
                    -webkit-box-align: center;
                   -ms-flex-align: center;
                    align-items: center;
                   -webkit-box-pack: center;
                   -ms-flex-pack: center;
                    justify-content: center;
                    color: #fff;
                }*/

/*                @media (min-width: 768px) {
                    .header__sub--mobile .btn-icon {
                        height: 34px;
                    }
                }*/

/*                .header__sub--mobile .btn-icon:before { padding: 0; }*/

.header__sub--mobile .icon-credit-card-alt:before {
    font-size: 12px;
}


.header__sub--default .click-to-call span:before {
    color: #d60e16;
}

.header__sub--default .click-to-call a {
    color: #1a1a1a;
    font-weight: 700;
}

.header__sub--default .click-to-call a:hover {
    color: #d60e16
}

.header__sub--default .nav-top-menu,
.header__sub--default .search-form {
    display: inline-block;
    font: 14px 'Titillium Web', sans-serif;
}

.header__sub--default .nav-top-menu li {
    margin-right: 1.643em;
    /*23px*/
    display: inline-block;
}

.header__sub--default .nav-top-menu a {
    color: #1a1a1a;
}

.header__sub--default .nav-top-menu a:hover,
.header__sub--default .nav-top-menu .current-menu-item a {
    color: #d60e16
}


.header__sub--default .search-form {
    padding-bottom: 0.5em;
    position: relative;
}

.header__sub--default .search-form .search-form--field {
    font: 14px 'Titillium Web', sans-serif;
    border: none;
    position: relative;
    width: 80px;
    padding: 0 0 0 1.143em;
    /*16px*/
}

.header__sub--default .search-form .search-form--field:focus {
    width: 150px;
}

.header__sub--default .search-form .search-form--submit {
    font-size: 11px;
    position: absolute;
    left: 0;
    top: 20%;

    background: none;
    color: #1a1a1a;
    padding: 0;
}

.header__sub--default .buttons-menu {
    display: inline-block;
}

.header__sub--default .buttons-menu .icon-credit-card-alt:before {
    padding-right: 7px;
    font-size: 15px;
}

.header__main {
    background-color: #d60e16;
    color: #fff;
    padding-top: 0.286em;
    /*4px*/
    padding-bottom: 0.429em;
    /*6px*/
    position: relative;
}

.header__main--mobile {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__main--mobile button {
    font: 600 11px 'Titillium Web';
}

.header__main--mobile button:before {
    display: block;
    font-size: 18px;
    letter-spacing: 0.06em;
    padding-bottom: 0.111em;
    /*2px*/
    padding-right: 0;
}

.header__main--mobile .logo img {
    display: inline-block;
    max-height: 45px;
    max-width: 145px;
}

.header__main--default {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}


.header__main .search-form {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    padding: 1em;
    background-color: #000;
    display: none;
    z-index: 999;
}

.header__main .search-form .search-form--field {
    position: relative;
}

.header__main .search-form .search-form--submit {
    position: absolute;
    right: 14px;
    top: 14px;
    height: 66%;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

@media (max-width: 767px) {
    .page-header .header__sub {
        overflow-y: hidden;
    }

    .page-header.affix-head .header__main {
        margin-top: 11px;
    }
}

@media (min-width: 600px) {
    .header__sub--mobile {
        text-align: center;
    }
}

@media (min-width: 768px) {
    .header__main .search-form .search-form--submit {
        right: 17px;
        top: 17px;
        height: 61%;
        width: 13%;
    }
}

@media (min-width: 1025px) {
    .header__sub {
        background-color: #fff;
        padding-top: 0.714em;
        /*10px*/
        padding-bottom: 0.714em;
        /*10px*/
    }

    .header__sub .btn:before {
        color: #fff;
    }

    .header__sub--default .row {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .header__sub--default .btn {
        font-size: 18px;
        padding: 0.556em 0.889em;
        /*10px 16px*/
        margin-left: 0;
    }

    .header__sub--default .btn:hover:before {
        color: #000;
    }

    .header__sub--default .nav-top-menu,
    .header__sub--default .search-form .search-form--field {
        font-size: 16px;
    }

    .header__main {
        padding-top: 0;
        padding-bottom: 0;
    }

    .sticky-header {
        background-color: #d60e16;
        padding-top: 20px;
        padding-bottom: 20px;
        display: none;
    }

    .sticky-header .sticky-header--content {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .page-header.affix-head .header__sub,
    .page-header.affix-head .header__main {
        display: none;
    }

    .page-header.affix-head .sticky-header {
        display: block;
        color: #fff;
        margin-top: 45px;
    }

    .sticky-header .logo {
        display: inline-block;
        margin-bottom: 10px;
        vertical-align: middle;
    }

    .sticky-header .click-to-call {
        font-size: 16px;
        margin-bottom: .3em;
    }

    .sticky-header .click-to-call a {
        color: #fff;
        font-weight: bold;
    }

    .sticky-header .click-to-call a:hover {
        color: #000;
    }

    .sticky-header--menu .click-to-call {
        display: none;
        margin-left: 0.5em;
    }
}

@media (min-width: 1200px) {
    .header__sub--default .click-to-call {
        font-size: 18px;
    }

    .header__sub--default .btn {
        margin-left: 0.667em;
    }
}

@media (min-width: 1350px) {
    .sticky-header .btn {
        font-size: 20px;
        margin-left: 0.1em;
        padding: 0.8em 1em;
        /*20px*/
    }

    .sticky-header--logo .click-to-call {
        display: none;
    }

    .sticky-header--menu .click-to-call {
        display: block;
    }
}

@media (min-width: 1400px) {
    .sticky-header .click-to-call {
        font-size: 17px;
        margin-bottom: .6em;
    }
}

@media (min-width: 1600px) {
    .sticky-header--menu .click-to-call {
        margin-left: 1em;
    }
}

@media (min-width: 1800px) {
    .sticky-header .logo {
        margin-bottom: 0;
    }

    .sticky-header .click-to-call {
        display: inline-block;
        vertical-align: middle;
        margin-left: 18px;
    }

    .sticky-header--menu .click-to-call {
        display: none;
    }
}

/* Fix sticky header position for when admin bar visible */
.admin-bar .page-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .page-header {
        top: 46px;
    }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .header__main .logo img,
    .header__main--default .logo {
        display: none;
    }

    .header__main--mobile .logo {
        background: url('../../images/logo@2x.png');
        background-size: cover;
        display: inline-block;
        height: 50px;
        width: 164px;
    }

    @media (min-width: 1025px) {

        .header__main .logo img,
        .header__main--default .logo {
            display: block;
        }
    }
}



/**
 * Navigation
 */

.nav-primary {
    display: none;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
}

.nav-primary li {
    position: relative;
}

.nav-primary li:hover,
.nav-primary li.js-toggled,
.nav-primary li.current-menu-item,
.nav-primary li.current-page-ancestor {
    background-color: #252525;
}

.nav-primary a {
    color: #fff;
    display: block;
    letter-spacing: 0.06em;
    padding: 0.5em;
}

.nav-primary .sub-menu-toggle {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 5px;
    width: 50px;
    height: 25px;
    text-align: center;
}

.nav-primary .sub-menu-toggle:before {
    vertical-align: middle;
}

.nav-primary .sub-menu-toggle.js-clicked {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nav-primary .sub-menu {
    display: none;
    text-transform: capitalize;
}

.nav-primary .sub-menu li {
    background-color: #252525;
    padding: 0.5em 1em;
}

.nav-primary .sub-menu li:first-child {
    padding-top: 1em;
}

.nav-primary .sub-menu li:last-child {
    padding-bottom: 1em;
}

.nav-primary .sub-menu li:hover>a,
.nav-primary .sub-menu li.current-menu-item>a,
.nav-primary .sub-menu li.current-page-ancestor>a {
    border-color: #db0d17;
    font-weight: 600;
}

.nav-primary .sub-menu a {
    border-left: 2px solid #5d5d5d;
    border-bottom: 2px solid #5d5d5d;
    border-bottom-left-radius: 5px;
    padding-left: 1em;
}

@media (min-width: 1025px) {
    .nav-primary {
        display: inline-block;
        margin-left: 0.714em;
        /*10px*/
        margin-top: 0;
    }

    .nav-primary>.menu>li:first-child {
        display: none;
    }

    .nav-primary li,
    .nav-primary a {
        display: inline-block;
        position: relative;
    }

    .nav-primary a {
        padding: 2em 0.4em;
        /*28px 6px*/
        font-size: 12px;
    }

    .nav-primary .sub-menu-toggle {
        position: relative;
        height: auto;
        width: auto;
        top: 0px;
        right: 5px;
        font-size: 8px;
    }

    .nav-primary .sub-menu-toggle::before {
        vertical-align: unset;
    }

    /* 2nd Level */
    .nav-primary .sub-menu {
        border-bottom: 9px solid #eb190c;
        position: absolute;
        top: 100%;
        left: 0;
        width: 364px;
        z-index: 9999;
    }

    .nav-primary .sub-menu li,
    .nav-primary .sub-menu a {
        display: block;
    }

    .nav-primary .sub-menu li {
        padding: 0.429em 1.429em;
        /*6px 20px*/
    }

    .nav-primary .sub-menu li:first-child {
        padding-top: 1.571em;
        /*22px*/
    }

    .nav-primary .sub-menu li:last-child {
        padding-bottom: 1.571em;
        /*22px*/
    }

    .nav-primary .sub-menu a {
        padding: 0.857em 1.143em;
        /*12px 16px*/
    }

    .nav-primary .sub-menu .sub-menu-toggle {
        display: none;
    }

    .nav-primary .sub-menu .menu-item-has-children>a {
        position: relative;
    }

    .nav-primary .sub-menu .menu-item-has-children>a:after {
        font: 400 22px 'icomoon';
        content: "\e902";
        color: #525252;
        display: inline-block;
        position: absolute;
        right: 0;
        top: 15px;
    }

    /* 3rd Level */
    .nav-primary .sub-menu .sub-menu {
        left: 100%;
        top: 0;
    }

    .nav-primary .sub-menu .sub-menu li {
        background-color: #343434;
    }

    .nav-primary li:hover>.sub-menu {
        display: block !important;
    }

    .nav-primary li:last-child:hover>.sub-menu {
        left: auto;
        right: 0;
    }

    .nav-primary li:last-child:hover>.sub-menu .sub-menu {
        right: 100%;
        left: auto;
    }


    .sticky-header .nav-primary {
        margin-bottom: 1em;
        margin-left: 0;
    }

    .sticky-header .nav-primary>.menu>li:first-child,
    .sticky-header .nav-primary>.menu>li:nth-child(7),
    .sticky-header .nav-primary>.menu>li:nth-child(8) {
        display: none;
    }

    .sticky-header .nav-primary a {
        padding-top: 1em;
        padding-bottom: 1em;
    }
}

@media (min-width: 1200px) {
    .nav-primary {
        font-size: 15px;
    }

    .nav-primary>.menu>li:first-child {
        display: inline-block;
    }

    .nav-primary a {
        padding: 1.889em 0.667em;
        /*34px 12px*/
    }

    .nav-primary .sub-menu-toggle {
        right: 7px;
    }

    .nav-primary .sub-menu {
        font-size: 16px;
    }
}

@media (min-width: 1350px) {
    .sticky-header .nav-primary {
        display: inline-block;
        width: auto;
        margin-bottom: 0;
    }

    .sticky-header .nav-primary>.menu>li:nth-child(5),
    .sticky-header .nav-primary>.menu>li:nth-child(6),
    .sticky-header .nav-primary>.menu>li:nth-child(7) {
        display: none;
    }
}

@media (min-width: 1400px) {
    .nav-primary {
        font-size: 18px;
    }

    .sticky-header .nav-primary {
        margin-bottom: 0;
        font-size: 18px;
    }
}

@media (min-width: 1600px) {
    .nav-primary a {
        padding-left: 1em;
        /*18px*/
        padding-right: 1em;
        /*18px*/
    }
}



/**
 * Masthead
 */

.masthead {
    background: url(../img/masthead-bg.png) no-repeat -20% 45% #000;
    color: #fff;
    padding-top: 2.286em;
    /*32px*/
    padding-bottom: 2.286em;
    /*32px*/
}

.masthead .page-title {
    margin-bottom: 0;
}

/* Homepage Slider */
.masthead--slideshow {
    background: #212121;
    padding: 0;
}

.masthead--slider .slick-slide {
    width: 263px;
    padding: 0 5px;
}

.masthead--slider .slider-item {
    text-align: center;
}

.masthead--slider .slider-item--text {
    background: url(../img/texture-mobile.png) repeat-x left top #212121;
    padding: 16px 11px;
    margin-left: -10px;
    margin-right: -10px;
}

.masthead--slider .slick-slide:not(.slick-current) .slider-item--text>* {
    opacity: 0;
}

.masthead--slider h1 {
    font-size: 29px;
}

.masthead--slider img,
.masthead--nav img {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    object-position: center center;
    display: block;
    width: 100%;
}

.masthead--slider img {
    height: 195px;
}

.masthead--nav .slick-current {
    display: none;
}

@media (min-width: 600px) {
    .masthead {
        background-position: -50% 45%;
    }

    .masthead--slider .slick-slide {
        padding: 0;
    }

    .masthead--slider img {
        height: 300px;
    }
}

@media (min-width: 768px) {
    .masthead {
        background-position: -80% 45%;
    }

    .masthead--slider .slick-slide {
        width: 100%;
    }

    .masthead--slider .slider-item,
    .masthead--nav .slider-item {
        position: relative;
    }

    .masthead--slider .slider-item--text {
        background: rgb(5, 5, 5);
        background: rgba(5, 5, 5, 0.6);
        padding: 25px 25px 55px;
        position: absolute;
        bottom: 0;
        z-index: 99;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .masthead--slider img {
        height: 345px;
    }

    .masthead--nav .slider-item {
        position: relative;
    }

    .masthead--nav .slider-item:before {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgb(0, 0, 0);
        background-color: rgba(0, 0, 0, 0.4);
        content: "";
    }

    .masthead--nav .btn {
        position: absolute;
        left: 0;
        bottom: 0;
    }

    .masthead--nav img {
        height: 205px;
    }
}

@media (min-width: 1025px) {
    .masthead {
        background-position: -600% 40%;
    }

    .masthead--slideshow {
        background: #212121;
    }

    .masthead--slider {
        border-right: 2px solid #000;
    }

    .masthead--slider img {
        height: 505px;
        width: 100%;
    }


    .masthead--nav .slick-list {
        height: 505px !important;
    }

    .masthead--nav .slider-item.slick-active {
        border-bottom: 2px solid #000;
    }

    .masthead--nav .btn {
        font-size: 20px;
    }

    .masthead--nav img {
        height: 251px;
    }
}

@media (min-width: 1200px) {
    .masthead {
        background-position: 160% 40%;
    }
}

@media (min-width: 1400px) {
    .masthead {
        background-position: right 40%;
    }
}



/**
 * CTA Boxes
 */

.cta-box--container {
    margin-bottom: 0.857em;
    /*12px*/
}

.cta-box {
    background-color: #000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    display: block;
    margin-bottom: 16px;
}

.cta-box:hover {
    color: #fff;
}

.cta-box img {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    display: block;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    height: 79px;
    width: 100%;
}

.cta-box--text {
    border-bottom: 1px solid #585858;
    font-size: 14px;
    line-height: 1.571em;
    /*22px*/
    padding: 0.929em 1em;
    /*13px 16px*/
    word-wrap: break-word;
}

.cta-box--title {
    display: block;
}

.cta-box--intro {
    letter-spacing: 0.06em;
}

.cta-box .btn {
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-bottom-left-radius: 5px;
    -o-border-bottom-left-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 19px;
    padding: 0.35em 0.6em;
    /*7px 12px*/
}

.homepage .bg-dark-gray a.cta-box {
    background-color: #fff;
    color: #000;
}

.homepage .cta-box--text {
    border-color: #ddd;
    color: #000;
}

@media (min-width: 450px) {
    .cta-box img {
        height: 100px;
    }
}

@media (min-width: 600px) {
    .cta-box img {
        height: 150px;
    }
}

@media (min-width: 768px) {
    .cta-box--container {
        margin-bottom: 20px;
    }

    .cta-box--container:nth-child(4) {
        clear: left;
    }

    .cta-box {
        margin-bottom: 0;
    }

    .cta-box img {
        height: 135px;
    }

    .cta-box .btn {
        margin-top: -1px;
        padding: 0.800em 1em;
        /*16px 20px*/
    }
}

@media (min-width: 1025px) {
    .cta-box--container {
        margin-bottom: 40px;
    }

    .cta-box img {
        height: 160px;
    }
}

@media (min-width: 1200px) {
    .cta-box img {
        height: 230px;
    }

    .cta-box--text {
        padding: 1.563em 1.875em;
        /*25px 30px*/
    }
}



/**
 * Featured Blog
 */

.featured-blog [class*="col-sm"]:nth-child(2),
.featured-blog [class*="col-sm"]:last-child {
    display: none;
}

.featured-blog .cta-box {
    background-color: #fff;
}

.featured-blog .cta-box img {
    height: 158px;
}

.featured-blog .cta-box .btn {
    font-size: 20px;
    padding: 0.8em 0.95em;
    /*18px 19px*/
}

@media (min-width: 500px) {
    .featured-blog .cta-box img {
        height: 200px;
    }
}

@media (min-width: 768px) {
    .featured-blog [class*="col-sm"]:nth-child(2) {
        display: block;
    }

    .featured-blog .cta-box img {
        height: 230px;
    }
}

@media (min-width: 1025px) {
    .featured-blog [class*="col-sm"]:last-child {
        display: block;
    }
}



/**
 * Flex Content
 */

.flex-content--container {
    background-color: #fff;
    overflow: hidden;
}

.flex-content--even,
.flex-content--even .section-title span {
    background-color: #f6f6f6;
}

@media (min-width: 768px) {
    .flex-cell__text {
        padding-left: 3.938em;
        /*63px*/
        padding-right: 3.938em;
        /*63px*/
    }
}

@media (min-width: 1200px) {

    .flex-content--even,
    .flex-content--even .section-title span {
        background-color: #fff;
    }

    .flex-content {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-align-items: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .flex-cell {
        width: 50%;
    }

    .flex-cell__img {
        position: relative;
    }

    .flex-cell__img img {
        display: block;
        object-fit: cover;
        font-family: 'object-fit: cover;';
        object-position: center center;
        height: 100%;
        width: 123%;

        position: absolute;
        right: 0;
    }

    .flex-content--even .flex-cell__img img {
        left: 0;
        right: auto;
    }

    .flex-cell__text {
        padding-right: 0;
    }

    .flex-content--container.flex-content--even .flex-cell__text {
        padding-left: 0;
        padding-right: 3.938em;
        /*63px*/
    }
}



/**
 * Pricing / Specials
 */

.pricing-specials table {
    font: 20px 'Bebas Neue Book';
    text-transform: uppercase;
}

.pricing-specials th {
    font-size: 16px;
    padding: 0.438em 0;
    /*7px*/
}

.pricing-specials td {
    background-color: #f6f6f6;
    padding-left: .97em;
    padding-right: .97em;
    width: 50%;
}

.pricing-specials td:first-child {
    border-right: 2px solid #e7e7e7;
}

.race-price {
    color: #e7160f;
    font: 35px 'Bebas Neue Bold';
}

.race-price-strike {
    color: #777;
    font: 20px 'Bebas Neue Book';
}


.specials-list__item {
    font-size: 14px;
    line-height: 1.571em;
    /*22px*/
    margin-bottom: 2.571em;
    /*36px*/
}

.specials-list__item--img {
    width: 41%;
    padding-right: 13px;
    display: inline-block;
    vertical-align: top;
}

.specials-list__item--img img {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    object-position: center center;
    width: 100%;
    height: 67px;

    border: 1px solid #d3d3d3;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.specials-list__item--text {
    width: 57%;
    display: inline-block;
    vertical-align: top;
}

.specials-list__item--text p {
    letter-spacing: 0.06em;
}

.specials-list__item--price>* {
    display: inline-block;
    vertical-align: middle;
}

.specials-list__item--price .special-label {
    background-color: #ddd;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    color: #7b7b7b;
    font: 14px 'Bebas Neue';
    margin-right: -5px;
    padding: 0.714em 0.643em 0.714em 0.643em;
    /*10px 9px 10px 9px*/
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 1;
}

.specials-list__item--price .special-label:before {
    display: block;
    padding-right: 0;
    padding-bottom: 4px;
}

.specials-list__item--price .special-label:after {
    content: "";
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    top: 0;
    right: -1px;
    z-index: -1;
    background-color: inherit;
    transform-origin: bottom left;
    -webkit-transform: skew(-25deg, 0deg);
    -ms-transform: skew(-25deg, 0deg);
    transform: skew(-25deg, 0deg);
}

.specials-list__item--price .special-price {
    border: 2px solid #ddd;
    border-right: none;
    -webkit-border-radius: 5px 0 0 5px;
    -moz-border-radius: 5px 0 0 5px;
    -o-border-radius: 5px 0 0 5px;
    border-radius: 5px 0 0 5px;
    padding: 0.429em 1.286em 0.357em 1.714em;
    /*6px 18px 5px 24px*/
}

.specials-list__item--price .btn {
    font-size: 20px;
    padding: 0.8em;
    /*16px*/
    margin-left: -4px;
    height: 54px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.specials-list__item--price .btn:hover {
    background-color: #e7160f;
    color: #fff;
}

.specials-list__item--price .btn:hover:before {
    background-color: #e7160f;
    right: -40px;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .specials-list__item--price .btn {
        height: 53px;
    }
}

@media (min-width: 350px) {
    .specials-list__item--price .btn {
        width: calc(100% - 152px);
    }
}

@media (min-width: 400px) {
    .specials-list__item--img img {
        height: 80px;
    }
}

@media (min-width: 500px) {
    .specials-list__item--img img {
        height: 95px;
    }
}

@media (min-width: 600px) {
    .specials-list__item--price .btn {
        width: calc(100% - 200px);
    }
}

@media (min-width: 700px) {
    .specials-list__item--img img {
        height: 120px;
    }
}

@media (min-width: 768px) {
    .homepage .pricing-specials {
        background-image: url(../img/bg-racer.jpg);
        background-repeat: no-repeat;
        background-position: -100px 35px;
    }

    .pricing-specials--pricing {
        padding-bottom: 300px !important;
    }

    .specials-list__item--img {
        padding-right: 35px;
    }

    .specials-list__item--img img {
        height: 140px;
    }
}

@media (min-width: 1025px) {
    .homepage .pricing-specials {
        background-position: -100px 70px;
    }

    .pricing-specials--pricing {
        padding-bottom: 420px !important;
    }

    .specials-list__item--img img {
        height: 160px;
    }

    .specials-list__item--price .btn {
        padding-right: 0.8em;
        width: auto;
    }
}

@media (min-width: 1200px) {
    .homepage .pricing-specials {
        background-position: -180px 90px;
    }

    .pricing-specials--pricing {
        padding-bottom: 0 !important;
    }

    .specials-list__item {
        margin-bottom: 3.5em;
    }

    .specials-list__item--img img {
        height: 183px;
    }
}

@media (min-width: 1400px) {
    .homepage .pricing-specials {
        background-position: -100px 100px;
    }
}

@media (min-width: 1600px) {
    .homepage .pricing-specials {
        background-position: left 120px;
    }
}



/**
 * Race Information (Prix)
 */

.race-infos {
    font-size: 14px;
}

.race-info {
    border: 2px solid #5a5a5a;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    display: block;
    margin-bottom: 10px;
    padding: 1.071em 1.214em;
    /*15px 17px*/
    position: relative;
    text-align: center;
    text-transform: capitalize;
}

.race-info h3 {
    font: 30px 'Bebas Neue Bold';
    font-style: normal;
    margin-bottom: 0.333em;
    /*10px*/
}

.race-pricing h3 span {
    font-family: 'Bebas Neue Book', sans-serif;
}

.race-info-price {
    display: block;
    font: 20px 'Bebas Neue Book';
    text-transform: uppercase;
}

.race-info-price .race-price {
    color: #fff;
    font-size: 48px;
}

.race-info p {
    letter-spacing: 0.06em;
}

.race-info .btn {
    font-size: 18px;
}


.race-info.most-popular,
.race-pricing .race-info:nth-child(even) {
    background-color: #2b2b2b;
    position: relative;
}

.race-pricing {
    background-color: #252525;
}

.race-pricing .race-info:first-child:nth-last-child(2) {
    background-color: #313131;
}

.race-pricing .race-info:last-child:nth-child(even) {
    background-color: transparent;
}

.race-info .most-popular-label {
    background-color: #e7160f;
    font: 14px 'Bebas Neue Bold';
    color: #fff;
    text-transform: uppercase;
    width: 48px;
    height: 48px;
    padding-top: 8px;

    position: absolute;
    left: -2px;
    top: -2px;
    z-index: 1;
}

.race-info .most-popular-label:before {
    font-size: 12px;
}

.race-info .most-popular-label:after {
    content: "";
    position: absolute;
    display: block;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: -1;
    background-color: inherit;
    transform-origin: bottom left;
    -webkit-transform: skew(-25deg, 0deg);
    -ms-transform: skew(-25deg, 0deg);
    transform: skew(-25deg, 0deg);
}

.race-info.most-popular .race-price {
    font-size: 70px;
}

/* Pricing Template */
.race-pricing .race-infos,
.race-pricing .race-info {
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.race-pricing .race-info {
    padding: 1.429em;
    /*20px*/
    text-transform: none;
}

/* Pricing on flexible content */
.race-pricing--flexible {
    padding-top: 43px;
    padding-bottom: 43px;
}

/*.race-pricing--flexible li {
        font-size: 18px;
        text-transform: uppercase;
    }*/

.race-pricing--flexible .race-info-price {
    padding-bottom: 5px;
}

@media (min-width: 768px) {
    .race-infos {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-align-items: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;

        border: 2px solid #5a5a5a;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
    }

    .homepage .race-infos {
        margin-left: -10%;
        /* remove spacings from flex-cell*/
        margin-right: -10%;
        /* remove spacings from flex-cell*/
    }

    .race-info {
        border: none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px;
        width: 100%;
        margin-bottom: 0;
        padding: 1.286em 1.357em 5em;
        /*18px 19px*/
        position: relative;
    }

    .race-info h3 {
        margin-bottom: 0;
    }

    .race-info .btn {
        padding-top: 0.722em;
        /*13px*/
        padding-bottom: 0.722em;
        /*13px*/

        position: absolute;
        bottom: 1em;
        /*18px*/
        width: calc(100% - 2.112em);
        left: 1.056em;
        /*19px*/
    }

    .race-info .most-popular-label {
        left: 0;
        top: -2px;
    }

    .race-pricing .race-info {
        padding: 1.429em 1.429em 6.929em;
        /*20px / 97px*/
    }

    .race-info .btn {
        width: calc(100% - 2.858em);
        left: 1.429em;
        /*20px*/
        bottom: 1.429em;
        /*20px*/
    }
}

@media (min-width: 1025px) {
    .homepage .race-infos {
        margin-left: 0;
        /* remove spacings from flex-cell*/
        margin-right: 0;
        /* remove spacings from flex-cell*/
    }

    .race-info-container {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        line-height: 1.5em;
    }

    .race-info-container li {
        padding: 5px;
    }

    /* one item */
    .race-info-container li:first-child:nth-last-child(1) {
        /* -or- li:only-child { */
        width: 100%;
    }

    /* two items */
    .race-info-container li:first-child:nth-last-child(2),
    .race-info-container li:first-child:nth-last-child(2)~li {
        width: 50%;
    }

    .race-info-container li:first-child:nth-last-child(2)~li {
        border-left: 1px solid #474747;
    }
}

@media (min-width: 1400px) {
    .race-pricing .race-info {
        padding: 2.5em 3.143em 6.929em;
        /*20px 97px*/
    }

    .race-info .most-popular-label {
        width: 52px;
        height: 50px;
    }

    .race-pricing .race-info .btn {
        width: calc(100% - 6.286em);
        left: 3.143em;
        /*44px*/
    }
}


/**
 * Quick Links
 */

.quick-links {
    text-align: center;
}

.quick-link {
    border-bottom: 2px solid #f0f0f0;
    color: #000 !important;
    float: left;
    font: 20px 'Bebas Neue Bold', sans-serif;
    letter-spacing: 0.06em;
    padding: 1.2em 0.9em;
    /*24px 21px*/
    text-align: center;
    text-transform: uppercase;
    width: 50%;
}

.quick-link:nth-child(even) {
    border-left: 2px solid #f0f0f0;
}

.quick-link:last-child {
    width: 100%;
}

.quick-link:before {
    color: #000;
    display: block;
    font-size: 38px;
    margin-bottom: 0.316em;
    /*12px*/
    padding-left: 0;
}

.quick-link:hover,
.quick-link:hover:before {
    color: #dd0700 !important;
    text-decoration: none !important;
}

@media (min-width: 768px) {
    .quick-link {
        border: none !important;
        display: inline-block;
        float: none;
        padding-left: 0.7em;
        /*15px*/
        padding-right: 0.7em;
        /*15px*/
        width: auto !important;
    }
}

@media (min-width: 1025px) {
    .quick-links .container {
        position: relative;
        width: 91%;
        z-index: 1;
    }

    .quick-links .container:before,
    .quick-links .container:after {
        content: "";
        position: absolute;
        display: block;
        width: 20%;
        height: 100%;
        top: 0;
        z-index: -1;
        background-color: inherit;
        transform-origin: bottom left;
        -webkit-transform: skew(-25deg, 0deg);
        -ms-transform: skew(-25deg, 0deg);
        transform: skew(-25deg, 0deg);
    }

    .quick-links .container:before {
        left: -8%;
    }

    .quick-links .container:after {
        right: 0;
    }

    .quick-link {
        padding-left: 1.25em;
        /*25px*/
        padding-right: 1.25em;
        /*25px*/
    }

}

@media (min-width: 1200px) {
    .quick-links .container {
        width: 78%;
    }
}

@media (min-width: 1400px) {
    .quick-links .container {
        width: 50%;
    }

    .quick-link {
        padding-left: .4em;
        padding-right: .4em;
    }
}

@media (min-width: 1600px) {
    .quick-link {
        padding-left: .7em;
        padding-right: .7em;
    }
}

@media (min-width: 1800px) {
    .quick-links .container {
        width: 900px;
    }

    .quick-link {
        padding-left: 1.1em;
        padding-right: 1.1em;
    }
}


/**
 * Page Content / Article
 */

.page-article .featured-img,
.page-article.wysiwyg img,
.page-article.wysiwyg iframe {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
}

.page-article.wysiwyg img,
.page-article.wysiwyg iframe {
    border: 12px solid #e9e9e9;
}

/* Remove img border on The Tracks page and galleries */
.page-id-81 .page-article.wysiwyg img,
.page-article.wysiwyg .gallery__image img {
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

@media (min-width: 1400px) {
    .page-article .featured-img {
        margin-left: 80px;
    }
}

@media (min-width: 1600px) {
    .page-article .featured-img {
        margin-left: 200px;
    }
}


/**
 * Callouts (With Race Info and Phone Number)
 */

.callout {
    padding-top: 1em;
    /*18px*/
    padding-bottom: 1em;
    /*18px*/
    font-size: 18px;
    text-transform: uppercase;
    text-align: center;
}

.callout .callout--heading {
    display: inline-block;
    vertical-align: middle;
}

.callout .btn-small {
    vertical-align: middle;
    padding-left: 3.563em;
    /*57px*/
    padding-right: 3.563em;
    /*57px*/
}

.callout--text a {
    color: #fff;
    font-weight: 700;
}

.callout--text a:hover,
.callout--text .icon-pin:before {
    color: #d60e16 !important;
}

.callout--text .icon-pin a {
    font-size: 20px;
}


.callout__race-info {
    padding-top: 2.286em;
    /*32px*/
    padding-bottom: 2.286em;
    /*32px*/
}


.callout__buttons span {
    display: block;
    margin-bottom: 1em;
}

.callout__buttons .btn {
    font: 700 19px 'Titillium Web', sans-serif;
    padding: 0.227em 0.909em;
    /*5px 20px*/
    margin-top: 0.3em;
}

@media (max-width: 1024px) {

    .callout__buttons .text-left,
    .callout__buttons .text-right {
        text-align: center !important;
    }
}

@media (min-width: 1025px) {
    .callout--text {
        font-size: 18px;
    }

    .callout--text .icon-pin a {
        font-size: 28px;
    }

    .callout__buttons span {
        display: inline-block;
        margin-bottom: 0;
    }

    .callout__buttons .btn {
        vertical-align: initial;
    }
}

@media (min-width: 1200px) {
    .callout .callout--content {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-align-items: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .callout__buttons .btn {
        margin-top: 0;
    }
}


/**
 * Track Scores
 */

.page-content+.track-scores {
    padding-top: 0;
}

.track-score--container {
    margin-bottom: 1em;
}

.track-score--img {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    max-height: 278px;
}

.track-score--text {
    font-size: 16px;
    font-weight: 600;
    padding: 1.5em;

}

.track-score--location {
    margin-bottom: 0.227em;
    /*5px*/
}

.track-score--text .track-name {
    display: block;
    margin-bottom: 0.5em;
}

.track-score--text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .track-score--container {
        margin-bottom: 2em;
    }

    .track-score--item {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-align-items: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .track-score--img {
        width: 41.66666667%;
    }

    .track-score--location {
        margin-bottom: 0.208em;
        /*5px*/
    }
}

@media (min-width: 1600px) {
    .track-score--text {
        padding: 2.143em 2.643em;
        /*30px 37px*/
    }
}



/**
 * Location Info
 */

.location-info {
    padding-top: 2.286em;
    /*32px*/
    padding-bottom: 2.286em;
    /*32px*/
}

.location-info span {
    color: #d60e16;
    margin-right: 0.857em;
    /*12px*/
}

/*.location-info p {
        display: inline-block;
        vertical-align: top;
    }*/

.location-info a:not(.btn) {
    color: #000;
}

.location-info a:not(.btn):hover {
    color: #e40009;
}

.location-info--more,
.location-info--hours strong {
    font-weight: 600;
}

.location-info--title {
    border-bottom: 2px solid #e7e7e7;
    padding-bottom: 0.444em;
    /*8px*/
    margin-bottom: .6em;
}

.location-info--more [class*="col-"]:nth-child(3) {
    clear: left;
}

.location-info--item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-align-items: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.location-track {
    display: inline-block;
    color: #000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    font-size: 14px;
}

.location-track__img {
    position: relative;
}

.location-track__img--image {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    -o-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
}

.location-track__img--hover {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.7);
    padding: 1em;
}

.location-track:hover .location-track__img--hover {
    opacity: 1;
}

.location-track__img--hover img {
    margin: 0 auto;
}

.location-track--text {
    padding: 1.143em 1.143em 3.571em;
    /*16px / 50px*/
    position: relative;
}

.location-track--text .btn {
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-border-radius: 5px 0 5px 0;
    -moz-border-radius: 5px 0 5px 0;
    -o-border-radius: 5px 0 5px 0;
    border-radius: 5px 0 5px 0;
}

@media (max-width: 1200px) {
    .location-info--more .text-right {
        text-align: left !important;
    }
}

@media (min-width: 600px) {
    .location-track {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-align-items: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .location-track__img,
    .location-track--text {
        width: 50%;
    }

    .location-track__img--image {
        -webkit-border-radius: 5px 0 0 5px;
        -moz-border-radius: 5px 0 0 5px;
        -o-border-radius: 5px 0 0 5px;
        border-radius: 5px 0 0 5px;
    }
}

@media (min-width: 1025px) {
    .location-track:hover {
        color: #000;
    }

    .location-track__img {
        width: 35%;
        position: relative;
    }

    .location-track--text {
        padding: 1.857em 1.857em 6.429em;
        /*26px 90px*/
        width: 65%;
    }
}

@media (min-width: 1200px) {
    .location-info span {
        margin-right: 0.3em;
    }

    .location-info--more [class*="col-"]:nth-child(3) {
        clear: none;
    }
}



/**
 * Blog Page / Single Post Elements
 */

.post-list .post {
    border-top: 1px solid #ccc;
    padding: 2.5em 0;
}

.post-list .post:first-of-type {
    padding-top: 0;
    border: none;
}

.post-list .post:last-of-type {
    border-bottom: none;
}

.post-list .post__content {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.post-list .post__date-bar {
    margin-bottom: 10px;
}

.post-stats {
    display: inline-block !important;
}

.social-share {
    font-size: 30px;
}

.post__comments-area {
    border-top: 1px solid #ccc;
    margin-top: 2em;
    padding-top: 2em;
}

.post__comments-area p {
    margin-bottom: 1em;
}



/**
 * Sidebar
 */

.page-sidebar .widget {
    margin-top: 3em;
}

.widget_search .search-form--field {
    float: left;
    width: 80%;
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.widget_search .search-form--submit {
    width: 20%;
    padding: .92em;
    float: left;
    border-radius: 0 5px 5px 0;
}

@media (min-width: 1025px) {
    .page-sidebar .widget:first-child {
        margin-top: 0;
    }
}



/**
 * Contact Form Section
 */

@media (max-width: 1024px) {
    .contact-form {
        background-image: none !important;
    }
}

@media (min-width: 1025px) {
    .contact-form {
        background-repeat: no-repeat;
        background-position: -200px top;
    }
}

@media (min-width: 1200px) {
    .contact-form {
        background-position: -100px top;
    }
}

@media (min-width: 1600px) {
    .contact-form {
        background-position: left top;
    }
}



/**
 * Page-footer
 */

.page-footer a {
    color: #fff;
}

.page-footer a:hover,
.page-footer li.current-menu-item>a,
.page-footer li.current-page-ancestor>a {
    text-decoration: underline;
}

.footer__main {
    background-color: #f60800;
    color: #fff;
    font-size: 16px;
    line-height: 1.5em;
    /*24px*/
}

.footer__main h4 {
    font-size: 20px;
    margin-bottom: .4em;
    /*8px*/
}

/* Newsletter Signup */
.footer__main--newsletter {
    background-color: #dd0700;
    letter-spacing: 0.06em;
    padding-top: 2em;
    /*32px*/
    padding-bottom: 2em;
    /*32px*/
}

#mailpoet_form_1 .mailpoet_text,
#mailpoet_form_1 .mailpoet_textarea {
    border: none;
}

.mailpoet_paragraph:last-of-type {
    margin-bottom: 0;
}

.mailpoet_submit {
    background-color: #000;
}

.mailpoet_submit:hover {
    background-color: #ffba00;
}

.footer__main--newsletter .mailpoet_message {
    margin-top: 20px;
    text-align: center;
}

.footer__main--newsletter .parsley-required,
.footer__main--newsletter .parsley-custom-error-message,
.footer__main--newsletter .mailpoet_validate_error {
    color: #fff200 !important;
}

.footer__main--newsletter .mailpoet_validate_success {
    color: #fff !important;
}

/* Site Information and Menus */
.footer__main--info {
    letter-spacing: 0.01em;
    padding-top: 1.5em;
    /*24px*/
    padding-bottom: 1.563em;
    /*25px*/
    text-align: center;
}

.footer__main--info b {
    display: block;
    margin-bottom: 0.375em;
    /*6px*/
}

.footer__main--info [class*="col-"] {
    margin-bottom: 2.5em;
    /*40px*/
}

.footer__main--info [class*="col-"]:last-child {
    margin-bottom: 0;
}

.footer__main--info .logo img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.938em;
    /*15px*/
}

.footer-socials {
    margin-bottom: 0.750em;
    /*12px*/
}

.footer-socials li {
    display: inline-block;
}

.footer-socials li:first-child {
    display: block;
}

.footer-socials a {
    font-size: 33px;
    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
}

.footer-socials a.icon-instagram-with-circle {
    font-size: 35px;
}

.footer-socials a:hover {
    color: #252525;
    text-decoration: none;
}

.footer-socials a:before {
    padding-right: 0.091em;
    /*3px*/
    vertical-align: middle;
}


.footer__sub {
    background-color: #fff;
    color: #000;
    font-size: 13px;
    letter-spacing: 0.06em;
    padding-top: 1.154em;
    /*15px*/
    padding-bottom: 1.154em;
    /*15px*/
}

.nav-extra li {
    display: inline-block;
    padding-right: 0.769em;
    /*10px*/
}

.nav-extra li:last-child {
    padding-right: 0;
}

.nav-extra a {
    color: #000;
}

.nav-extra a:hover,
.nav-extra li.current-menu-item a {
    color: #f60800;
}


.back-to-top a {
    background-color: #000;
    color: #fff;
    cursor: pointer;
    font: 700 18px 'Bebas Neue', sans-serif;
    letter-spacing: 0.06em;
    display: block;
    text-transform: uppercase;
    padding: 0.611em;
    /*11px*/
}

.back-to-top a:before {
    padding-right: 0;
}

.back-to-top a:hover {
    background-color: #f60800;
}

@media (min-width: 600px) {
    .footer__main--info {
        text-align: left;
    }

    .footer-socials {
        text-align: center;
    }

    .nav-extra {
        display: inline-block;
    }

    .nav-extra li:last-child {
        padding-right: 0.769em;
    }
}

@media (min-width: 768px) {
    .footer__main--newsletter {
        text-align: center;
    }

    .mailpoet_paragraph:not(:first-of-type) {
        width: 49%;
        display: inline-block;
        padding: 0 0.625em;
        /*10px*/
    }

    .footer__main--info {
        padding-top: 2.688em;
        /*43px*/
        padding-bottom: 2.688em;
        /*43px*/
    }

    .footer__main--info [class*="col-"] {
        margin-bottom: 0;
    }

    .footer__main--info .logo img,
    .footer-socials {
        display: inline-block;
        vertical-align: middle;
    }

    .footer__main--info .logo img {
        margin: 0;
    }

    .footer-socials {
        text-align: left;
    }

    .footer-socials:first-of-type {
        margin-left: 4em;
        /*90px*/
    }

    .footer-socials:last-of-type {
        margin-left: 2em;
        /*42px*/
    }
}

@media (min-width: 1025px) {
    .footer__main {
        background: #f60800;
        background: -moz-linear-gradient(left, #f60800 0%, #f60800 75%, #dd0700 75%, #dd0700 100%);
        background: -webkit-linear-gradient(left, #f60800 0%, #f60800 75%, #dd0700 75%, #dd0700 100%);
        background: linear-gradient(to right, #f60800 0%, #f60800 75%, #dd0700 75%, #dd0700 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f60800', endColorstr='#dd0700', GradientType=1);
    }

    .footer__main .row {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        -webkit-align-items: stretch;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .footer__main--newsletter,
    .footer__main--info {
        padding-top: 4em;
        /*64px*/
        padding-bottom: 4em;
        /*64px*/
    }

    .footer__main--newsletter {
        text-align: left;
    }

    .mailpoet_paragraph:not(:first-of-type) {
        padding: 0;
        width: 100%;
    }

    .footer__main--info [class*="col-"] {
        margin-bottom: 0;
    }

    .footer__main--info .logo img {
        margin-bottom: 1.875em;
        /*30px*/
    }

    .footer-socials:first-of-type,
    .footer-socials:last-of-type {
        margin-left: 0;
    }

    .footer-socials a:before {
        padding-right: 0;
    }

    .back-to-top {
        position: relative;
    }

    .back-to-top a {
        -webkit-border-radius: 5px 5px 0 0;
        -moz-border-radius: 5px 5px 0 0;
        -o-border-radius: 5px 5px 0 0;
        border-radius: 5px 5px 0 0;
        height: 55px;
        width: 62px;
        position: fixed;
        bottom: 0;
        right: 15px;
        z-index: 999;
    }

    .back-to-top span:before {
        display: block;
        padding-right: 0;
    }
}

@media (min-width: 1200px) {
    .footer__main--newsletter {
        padding-left: 5%;
    }

    .footer-socials a:before {
        padding-right: 0.091em;
    }
}


/**
 * Print CSS
 */

@media print {

    /* Reset*/
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        filter: none !important;
        -webkit-filter: none !important;
        text-shadow: none !important;
    }

    h2,
    h3 {
        /* Avoid a paragraph being detached from the heading immediately preceding it */
        page-break-after: avoid;
    }

    figure,
    table {
        /* Avoid breaking figure or table into 2 pages */
        break-inside: avoid;
        page-break-inside: avoid;
    }

    p {
        /* Prevent single line at the end of a page and a single line at the top the next page */
        orphans: 2;
        widows: 2;
    }


    /* Grid Styling */

    .container {
        width: auto;
    }

    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666666666666%;
    }

    .col-sm-10 {
        width: 83.33333333333334%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666666666666%;
    }

    .col-sm-7 {
        width: 58.333333333333336%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666666666667%;
    }

    .col-sm-4 {
        width: 33.33333333333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.666666666666664%;
    }

    .col-sm-1 {
        width: 8.333333333333332%;
    }


    /* Slick Slider - remove if not using slick slider */

    .slick-slider .slick-arrow,
    .slick-slider .slick-dots {
        display: none !important;
        /* we usually don't need to show slider navigation for print */
    }

    /* For sliders you want to display full width for print.
       Update ".slick-slider" with your specific slider names. */
    .slick-slider,
    .slick-sliderg .slick-list,
    .slick-slider .slick-track,
    .slick-slider .slick-slide {
        width: 100% !important;
        height: auto !important;
    }

    /* For sliders where you only want to show the 1st image of that slider.
       Update ".slick-slider" with your specific slider names. */
    .slick-slider .slick-slide {
        display: none !important;
    }

    .slick-slider .slick-slide.slick-active {
        display: block !important;
    }

    /* Show Only Active Thumbnails */
    .slick-slider .slick-cloned {
        display: none;
    }

    /* Reset adaptiveHeight */
    .slick-list {
        height: auto !important;
    }

    /* Remove Scrollbars */
    .slick-track {
        width: auto !important;
        height: auto !important;
        transform: none !important;
    }

    .slick-track.slick-slide {
        width: auto !important;
    }


}


/*------------------------------------*\
    Trumps
\*------------------------------------*/

.bg-default {
    background-color: #fff;
}

.bg-dark {
    background-color: #000;
}

.bg-red {
    background-color: #d60e16;
}

.bg-dark-gray {
    background-color: #212121;
}

.bg-gray {
    background-color: #2e2e2e;
}

.bg-light-gray {
    background-color: #f6f6f6;
}

.bg-texture {
    background-image: url(../img/texture.png);
    background-repeat: repeat;
    background-position: left top;
}

.bg-dark,
.bg-red,
.bg-dark-gray,
.bg-gray,
.bg-dark a:not(.btn):not(.btn-basic):not(.js-tabs-link):not(.js-social-share),
.bg-red a:not(.btn):not(.btn-basic):not(.js-tabs-link):not(.js-social-share),
.bg-dark-gray a:not(.btn):not(.btn-basic):not(.js-tabs-link):not(.js-social-share):not(.cta-box),
.bg-gray a:not(.btn):not(.btn-basic):not(.js-tabs-link):not(.js-social-share),
.race-pricing {
    color: #fff;
}

.section-margins {
    padding-top: 50px;
    padding-bottom: 50px;
}

.section-margins--top {
    padding-top: 50px;
}

.section-margins--bottom {
    padding-bottom: 50px;
}

.section-margins-sm {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .section-margins {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .section-margins--top {
        padding-top: 76px;
    }

    .section-margins--bottom {
        padding-bottom: 76px;
    }

    .section-margins-sm {
        padding-top: 45px;
        padding-bottom: 45px;
    }
}

@media (min-width: 1200px) {
    .section-margins {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .section-margins--top {
        padding-top: 85px;
    }

    .section-margins--bottom {
        padding-bottom: 85px;
    }
}

@media (min-width: 1400px) {
    .section-margins {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .section-margins--top {
        padding-top: 90px;
    }

    .section-margins--bottom {
        padding-bottom: 90px;
    }

    .section-margins-sm {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}


@-ms-viewport {
    width: device-width;
}


/**
 * Images
 */

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}


/**
 * Visiblity
 */

.show {
    display: block !important;
}

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 599px) {
    .visible-xxs {
        display: block !important;
    }

    table.visible-xxs {
        display: table;
    }

    tr.visible-xxs {
        display: table-row !important;
    }

    th.visible-xxs,
    td.visible-xxs {
        display: table-cell !important;
    }

    .visible-xxs-block {
        display: block !important;
    }

    .visible-xxs-inline {
        display: inline !important;
    }

    .visible-xxs-inline-block {
        display: inline-block !important;
    }
}


@media (min-width: 600px) and (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }

    .visible-xs-block {
        display: block !important;
    }

    .visible-xs-inline {
        display: inline !important;
    }

    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }

    .visible-sm-block {
        display: block !important;
    }

    .visible-sm-inline {
        display: inline !important;
    }

    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }

    .visible-md-block {
        display: block !important;
    }

    .visible-md-inline {
        display: inline !important;
    }

    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }

    .visible-lg-block {
        display: block !important;
    }

    .visible-lg-inline {
        display: inline !important;
    }

    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1025px) {
    .sticky-header--menu .btn {
        font-size: 16px;
    }
}

@media (min-width: 1366px) {
    .sticky-header--menu .btn {
        font-size: 14px;
    }
}

@media (min-width: 1500px) {
    .nav-primary a {
        font-size: 16px;
    }
}

/**
 * Hiding
 */

.hide,
.hidden-xxs-up {
    display: none !important;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.invisible {
    visibility: hidden !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

@media (max-width: 599px) {
    .hidden-xxs {
        display: none !important;
    }
}

@media (min-width: 600px) {
    .hidden-xs-up {
        display: none !important;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs-down {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hidden-sm-up {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .hidden-sm-down {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .hidden-md-up {
        display: none !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .hidden-md-down {
        display: none !important;
    }
}

@media (min-width: 1200px) and (max-width: 1599) {
    .hidden-lg {
        display: none !important;
    }
}

@media (max-width: 1599px) {
    .hidden-lg-down {
        display: none !important;
    }
}

@media (min-width: 1600px) {
    .hidden-lg-up {
        display: none !important;
    }
}

@media (min-width: 1600px) {
    .hidden-xl {
        display: none !important;
    }
}




/**
 * Screen Readers
 */

.sr-only,
.wpcf7 .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}


/**
 * Print
 */

.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }

    .visible-print-block {
        display: block !important;
    }

    .visible-print-inline {
        display: inline !important;
    }

    .visible-print-inline-block {
        display: inline-block !important;
    }

    .hidden-print {
        display: none !important;
    }
}


/**
 * Text alignment
 */

.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}


/**
 * Borders
 */

.border-top {
    border-top: 1px solid #dedede;
}

.border-bottom {
    border-bottom: 1px solid #dedede;
}

.border-left {
    border-left: 1px solid #dedede;
}

.border-right {
    border-right: 1px solid #dedede;
}

.border-all {
    border: 1px solid #dedede;
}


/**
 * Positioning
 */

.affix-top {
    position: fixed !important;
    top: 0 !important;
}

.affix-bottom {
    position: fixed !important;
    bottom: 0 !important;
}

.affix-left {
    position: fixed !important;
    left: 0 !important;
}

.affix-right {
    position: fixed !important;
    right: 0 !important;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/* TODO: Update pushes, flushes, softs, and hards to match your vertical rhythm */

/**
 * Add/remove margins
 */

.push {
    margin: 20px !important;
}

.push-top {
    margin-top: 20px !important;
}

.push-right {
    margin-right: 20px !important;
}

.push-bottom {
    margin-bottom: 20px !important;
}

.push-left {
    margin-left: 20px !important;
}

.push-ends {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.push-sides {
    margin-right: 20px !important;
    margin-left: 20px !important;
}

.push-half {
    margin: 10px !important;
}

.push-half-top {
    margin-top: 10px !important;
}

.push-half-right {
    margin-right: 10px !important;
}

.push-half-bottom {
    margin-bottom: 10px !important;
}

.push-half-left {
    margin-left: 10px !important;
}

.push-half-ends {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.push-half-sides {
    margin-right: 10px !important;
    margin-left: 10px !important;
}

.flush {
    margin: 0 !important;
}

.flush-top {
    margin-top: 0 !important;
}

.flush-right {
    margin-right: 0 !important;
}

.flush-bottom {
    margin-bottom: 0 !important;
}

.flush-left {
    margin-left: 0 !important;
}

.flush-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.flush-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
}


/**
 * Add/remove paddings
 */
.soft {
    padding: 20px !important;
}

.soft-top {
    padding-top: 20px !important;
}

.soft-right {
    padding-right: 20px !important;
}

.soft-bottom {
    padding-bottom: 20px !important;
}

.soft-left {
    padding-left: 20px !important;
}

.soft-ends {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.soft-sides {
    padding-right: 20px !important;
    padding-left: 20px !important;
}

.soft-half {
    padding: 10px !important;
}

.soft-half-top {
    padding-top: 10px !important;
}

.soft-half-right {
    padding-right: 10px !important;
}

.soft-half-bottom {
    padding-bottom: 10px !important;
}

.soft-half-left {
    padding-left: 10px !important;
}

.soft-half-ends {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.soft-half-sides {
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.hard {
    padding: 0 !important;
}

.hard-top {
    padding-top: 0 !important;
}

.hard-right {
    padding-right: 0 !important;
}

.hard-bottom {
    padding-bottom: 0 !important;
}

.hard-left {
    padding-left: 0 !important;
}

.hard-ends {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hard-sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
}


@media (min-width:600px) {

    .flush-xs {
        margin: 0 !important;
    }

    .flush-xs-top {
        margin-top: 0 !important;
    }

    .flush-xs-right {
        margin-right: 0 !important;
    }

    .flush-xs-bottom {
        margin-bottom: 0 !important;
    }

    .flush-xs-left {
        margin-left: 0 !important;
    }

    .flush-xs-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-xs-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-xs {
        margin: 20px !important;
    }

    .push-xs-top {
        margin-top: 20px !important;
    }

    .push-xs-right {
        margin-right: 20px !important;
    }

    .push-xs-bottom {
        margin-bottom: 20px !important;
    }

    .push-xs-left {
        margin-left: 20px !important;
    }

    .push-xs-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-xs-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-xs {
        margin: 10px !important;
    }

    .push-half-xs-top {
        margin-top: 10px !important;
    }

    .push-half-xs-right {
        margin-right: 10px !important;
    }

    .push-half-xs-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-xs-left {
        margin-left: 10px !important;
    }

    .push-half-xs-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-xs-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-xs {
        margin: 40px !important;
    }

    .push-double-xs-top {
        margin-top: 40px !important;
    }

    .push-double-xs-right {
        margin-right: 40px !important;
    }

    .push-double-xs-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-xs-left {
        margin-left: 40px !important;
    }

    .push-double-xs-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-xs-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-xs {
        margin: 60px !important;
    }

    .push-triple-xs-top {
        margin-top: 60px !important;
    }

    .push-triple-xs-right {
        margin-right: 60px !important;
    }

    .push-triple-xs-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-xs-left {
        margin-left: 60px !important;
    }

    .push-triple-xs-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-xs-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-xs {
        padding: 20px !important;
    }

    .soft-xs-top {
        padding-top: 20px !important;
    }

    .soft-xs-right {
        padding-right: 20px !important;
    }

    .soft-xs-bottom {
        padding-bottom: 20px !important;
    }

    .soft-xs-left {
        padding-left: 20px !important;
    }

    .soft-xs-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-xs-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-xs {
        padding: 10px !important;
    }

    .soft-half-xs-top {
        padding-top: 10px !important;
    }

    .soft-half-xs-right {
        padding-right: 10px !important;
    }

    .soft-half-xs-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-xs-left {
        padding-left: 10px !important;
    }

    .soft-half-xs-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-xs-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-xs {
        padding: 40px !important;
    }

    .soft-double-xs-top {
        padding-top: 40px !important;
    }

    .soft-double-xs-right {
        padding-right: 40px !important;
    }

    .soft-double-xs-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-xs-left {
        padding-left: 40px !important;
    }

    .soft-double-xs-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-xs-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-xs {
        padding: 60px !important;
    }

    .soft-triple-xs-top {
        padding-top: 60px !important;
    }

    .soft-triple-xs-right {
        padding-right: 60px !important;
    }

    .soft-triple-xs-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-xs-left {
        padding-left: 60px !important;
    }

    .soft-triple-xs-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-xs-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-xs {
        padding: 0 !important;
    }

    .hard-xs-top {
        padding-top: 0 !important;
    }

    .hard-xs-right {
        padding-right: 0 !important;
    }

    .hard-xs-bottom {
        padding-bottom: 0 !important;
    }

    .hard-xs-left {
        padding-left: 0 !important;
    }

    .hard-xs-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-xs-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

}

@media (min-width:768px) {

    .flush-sm {
        margin: 0 !important;
    }

    .flush-sm-top {
        margin-top: 0 !important;
    }

    .flush-sm-right {
        margin-right: 0 !important;
    }

    .flush-sm-bottom {
        margin-bottom: 0 !important;
    }

    .flush-sm-left {
        margin-left: 0 !important;
    }

    .flush-sm-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-sm-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-sm {
        margin: 20px !important;
    }

    .push-sm-top {
        margin-top: 20px !important;
    }

    .push-sm-right {
        margin-right: 20px !important;
    }

    .push-sm-bottom {
        margin-bottom: 20px !important;
    }

    .push-sm-left {
        margin-left: 20px !important;
    }

    .push-sm-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-sm-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-sm {
        margin: 10px !important;
    }

    .push-half-sm-top {
        margin-top: 10px !important;
    }

    .push-half-sm-right {
        margin-right: 10px !important;
    }

    .push-half-sm-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-sm-left {
        margin-left: 10px !important;
    }

    .push-half-sm-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-sm-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-sm {
        margin: 40px !important;
    }

    .push-double-sm-top {
        margin-top: 40px !important;
    }

    .push-double-sm-right {
        margin-right: 40px !important;
    }

    .push-double-sm-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-sm-left {
        margin-left: 40px !important;
    }

    .push-double-sm-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-sm-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-sm {
        margin: 60px !important;
    }

    .push-triple-sm-top {
        margin-top: 60px !important;
    }

    .push-triple-sm-right {
        margin-right: 60px !important;
    }

    .push-triple-sm-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-sm-left {
        margin-left: 60px !important;
    }

    .push-triple-sm-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-sm-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-sm {
        padding: 20px !important;
    }

    .soft-sm-top {
        padding-top: 20px !important;
    }

    .soft-sm-right {
        padding-right: 20px !important;
    }

    .soft-sm-bottom {
        padding-bottom: 20px !important;
    }

    .soft-sm-left {
        padding-left: 20px !important;
    }

    .soft-sm-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-sm-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-sm {
        padding: 10px !important;
    }

    .soft-half-sm-top {
        padding-top: 10px !important;
    }

    .soft-half-sm-right {
        padding-right: 10px !important;
    }

    .soft-half-sm-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-sm-left {
        padding-left: 10px !important;
    }

    .soft-half-sm-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-sm-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-sm {
        padding: 40px !important;
    }

    .soft-double-sm-top {
        padding-top: 40px !important;
    }

    .soft-double-sm-right {
        padding-right: 40px !important;
    }

    .soft-double-sm-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-sm-left {
        padding-left: 40px !important;
    }

    .soft-double-sm-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-sm-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-sm {
        padding: 60px !important;
    }

    .soft-triple-sm-top {
        padding-top: 60px !important;
    }

    .soft-triple-sm-right {
        padding-right: 60px !important;
    }

    .soft-triple-sm-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-sm-left {
        padding-left: 60px !important;
    }

    .soft-triple-sm-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-sm-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-sm {
        padding: 0 !important;
    }

    .hard-sm-top {
        padding-top: 0 !important;
    }

    .hard-sm-right {
        padding-right: 0 !important;
    }

    .hard-sm-bottom {
        padding-bottom: 0 !important;
    }

    .hard-sm-left {
        padding-left: 0 !important;
    }

    .hard-sm-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-sm-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

}

@media (min-width:1025px) {

    .flush-md {
        margin: 0 !important;
    }

    .flush-md-top {
        margin-top: 0 !important;
    }

    .flush-md-right {
        margin-right: 0 !important;
    }

    .flush-md-bottom {
        margin-bottom: 0 !important;
    }

    .flush-md-left {
        margin-left: 0 !important;
    }

    .flush-md-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-md-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-md {
        margin: 20px !important;
    }

    .push-md-top {
        margin-top: 20px !important;
    }

    .push-md-right {
        margin-right: 20px !important;
    }

    .push-md-bottom {
        margin-bottom: 20px !important;
    }

    .push-md-left {
        margin-left: 20px !important;
    }

    .push-md-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-md-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-md {
        margin: 10px !important;
    }

    .push-half-md-top {
        margin-top: 10px !important;
    }

    .push-half-md-right {
        margin-right: 10px !important;
    }

    .push-half-md-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-md-left {
        margin-left: 10px !important;
    }

    .push-half-md-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-md-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-md {
        margin: 40px !important;
    }

    .push-double-md-top {
        margin-top: 40px !important;
    }

    .push-double-md-right {
        margin-right: 40px !important;
    }

    .push-double-md-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-md-left {
        margin-left: 40px !important;
    }

    .push-double-md-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-md-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-md {
        margin: 60px !important;
    }

    .push-triple-md-top {
        margin-top: 60px !important;
    }

    .push-triple-md-right {
        margin-right: 60px !important;
    }

    .push-triple-md-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-md-left {
        margin-left: 60px !important;
    }

    .push-triple-md-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-md-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-md {
        padding: 20px !important;
    }

    .soft-md-top {
        padding-top: 20px !important;
    }

    .soft-md-right {
        padding-right: 20px !important;
    }

    .soft-md-bottom {
        padding-bottom: 20px !important;
    }

    .soft-md-left {
        padding-left: 20px !important;
    }

    .soft-md-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-md-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-md {
        padding: 10px !important;
    }

    .soft-half-md-top {
        padding-top: 10px !important;
    }

    .soft-half-md-right {
        padding-right: 10px !important;
    }

    .soft-half-md-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-md-left {
        padding-left: 10px !important;
    }

    .soft-half-md-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-md-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-md {
        padding: 40px !important;
    }

    .soft-double-md-top {
        padding-top: 40px !important;
    }

    .soft-double-md-right {
        padding-right: 40px !important;
    }

    .soft-double-md-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-md-left {
        padding-left: 40px !important;
    }

    .soft-double-md-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-md-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-md {
        padding: 60px !important;
    }

    .soft-triple-md-top {
        padding-top: 60px !important;
    }

    .soft-triple-md-right {
        padding-right: 60px !important;
    }

    .soft-triple-md-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-md-left {
        padding-left: 60px !important;
    }

    .soft-triple-md-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-md-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-md {
        padding: 0 !important;
    }

    .hard-md-top {
        padding-top: 0 !important;
    }

    .hard-md-right {
        padding-right: 0 !important;
    }

    .hard-md-bottom {
        padding-bottom: 0 !important;
    }

    .hard-md-left {
        padding-left: 0 !important;
    }

    .hard-md-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-md-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

}

@media (min-width:1200px) {

    .flush-lg {
        margin: 0 !important;
    }

    .flush-lg-top {
        margin-top: 0 !important;
    }

    .flush-lg-right {
        margin-right: 0 !important;
    }

    .flush-lg-bottom {
        margin-bottom: 0 !important;
    }

    .flush-lg-left {
        margin-left: 0 !important;
    }

    .flush-lg-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-lg-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-lg {
        margin: 20px !important;
    }

    .push-lg-top {
        margin-top: 20px !important;
    }

    .push-lg-right {
        margin-right: 20px !important;
    }

    .push-lg-bottom {
        margin-bottom: 20px !important;
    }

    .push-lg-left {
        margin-left: 20px !important;
    }

    .push-lg-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-lg-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-lg {
        margin: 10px !important;
    }

    .push-half-lg-top {
        margin-top: 10px !important;
    }

    .push-half-lg-right {
        margin-right: 10px !important;
    }

    .push-half-lg-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-lg-left {
        margin-left: 10px !important;
    }

    .push-half-lg-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-lg-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-lg {
        margin: 40px !important;
    }

    .push-double-lg-top {
        margin-top: 40px !important;
    }

    .push-double-lg-right {
        margin-right: 40px !important;
    }

    .push-double-lg-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-lg-left {
        margin-left: 40px !important;
    }

    .push-double-lg-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-lg-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-lg {
        margin: 60px !important;
    }

    .push-triple-lg-top {
        margin-top: 60px !important;
    }

    .push-triple-lg-right {
        margin-right: 60px !important;
    }

    .push-triple-lg-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-lg-left {
        margin-left: 60px !important;
    }

    .push-triple-lg-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-lg-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-lg {
        padding: 20px !important;
    }

    .soft-lg-top {
        padding-top: 20px !important;
    }

    .soft-lg-right {
        padding-right: 20px !important;
    }

    .soft-lg-bottom {
        padding-bottom: 20px !important;
    }

    .soft-lg-left {
        padding-left: 20px !important;
    }

    .soft-lg-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-lg-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-lg {
        padding: 10px !important;
    }

    .soft-half-lg-top {
        padding-top: 10px !important;
    }

    .soft-half-lg-right {
        padding-right: 10px !important;
    }

    .soft-half-lg-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-lg-left {
        padding-left: 10px !important;
    }

    .soft-half-lg-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-lg-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-lg {
        padding: 40px !important;
    }

    .soft-double-lg-top {
        padding-top: 40px !important;
    }

    .soft-double-lg-right {
        padding-right: 40px !important;
    }

    .soft-double-lg-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-lg-left {
        padding-left: 40px !important;
    }

    .soft-double-lg-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-lg-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-lg {
        padding: 60px !important;
    }

    .soft-triple-lg-top {
        padding-top: 60px !important;
    }

    .soft-triple-lg-right {
        padding-right: 60px !important;
    }

    .soft-triple-lg-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-lg-left {
        padding-left: 60px !important;
    }

    .soft-triple-lg-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-lg-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-lg {
        padding: 0 !important;
    }

    .hard-lg-top {
        padding-top: 0 !important;
    }

    .hard-lg-right {
        padding-right: 0 !important;
    }

    .hard-lg-bottom {
        padding-bottom: 0 !important;
    }

    .hard-lg-left {
        padding-left: 0 !important;
    }

    .hard-lg-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-lg-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

}


/*------------------------------------*\
    Custom Additions
\*------------------------------------*/

/**
 * Floating CTA Button (mobile only)
 */

.floating-cta-btn {
    background: #14141f;
    display: block;
    position: fixed;
    width: 100%;
    bottom: 0;
    padding: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 99999;
}

.floating-cta-btn .btn {
    width: 49%;
    text-align: center;
    padding: 8px 1.222em;
}

@media (min-width: 1025px) {
    .floating-cta-btn {
        display: none;
    }
}

/**
 * Content Reversed Mobile
 */

@media (max-width: 1024px) {
    .row.content-reversed-mobile {
        display: flex;
        flex-direction: column-reverse;
        justify-content: space-between;
        gap: 2rem;
        margin-top: -2rem;
    }
}

/**
 * Contact Us Sidebar
 */

@media (min-width: 1025px) {
    .contact-us__sidebar {
        border-left: 3px solid #d60e16;
        padding-bottom: 5rem;
    }
}

/**
 * Review Section
 */

.review-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/**
 * Notification Bar
 */

.mtsnb .mtsnb-container {
    padding: 10px 35px;
}