/** 2x
* 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.
*/
/*------------------------------------*\
Generic
\*------------------------------------*/
/**
* Box-sizing
*/
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/**
* Images
*
* These selectors are hard cast because they are only used
* by wordpress wyswyg when adding images to content
*/
/* TODO: Update image bottom margin to match paragraph margin */
.wp-caption.alignright,
.wp-caption.alignleft,
.wp-caption.alignnone,
.wp-caption.aligncenter {
    margin: 0;
    width: auto !important;
    /* overwrite inline widths */
}

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

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

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

img.alignright,
.wp-caption.alignright {
    float: right;
    margin: 0 0 22px 30px;
}

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

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

iframe {
    display: block;
}

@media (max-width: 599px) {

    img.alignright,
    .wp-caption.alignright img,
    img.alignleft,
    .wp-caption.alignleft img,
    img.alignnone,
    .wp-caption.alignnone img,
    iframe {
        max-width: 100%;
        margin: 0 auto;
        margin-bottom: 20px;
        float: none;
    }
}

/*------------------------------------*\
Typography
\*------------------------------------*/
/* Please set up line-heights in ems */
body {
    font-size: 15px;
    color: #5C5C5C;
    line-height: 1.5em;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
    color: #2C2B2B;
    font-weight: 700;
    line-height: 1;
    margin-top: 0;
}

h1,
.h1 {
    font-size: 26px;
}

h2,
.h2 {
    font-size: 22px;
}

h3,
.h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

h4,
.h4 {
    text-transform: uppercase;
    font-size: 18px;
}

.header-decoration {
    border-bottom: 1px solid rgb(217, 221, 233);
    padding-bottom: 20px;
    position: relative;
}

.header-decoration:after {
    content: '';
    display: block;
    background: #1C4591;
    width: 25%;
    max-width: 285px;
    height: 6px;
    position: absolute;
    bottom: -6px;
}

.header-decoration.center {
    text-align: center;
}

.header-decoration.center:after {
    left: calc(50% - (25% / 2));
}

h2:not(.header-decoration) {
    margin-bottom: 12px;
}

.page-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
    background: #fff;
}

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

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

p+.btn {
    margin-top: 0;
}

ul,
ol {
    padding-left: 24px;
}

ol {
    counter-reset: item
}

ol li,
ul li {
    display: block;
    margin-bottom: 12px;
    position: relative;
}

ul li:before {
    content: "\e920";
    font-family: 'icomoon' !important;
    font-size: 24px;
    color: #239FED;
    position: absolute;
    left: -24px;
    top: -1px;
}

ol li:before {
    content: counter(item) ". ";
    counter-increment: item;
    color: #1C4591;
    position: absolute;
    left: -24px;
}

hr {
    margin-bottom: 20px;
    border: 1px solid rgb(217, 221, 233);
    border-bottom: 0;
}

a {
    color: #1C4591;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer
}

a:hover {
    color: #239FED;
    text-decoration: underline;
}

blockquote {
    padding-left: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin: 24px 0;
    background-color: #eff4f6;
    border: 1px solid #d9dde9;
}

blockquote p:before {
    font-weight: 700;
    content: open-quote;
    font-size: 6em;
    color: #1C4591;
    margin-right: 20px;
    position: relative;
    bottom: -30px;
}

blockquote p:after {
    visibility: hidden;
    content: close-quote;
}

blockquote p {
    display: flex;
}

blockquote h4 {
    text-align: center;
    padding-top: 20px;
}

.testimonial--info {
    text-align: center;
    display: block;
    padding-bottom: 20px;
}

.testimonial--info,
blockquote p {
    font-weight: 400;
    color: #2c2b2b;
}

.testi-archive blockquote {
    margin: 50px 0;
}

@media(min-width: 768px) {

    h1,
    .h1 {
        font-size: 36px
    }

    h2,
    .h2 {
        font-size: 30px;
    }
}

@media(min-width: 1025px) {

    h1,
    .h1 {
        font-size: 40px
    }

    h2,
    .h2 {
        font-size: 36px;
    }

    h3,
    .h3 {
        font-size: 26px
    }

    h4,
    .h4 {
        font-size: 22px
    }
}

:selection {
    background-color: #239FED;
    color: #fff;
}

:moz-selection {
    background-color: #239FED;
    color: #fff;
}

/*------------------------------------*\
COMPONENTS
\*------------------------------------*/
/**
* Wrappers
*/
.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 12px;
    padding-right: 12px;
}

.container {
    max-width: 1644px;
}

@media(min-width: 600px) {

    .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: -12px;
    margin-right: -12px;
}

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

/* 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 and up) */
@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%;
    }
}

/**
* 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
*/
.btn {
    color: #fff;
    padding: 10px 24px;
    font-size: 14px;
    line-height: 1em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.32px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: 24px;
    display: inline-block;
}

.post-32175 .btn {
    border: 2px solid;
    box-shadow: 6px 1px 12px #000;
}

.page-id-37172 .white .btn,
.post-32175 .btn {
    font-size: 18px;
}

.btn:hover,
.image-button:not(.topcta):hover .btn,
.product-card.special:hover .btn,
.image-button.topcta .btn:hover {
    background: transparent;
    text-decoration: none;
}

.btn-primary {
    background: #239FED
}

.btn-primary:hover,
.btn-outline,
.product-card.special:hover .btn {
    border-color: #239FED;
    color: #239FED;
}

.btn-outline:hover {
    border-color: transparent;
    background: #239FED;
    color: #fff;
}

.btn-secondary {
    background: #1C4591;
}

.btn-secondary:hover {
    border-color: #1C4591;
    color: #1C4591;
}

.btn-green {
    background-color: #17DF14;
}

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

.btn+.btn {
    margin-left: 24px;
    /* Add margin-left when 2 buttons are next to each other */
}

.btn.btn-big {
    padding: 24px 48px;
    font-size: 16px;
}

.form-row+.btn {
    margin-top: 0;
}

@media(min-width:768px) {
    .btn {
        padding: 14px 24px;
        margin-top: 24px;
    }
}

.js-availabity {
    background: #239FED;
    margin-top: 10px !important;
}

.js-availabity:hover {
    border-color: #239FED;
    color: #239FED !important;
}

.js-availabity:after {
    content: "";
    display: inline-block;
    margin: 0 7px 1px auto;
    top: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffffff;
    border-left: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.js-availabity:hover:after {
    border-color: #239FED;
}


/**
* Icons
*/
@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?27clra');
    src: url('../fonts/icomoon.eot?27clra#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?27clra') format('truetype'),
        url('../fonts/icomoon.woff?27clra') format('woff'),
        url('../fonts/icomoon.svg?27clra#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"]:before,
[class*=" icon-"]:before,
[class^="icon-"]:after,
[class*=" icon-"]:after {
    /* 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;
}

.icon-arrow-steps:before {
    content: "\e923";
}

.icon-check:before {
    content: "\e924";
}

.icon-trade-in:before {
    content: "\e922";
}

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

.icon-filter:before {
    content: "\e91d";
}

.icon-swipe:before {
    content: "\e91b";
}

.icon-arrow-down:before {
    content: "\e900";
}

.icon-arrow-left:before {
    content: "\e901";
}

.icon-arrow-right:before {
    content: "\e902";
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.icon-pointing-right:before {
    content: "\e912";
}

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

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

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

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

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

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

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

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

.icon-arrow_drop_up:before {
    content: "\e91e";
}

.icon-arrow_left:before {
    content: "\e91f";
}

.icon-arrow_right:before {
    content: "\e920";
}

.icon-arrow_drop_down:before {
    content: "\e921";
}

.icon-play:before {
    content: "\e91c";
}

.icon-cart1:before {
    content: "\e925";
    color: #fff;
}

.icon-globe:before {
    content: "\e926";
    color: #fff;
}

.icon-tag-2:before {
    content: "\e927";
    color: #fff;
}

.icon-file-pdf:before {
    content: "\eadf";
}


/* Meet the Team */

.card h4,
.card p {
    color: #101d38;
}

.meet-the-team {
    text-align: center;
    padding: 80px 0;
}

.card {
    background-color: #fff;
    padding: 50px 20px;
    height: 270px;
    margin: 15px 0;
    border: 1px solid #d9dde9;
}

.meet-the-team h3 {
    text-align: justify;
    margin-left: 15px;
    margin-top: 40px;
}

.padding-custom {
    padding: 50px 0;
}

.card .title {
    font-weight: 700;
    color: #224591;
}


/**
* Tables+
*/
table {
    border-collapse: collapse;
    text-align: center;
    color: #4c4c4c;
}

td {
    padding: 15px;
    border: #ccc solid 1px;
}

thead th {
    background-color: #1b4591;
    color: #fff;
    padding: 10px;
    text-transform: uppercase;
    font-weight: 700;
}

tbody tr {
    border-bottom: 2px solid #e1e1e1;
}

/* 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: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 1)));
    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 */
    /* FF3.6-15 */
    /* Chrome10-25,Safari5.1-6 */
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 1)));
    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;
    }
}

/**
* Forms
*/

.form-wrapper {
    -webkit-box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 7px 1px;
    box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 7px 1px;
    padding: 50px 70px;
    background: #fff;
}

.form-wrapper .wpcf7 {
    margin-top: 40px;
}

.form-row {
    margin-bottom: 24px;
}

.form-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

label {
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

textarea,
input[type="textarea"] {
    border: 1px solid rgb(217, 221, 233);
    background: #fff;
    padding: 14px 12px;
    font-size: 14px;
    display: block;
    width: 100%;
    background: #f5f8f9;
    color: #000;
}

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


.upload-image-block {
    border: 1px solid rgb(217, 221, 233);
    padding: 8px 10px;
    margin-bottom: 20px;
}

/* 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"] {
    border: 1px solid rgb(217, 221, 233);
    background: #fff;
    padding: 14px 12px;
    color: #000;
    font-size: 14px;
    display: block;
    width: 100%;
    background: #f5f8f9;
}

::-webkit-input-placeholder {
    color: #707070;
}

::-moz-placeholder {
    color: #707070;
}

:-ms-input-placeholder {
    color: #707070;
}

::-ms-input-placeholder {
    color: #707070;
}

::placeholder {
    color: #707070;
}

/* Default Submit Button Style */
[type="submit"] {
    background-color: #239FED;
    color: #fff;
    padding: 14px 24px;
    font-size: 14px;
    line-height: 1em;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.32px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

[type="submit"]:hover {
    color: #239FED;
    border-color: #239FED;
    background: transparent;
}

/* 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;
}

/* Search Form */
.searchform--field,
.searchform--submit {
    width: 100%;
    display: block;
}

.searchform--field {
    margin-bottom: 20px;
}

/* 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;
}

/* Selectric */
.selectric-wrapper {
    position: relative;
    cursor: pointer;
    width: 100%;
}

@media (max-width:445px) {
    .selectric-wrapper {
        width: 100%;
    }
}

@media (max-width:420px) {
    .selectric-wrapper {
        width: 93%;
    }
}

@media (max-width:400px) {
    .selectric-wrapper {
        width: 88%;
    }
}

@media (max-width:380px) {
    .selectric-wrapper {
        width: 83%;
    }
}

@media (max-width:360px) {
    .selectric-wrapper {
        width: 78%;
    }
}

.selectric-responsive {
    width: 100%;
}

.selectric {
    border: 1px solid rgb(217, 221, 233);
    border-radius: 0px;
    background: #f5f8f9;
    position: relative;
    overflow: hidden;
}

.selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin: 0 38px 0 14px;
    font-size: 14px;
    line-height: 44px;
    color: #444;
    height: 46px;
    -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: 46px;
    line-height: 38px;
    background-color: #f5f8f9;
    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;
    -webkit-box-sizing: border-box;
    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;
    -webkit-box-shadow: 0 0 10px -6px;
    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;
}

/* CF7 Validation (Replace if not using CF7) */
/* Individual field error messages */
.req,
.required {
    color: red;
}

.wpcf7-not-valid-tip {
    color: red;
    font-style: italic;
    display: block;
    margin-top: 10px;
}

/* Entire form error message */
.wpcf7-response-output {
    display: block;
    margin-top: 20px;
    font-style: italic;
}

.wpcf7-response-output.wpcf7-validation-errors {
    color: red;
}

.parsley-errors-list li:before {
    display: none;
}

.image-button .parsley-required,
.image-button .parsley-custom-error-message {
    color: #fff;
}

/* Styling for fields that have errors */
select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .selectric {
    border-color: red;
}

/**
* Breadcrumbs
*/
.breadcrumbs {
    list-style: none;
    font-size: 12px;
    margin-top: 10px;
}

.breadcrumbs ul {
    padding-left: 0;
    margin-bottom: 0;
}

.breadcrumbs ul li {
    display: inline-block;
    margin-bottom: 0;
}

.breadcrumbs li:before {
    display: none;
}

.breadcrumbs li:first-child a {
    margin-left: 0px;
}

.breadcrumbs a {
    margin-right: 6px;
    margin-left: 6px;
    color: #2C2B2B;
}

.breadcrumb_last {
    color: #1C4591;
    margin-left: 6px;
}

.backto-product {
    padding-top: 20px;
    padding-left: 20px;
}

.backto-product a {
    font-weight: 600;
    text-transform: uppercase;
}

.backto-product i {
    vertical-align: middle;
    margin-right: 5px;
}

@media (min-width: 768px) {
    .breadcrumbs {
        margin-top: auto;
    }
	
	.backto-product { display: none; }
}

/**
* Pagination
*/
.pagination {}

/**
* Sliders/Carousels
* Slick Slider - http://kenwheeler.github.io/slick/
*/
/* General styling */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    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);
    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;
}

/* 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 */
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

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

/* Slick Dots */
.slick-dots {
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick-dots li {
    display: inline-block;
    cursor: pointer;
}

.slick-dots li:only-child {
    display: none;
}

.slick-dots li button {
    display: block;
    cursor: pointer;
    outline: none;
}

/* Custom styling per slider/carousel */
/* Background Colors */
.gray {
    background: #eff4f6;
}

.navy {
    background: #101D38;
}

.blue {
    background: #1C4591;
}

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

.notification {
    background-color: #239FED;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    position: relative;
    z-index: 99;
}

.notification p {
    margin: 0;
}

.notification a:hover {
    color: #1C4591;
    text-decoration: underline;
}

.header-top {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 0;
    position: relative;
}

.mobile-menu-icon {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    cursor: pointer;
    position: relative;
    height: 50px;
    width: 36px;
}

.mobile-menu-icon span {
    height: 3px;
    width: 34px;
    background: #1C4591;
    display: block;
    margin-bottom: 6px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
    position: absolute;
}

.mobile-menu-icon span:nth-child(1) {
    top: 0;
}

.mobile-menu-icon span:nth-child(2) {
    top: 9px;
}

.mobile-menu-icon span:nth-child(3) {
    top: 18px;
}

.mobile-menu-icon.js-toggled span:nth-child(1) {
    top: 15px;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
}

.mobile-menu-icon.js-toggled span:nth-child(2) {
    opacity: 0;
    right: -60px;
}

.mobile-menu-icon.js-toggled span:nth-child(3) {
    top: 15px;
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.mobile-menu-icon:after {
    content: 'MENU';
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .08em;
    color: #1C4591;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
}

.mobile-search-icon {
    color: #1c4591;
    font-size: 30px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.mobile-search-icon .icon-search {
    cursor: pointer;
}

.mobile-search-icon .searchform {
    position: absolute;
    top: 100%;
    z-index: 9999;
    width: 100%;
    background: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    display: none;
}

.logo {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: 12px;
    margin-right: 12px
}

.responsive-header-links {
    background: #1C4591;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.responsive-header-links.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    left: 0;
}

@media (min-width: 601px) and (max-width: 782px) {
    .admin-bar .responsive-header-links.sticky {
        top: 46px;
    }
}

@media (min-width: 783px) and (max-width: 1024px) {
    .admin-bar .responsive-header-links.sticky {
        top: 30px;
    }
}

.responsive-header-links a {
    width: 33.33%;
    color: #fff;
    background: #1C4591;
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.responsive-header-links a:nth-child(2) {
    background: #239FED
}

.responsive-header-links a i {
    margin-right: 4px;
}

.header-top--right .header-search input {
    border-color: #1C4591;
    border-right: 0;
    background: #f5f8f9;
    border: 1px solid rgb(217, 221, 233);
}

.header-top--right .header-search [type="submit"] {
    background-color: #1C4591;
}


/* Header search button to differ from standard submit button style */
.header-top--right .header-search [type="submit"]:hover {
    background-color: #fff;
    border-color: #1C4591;
    color: #1C4591;
}



.header-top--right .btn-outline {
    border: #1C4591 solid 1px;
    color: #1C4591;
}

.header-top--right .btn-outline:hover {
    background-color: #1C4591;
    color: #fff;
}

@media(min-width: 768px) {
    .mobile-search-icon {
        display: none;
    }

    .logo {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 25%;
    }

    .header-top--right {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        margin-left: auto;
        margin-right: 24px;
        max-width: 411px;
    }

    .header-top--right .header-search {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header-top--right .header-search input {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }
}

@media(min-width: 1025px) {
    .logo {
        margin-left: 0;
        max-width: 214px;
    }

    .header-top--right {
        max-width: 100%;
        margin-right: 0;
        margin-left: 24px;
    }

    .toptiny-nav ul {
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        list-style: none;
        font-size: 12px
    }

    .toptiny-nav li {
        margin-left: 24px;
        margin-bottom: 0px;
        position: relative;
    }

    .toptiny-nav li:before {
        display: none
    }

    .toptiny-nav a {
        text-transform: uppercase;
        font-weight: 700;
        color: #101D38;
    }

    .toptiny-nav .sub-menu {
        display: none;
        top: 100%;
        left: 0;
        position: absolute;
        z-index: 999;
        background-color: #fff;
        width: 300px;
        padding-top: 10px;
        padding-bottom: 10px;
        -webkit-box-shadow: 0px 4px 11px 0px rgba(204, 204, 204, 0.4);
        box-shadow: 0px 4px 11px 0px rgba(204, 204, 204, 0.4);
    }

    .toptiny-nav li:hover>.sub-menu {
        display: block;
    }

    .bottom-right {
        margin-top: 12px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .bottom-right .btn {
        margin-top: 0px;
        padding: 14px;
        color: #fff;
    }

    .bottom-right .btn-tertiary:hover {
        background: #1C4591;
    }

    .bottom-right .btn-primary:hover {
        background: #fff;
        color: #239FED;
    }

    .bottom-right .btn-outline {
        color: #1C4591;
    }

    .bottom-right .btn {
        margin-left: 12px;
    }

    .header-top--right .header-search {
        max-width: 420px;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
    }

    .header-top--right .header-search .btn {
        margin-left: 0;
    }

    .header-menu {
        border-top: 1px solid #F2F2F2;
        border-bottom: 1px solid #F2F2F2;
    }
}

/* Fix sticky header position for when admin bar visible
TODO: Uncomment if design has sticky header */
.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) and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
(-webkit-min-device-pixel-ratio: 2) and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
(-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) and (max-width: 1024px) {
    .logo img {
        display: none;
    }

    .logo {
        background: url('../img/logo@2x.png');
        background-size: 214px 107px;
        display: inline-block;
        height: 107px;
        width: 214px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}

@media (min-width: 1024px) {
    .ubermenu .ubermenu-target {
        padding: 15px 8px !important;
    }

    .ubermenu .ubermenu-target-text {
        font-size: 15px;
    }
}

.ubermenu ul {
    padding: 0 !important;
    margin: 0 !important;
}

.ubermenu li:before {
    display: none;
}

.ubermenu-submenu>.ubermenu-row {
    max-width: 1644px !important;
    margin: 0 auto !important;
    padding: 25px;
}

/* First level */
.ubermenu .ubermenu-nav {
    text-align: center;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ubermenu .ubermenu-item.ubermenu-item-level-0 {
    margin-right: 15px;
}

.ubermenu .ubermenu-item.ubermenu-item-level-0:last-child {
    margin-right: 0;
}

.ubermenu .ubermenu-nav a {
    text-transform: uppercase;
    font-weight: 700;
}

.ubermenu .ubermenu-nav .ubermenu-submenu a {
    text-transform: none;
    font-weight: normal;
}

/* Second level - tab */
.ubermenu .ubermenu-tab-layout-left>.ubermenu-tabs-group {
    background-color: #fff;
    border-top: 3px solid #1C4591;
    border-right: none;
}

.ubermenu .ubermenu-tab-layout-left>.ubermenu-tabs-group:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #1c4591 transparent;
    position: absolute;
    /*top: -10px;*/
    left: 48%;
}

.ubermenu .ubermenu-tab>.ubermenu-target {
    border-bottom: 1px solid #f2f2f2 !important;
    color: #1b4591;
    font-size: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.ubermenu-sub-indicators .ubermenu-tabs.ubermenu-tab-layout-left>.ubermenu-tabs-group>.ubermenu-has-submenu-drop>.ubermenu-target>.ubermenu-sub-indicator {
    font-size: 20px;
    top: 44%;
}

.ubermenu-sub-indicators .ubermenu-tabs.ubermenu-tab-layout-left>.ubermenu-tabs-group>.ubermenu-has-submenu-drop>.ubermenu-target>.ubermenu-sub-indicator {
    -webkit-transform: rotate(0deg) !important;
    -ms-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
}

.ubermenu-sub-indicators .ubermenu-tabs.ubermenu-tab-layout-left>.ubermenu-tabs-group>.ubermenu-has-submenu-drop>.ubermenu-target>.ubermenu-sub-indicator:before {
    content: "\e902";
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
}

.ubermenu-submenu.ubermenu-submenu-type-mega {
    background-color: #eef3f7 !important;
}

/* Third level - tab */
.ubermenu .ubermenu-tab-layout-left>.ubermenu-tabs-group>.ubermenu-tab .ubermenu-tab-content-panel {
    background-color: #f2f2f2;
}

.ubermenu .ubermenu-nav .ubermenu-column-2-3 {
    padding: 10px 20px;
}

.ubermenu .ubermenu-item-type-column>.ubermenu-submenu-type-stack>.ubermenu-item-normal:first-child {
    margin-top: 0 !important;
}

.ubermenu .ubermenu-widget {
    padding: 0 !important;
}

/*.ubermenu .ubermenu-widget img {
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    width: 100%;
    height: 100% !important;
}*/

.ubermenu-widget-area {
    margin-top: 40px;
}

.ubermenu-widget-area>li {
    height: 260px;
    margin-top: 40px !important;
}

.ubermenu .ubermenu-tabs-group .ubermenu-submenu .ubermenu-target {
    font-size: 16px;
    text-transform: capitalize;
    padding: 12px 20px;
}

.ubermenu .ubermenu-tabs-group .ubermenu-submenu .ubermenu-target:hover {
    background-color: #fff;
}

.ubermenu .ubermenu-nav .ubermenu-column-1-3 {
    padding-right: 20px;
}

/*.ubermenu .ubermenu-tab-layout-left > .ubermenu-tabs-group > .ubermenu-tab.ubermenu-active .ubermenu-tab-content-panel,
.ubermenu .ubermenu-tab-layout-left > .ubermenu-tabs-group > .ubermenu-tab.ubermenu-active .ubermenu-tab-content-panel .ubermenu-row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-content: stretch;
    align-items: stretch;
}

.ubermenu .ubermenu-tab-layout-left > .ubermenu-tabs-group > .ubermenu-tab.ubermenu-active .ubermenu-tab-content-panel .ubermenu-row {
    margin: 0;
    width: 100%;
}

.ubermenu .ubermenu-item-type-column>.ubermenu-submenu-type-stack > .ubermenu-item-normal:first-child {
    margin-top: 0;
}

.ubermenu .ubermenu-active .ubermenu-submenu .ubermenu-tab-content-panel .ubermenu-submenu-type-stack {
    padding: 10px !important;
}

.ubermenu .ubermenu-active .ubermenu-submenu .ubermenu-tab-content-panel li.ubermenu-item:last-child .ubermenu-submenu-type-stack {
    padding: 0 !important;
}

.ubermenu .ubermenu-submenu-type-stack > .ubermenu-item-normal > .ubermenu-target {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 16px;
}

.ubermenu .ubermenu-submenu-type-stack > .ubermenu-item-normal > .ubermenu-target:hover {
    background-color: #fff;
    color: #1C4591;
}

.ubermenu .ubermenu-tab-layout-left>.ubermenu-tabs-group>.ubermenu-tab .ubermenu-item-type-custom .ubermenu-widget-area img {
    display: block;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    width: 100%;
    height: 100% !important;
}

.ubermenu .ubermenu-active .ubermenu-submenu .ubermenu-submenu-type-stack {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-wrap: wrap;
}

.ubermenu .ubermenu-widget .wp-caption-text {
    display: none;
}*/

/* Default */
/* Second level - default */
.ubermenu .ubermenu-item .ubermenu-submenu-drop {
    background-color: #fff;
}

.ubermenu-active,
.ubermenu-item-level-0>a:hover,
.ubermenu-item.ubermenu-item-normal a:hover {
    background: #eef3f7 !important;
}

.ubermenu-active>a {
    color: #239FED !important;
}

/**
* Navigation
* Used for mobile and tablet
*/
.nav-primary {
    position: absolute;
    z-index: 999;
    width: 320px;
    top: 100%;
    right: 0;
    background: #fff;
    display: none;
}

.nav-primary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-primary li {
    border-top: 1px solid #f8f8f8;
    position: relative;
    margin: 0;
}

.nav-primary li:before {
    display: none;
}

.nav-primary a {
    display: block;
    font-weight: 700;
    padding: 10px 30px;
    text-transform: uppercase;
}

.nav-primary li.current-menu-item>a,
.nav-primary li.current-menu-parent>a,
.nav-primary li.current-menu-ancestor>a {
    color: #1b4591;
}

.nav-primary .sub-menu-toggle {
    position: absolute;
    right: 0;
    top: 0;
    height: 45px;
    width: 45px;
    z-index: 9999;
    cursor: pointer;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.nav-primary .sub-menu-toggle:before {
    color: #294f96;
    font-size: 10px;
    display: block;
    text-align: center;
    -webkit-transition: all .25s ease-in;
    -o-transition: all .25s ease-in;
    transition: all .25s ease-in;
}

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

.nav-primary .sub-menu {
    background-color: #f2f2f2;
    display: none;
    padding-left: 20px;
}

.nav-primary .sub-menu.js-toggled {
    display: block;
}

.nav-primary .sub-menu li {
    border-top: none;
}

.nav-primary .sub-menu a {
    color: #2d2b2c;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 13px;
    padding-top: 4px;
    padding-bottom: 4px;
}

@media(min-width: 1025px) {
    .nav-primary ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        text-transform: uppercase;
    }

    .nav-primary li {
        margin-bottom: 0;
        position: relative;
    }

    .nav-primary li:before {
        display: none;
    }

    .nav-primary a {
        padding: 12px;
        font-weight: 700;
        display: block;
    }

    .nav-primary .sub-menu {
        display: none;
        width: 250px;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 99;
        background-color: #fff;
    }

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

    .nav-primary .sub-menu a {
        padding-top: 5px;
        padding-bottom: 5px;
    }

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

    .nav-primary .sub-menu .sub-menu {
        top: 0;
        left: 100%;
    }
}

@media(min-width: 1200px) {
    .nav-primary a {
        padding: 12px 24px;
    }
}

@media(min-width: 1501px) {
    .nav-primary a {
        padding: 12px 50px;
    }
}

/**
* Masthead
*/
.masthead {}

/**
* Inner banner
*/
.inner-banner+.half-and-half {
    margin-top: 0px;
}

.inner-banner+.half-and-half+.half-and-half {
    margin-bottom: 48px;
}

.inner-banner h1 {
    margin-bottom: 0;
    width: 100%;
}

.inner-banner-content {
    min-height: 107px;
    padding: 24px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.inner-banner-content.no-title {
    display: none;
    min-height: 0;
}

@media(min-width: 768px) {
    .inner-banner-content.no-title {
        display: block;
        padding: 12px 0;
    }

    .inner-banner-content {
        padding: 25px 0;
    }

    .inner-banner h1 {
        margin-bottom: 6px;
    }

    .inner-banner+.half-and-half+.half-and-half {
        margin-bottom: 96px;
    }
}

/*Homepage Hero Section*/
.hero-section {
    position: relative;
    text-align: center;
}

.hero-section:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .3);
}

.page-template-page-trailers .hero-section:before {
    background: rgba(28, 69, 145, 0.71);
}

.hero-section img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    -o-object-position: center center;
    object-position: center center;
    display: block;
    position: absolute;
    top: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 48px 0;
}

.hero-content h1 {
    color: #fff;
}

.hero-content p {
    font-size: 20px;
    color: white;
    max-width: 795px;
    margin: 0 auto 40px;
}

.hero-content .breadcrumbs {
    margin-bottom: 25px;
    color: white;
}

.hero-content .breadcrumbs a,
.hero-content .breadcrumbs span {
    color: white;
}

.hero-section .search-wrapper {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.hero-section .search-wrapper input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.hero-section .search-wrapper .btn {
    padding: 10px;
}

.hero-section .btn:hover {
    color: #fff !important;
    border-color: #fff;
}

@media(min-width: 768px) {
    .hero-content {
        padding: 144px 0;
    }

    body:not(.home) .hero-content {
        padding: 50px 0;
    }

    .hero-section .search-wrapper {
        max-width: 567px;
        margin: auto;
    }

    .hero-section .search-wrapper input {
        padding: 24px;
    }

    .hero-section .search-wrapper .btn {
        padding: 24px;
        margin-left: 12px;
    }
}

@media(min-width: 1200px) {
    .hero-content {
        padding: 180px 0;
    }
}

/*Quick Links*/
.quick-link-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 12px;
}

.quick-link-card:last-child {
    margin-bottom: 0;
}

.quick-link-card h3 {
    font-size: 20px;
    line-height: 1.7;
    margin-top: 0;
    margin: 0px;
}

.quick-link-card p {
    margin-top: 0;
    margin-bottom: 2px;
    line-height: 1.2;
    font-size: 1.1rem;
}

.quick-link-card i {
    color: #1C4591;
    font-size: 40px;
    margin-right: 24px;
}

.blue .quick-link-card h3,
.blue .quick-link-card p,
.blue .quick-link-card i {
    color: white;
}

.blue .quick-link-card a {
    color: #259FED
}

.text-link {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin: 0;
}

@media(min-width: 768px) {
    .quick-link-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        margin-right: -12px;
        margin-left: -12px;
    }

    .quick-link-card {
        width: calc(33.33% - 24px);
        max-width: 192px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
        margin-left: 12px;
        margin-right: 12px;
        margin-bottom: 0;
    }

    .quick-link-card i {
        margin: 0 auto;
    }

    .quick-link-content {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .quick-link-content .text-link {
        margin-top: auto;
    }
}

@media(min-width: 1025px) {
    .quick-link-card {
        max-width: initial;
        text-align: left;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .quick-link-card i {
        margin-right: 24px;
    }

    .quick-link-content {
        height: 100%;
    }
}

/*Image CTA Blocks*/
.image-button {
    overflow: hidden;
    display: block;
    height: 100%;
    position: relative;
    margin-bottom: 24px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.image-button:first-child {
    margin-top: 24px;
}

.image-button-content {
    padding: 48px 24px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.image-button-content p {
    display: none;
}

.newsletter .image-button-content {
    padding: 48px 24px;
    width: 100%;
    max-width: auto
}

.newsletter.topcta .image-button-content {
    max-width: unset;
}

.image-button-content h2,
.image-button-content p {
    color: #fff;
}

.image-button:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background: -o-linear-gradient(315deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.74;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-button img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    -o-object-position: center center;
    object-position: center center;
    display: block;
    position: absolute;
    top: 0;
    z-index: -1;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

@media (max-width: 582px) {
    .image-button .btn {
        margin-left: 0;
    }
}

@media(min-width: 768px) {
    .image-button-content {
        max-width: 500px;
    }

    .image-button:hover {
        text-decoration: none;
    }

    .image-button:not(.topcta):hover img {
        -webkit-transform: scale(1.25);
        -ms-transform: scale(1.25);
        transform: scale(1.25);
    }

    .image-button:not(.topcta):hover .btn-primary,
    .image-button:not(.topcta):hover .btn-green,
    .image-button.topcta .btn:hover,
    .image-button.newsletter input[type="submit"]:hover {
        color: #fff !important;
        border-color: #fff !important;
    }

    .image-button-content p {
        display: block;
    }

    .newsletter .image-button-content {
        padding: 48px;
    }
}

@media(min-width: 1025px) {
    .large-image-buttons {
        margin-bottom: 24px;
        margin-top: 24px;
    }

    .image-button:first-child {
        margin-top: 0;
    }

    .image-button {
        margin-bottom: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .large-image-buttons .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .image-button-content {
        padding: 96px 48px
    }
}

@media(min-width: 1200px) {
    .image-button-content {
        padding: 144px 48px;
    }
}

/*Service Row*/
.service-row .gray {
    padding-top: 48px;
    padding-bottom: 48px;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
}

.page-template-page-trailers .service-row .gray {
    background: none;
}

@media (min-width: 1025px) {
    .page-template-page-trailers .service-row .gray {
        padding-top: 70px;
        padding-bottom: 80px;
    }
}

.page-template-page-trailers .service-row {
    background: rgba(37, 159, 237, 0.05);
}

.post-31823 .service-row {
    margin: 30px 0;
}

.page-template-page-trailers .service-row .aside,
.page-template-page-trailers .service-row .aside h2 {
    text-align: left;
}

.service-wrapper {
    position: relative;
}

.service-row h2 {
    margin-bottom: 24px;
}

.service-wrapper .slick-slide {
    margin-left: 48px;
    margin-right: 48px
}

.service-wrapper .slick-arrow {
    z-index: 2;
    position: absolute;
    color: #707070;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    font-size: 30px;
}

.service-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px;
    background: #fff;
    margin-bottom: 24px;
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.non-clickable {
    pointer-events: none;
}

.service-card.styled {
    position: relative;
    min-height: 185px;
}

.service-card.styled:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 50px);
    background: rgb(28, 69, 145);
    background: linear-gradient(0deg, rgba(28, 69, 145, 1) 0%, rgba(0, 212, 255, 0) 100%);
}

.service-card.styled .bkg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-card__content {
    position: relative;
    z-index: 1;
}

.service-card i {
    font-size: 70px;
    color: #1C4591;
}

.service-card:hover i {
    color: #1C4591;
}

.service-card h3,
.service-card:hover h3 {
    font-size: 20px;
    margin-top: 12px;
    margin-bottom: 12px;
    color: #101D38;
}

.service-card p,
.service-card:hover p {
    color: #5C5C5C;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-card.styled i,
.service-card.styled:hover i,
.service-card.styled h3,
.service-card.styled:hover h3,
.service-card.styled p,
.service-card.styled:hover p {
    color: #fff;
}

.service-card.styled .service-card__copy {
    position: absolute;
    bottom: 0;
    left: 10px;
    text-align: left;
}

.service-card.styled p {
    display: none;
}

.service-card:hover {
    border-color: #1C4591;
    text-decoration: none;
}

.service-card {
    transform: scale(1);
}

.service-card.styled:hover {
    transform: scale(1.1);
}

@media(min-width: 768px) {
    .service-wrapper {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -12px;
        margin-right: -12px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .service-card {
        width: calc(33.33% - 24px);
        margin-right: 12px;
        margin-left: 12px;
    }
}

@media(min-width: 1025px) {

    .service-row h2,
    .service-row .col-md-3 {
        text-align: left;
        margin-bottom: 0;
    }

    .service-row .row {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .service-card {
        width: calc(25% - 24px);
    }
}

/*Category Row*/
.category-row {
    margin-top: 40px;
}

.page-template-page-trailers .category-row .header-decoration {
    padding-bottom: 10px;
}

.page-template-page-trailers .category-row .header-decoration .btn {
    margin-left: 20px;
    margin-top: 0;
}

.header-cta-btn {
    position: relative;
}

.header-btn {
    position: absolute;
    right: 0;
    bottom: 10px;
    max-width: 45%;
    width: auto;
    padding: 10px 15px;
}

.category-row.inner {
    /*innerpage only*/
    margin-top: 24px
}

.category-card--wrapper {
    margin-left: -6px;
    margin-right: -6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.category-card--wrapper .category-card {
    width: calc(50% - 12px);
    margin-right: 6px;
    margin-left: 6px;
    margin-bottom: 12px;
}

.category-card .category-card-title {
    font-size: 14px;
    color: #2C2B2B;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    line-height: 1em;
    padding: 12px;
}

@media(min-width: 768px) {
    .category-card .category-card-title {
        padding: 20px 12px;
    }

    .category-card--wrapper .category-card {
        width: calc(50% - 24px);
        margin-right: 12px;
        margin-left: 12px;
        border: 2px solid transparent;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        margin-bottom: 24px;
    }

    a.category-card:hover {
        border-color: #1C4591;
        text-decoration: none;
    }

    a.category-card:hover .category-card-title {
        color: #1C4591;
    }

    .category-card--wrapper {
        margin-right: -12px;
        margin-left: -12px;
    }
}

@media(min-width: 1025px) {
    .category-row {
        margin-top: 80px;
    }

    .category-card--wrapper .category-card {
        width: calc(25% - 24px);
    }
}

@media(min-width: 1200px) {
    .category-card--wrapper .category-card {
        width: calc(20% - 24px);
    }
}

/*Manufacturer Row*/
.manufacturer-row {
    padding-top: 48px;
    padding-bottom: 30px;
}

.manufacturer-slider {
    position: relative;
}

.manufacturer-slider .slick-list {
    margin-right: 20px;
    margin-left: 20px;
}

.manufacturer-slider .slick-slide img {
    margin: auto;
}

.manufacturer-slider .slick-slide {
    margin-left: 20px;
    margin-right: 20px;
}

.button-up,
.button-down {
    position: relative;
    padding: 5px;
    margin: 30px auto;
    background: #00000026;
    height: 21px;
    width: 21px;
    border-radius: 50%;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.button-down:hover {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
}

.button-up:hover {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
}

.button-up::after,
.button-down::after {
    content: "";
    position: absolute;
    left: 7px;
    z-index: 11;
    display: block;
    width: 5px;
    height: 5px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
}

.button-up::after {
    top: 8px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.button-down::after {
    top: 6px;
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

i.button-up.slick-arrow {
    top: -27px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

i.button-down.slick-arrow {
    bottom: -21px;
    top: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*Homepage Manufacturer - No Slide */

.manufacturer-slider-no-slide {
    display: flex;
    flex-wrap: wrap;
    justify-items: baseline;
}

.manufacturer-slider-no-slide a {
    width: 50%;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
    border: 2px solid transparent;
}

.manufacturer-slider-no-slide img {
    height: 60px;
    object-fit: contain;
    width: 100%;
    max-width: 100%
}

.manufacturer-slider-no-slide a:hover {
    border-color: #1C4591
}

@media(min-width: 768px) {

    .manufacturer-slider-no-slide a {
        width: 33%
    }
}

@media(min-width: 1025px) {
    .manufacturer-slider-no-slide a {
        width: 25%
    }

    .manufacturer-slider-no-slide img {
        height: 90px;
    }
}

@media(min-width: 1200px) {
    .manufacturer-slider-no-slide a {
        width: 16.66%
    }
}

/**
 *  Snippets Boxes
 **/
.snippet-boxes .image-button-content p {
    display: block;
}

.snippet-boxes .image-button-content {
    padding: 30px 20px;
}

@media (min-width: 768px) {
    .snippet-boxes .row {
        display: flex;
        columns: 2;
        flex-direction: row;
        flex-wrap: wrap;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (min-width: 1025px) {
    .snippet-boxes .image-button-content {
        padding: 50px 40px;
    }
}

@media (min-width: 1200px) {
    .snippet-boxes .image-button-content {
        padding: 60px 40px;
    }
}

/*Hot Deals*/
.deal-row {
    padding-top: 48px;
    padding-bottom: 48px;
}

.product-wrapper,
.product-card .product-image {
    position: relative;
}

.product-cta-card a {
    display: block;
    width: 100%;
    text-align: center;
}

.product-cta-card .cta-headline {
    font-size: 22px;
    font-weight: 600;
    color: #101D38;
}

.product-cta-card .btn-primary {
    width: 100%;
}

.woocommerce ul.products li.product a img.cta-icon-img {
    height: auto;
    width: auto;
    margin: 0 auto;
    object-fit: initial;
    -o-object-fit: initial;
    object-fit: initial;
    font-family: unset;
    margin-bottom: 25px;
}

.product-card .product-tags {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 20px);
    /* background: #fff; */
}

.product-card .hot-deal {
    background: #fff;
    border: 1px solid rgb(217, 221, 233);
    border-radius: 3px;
    color: #239FED;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 7px;
    display: inline-block;
    width: auto;
    line-height: 1.5em;
    -webkit-box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 3px 1px;
    box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 3px 1px;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* hot deal tag on single product page */
.hotdeal-tag {
    background: #fff;
    border: 1px solid rgb(217, 221, 233);
    border-radius: 3px;
    color: #239FED;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 7px;
    display: inline-block;
    width: auto;
    line-height: 1.5em;
    /*box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 3px 1px;*/
    margin-right: 5px;
    margin-bottom: 10px;
}

.product_meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column wrap;
    flex-flow: column wrap;
}

.product_meta-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.product-disclaimer {
    background: #eff4f6;
    padding: 0.8rem 2rem;
    margin-bottom: 1.5rem;
    /* font-weight: bold; */
    /* border: 1px solid #dedede; */
    width: 100%;
    margin-top: 0px;
}

.product-card .product-details {
    padding: 24px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.7rem 1.2rem;
}

.product-card .product-details.product-cta-card {
    padding: 20px;
}

.product-card a {
    text-decoration: none !important;
}

.product-card .product-name {
    font-weight: 700;
    /*    text-transform: uppercase;*/
    font-size: 14px;
    line-height: 1em;
    color: #2C2B2B;
    display: block;
}

.product .entry-summary {
    padding: 20px;
}

.left .product-name h2 {
    font-size: 14px !important;
}

.product-card .condition {
    color: #707070;
    font-size: 14px;
    text-transform: capitalize;
    display: block;
}

.product-card .price,
.woocommerce ul.products li.product .price {
    color: #1C4591;
    font-size: 20px;
    display: block;
    margin: auto;
    margin-left: 0;
    text-decoration: none;
    text-align: right;
}

.woocommerce-product-details__short-description {
    margin: 2rem 0;
}

.products-fullservice .gray {
    margin-bottom: 0;
    margin-top: 0;
    padding-top: 36px !important;
    padding-bottom: 0 !important;
}

.engaging-section {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.engaging-section__container {
    position: relative;
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.engaging-section-text {
    position: relative;
    z-index: 2;
    background: hsl(0deg 0% 100% / 88%);
    padding: 2rem 3rem;
}

.engaging-section__title {
    text-align: center;
    margin-bottom: 10px;
}

.engaging-section__subtitle {
    text-align: center;
    margin-bottom: 30px;
}

.engaging-section__image-box {
    height: 100%;
    background: #2ea0ed;
    position: absolute;
    z-index: -1;
}

img.engaging-section__img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    /* opacity: .60; */
}

.products-fullservice h2 {
    margin: 0 0 2rem;
    text-align: center;
}

.product-wrapper .slick-slide {
    height: 100%;
    margin-bottom: 24px;
    margin-right: 20px;
    margin-left: 20px;
    background: #fff;
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.product-wrapper.product-inner .slick-slide {
    margin-top: 24px;
}

.product-wrapper .slick-slide>div,
.product-wrapper .product-card {
    height: 100%;
}

.product-wrapper .slick-arrow,
.manufacturer-slider .slick-arrow,
.product-slider .slick-arrow,
.product-slider-navigation .slick-arrow {
    cursor: pointer;
    z-index: 2;
    position: absolute;
    color: #C3C3C3;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-wrapper .slick-arrow.icon-arrow-right,
.manufacturer-slider .slick-arrow.icon-arrow-right,
.product-slider .slick-arrow.icon-arrow-right,
.product-slider-navigation .slick-arrow.icon-arrow-right {
    right: 0;
}

.product-card {
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: -moz-flex !important;
    display: -ms-flex !important;
    display: -o-flex !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    /* overrides Slick inline styling */
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.product-card.special {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

.product-card:hover {
    text-decoration: none;
}

.product-card.special i {
    font-size: 80px;
    margin-bottom: 24px;
}

.product-card.special h3 {
    margin-bottom: 12px;
}

.product-wrapper .product-card:hover {
    text-decoration: none;
}

.product-wrapper .product-card:hover .product-details {
    background: #F2F2F2;
}

.related__top {
    margin-bottom: 30px;
    float: left;
    width: 100%;
}

/*tabs*/

.woocommerce-tabs {
    padding: 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    border-color: #F2F2F2;
    border-left: #ebe9eb solid 1px;
    background-color: #F2F2F2;
    border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:last-child {
    border-right: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-color: #ebe9eb;
    background-color: #ebe9eb;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active:after {
    display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    margin: 0;
    padding: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before {
    border-color: #F2F2F2;
}

.woocommerce div.product .woocommerce-tabs .panel {
    border: #F2F2F2 solid 1px;
    padding: 30px;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    font-weight: normal;
}

.price ins {
    text-decoration: none !Important;
}

/*.woocommerce-Price-amount.amount {
    font-size: 12px;
}*/

del span.woocommerce-Price-amount.amount {
    font-size: 14px;
}

.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
    text-decoration: none;
}

.woocommerce div.product p.price del span,
.woocommerce div.product span.price del span {
    text-decoration: line-through;
    text-decoration-skip-ink: none;
    text-decoration-thickness: 2px;
}

.woocommerce ul.products.columns-5 li.product,
.woocommerce-page ul.products.columns-5 li.product {
    /*min-width: 200px;
    width: 18.95%;*/
    width: auto;
}

.comment-form label,
.comment-form .form-submit {
    margin-top: 20px !important;
}

.related {
    padding: 0 20px;
}

.product-testimonial-slider .slick-dots li button {
    font-size: 0;
    border: 0;
    margin: 0 11px;
    background: transparent
}

.product-testimonial-slider .slick-dots {
    text-align: center;
    margin-left: 100px;
}

.product-testimonial-slider .slick-dots li:before {
    font-size: 0;
    border: 0;
    width: 12px;
    height: 12px;
    background: #239FED;
}

.product-testimonial-slider .slick-dots li.slick-active:before {
    background-color: #1C4591;
}

.product-testimonial-slide {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 30px;
}

.row.testimonial__container {
    padding: 60px 40px 40px !important
}

.testimonial__container {
    margin-top: 3rem;
}

.testimonial__author {
    font-weight: normal;
}

@media(min-width: 600px) {
    .product-wrapper {
        margin-left: 12px;
        margin-right: 12px;
    }

    .product-wrapper .slick-slide {
        margin-right: 12px;
        margin-left: 12px;
    }

    .product-wrapper .slick-arrow.icon-arrow-right,
    .product-slider-navigation .slick-arrow.icon-arrow-right {
        right: -12px;
    }

    .product-wrapper .slick-arrow.icon-arrow-left,
    .product-slider-navigation .slick-arrow.icon-arrow-left {
        left: -12px;
    }

    .product-wrapper.product-inner {
        max-width: 575px;
        margin: auto;
    }

    .product-inner .product-card .product-details {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .woocommerce-tabs {
        padding: 0;
    }

    .related {
        padding: 0;
    }

    .related__top h2 {
        float: left;
        margin: 0 !important;
    }

    .related__top a.btn {
        float: right;
        margin: 0 !important;
    }

}

@media(min-width: 768px) {
    .deal-row .row {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .product-card .product-details {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    /*.product-card .price { margin-top: initial; }*/
    .deal-row {
        padding-top: 96px;
        padding-bottom: 96px;
    }

    .product .entry-summary {
        padding: 0;
    }

    .woocommerce div.product .woocommerce-tabs ul.tabs li {
        padding: 8px 20px;
        font-size: 18px;
    }

}

@media(min-width: 1025px) {
    .product-card .product-details .left {
        width: calc(100% - 5px);
        margin-right: 5px;
    }

    .product-wrapper.product-inner {
        max-width: 100%;
    }

    .product-inner .product-card .product-details {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    /*.product-card .price,
    .woocommerce ul.products li.product .price {
        margin-left: auto;
    }*/
}

/* Content Row Section*/


.product .content-row .white {
    padding-top: 48px;
    padding-bottom: 20px;
}


.content-row ul {
    margin-left: 25px;
    text-align: left;
}


.content-row ul li ul {
    margin-left: 0;
    margin-top: 20px;
}




/*Footer CTA*/
.footer-cta {
    position: relative;
    padding-top: 48px;
    padding-bottom: 48px;
    overflow: hidden;
}

.footer-cta.styled {
    padding-top: 70px;
    padding-bottom: 70px;
}

.footer-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-cta.styled .footer-cta__content {
    background: #fff;
    padding: 60px 0;
}

.footer-cta h2 {
    margin-bottom: 12px;
}

/*50/50 Sections*/
.half-and-half {
    margin-top: 48px;
    margin-bottom: 48px;
}

@media (min-width: 1025px) {
    .page-template-page-trailers .half-and-half {
        margin-top: 90px;
        margin-bottom: 90px;
    }
}

.half-and-half--image-right .flex-row {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
}

.half-and-half .flex-row:before,
.half-and-half .flex-row:after {
    display: none;
}

.half-and-half__image {
    position: relative;
    min-height: 280px;
}

.half-and-half__image img {
    width: 100%;
    height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    -o-object-position: center center;
    object-position: center center;
    display: block;
    position: absolute;
}

.half-and-half+.half-and-half {
    margin-top: 48px;
}

.half-and-half__text-wrapper {
    padding: 20px;
}

@media(min-width: 1025px) {
    .half-and-half__image {
        margin-bottom: 24px;
    }

    .half-and-half__text-wrapper {
        padding: 48px;
    }

    .half-and-half__text {
        width: 50%;
    }

    /*    .half-and-half--image-right .half-and-half__text-wrapper {
        padding-right: 48px;
    }

    .half-and-half--image-left .half-and-half__text-wrapper {
        padding-left: 48px;
    }
*/
    .half-and-half--image-right .flex-row,
    .half-and-half--image-left .flex-row {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .half-and-half+.half-and-half {
        margin-top: 0;
    }

    /*
    .half-and-half {
        margin-bottom: 0;
    }*/

    .half-and-half__image {
        margin-bottom: 0;
        width: 50%;
    }

    .half-and-half__image img {
        height: 100%;
    }
}

@media(min-width: 1025px) {
    .half-and-half__text-wrapper {
        padding: 96px 80px;
    }
}

/*Full Width Image Navy Background*/
.full-img-section {
    position: relative;
}

.full-img-section .bkg-img {
    width: 100%;
    height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    -o-object-position: center center;
    object-position: center center;
    display: block;
}

.full-img-section .content-wrapper {
    padding: 48px 12px;
    background: #101D38;
    color: #fff;
    margin-top: -48px;
}

.full-img-section .content-wrapper a:not(.btn-primary) {
    color: #239FED;
}

.full-img-section .content-wrapper h1,
.full-img-section .content-wrapper h2,
.full-img-section .content-wrapper h3,
.full-img-section .content-wrapper h4 {
    color: #fff;
}

.codedropz-upload-container {
    padding: 10px !important;
}

.codedropz-upload-inner h3 {
    font-size: 16px !important;
}

.codedropz-upload-inner a {
    font-weight: 600;
}

.codedropz-upload-inner a:hover {
    color: #fff !important;
}

@media(min-width: 1025px) {
    .full-img-section .bkg-img {
        height: 100%;
        position: absolute;
        top: 0;
    }

    .full-img-section .container {
        position: relative;
        top: 0;
        width: 100%;
    }

    .full-img-section .content-wrapper {
        padding: 48px;
        margin-top: 96px;
        margin-bottom: 96px;
    }
}

/*Video Section*/
.video-row {
    margin-bottom: 24px;
}

@media (min-width: 1025px) {
    .page-template-page-trailers .video-row {
        margin-top: 115px;
        margin-bottom: 120px;
    }
}

.video-img,
.video-content {
    margin-top: 24px;
}

.video-img iframe,
iframe {
    width: 100%;
}

@media (max-width: 767px) {
    .video-img iframe {
        max-height: 400px;
    }
}

iframe {
    max-width: 900px;
    margin: auto;
}

.video-img {
    position: relative;
    display: block;
}

.js-popup:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.28);
    top: 0;
}

.video-img i {
    position: absolute;
    font-size: 60px;
    color: #fff;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

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

    .video-row .row {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .video-row .row.alignment-left {
        flex-direction: row-reverse;
    }

    .video-img,
    .video-content {
        margin-top: 0;
    }

    .video-content {
        padding-top: 96px;
        padding-bottom: 96px;
        padding-right: 48px;
    }

    .page-template-page-trailers .video-content {
        padding-left: 50px;
    }

    .video-img {
        height: 100%;
    }

    .video-img img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: 'object-fit: cover;';
        -o-object-position: center center;
        object-position: center center;
        display: block;
    }

    .video-img i {
        font-size: 140px;
    }
}

/*Testimonial Block*/
.testimonial-block {
    border-left: 6px solid #1C4591;
    padding-left: 12px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin: 48px 0;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-block:first-child {
    margin-top: 0;
}

.testimonial-block em {
    font-weight: normal;
}

.testimonial-block .date {
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 700;
}


.product__hot-deals {
    background: #b10000;
    color: #fff;
    padding: 1px 1rem;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin-bottom: .5rem;
}


.woocommerce-product-gallery .slick-track {
    margin: 0;
}

.product-img-slideshow-wrapper>.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.product-slider-navigation {
    margin-left: -6px;
    padding: 0 14px;
    height: auto;
}

/*.product-slider-navigation .slick-list {
    height: 420px !important;
}*/

@media (max-width: 1024px) {
    /* bandaid fix on unknown offset on mobile product slider */
    /* .woocommerce-product-gallery {
        left: 12px;
    } */
}

.product-btns.hidden-sm-down {
    padding: 0 7px 0 7px;
    float: left;
    width: 100%;
}

.product-row .btn-flex .btn {
    margin-top: 0 !important;
}

/*Blog Items*/
.date {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

.blog-post .date {
    margin-bottom: 0;
}

.blog-post h3 a {
    color: #000;
}

.readmore {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.readmore:hover,
.blog-post a:hover {
    text-decoration: none;
    color: #239FED;
}

.readmore i {
    margin-left: 12px;
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

.readmore:hover i {
    margin-left: 24px;
}

.blog-post {
    max-width: 754px;
    margin-bottom: 48px;
}

.blog-list {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.post-share.social-links {
    font-size: 23px;
    padding-left: 0;
}

.post-share.social-links li {
    display: inline-block;
    margin-bottom: 0;
}

.post-share.social-links li:before {
    display: none;
}

@media(min-width: 1025px) {
    .blog-list .col-sm-6:nth-child(even) .blog-post {
        margin-left: auto;
    }
}

/*Hours & Locations*/
.location-wrapper {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.hours-wrapper {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-left: -12px;
    margin-right: -12px;
}

.half,
.full {
    /* background: #e7f5fd; */
    padding: 15px 24px;
    color: #2C2B2B;
    text-transform: uppercase;
    font-size: 16px;
    margin-left: 6px;
    margin-right: 6px;
    text-align: center;
    margin-bottom: 0;
    width: calc(100% - 12px);
    line-height: 1em;
    border-bottom: 1px solid #e2ebf1;
    /* border-left: 0; */
    /* border-right: 0; */
}

@media(min-width: 600px) {
    .half {
        width: calc(50% - 12px);
    }
}

@media(min-width: 768px) {
    .half {
        width: calc(100% - 12px);
    }
}

@media(min-width: 1200px) {
    .half {
        width: calc(50% - 12px);
    }

    .half,
    .full {
        padding: 24px;
    }
}

.specs-wrapper .half {
    width: calc(100% - 12px);
}

@media(min-width: 1024px) {
    .specs-wrapper .half {
        width: calc(50% - 12px);
    }

    .specs-wrapper .half {
        padding: 24px;
    }
}

.specs-wrapper .half.colors-half {
    display: block;
}

.color-list {
    align-items: center;
    display: flex;
    padding: 4px 0;
}

.color-list .spec-color {
    margin-right: 5px;
}


/*Product Page*/
.product-top-details {
    margin: 24px 0;
}

.product-top-details h4 {
    margin-bottom: 18px;
}

.product-top-details .btn {
    margin-top: 18px;
    display: block;
}

.product-top-details .price {
    font-size: 30px;
    color: #1C4591;
    font-weight: 700;
}

.product_meta .disclaimer {
    margin-top: 15px;
}

.product-slider {
    margin-bottom: 24px;
}

.product-slider .slick-slide {
    margin-left: 24px;
    margin-right: 24px;
}

.share-btns {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.share-btns a:hover {
    text-decoration: none;
}

.product-btns .btn {
    margin-top: 0;
    display: block;
}

.product-btns .btn i {
    margin-right: 4px;
}

.product-btns .btn+.btn {
    margin-left: 0;
    margin-top: 6px;
}

.white-popup-block {
    background: #fff;
    margin: 48px auto;
    position: relative;
    max-width: 1088px;
    width: calc(100% - 24px);
    padding: 24px;
}

.white-popup-block input,
.white-popup-block textarea,
.white-popup-block .selectric {
    margin-bottom: 20px;
}

.white-popup-block .product-name {
    font-weight: normal;
    color: #1C4591;
    margin-bottom: 12px;
}

.white-popup-block h4 {
    color: #5C5C5C;
    font-size: 15px;
    margin-bottom: 24px;
}

.white-popup-block .mfp-close {
    color: #707070;
    opacity: 1;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #1C4591;
    font-weight: bold;
    font-size: 2.3rem;
    margin-left: 0;
    margin-top: 1rem;
}

.sku-wrapper {
    font-weight: bold;
    text-transform: uppercase;
    color: #2c2b2b;
    font-size: 1.2rem;
}

.specs-wrapper .half:nth-last-child(-n + 2) {
    border: none;
}

.woocommerce form .form-row textarea {
    height: auto;
}

.woocommerce-tabs li:before,
.products li:before {
    list-style: none;
    display: none;
}

.woocommerce-ordering {
    display: none;
}

.woocommerce .woocommerce-result-count {
    margin: 0;
}

.woocommerce ul.products li.product a img {
    height: 200px;
    -o-object-fit: cover;
    object-fit: cover;
    /* -o-object-fit: cover;
    object-fit: cover;
    font-family: 'object-fit: cover;'; */
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 0;
}

.woocommerce div.product {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    display: flex;
}

@media (min-width: 1025px) {

    .woocommerce div.product .woocommerce-product-gallery,
    .woocommerce div.product .summary.entry-summary {
        width: 50%;
    }

    .woocommerce div.product .up-sells.products {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .woocommerce div.product {
        flex-direction: column;
    }

    .woocommerce div.product .woocommerce-product-gallery,
    .woocommerce div.product .summary.entry-summary {
        width: 100% !important;
    }

    .woocommerce div.product .up-sells.products {
        width: 100% !important;
    }
}


.category-card-image img {
    height: 180px;
    width: 100%;
    max-width: 100%;
    /* -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;'; */
    -o-object-fit: contain;
    object-fit: contain;
}

.spec-color {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid black;
}

@media (max-width: 1024px) {
    .specs-wrapper .spec-color {
        display: inline-block;
        position: relative;
        top: 4px;
        margin-left: 4px;
    }
}

.spec-color--black {
    background-color: #000;
}

.spec-color--tan {
    background: #d2b48c;
}

.spec-color--white {
    background: #fff;
}

.spec-color--black {
    background: #000;
}

.spec-color--silver {
    background: #c0c0c0;
}

.spec-color--red {
    background: #f00;
}

.spec-color--dimgray {
    background: #696969;
}

.spec-color--yellow {
    background: #ff0;
}

.spec-color--blue {
    background: #00f;
}

.spec-color--orange {
    background: #ffa500;
}

.spec-color--maroon {
    background: #800000;
}

.single-product .onsale {
    display: none;
}

@media(min-width: 768px) {
    .product-top-details {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-line-pack: center;
        align-content: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .product-top-details .btn {
        margin-top: 0;
    }
}

.specs-wrapper {
    /* border: 1px solid #1c4591; */
    padding: 1.5rem 1rem 1.2rem;
    background: #eff4f6;
    /* width: calc(100% - 1rem); */
    margin: 0 auto !important;
}

@media(min-width: 1025px) {
    .white-popup-block {
        padding: 48px;
    }

    .product-slider {
        margin-bottom: 6px;
    }

    .product-slider .slick-slide {
        margin-left: 0;
        margin-right: 0;
    }

    .product-slider-navigation .slick-slide {
        margin-right: 6px;
        margin-left: 6px;
    }

    .product-content {
        margin-left: auto;
        max-width: 762px;
    }

    .alignright-btn {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .specs-wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-left: -6px;
        margin-right: -6px;
    }

    .specs-wrapper strong {
        margin-right: 4px;
    }

    .specs-wrapper .half,
    .specs-wrapper .full {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        /* justify-content: center; */
        text-align: left;
        padding: 12px 10px;
    }

    .woocommerce ul.products li.product .product-details .product-image img {
        -o-object-fit: contain;
        object-fit: contain;
    }

}

@media (min-width: 1025px) {
    .btn-flex {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .product-btns {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }

    .share-btns.btns-options i {
        font-size: 17px;
        margin-right: 5px;
        position: relative;
        top: 2px;
    }

    .btns-options__row {
        width: 100%;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 20px;
        margin-left: -10px;
    }

    .share-btns.btns-options i.icon-truck {
        font-size: 21px;
    }

    .share-btns.btns-options i.icon-money {
        margin-right: 0px;
        font-size: 23px
    }

    .share-btns.btns-options a {
        font-size: 14px;
    }
}


@media(min-width: 1200px) {

    .product-btns .btn {
        padding: 14px;
    }

    .product-btns .btn+.btn {
        margin-top: 0;
        margin-left: 6px;
    }

    .share-btns i {
        font-size: 30px;
    }
}

/*Filterable Section*/
.filter-section {
    padding: 10px 0;
}

/* Allows CSS Grid to work by removing the first space this :before causes */
.product ul.products::before {
    display: none;
}

.large-image-buttons+.filter-section {
    padding-top: 0;
}

.filter-section--top,
.mobile-filter-buttons,
.result-count,
.filter-section--top__sort,
.filter-items--top__filters,
.facetwp-sort-select {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

.filter-items--top__filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: top;
    -ms-flex-align: top;
    align-items: top;
}

.filter-items--top__filters .filter-section--top__sort {
    height: 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 4px;
}

.filter-section .filter-items--top__filters .highlight {
    height: 100%;
}

.filter-items--top__filters .selectric {
    border: 0;
    background: transparent;
}

.filter-items--top__filters .selectric .label,
.filter-items--top__filters .selectric .button {
    color: #239FED;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    height: 14px;
    line-height: 14px;
}

.filter-items--top__filters .selectric-items {
    left: -60px;
    width: calc(100% + 60px) !important;
}


.filter-items--top__filters .selectric .label {
    top: -1px;
    position: relative;
    margin: 0 21px 0 4px;
}

.filter-items--top__filters .selectric .button {
    background: transparent;
    width: 20px;
}

.filter-items--top__filters .selectric .button:after {
    border-top-color: #239FED;
}

.filter-items--top__filters .selectric-items li {
    font-weight: normal;
    text-transform: capitalize;
    font-size: 12px;
}

.filter-items--top__filters .selectric-items li.highlighted,
.filter-items--top__filters .selectric-items li:hover {
    background: #e4edf0;
}




.filter-section--top {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.result-count {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
}

.filter-section--top__sort,
.ship-to {
    display: none;
}

.mobile-filter-buttons .filter-section--top__sort,
.mobile-filter-buttons .ship-to {
    display: block;
    line-height: 16px
}

.mobile-filter-buttons .filter-section--top__sort {
    margin: 0 auto;
    display: grid;
}

.filter-section--top__sort {
    margin-left: 30px;
}

.filter-section--top__sort .facetwp-sort {
    display: inline-block;
}

.filter-section--top__sort .facetwp-sort select {
    border: 0;
    background-color: transparent;
}

.filter-section .highlight {
    color: #239FED;
}

.mobile-filter-buttons {
    margin-top: 6px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.filter-btn {
    border: 1px solid rgb(217, 221, 233);
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
}

.facetwp-pager {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.fx-pager-back {
    background: #C3C3C3;
    color: #7E7E7E;
}

.facetwp-page {
    display: inline-block;
    padding: 0px 4px;
    margin-right: 6px;
    cursor: pointer;
    text-transform: uppercase;
    padding: 0.5rem 1.3rem !important;
    font-weight: bold;
    font-size: .8rem;
}

.facetwp-page:before {
    display: inline-block;
    margin: 1px 5px 1px auto;
    width: 5px;
    height: 5px;
    border-top: 2px solid #7e7e7e;
    border-left: 2px solid #868686;
    content: "";
}

.facetwp-page:hover {
    color: #fff;
    text-decoration: none;
    opacity: .75;
    background: #1c4591;
}

.fx-pager-back:hover {
    background: #7E7E7E;
    color: #fff;
}

.facetwp-page:hover:before {
    border-color: #fff;
}

.facetwp-slider-reset {
    margin-left: .5rem !important;
}

.fx-pager-back:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.fx-page-next:before {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    margin-top: 7px;
    margin-left: 5px;
    border-color: #fff;
}

.fx-page-next {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-flow: row-reverse;
    flex-flow: row-reverse;
    /* align-items: baseline; */
    background: #2D9FED;
    color: #fff;
}

.fx-pager-results-count {
    font-weight: bold;
    text-transform: uppercase;
    font-size: .8rem;
}

.mobile-filter-buttons .mobile-sort-btn {
    background: #F2F2F2;
    text-align: center;
    width: 50%;
    padding: 9px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.mobile-filter-buttons .mobile-sort-btn:first-child {
    border-right: 1px solid rgb(217, 221, 233);
}

.mobile-filter-buttons .mobile-sort-btn .facetwp-sort-select,
.filter-section--top__sort .facetwp-sort select {
    width: 70px;
}

.filter-items--wrapper {
    background: #eff4f6;
    padding: 24px;
    border: 1px solid rgb(217, 221, 233);
}

.filter-items .product-card {
    background: #fff;
    -webkit-box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 3px 1px;
    box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 3px 1px;
    margin-bottom: 24px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.filter-items .product-card:hover {
    -webkit-box-shadow: rgba(24, 41, 61, 0.18) 0px 10px 10px;
    box-shadow: rgba(24, 41, 61, 0.18) 0px 10px 10px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.filter-accordions .filter-title {
    border: 1px solid rgb(217, 221, 233);
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    padding: 12px;
    margin-bottom: -1px;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.filter-accordions .filter-content {
    margin: 0;
    text-align: left;
    padding: 0px 24px 24px 24px;
}

.filter-accordions .filter-content.active {
    border-bottom: 1px solid rgb(217, 221, 233);
}

.filter-accordions .filter-title i {
    color: #239FED;
    cursor: pointer;
    font-size: 13px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.filter-accordions .filter-title.active i {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

.filter-accordions .filter-accordions {
    text-align: left;
}

.filter-accordions {
    opacity: 0;
    /*position: absolute;*/
    position: relative;
    z-index: -1;
    background: #fff;
    min-width: 320px;
    height: 0;
    padding: 0;
    margin: 0;
    border: none;
    max-width: 100%;
}

.filter-accordions.js-active {
    opacity: 1;
    height: auto;
    padding: 7px;
    z-index: 999;
}

.js-active-body {
    position: relative;
}

.js-active-body:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #101d38;
    opacity: 0.83;
    display: block;
    position: absolute;
    top: 0;
    z-index: 3;
}

.filter-items--top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 0;
}

@media (max-width:599px) {
    .filter-items--top {
        text-align: center;
        display: block;
    }
}

.facetwp-facet.facetwp-facet-product_result_count_pager.facetwp-type-pager {
    margin-bottom: 0 !important;
}

.mobile-filter-toggle {
    border: 1px solid rgb(217, 221, 233);
    padding: 12px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
}

.mobile-filter-toggle .filter-label {
    position: relative;
    top: -3px;
    margin-left: 10px;
    color: #5C5C5C;
}

.mobile-filter-toggle .icon-arrow-down {
    color: #239FED;
    float: right;
    position: relative;
    top: 2px;
}

.filter-accordions-content {
    margin: 0;
}


.filter-content .facetwp-facet {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: left;
    -ms-flex-align: left;
    align-items: left;
    padding: .8rem 1rem 1rem;
    margin-bottom: 0 !important;
}

.facetwp-overflow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
}

.facetwp-checkbox {
    margin: .5rem .5rem;
}

@media(min-width: 600px) {
    .filter-items {
        margin-left: -12px;
        margin-right: -12px;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .products .filter-items {
        margin-left: 0px;
        margin-right: 0px;
    }

    .filter-items .product-card {
        width: calc(50% - 24px);
        margin-right: 12px;
        margin-left: 12px;
    }
}

@media(min-width: 768px) {

    .facetwp-checkbox {
        margin: .5rem 1rem;
    }

    .filter-btn-inner {
        display: none;
    }

    .js-active-body .filter-btn {
        height: auto;
        border: none;
    }

    .filter-btn {
        z-index: 4;
        border-right: 0;
        position: relative;
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        text-align: center;
        padding: 24px 0;
        margin-right: -24px;
        height: 100%;
        background: #fff;
        border: 1px solid rgb(217, 221, 233);
        border-bottom: none;
        margin-bottom: 0;
        /* border-top: 1px solid #DEDEDE; */
    }

    .filter-btn-inner {
        position: -webkit-sticky;
        position: sticky;
        top: 24px;
    }

    .filter-section-row {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .filter-section--top {
        background: #F2F2F2;
        padding: 24px;
        font-size: 15px;
    }

    .filter-items--wrapper {
        padding: 25px;
    }

    .filter-items .product-card .product-details {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }



    .filter-section--top__sort,
    .ship-to {
        display: inline-block;
    }
}

@media(min-width: 768px) {
    .filter-accordions {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
        -webkit-column-gap: 15px;
        -moz-column-gap: 15px;
        column-gap: 15px;
        opacity: 1;
        left: 0;
        min-width: 100%;
        height: auto;
        padding: 15px;
        border: 1px solid rgb(217, 221, 233);
        border-bottom: 0;
        position: relative;
        z-index: 999;
    }

    .filter-btn {
        padding: 0;
        border: 0;
    }

    .filter-btn i {
        font-size: 22px;
        display: block;
    }

    .filter-btn-inner {
        text-align: left;
        background: #FAFAFA;
        padding: 0;
        position: static;
        font-size: 15px;
    }

    .filter-accordions-content {
        border-right: 1px solid #dedede;
        border-left: 1px solid #dedede;
    }
}

@media(min-width: 1200px) {
    .filter-items .product-card {
        width: calc(33.333% - 24px);
    }

    .filter-items .product-card .product-details {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
}

/*  Edits */

.filter-accordions .filter-title i {
    margin-left: 7px;
}

.filter-content.filter-toggle--size.active {
    display: block;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    margin: 0;
}

ul.products.filter-items.columns-5.facetwp-template {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(292px, 1fr));
    gap: 20px 20px;
}

.product-row .btn {
    /* margin-top: 20px !important; */
}

/* Form Banner Section */
.form-banner-section .header-decoration:after {
    background: #239FED;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.form-banner-section .header-decoration {
    text-align: center;
}

.form-banner-section p {
    font-size: 12px;
    font-weight: 600;
    font-style: italic;
    text-align: center;
}

.form-banner-section .wpcf7 .required {
    color: #fff;
    margin-left: 3px;
}

.form-banner-section label {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.form-banner-section .form-submit {
    text-align: center;
}

.form-banner-section .wpcf7-submit {
    text-align: center;
    margin: auto;
    padding: 24px 45px;
    text-transform: uppercase;
}

.form-gallery-image {
    padding: 20px 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.form-gallery-image li:before {
    content: none;
}

.form-gallery-image img {
    width: 150px;
    height: auto;
}

/* Steps Content Block */
.steps-content-section {
    padding: 60px 0px 40px;
}

.steps-content-section .header-decoration:after {
    width: 100%;
}

.steps-content-section img {
    max-width: 100%;
    height: auto;
}

.step-lists {
    margin-top: 65px;
}

.step-item {
    display: block;
    width: 100%;
    margin-bottom: 50px;
    position: relative;
    text-align: center;
}

.step-content {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: #2C2B2B;
    margin-top: 20px;
}

.step-content p {
    line-height: 1.2;
}

.step-content .btn {
    margin-top: 6px;
}

.right-steps-container {
    background: #F2F2F2;
    padding: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #2C2B2B;
}

.right-steps-container h2 {
    color: #2C2B2B;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.step-content h3 {
    color: #239FED;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.right-steps-container ul {
    padding-right: 80px;
}

.right-steps-container li {
    margin-bottom: 30px;
    padding-left: 28px;
}

.right-steps-container ul li:before {
    content: "\e924";
    font-size: 28px;
}

@media (min-width: 768px) {
    .steps-content-section {
        padding: 70px 0px 40px;
    }

    .step-content h3 {
        font-size: 24px;
    }

    .step-item {
        text-align: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .step-image {
        width: 40%;
    }

    .step-content {
        width: 60%;
        font-size: 26px;
        margin-top: 0px;
    }

    .step-item:nth-child(odd) .step-content {
        padding-left: 100px;
    }

    .step-item:nth-child(even) .step-content {
        padding-right: 100px;
    }

    .step-item:nth-child(even) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }

    .step-content:after {
        content: '\e923';
        color: #CC1B26;
        position: absolute;
        font-size: 170px;
        font-family: 'icomoon' !important;
        font-weight: normal;
        speak: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        right: 58%;
        bottom: -220px;
    }

    .step-item:last-child .step-content:after {
        content: none;
    }

    .step-item:nth-child(even) .step-content:after {
        z-index: 1;
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
        right: 5px;
    }

    .right-steps-container {
        font-size: 20px;
    }

    .right-steps-container ul li:before {
        font-size: 34px;
    }
}

@media (min-width: 1024px) and (max-width: 1199px) {
    .step-content {
        font-size: 21px;
    }

    .step-content:after {
        font-size: 120px;
        align-content: center;
        right: 50%;
        bottom: -135px;
    }
}

@media (min-width: 1200px) {
    .steps-content-section {
        padding: 130px 0px 40px;
    }

    .step-content:after {
        font-size: 170px;
        right: 55%;
        bottom: -200px;
    }
}

/* Page 404 */

.container_404 {
    display: block;
    padding: 25px;
    background: rgba(255, 255, 255, .8);
}

.container_404 .page_item_has_children ul {
    padding-top: 15px;
}

.error404 .breadcrumbs {
    text-align: center;
}

.error404 .content-row {
    position: relative;
}

.ctas-404 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.container_404 h5 {
    font-size: 18px;
    margin-top: 10px;
}

.cta-card {
    text-align: center;
    background: #fff;
    -webkit-box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 3px 1px;
    box-shadow: rgba(25, 41, 61, 0.18) 0px 2px 3px 1px;
    margin-bottom: 24px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ctas-404 .cta-card {
    width: 100%;
}

.cta-card .btn {
    margin-top: 15px;
}

.cta-img {
    margin-bottom: 10px;
    width: 100%;
}

.page-cta-card {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 20px;
}

.page-cta-card .cta-headline {
    font-size: 22px;
    font-weight: 600;
    color: #101D38;
    margin-top: 15px;
}

@media(min-width: 600px) {

    .container_404 .searchform {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .container_404 .searchform--field {
        width: 80%;
    }

    .container_404 .searchform--submit {
        width: 20%;
        height: 48px;
        border: 1px solid transparent;
        position: relative;
        top: -1px;
    }

    .ctas-404 .cta-card {
        width: calc(50% - 15px);
        margin-right: 15px;
    }

    .ctas-404 .cta-card:nth-child(even) {
        margin-right: 0px;
    }
}

@media(min-width: 1450px) {
    .ctas-404 .cta-card {
        width: calc(25% - 15px);
        margin-right: 15px;
    }

    .ctas-404 .cta-card:nth-child(even) {
        margin-right: 15px;
    }

    .ctas-404 .cta-card:last-child {
        margin-right: 0px;
    }
}

/**
* Page-footer
*/

.filter-btn .noUi-horizontal {
    height: 7px !important;
}

.filter-btn .facetwp-type-slider {
    border-color: transparent;
    /* margin-top: 1rem; */
}

.filter-btn .noUi-horizontal .noUi-handle {
    width: 22px;
    height: 22px;
    border: 5px solid #239beb !important;
    border-radius: 50%;
    top: -8px;
    outline: none !important;
}

.filter-btn .noUi-connect {
    background: #239beb;
    border-color: transparent;
}

.facetwp-slider-wrap {
    width: 200px;
    margin-right: 10px;
    padding-bottom: 0 !important;
}

.facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes,
.facetwp-facet.facetwp-facet-product_size.facetwp-type-checkboxes,
.facetwp-facet.facetwp-facet-product_manufacturer.facetwp-type-checkboxes {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes .facetwp-checkbox,
.facetwp-facet.facetwp-facet-product_size.facetwp-type-checkboxes .facetwp-checkbox,
.facetwp-facet.facetwp-facet-product_manufacturer.facetwp-type-checkboxes .facetwp-checkbox,
.facetwp-facet.facetwp-facet-product_condition.facetwp-type-checkboxes .facetwp-checkbox {
    text-align: left;
    font-weight: normal;
    text-transform: capitalize;
}

/* Filter items column widths */
.facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes .facetwp-checkbox {
    width: 100%;
}

.facetwp-facet.facetwp-facet-product_size.facetwp-type-checkboxes .facetwp-checkbox {
    width: 28%;
}

.facetwp-facet.facetwp-facet-product_manufacturer.facetwp-type-checkboxes .facetwp-checkbox {
    width: 100%;
}

.filter-content {
    max-height: 70vh;
    overflow: auto;
    border: 1px solid rgb(217, 221, 233);
}

@media (max-width: 767px) {
    /*.filter-accordions { margin-bottom: 10px; }*/

    .filter-title.fx-custom-filter-toggle {
        padding: 10px 5px;
        border: none;
    }

    .filter-btn-inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (max-width: 1025px) {

    .filter-accordions.js-active {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        border: 1px solid #dedede;
        /*border-bottom: none;*/
    }

    .filter-btn {
        border: 0;
        display: block;
    }

    .filter-section {
        padding: 0;
    }

    i.icon-filter.hidden-md-up {
        font-size: 1.4rem;
    }
}

.facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

@media (min-width: 768px) {

    .facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes,
    .facetwp-facet.facetwp-facet-product_size.facetwp-type-checkboxes,
    .facetwp-facet.facetwp-facet-product_manufacturer.facetwp-type-checkboxes {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes .facetwp-checkbox,
    .facetwp-facet.facetwp-facet-product_size.facetwp-type-checkboxes .facetwp-checkbox,
    .facetwp-facet.facetwp-facet-product_manufacturer.facetwp-type-checkboxes .facetwp-checkbox {
        text-align: left;
    }

    /* Filter items column widths */
    .facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes .facetwp-checkbox {
        width: 45%;
    }

    .facetwp-facet.facetwp-facet-product_size.facetwp-type-checkboxes .facetwp-checkbox {
        width: 20%;
    }

    .facetwp-facet.facetwp-facet-product_manufacturer.facetwp-type-checkboxes .facetwp-checkbox {
        width: 28%;
    }
}

@media (min-width: 800px) {
    .facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes {
        max-height: 1200px;
    }
}

@media (min-width: 1025px) {
    .facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes {
        max-height: 850px;
    }

    .facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes .facetwp-checkbox {
        width: 22%;
    }

    .facetwp-facet.facetwp-facet-product_size.facetwp-type-checkboxes .facetwp-checkbox {
        width: 14%;
    }

    .facetwp-facet.facetwp-facet-product_manufacturer.facetwp-type-checkboxes .facetwp-checkbox {
        width: 12%;
    }

    .filter-content {
        max-height: unset;
    }
}


@media (min-width: 1300px) {
    .facetwp-facet.facetwp-facet-product_category.facetwp-type-checkboxes {
        max-height: 700px;
    }
}


/* New White WYSIWYG Section */
.white-wysiwyg {
    max-width: 880px;
    margin: 0 auto;
    border-bottom: 1px solid rgb(217, 221, 233);
    padding-bottom: 40px;
    padding-right: 0px;
    padding-left: 0px;
    position: relative;
}

@media (max-width: 980px) {
    .white-wysiwyg {
        padding-bottom: 20px;
        padding-right: 40px;
        padding-left: 40px;
    }
}

.heading-accent-line {
    width: 100%;
    text-align: center;
    position: relative;
    height: 1px;
    background: rgb(217, 221, 233);
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.heading-accent-line:before {
    content: '';
    display: block;
    background: #1C4591;
    width: 25%;
    max-width: 285px;
    height: 6px;
    position: absolute;
    top: 0;
}


/* tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip span {
    text-transform: none;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 250px;
    left: 50%;
    margin-left: -125px;
    background-color: #1C4591;
    color: #fff;
    border-radius: 4px;
    padding: 10px;
    text-transform: none;
    position: absolute;
    z-index: 1;
    top: 38px;
    font-size: 14px;
}

.tooltip .tooltiptext::after {
    content: " ";
    position: absolute;
    bottom: 100%;
    /* At the top of the tooltip */
    left: 50%;
    margin-left: -8px;
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent #1C4591 transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}


/* pagination */

.wp-pagenavi a,
.wp-pagenavi span {
    border-color: rgb(217, 221, 233);
    border-radius: 3px;
    padding: 2px 5px;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    border-color: #1C4591;
    color: #1C4591;
}


.specs-wrapper .half.last {
    border-top: 1px solid #e2ebf1;
}

@media (min-width: 1200px) {
    .specs-wrapper .half.last {
        border-top: none;
    }
}



/* related products*/
.hover-image {
    display: none;
}

.related__product .product-image {
    height: 200px;
    width: 100%;
    position: relative;
}

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

.related__product .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px solid #F2F2F2;
}

.related__product .hover-image img {
    width: 100%;
}

@media (min-width: 600px) {
    .related__product .product-image {
        height: 260px;
    }
}

@media (min-width: 768px) {
    .related__product .product-image {
        height: 280px;
    }
}

@media (min-width: 1025px) {
    .related__product .product-image {
        height: 220px;
    }
}

@media (min-width: 1200px) {
    .related__product .product-image {
        height: 230px;
    }
}

@media (min-width: 1500px) {
    .related__product .product-image {
        height: 315px;
    }
}


/* Info Blocks (Contact Page Template) */
.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}

.info-block {
    background: #eff4f6;
    padding: 20px;
}


/* mejs-video */

.mejs-video {
    margin-bottom: 30px;
    margin-top: 30px;
}

/**
* Page-footer
*/
.content-row+.page-footer {
    margin-top: 24px;
}

.page-footer {
    padding: 96px 0;
}

.page-footer a,
.page-footer p,
.page-footer {
    color: #fff;
}

.page-footer p {
    margin-bottom: 12px;
}

.page-footer a:hover {
    text-decoration: none;
    color: #239fed;
}

.page-footer .header-decoration {
    border-color: #464F62;
    color: #fff;
    width: 100%;
    font-size: 18px;
    padding-bottom: 10px;
}

.page-footer hr {
    border-color: #464F62;
    border-style: solid;
    border-bottom: 0;
}

.page-footer .header-decoration:after {
    background: #fff;
    max-width: 80px;
}

.page-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.page-footer li {
    margin-bottom: 0;
}

.page-footer li:before {
    display: none;
}

.footer-content {
    margin-bottom: 32px;
}

.page-footer .email-signup {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
}

.page-footer .email-signup .wpcf7 {
    width: 100%;
}

.page-footer form {
    position: relative;
    z-index: 1;
}

.page-footer .ctct-inline-form {
    width: 100% !important;
}


.page-footer form .ctct-form-errorMessage {
    position: absolute !important;
    bottom: -5px !important;
    width: 100% !important;
    display: block !important;
    font-size: 13px !important;
}

.page-footer .email-signup button {
    position: absolute;
    right: 0;
    background: transparent;
    color: transparent;
    border: 0 !important;
    line-height: 1em;
    font-size: 20px;
    top: 28px;
    background-color: transparent !important;
    max-width: 176px;
    margin: 0 auto;
    background-image: url(../img/arrow-input.jpg) !important;
    background-repeat: no-repeat;
    background-position: left;
    width: 40px !important;
    height: 46px !important;
    text-indent: -999999px !important;
    overflow: hidden;
}

.page-footer .email-signup form:hover button {
    background-position: center !important;
}

.page-footer div.ctct-form-defaults {
    padding: 24px 24px 15px;
}

.page-footer .email-signup input {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.page-footer ul.social-links {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 40px;
}

.page-footer ul.social-links li {
    margin-right: 6px;
}

.page-footer .tinyfooter-links ul {
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.page-footer .tinyfooter-links ul li {
    margin-right: 12px;
}

.tinyfooter-links--logo {
    margin-top: 20px;
    display: inline-block;
}

.tiny-logo {
    display: flex;
}

.natda-logo {
    align-items: center;
    background: #fff;
    border-radius: 6px;
    display: flex;
    margin-right: 10px;
    padding: 10px;
    width: 150px;
}

.natda-logo img {
    width: 100%;
    height: auto;
}

.backtotop {
    color: #239FED;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 12px;
    white-space: nowrap;
    margin-right: 20px;
}

.backtotop:hover {
    color: #1C4591;
}

.rotateneg90 {
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    display: inline-block;
}

.btns-options {
    color: #1C4591;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem 0;
    text-align: center;
    width: 100%;
}

.btns-options .btns-option {
    background: none;
    margin: 0;
}

.btns-options.share-btns a {
    margin-right: 10px;
    margin-left: 10px;
    margin-bottom: 10px;
}

@media (min-width: 1025px) {
    .page-footer .tinyfooter-links ul {
        margin-top: 0px;
    }

    .tinyfooter-links--logo {
        margin-top: 0px;
    }
}

@media(min-width: 1025px) {
    .share-btns {
        flex-wrap: wrap;
    }

    .btns-options.share-btns a {
        justify-content: space-between;
        margin-right: 0;
        margin-right: 0;
        display: flex;
        align-items: center;
    }

    .btns-options {
        justify-content: center;
        line-height: 1.1em;
    }

    .btns-options.share-btns a:hover {
        font-size: 20px;

    }

    .btns-options.share-btns a:hover i {
        font-size: 30px;
    }

}

/*@media(min-width: 1500px) {
    .share-btns {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .btns-options.share-btns a {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin-right: 0;
        margin-right: 0;
    }

    .btns-options {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}*/


.tinyfooter-links li {
    margin-bottom: 0;
}

.tinyfooter-linksli:before {
    display: none;
}

.email-signup {
    display: block;
}

.ctct-form-embed.form_0 .ctct-form-defaults {
    display: block;
}

.ctct-form-embed.form_0 .ctct-form-defaults #gdpr_text {
    display: none;
}


@media(min-width: 768px) {
    .footer-wrapper {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -12px;
        margin-left: -12px;
    }

    .footer-content {
        width: calc(50% - 24px);
        margin-right: 12px;
        margin-left: 12px;
    }

    .footer-content:last-child {
        width: calc(100% - 24px);
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .page-footer .email-signup {
        width: 100%;
    }

    .page-footer ul.social-links {
        margin-left: 24px;
    }

    .tinyfooter-links {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .backtotop {
        margin-top: 0px;
    }
}

@media(min-width: 1025px) {
    .footer-wrapper {
        margin-bottom: 48px;
    }

    .footer-content {
        width: calc(20% - 24px);
    }
}

@media(min-width: 1366px) {
    .footer-wrapper {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .footer-content:first-child {
        width: calc(30% - 24px);
        max-width: 267px;
    }

    .footer-content:last-child {
        width: calc(16.66666667% - 24px);
        max-width: 100%;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-content {
        width: calc(15.66% - 24px);
        max-width: 254px;
    }

    .page-footer ul.social-links {
        margin-left: 0;
        font-size: 32px;
        margin-top: 12px !important;
    }
}

/* Mobile Sticky Footer */
div#lhnHocButton.lhnslide {
    display: none !important;
}

.grecaptcha-badge {
    bottom: 55px !important;
}

div#lhnHocInvite {
    bottom: 42px !important;
}

.mobile-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999999;
}

.mobile-footer__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

a.mobile-footer__btn:hover,
a.mobile-footer__btn:active {
    color: #fff;
}

.mobile-footer__btn--txt {
    width: 66%;
    background-color: #239FED;
}

.mobile-footer__btn--top {
    width: 34%;
    background-color: #1C4591;
}

@media (min-width: 1025px) {
    .mobile-footer {
        display: none;
    }

    div#lhnHocButton.lhnslide {
        display: block !important;
    }

    div#lhnHocInvite {
        bottom: 0 !important;
    }
}





.btns-option {
    border: 1px solid #1c4591;
    text-align: left;
    gap: 0.3rem;
    height: 100%;
    flex: 1 0 0;
    padding: .4rem;
    justify-content: start !important;
    /* filter: drop-shadow(0 3px 6px rgba(0,0,0,.05)); */
    background: #fff !important;
    min-height: 50px;
}

.btns-options {
    align-items: stretch !important;
}


/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #101D38;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.filter-section.loading {
    position: relative;
}

.filter-section.loading:before {
    position: absolute;
    z-index: 1;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #fff;
    opacity: 0.95;
    /*    border: 4px solid pink;*/
}

.filter-section.loading:after {
    position: absolute;
    content: url(../img/loading.gif);
    position: absolute;
    z-index: 2;
    top: 19vh;
    left: 50%;
    width: 40px;
    height: 40px;
    /*    border: 2px solid blue;*/
}

.filter-section.loading .filter-accordions,
.filter-section.loading .filter-content {
    display: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
* Remove all paddings around the image on small screen
*/
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }

    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        -ms-transform: scale(0.75);
        transform: scale(0.75);
    }

    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        -ms-transform-origin: 0;
        transform-origin: 0;
    }

    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        -ms-transform-origin: 100%;
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.print-header {
    display: none;
}

/**
* Print CSS
*/
@media print {

    /* Reset*/
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important;
        -webkit-box-shadow: none !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 */
        -webkit-column-break-inside: avoid;
        -moz-column-break-inside: avoid;
        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;
        -webkit-transform: none !important;
        -ms-transform: none !important;
        transform: none !important;
    }

    .slick-track.slick-slide {
        width: auto !important;
    }

    /* Single product print styles */
    .single-product .product-slider-navigation,
    .single-product .products-fullservice,
    .single-product .js-availabity,
    .single-product .product-btns,
    .single-product .responsive-header-links,
    .single-product .header-menu,
    .single-product .page-header,
    .single-product .page-footer,
    .single-product .inner-banner,
    .single-product .engaging-section__image-box,
    .single-product .related,
    .product-card .hot-deal {
        display: none;
    }

    .woocommerce #content div.product div.summary,
    .woocommerce div.product div.summary,
    .woocommerce-page #content div.product div.summary,
    .woocommerce-page div.product div.summary,
    .woocommerce #content div.product div.images,
    .woocommerce div.product div.images,
    .woocommerce-page #content div.product div.images,
    .woocommerce-page div.product div.images {
        float: none;
        width: 100%;
        clear: none;
    }

    .single-product .print-logo {
        width: 100px;
    }

    .single-product .product {
        display: flex !important;
    }

    .single-product .woocommerce-product-gallery {
        width: 40% !important;
        float: left;
    }

    .single-product .entry-summary {
        width: 60% !important;
        float: right;
        margin-bottom: .5rem !important;
        padding-top: 0;
        padding-right: 0;
    }

    .single-product .content-row {
        margin-top: 20px;
    }

    .single-product .product .content-row .product-row {
        padding-top: 0;
    }

    .single-product .entry-summary h1 {
        font-size: 24px;
    }

    .single-product h2 {
        font-size: 20px;
    }

    .single-product h3 {
        font-size: 18px;
    }

    .single-product .entry-summary .sku-wrapper {
        font-size: 18px;
    }

    .single-product .entry-summary bdi {
        font-size: 20px;
    }

    .single-product p {
        line-height: 1.3em;
    }

    .single-product .price {
        margin-top: 0 !important;
        font-size: 1.25em !important;
        line-height: 1em;
    }

    .single-product p,
    .single-product ul li,
    .single-product .entry-summary .specs-wrapper .half,
    .single-product .entry-summary .specs-wrapper .full {
        font-size: 12px;
    }

    .single-product .entry-summary .woocommerce-product-details__short-description {
        margin: 1rem 0;
    }

    .single-product .entry-summary .woocommerce-product-details__short-description p {
        margin-bottom: 10px;
    }

    .single-product .entry-summary .specs-wrapper .half {
        width: 45%;
        display: inline-block;
        margin-left: 0px;
    }

    .single-product .entry-summary .specs-wrapper .half,
    .single-product .entry-summary .specs-wrapper .full {
        padding: 7px 0px;
    }

    .single-product .entry-summary .specs-wrapper {
        padding: 0px;
        margin-top: -10px !important;
    }

    .single-product .entry-summary .specs-wrapper .tooltip {
        display: none;
    }

    .single-product .entry-summary .specs-wrapper .half.last {
        border-top: 0px;
    }

    .single-product .engaging-section {
        margin-bottom: 1rem;
        margin-top: 0rem;
    }

    .single-product .engaging-section-text {
        padding: 1rem;
    }

    .single-product .header-decoration {
        border-bottom: 0px;
        padding-bottom: 0px;
        margin-bottom: 10px;
    }

    .single-product .section-margins {
        margin-top: 24px;
        margin-bottom: 0px
    }

    .single-product .heading-accent-line {
        display: none;
    }

    .single-product .related__products {
        display: inline
    }

    .single-product .related__products>.row>.col-sm-6 {
        width: 25%;
    }

    .single-product .related__product .product-image {
        height: 100px;
    }

    .single-product .related__product .product-card .product-details {
        padding-left: 0px;
        padding-right: 0px;
    }

    .single-product .testimonial__container {
        display: none;
    }

    .spec-color--black {
        background-color: #000 !important;
    }

    .spec-color--tan {
        background: #d2b48c !important;
    }

    .spec-color--white {
        background: #fff !important;
    }

    .spec-color--black {
        background: #000 !important;
    }

    .spec-color--silver {
        background: #c0c0c0 !important;
    }

    .spec-color--red {
        background: #f00 !important;
    }

    .spec-color--dimgray {
        background: #696969 !important;
    }

    .spec-color--yellow {
        background: #ff0 !important;
    }

    .spec-color--blue {
        background: #00f !important;
    }

    .spec-color--orange {
        background: #ffa500 !important;
    }

    .spec-color--maroon {
        background: #800000 !important;
    }

    .notification {
        font-size: 12px;
        padding: 0px;
    }


    .single-product .woocommerce-product-gallery {
        left: 0;
        margin-bottom: 0px !important;
    }

    .single-product .woocommerce-product-gallery img {
        width: 50vw !important;
    }

    .single-product .woocommerce-product-gallery .slick-slider .slick-slide {
        text-align: center;
    }

    .print-header {
        display: block;
    }

    .print-header--wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .print-header .print-logo {
        width: 150px;
    }

    .single-product .half,
    .single-product .full {
        text-align: left;
    }

    .engaging-section__container {
        height: auto;
        border: 1px solid grey;
    }

    .product-card .hot-deal {
        background: #fff !important;
    }
}

.olark-launch-button[aria-expanded="false"] {
    display: none !important;
}

/* do not show default Olark open button */

@media (min-width: 1025px) {
    .mobile-menu #ubermenu-main-888 {
        display: none !important;
    }
}

.ubermenu-responsive-toggle[data-ubermenu-target="ubermenu-main-888"] {
    display: none;
}

.shop-category-short ul.products::before {
    content: none;
}

.full-width-wysiwyg .col-md-offset-2 {
    margin-left: 0;
}

.full-width-wysiwyg .col-md-8 {
    width: 100%;
}

.full-width-wysiwyg .filter-section .container {
    padding-right: 0px;
    padding-left: 0px;
}

/*------------------------------------*\
WooCommerce My Account Page
\*------------------------------------*/
.woocommerce-account .content-wrapper {}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    padding-left: 0px;
    margin-right: 20px;
    /*border-right: 1px solid rgba(35, 159, 237, 0.2);
    border-left: 1px solid rgba(35, 159, 237, 0.2);*/
}

.woocommerce-account .woocommerce-MyAccount-navigation li.woocommerce-MyAccount-navigation-link:before {
    display: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li:hover {
    background: rgba(35, 159, 237, 0.1);
}

.woocommerce-account .woocommerce-MyAccount-navigation li:hover a {
    text-decoration: none;
    color: white;
}

.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link {
    margin-bottom: 0px;
    padding: 10px;

    /*border-bottom: 1px solid rgba(35, 159, 237, 0.2);
    border-top: 1px solid rgba(35, 159, 237, 0.2);*/
    text-transform: uppercase;
}

.woocommerce-account .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a {
    color: #239FED;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active {
    border-left: 3px solid white;
    background: rgba(35, 159, 237, 0.3);
}

.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a {
    color: white;
    font-weight: bold;
}

/*------------------------------------*\
Multi-Step Form
\*------------------------------------*/
.cf7mls_progress_bar {
    overflow: visible;
    /*margin-left: 0px!important;*/
    padding-bottom: 70px;
    margin-top: 30px;
}

/*#wpcf7-f32177-o1 .cf7mls_progress_bar li {width:20%!important;}
#wpcf7-f32178-o2 .cf7mls_progress_bar li {width:10%!important;}*/

.cf7mls_progress_bar li {
    line-height: 1em;
    margin-top: 30px !important;
}

.cf7mls_progress_bar li:before {
    position: absolute;
    left: 45%;
    top: -30px;
}

.cf7mls_progress_bar li:after {
    left: -50%;
    top: -20px;
}

.fieldset-cf7mls.cf7mls_current_fs {
    padding: 30px 20px;
}

#wpcf7-f32177-o1 fieldset,
#wpcf7-f32178-o2 fieldset {
    border: 0px;
}

.wysiwyg-tabs {
    margin-left: -12px !important;
    padding-left: 0px !important;
    margin-bottom: 13px;
}

.wysiwyg-tabs li {
    display: inline;
    background: #eef3f7;
    padding: 15px 20px;
    margin-right: 10px;
    border: 1px solid rgb(217, 221, 233);
    font-weight: bold;
    color: #239FED;
}

.wysiwyg-tabs li:hover {
    color: #1C4591;
    background: #fff;
    cursor: pointer;
}

.wysiwyg-tabs li.active {
    border-bottom: 1px solid white;
    background: #fff;
    z-index: 2;
    color: #1C4591;

}

.wysiwyg-tabs li:before {
    display: none;
}

.wysiwyg-tab-content {
    border: 1px solid rgb(217, 221, 233);
}

.wysiwyg-tabbed .tab-content:not(.active) {
    display: none;
}

.wysiwyg-tab-content .disclaimer {
    margin-top: 10px;
}

.wysiwyg-tab-content .disclaimer span {
    padding: 5px;
    background: #efefef;
}

.wysiwyg-tab-content .disclaimer .warning {
    color: white;
    background: #1C4591;
    padding-right: 7px;
    padding-left: 7px;
}


/*Styling for Multi Step Forms*/

.cf7mls_progress_bar {
    padding-bottom: 0px;
}

.cf7_mls_steps_item.current .cf7_mls_steps_item_icon {
    background: #239FED;
    color: #fff;
}

.cf7_mls_steps_item.current .cf7_mls_steps_item_icon {
    color: #fff;
}

.cf7mls_progress_bar li.cf7_mls_steps_item.current .cf7_mls_count_step {
    color: #fff;
}

.cf7mls_next.action-button {
    background: #239FED;
}

.cf7mls_progress_bar li .cf7_mls_count_step {
    color: #fff;
}

.cf7mls_progress_bar li .cf7_mls_steps_item_icon {
    background: #239FED !important;
    color: #fff !important;
}

.cf7mls_progress_bar li.current~li .cf7_mls_steps_item_icon {
    background: #eaedef !important;
    color: #8f8f8f !important;
}

.cf7mls_progress_bar li.current~li .cf7_mls_count_step {
    color: #8f8f8f !important;
}

.selectric-items {
    z-index: 99;
}

/*END*/

@media(max-width:1024px) {
    .cf7mls_progress_bar li {
        font-size: 10px;
    }

}

@media(max-width:767px) {
    .cf7mls_progress_bar li {
        font-size: 8px;
    }

    .wysiwyg-tabs li {
        font-size: 13px;
        padding: 15px 5px;
        margin-right: 5px;
    }

    .wysiwyg-tabs {
        margin-bottom: 11px;
    }

    .wpcf7-form .fieldset-cf7mls {
        padding: 0px;
    }

    .cf7mls_progress_bar li:before {
        left: 25%;
    }

    .wysiwyg-tab-content [type="text"],
    .wysiwyg-tab-content .selectric-wrapper,
    .wysiwyg-tab-content .LoanBusinessName,
    .wysiwyg-tab-content .disclaimer {
        width: 90%;
    }
}

@media(max-width:600px) {
    .wysiwyg-tabs li {
        font-size: 12px;
    }

    .cf7mls_progress_bar li:before {
        left: 25%;
        font-size: 10px;
        width: 20px;
        line-height: 20px;
        font-weight: bold;

    }

    .cf7mls_progress_bar li {
        color: white;
        font-size: 2px;
    }

    .cf7mls_progress_bar {
        padding-bottom: 20px;
    }

    .wysiwyg-tab-content [type="text"],
    .wysiwyg-tab-content .selectric-wrapper,
    .wysiwyg-tab-content .LoanBusinessName {
        width: 80%;
    }
}

/*------------------------------------
Mobile Menu Fix
\*------------------------------------*/

@media(min-width: 768px) and (max-width: 1024px) {
    .header-top .logo {
        float: left;
    }

    .header-top .header-search {
        margin-top: 20px;
    }
}

@media(max-width: 1024px) {
    .header-top {
        display: block;
        text-align: center;
    }

    .header-top .mobile-search-icon,
    .header-top .logo,
    .header-top .mobile-menu-icon {
        display: inline-block;
    }

    .header-top .mobile-search-icon,
    .header-top .mobile-menu-icon {
        margin-top: 40px;
    }

    .header-top .logo {
        max-width: 200px;
        margin-left: -10px;
    }

    .header-top .mobile-menu-icon {
        float: right;
        text-align: left;
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .header-top .mobile-search-icon {
        float: left;
    }

    .ubermenu-nav {
        overflow: scroll;
    }

    .header-top--right {
        margin-right: 60px;
    }

    .ubermenu-sub-indicator.fas:before {
        font-family: 'icomoon' !important;
        content: "\e900";
        font-style: normal;
        speak: none;
        font-weight: normal;
    }

    .ubermenu-sub-indicator-close .fas:before {
        font-family: 'icomoon' !important;
        content: "\e903";
        font-style: normal;
        speak: none;
        font-weight: normal;
    }

    .ubermenu-sub-indicator-close .fas {
        left: -5px !important;
    }

    .page-header {
        position: relative;
    }

    /* forces mobile menu to push other menu items down when open instead of the sub-menu overlapping other menu items */
    .ubermenu .ubermenu-item .ubermenu-submenu-drop {
        position: relative !important;
    }

    .ubermenu-responsive.ubermenu {
        margin: 0;
        /*position: fixed;*/
        width: 100%;
        z-index: 900;
        background: #fff;
    }

    .ubermenu .ubermenu-item {
        position: relative !important;
    }

    .ubermenu-responsive,
    .ubermenu-responsive-default.ubermenu-responsive {
        max-height: none !important
    }

    .ubermenu-responsive.ubermenu-responsive-collapse {
        display: none !important;
    }
}

.ubermenu-transition-shift .ubermenu-item .ubermenu-submenu-drop {
    margin-top: 0px !important;
}

/*.ubermenu .ubermenu-item .ubermenu-submenu-drop {box-shadow:none!important;}*/
.ubermenu-submenu {
    background: #eef3f7
}

.ubermenu-submenu>.ubermenu-row {
    padding: 0px;
}

.ubermenu-submenu img {
    display: none;
}

@media(min-width: 1025px) {
    .ubermenu-submenu>.ubermenu-row {
        padding: 25px !important;
    }
}

/*------------------------------------*\
Category Page Masthead Styling
\*------------------------------------*/
.archive .inner-banner-content {
    width: 100%;
    background-color: #101D38;
    color: white;
    padding: 48px 12px;
    margin-top: -48px;
    position: relative;
    margin-bottom: 20px;
}

.archive .inner-banner-content .category-intro-text {
    margin-top: 15px;
}

.archive .inner-banner-content h1,
.archive .inner-banner-content .breadcrumbs a {
    color: white;
}

.post-type-archive-testimonial .inner-banner-content h1,
.post-type-archive-testimonial .inner-banner-content .breadcrumbs a,
.post-type-archive-testimonial .breadcrumbs ul li {
    color: #2C2B2B;
}

.archive .inner-banner-content .breadcrumbs .breadcrumb_last {
    color: #239FED
}

.post-type-archive-testimonial .inner-banner-content .breadcrumbs .breadcrumb_last {
    color: #1C4591;
}

.archive .inner-banner {
    position: relative;
}

.archive .inner-banner img {
    height: 280px;
    object-fit: cover;
    width: 100%;
    font-family: 'object-fit:cover';
    object-position: center center;
    display: block;
    z-index: -1;
}

.inner-banner-content .masthead-gb-rating .ti-widget-container a {
	padding: 0 !important;
}

.inner-banner-content .masthead-gb-rating  .ti-widget[data-layout-id='60'][data-set-id='dark-minimal'] {
    text-align: left !important;
}

@media(min-width:1025px) {
    .archive .inner-banner-content {
        width: 50%;
        padding: 48px;
        margin-top: 90px;
        margin-bottom: 90px;
    }

    .archive .inner-banner img.bkg-img {
        height: 100%;
        position: absolute;
        top: 0;
    }
}

/*Fullwidth CTA Styling */
.fullwidth-cta img {
    object-fit: cover;
    width: 100%;
    font-family: 'object-fit:cover';
    object-position: center center;
    display: block;
    z-index: -1;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fullwidth-cta p {
    margin-bottom: 0px;
}

.fullwidth-cta {
    position: relative;
    padding: 48px 12px;
}

.fullwidth-cta .white-overlay {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 48px 12px
}

.fullwidth-cta .btn {
    margin-top: 20px;
}

@media(min-width:1025px) {
    .fullwidth-cta .white-overlay {
        margin-top: 90px;
        margin-bottom: 90px;
    }
}

.post-type-archive-testimonial .inner-banner-content {
    background-color: unset;
    padding: 25px 0;
    margin: 0;
}

/*Anchor Link Styling*/
.anchor {
    top: -100px;
    position: absolute;
}

/* Front page products clearance trailers */
.products-clearance-trailers {
    margin: 30px 0 20px 0;
}

.products-clearance-trailers-slider {
    display: none;
    padding: 0 50px;
}

.products-clearance-trailers-slider .slick-slide {
    padding: 0 10px;
}

.products-clearance-trailers-slider.slick-initialized {
    display: block;
}

.products-clearance-trailers__product-list {
    padding: 0 1.2rem;
    text-decoration: none !important;
    background-color: #ffffff;
    box-shadow: rgb(25 41 61 / 18%) 0px 1px 4px 1px;
    margin: 10px 0;
}

.products-clearance-trailers__product-list:hover .hover-image {
    display: block;
    position: absolute;
    top: 0;
}

.products-clearance-trailers__product-image {
    position: relative;
}

.products-clearance-trailers__product-image img {
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 0;
    width: 100%;
}

.products-clearance-trailers__product-image .product-tags {
    position: absolute;
    top: 25px;
    left: 0;
}

.products-clearance-trailers__product-image .hotdeal-tag {
    background: #fff;
    border: 1px solid rgb(217, 221, 233);
    border-radius: 3px;
    color: #239FED;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 7px;
    display: inline-block;
    width: auto;
    line-height: 1.5em;
    -webkit-box-shadow: rgb(25 41 61 / 18%) 0px 2px 3px 1px;
    box-shadow: rgb(25 41 61 / 18%) 0px 2px 3px 1px;
    margin-right: 5px;
    margin-bottom: 10px;
}

.products-clearance-trailers__product-details {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    padding: 0.7rem 0;
}

.products-clearance-trailers__product-details .left {
    width: calc(100% - 5px);
    margin-right: 5px;
}

.products-clearance-trailers__product-name h2 {
    font-size: 14px;
}

.products-clearance-trailers__product-name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1em;
    color: #2C2B2B;
    display: block;
}

.products-clearance-trailers__price {
    color: #1C4591;
    font-size: 20px;
    display: block;
    margin: auto;
    margin-left: 0;
    text-decoration: none;
    text-align: right;
}

.products-clearance-trailers__price .regular-amount {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 14px;
}

.products-clearance-trailers__price .sale-amount {}

.products-clearance-trailers-slider .slick-arrow {
    cursor: pointer;
    z-index: 2;
    position: absolute;
    color: #C3C3C3;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.products-clearance-trailers-slider .slick-arrow:hover {
    color: #5C5C5C;
}

.products-clearance-trailers-slider .slick-arrow:before {
    font-size: 40px;
}

.products-clearance-trailers-slider .icon-arrow-left {
    left: 0;
}

.products-clearance-trailers-slider .icon-arrow-right {
    right: 0;
}

@media (min-width: 768px) {
    .products-clearance-trailers {
        margin: 50px 0 20px 0;
    }
}

@media (min-width: 1200px) {
    .products-clearance-trailers {
        margin: 50px 0;
    }
}

@media (max-width: 599px) {
    .filter-items--top__filters .filter-section--top__sort {
        display: none !important;
    }
}

#faq-accordian-common-customizations {
    margin-bottom: 4px;
}

#faq-accordian-common-customizations li{
    margin-bottom: 0px;
}

/*form field styles */ 


/*Mobile*/

.wpcf7-form {
    padding-top: 35px;
}

input[type="checkbox"] {
    width: auto;
}



.wysiwyg-tab-content .wpcf7-form [type="text"],
.wysiwyg-tab-content .wpcf7-form .selectric-wrapper {
    width: 100% !important;
}

.row.form-row > :first-child {
    margin-bottom: 20px;
}

.form-field-new input,
.form-field-new .selectric{
    border: none;
    border-radius: 4px;
    background-color: #eef3f7a6;
		color: #5C5C5C;
}

.form-field-new .required {
    color: #239fed;
}

.form-field-new input:focus,
.form-field-new textarea:focus {
    border: 2px solid #239FED !important;
	border-left: 5px solid #239FED !important;
    outline: none; 
}

.wpcf7-list-item {
    margin-left: 0px !important;
    padding-top: 23px;
}

.form-disclaimer {
    color: #1C4591;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    padding-top: 3px;
}

.selectric-scroll ul li::before {
    top: 9px;
}

.wpcf7-not-valid-tip {
    text-transform: uppercase;
    font-style: normal;
    font-weight: bold !important;
    margin-top: 4px;
}

.wpcf7-not-valid {
	border: 2px solid #dc3232 !important;
	border-left: 5px solid #dc3232 !important;
    outline: none; 
}

h3.form-small-heading {
    padding-top: 25px;
}

/*Tablet*/
@media(min-width:768px){
   
}

/*Laptop*/
@media(min-width:1025px){
    .row.form-row > :first-child {
        margin-bottom: 0px;
    }
}




/*------------------------------------*\
Trumps
\*------------------------------------*/
@-ms-viewport {
    width: device-width;
}

.section-margins--lg {
    margin-top: 40px;
    margin-bottom: 30px;
}

.section-margins {
    margin-top: 25px;
    margin-bottom: 25px;
}

.container-padding {
    padding-top: 40px;
    padding-bottom: 30px;
}

.container-padding--lg {
    padding-top: 25px;
    padding-bottom: 25px;
}

@media (min-width: 768px) {
    .section-margins--lg {
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .container-padding--lg {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (min-width: 1025px) {
    .section-margins {
        margin-top: 48px;
        margin-bottom: 48px;
    }

    .section-margins--lg {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .container-padding {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .container-padding--lg {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

/* To Fix */
@media(min-width: 1025px) {

    .content-row .gray
    /*    .content-row .white*/
        {
        padding-top: 96px;
        padding-bottom: 96px;
    }
}

.content-row .gray {
    padding-top: 48px;
    padding-bottom: 48px;
    margin-left: 0;
    margin-right: 0;
}

/*.content-row .white {
    padding-top: 48px;
    padding-bottom: 48px;
}*/

.page-template-page-trailers .content-row {
    margin-top: 100px;
    margin-bottom: 120px;
}

/**
* Images
*/
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

.background-image {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}


/**
* 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;
    }
}

/**
* 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) {
    a.btn.btn-primary.hidden-sm-down.btn-trailer-deals {
        display: block !important;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 20px;
    }
    
    .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) {
    .hidden-lg {
        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;
}

/**
* 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;
    }
}

.woo-testing-description {
    display: inline-block;
    clear: left;
    width: 100%;
    background-color: #eff4f6;
    margin-bottom: 30px;
}

.woo-testing-description ul {
    margin: 30px;
}

.product-specs {
    margin: 0px 20px;
}

@media (min-width: 678px) {
    .product-specs {
        margin: 0px;
    }
}

@media (max-width: 768px) {
    .testing-ul-descriptions {
        columns: 2 !important;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

.testing-ul-descriptions {
    columns: 4;
    -webkit-columns: 4;
    -moz-columns: 4;
}

.testing-li-description {
    padding-right: 10px;
    /* display: inline; */
    /* margin: 10px; */
}

.woo-testing-description label.more.showMe {
    display: none;
    margin-bottom: 0;
}

@media (max-width: 500px) {
    .woo-testing-description ul {
        margin: 20px 20px 10px 20px;
    }

    .testing-ul-descriptions {
        columns: 1 !important;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    .woo-testing-description ul li:nth-child(n + 6) {
        display: none;
    }

    .woo-testing-description ul li.showList:nth-child(n + 6) {
        display: list-item;
        list-style-type: none;
    }

    .woo-testing-description label.more {
        background-color: #239FED;
        color: #fff;
        font-weight: 600;
        text-align: center;
        padding: 8px;
        text-transform: uppercase;
        cursor: pointer;
    }

    .woo-testing-description label.more.showMe {
        display: block;
    }
}

.twitter-svg {
    background: #fff;
    width: 32px;
    border-radius: 99px;
    padding: 5px;
    transition: .3s;
}

.post-share li a:hover .social-share-twitter-svg,
.page-footer a:hover .twitter-svg {
    background-color: #239fed;
}

.post-share li a:hover {
    outline: none;
    text-decoration: none;
}

.social-share-twitter-svg {
    width: 24px;
    background: #1C4591;
    fill: #fff;
    border-radius: 99px;
    padding: 3px;
    position: relative;
    top: 2px;
}


/* Team Profile */

.team-profile-container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.team-profile-container .section-title {
    margin-bottom: 30px;
}

.team-profile-container .container {
    max-width: 1400px;
}

.team-profile-container .row {
    display: flex;
    flex-wrap: wrap;
}

.team-profile {
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    background-color: #fff;
    height: 100%;
    display: flex;
    transition: all ease-in-out 300ms;
}

.team-profile:hover {
    transform: translateY(-10px);
}

.team-profile a {
    text-decoration: none;
}

.team-image {
    position: relative;
    height: 360px;
    overflow: hidden;
    width: 100%;
}

.team-image img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.team-content {
    padding: 30px;
}

.team-content h4 {
    margin-bottom: 10px;
}

.team-content h5 {
    font-size: 16px;
    margin: 0 0 15px 0;
    color: #2C2B2B;
}

.team-content p {
    color: #2C2B2B;
}

.accordion {
    margin-top: 45px !important;
}

.half-map .half-and-half__text-wrapper {
    padding-top: 0;
    padding-bottom: 0;
}

.half-map .half-and-half__image p,
.half-map .half-and-half__image iframe {
    height: 100%;
}

/* Trailer Invetory */
.trailer-inventory {
    text-align: center;
}

.trailer-categories {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: all 0.4s ease-in-out, visibility 0s linear 0.4s;
    transform: translateY(-20px);
}

.trailer-categories.active {
    opacity: 1;
    max-height: 2000px;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.4s ease-in-out, visibility 0s linear 0s;
}

.trailer-inventory h2 {
    text-align: center;
    margin-bottom: 30px;
}

.trailer-categories .row,
.featured-trailers .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.trailer-list .col-md-3 {
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.trailer-categories.active .col-md-3 {
    opacity: 1;
    transform: translateY(0);
}

.trailer-categories.active .col-md-3:nth-child(1) { animation-delay: 0.1s; }
.trailer-categories.active .col-md-3:nth-child(2) { animation-delay: 0.2s; }
.trailer-categories.active .col-md-3:nth-child(3) { animation-delay: 0.3s; }
.trailer-categories.active .col-md-3:nth-child(4) { animation-delay: 0.4s; }
.trailer-categories.active .col-md-3:nth-child(5) { animation-delay: 0.5s; }
.trailer-categories.active .col-md-3:nth-child(6) { animation-delay: 0.6s; }
.trailer-categories.active .col-md-3:nth-child(7) { animation-delay: 0.7s; }
.trailer-categories.active .col-md-3:nth-child(8) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trailer-item {
    background-color: #eff5f6;
    position: relative;
    padding: 20px 30px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 60px;
    transition: all 0.3s ease;
}

.trailer-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.trailer-item img {
    width: 200px;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.trailer-item:hover img {
    transform: scale(1.05);
}

h3.trailer-name {
    position: absolute;
    bottom: -50px;
    background: #fff;
    padding: 20px;
    box-shadow: 0px 0px 5px 0px #ddd;
    font-size: 22px;
    text-decoration: none;
    font-weight: 400;
    width: 280px;
    text-align: center;
    transition: all 0.3s ease;
}

.trailer-item:hover .trailer-name {
    background-color: #239FED;
    color: #fff;
    transform: translateY(-5px);
}

.btn-trailers {
    background: transparent;
    font-weight: 400;
    font-size: 20px;
    color: #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-trailers:hover {
    color: #239FED;
    transform: translateY(-2px);
}

.btn-trailers i.icon-arrow-down {
    display: inline-block;
    margin: 0 0 0 10px;
    color: #000;
    transition: all 0.4s ease;
    transform-origin: center;
}

.btn-trailers:hover i.icon-arrow-down {
    color: #239FED;
}

.btn-trailers i.icon-arrow-down.rotated {
    transform: rotate(180deg);
}

/* Pulse animation for button */
.btn-trailers::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(35, 159, 237, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: -1;
}

.btn-trailers:hover::before {
    width: 120%;
    height: 300%;
}

@media (max-width: 789px) {
    .trailer-list .col-md-3 {
        width: 100%;
    }
}

.fx-var-checkavailability{
    display:none;
}
.fx-var-getquote{
    display:none;
}

/* PDF Specs with Thumbnail */
.pdf-specs-wrapper {
    margin-top: 0px;
    width: 100%;
    min-width: 280px;
    max-width: 700px;
}

.pdf-specs-display {
    position: relative;
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 0;
    overflow: hidden;
}

.pdf-thumbnail-container {
    width: 100%;
    background-color: #f5f5f5;
    padding: 30px 30px 0 30px;
    text-align: center;
/*
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 160px;
    position: relative;
    bottom: -65px;
    overflow: hidden;
*/
}

.pdf-thumbnail-container img {
    /*
    height: auto;
    max-height: 300px;
    */
    height: 200px;
    max-width: 100%;
    width: auto;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    clip-path: inset(0 0 33.33% 0);
}

.pdf-icon-thumbnail {
    width: 120px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #6c757d;
    color: white;
    font-size: 36px;
}

.pdf-link-container {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 10;
/*
    position: relative;
    margin-top: -30px;
*/
}

.pdf-link-container .btn {
    margin-top: 0px;
    width: 100%;
    color: white;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}
.pdf-link-container:hover {
    border: 2px solid #239FED;
    background-color: #fff;
    color: #239FED;
}
.pdf-link-container .btn:hover {
    border: 2px solid #1c4591;
}
.pdf-link-container .btn:hover,
.pdf-link-container .btn .icon-file-pdf:hover {
    color: #1c4591;
}

.btn-secondary i.icon-file-pdf {
    color: unset;
}

.pdf-link-container .btn .icon-file-pdf {
    font-size: 20px;
}

/* Remove overlay effect since link container is now below */
.pdf-thumbnail-container::after {
    display: none;
}

@media (max-width: 768px) {
    .js-availabity {
        width: 100%;
    }
    div.product_meta-box-item {
        margin: 0 auto !important;
        width: 100%;
    }
    .pdf-specs-wrapper {
        max-width: 100%;
    }
    
    .pdf-thumbnail-container {
        min-height: 120px;
        padding: 20px 20px 0 20px;
    }
    
    .pdf-thumbnail-container img {
        max-height: 200px;
    }
    
    .pdf-icon-thumbnail {
        width: 80px;
        height: 120px;
        font-size: 28px;
    }
    
    .pdf-link-container {
        margin-top: -20px;
    }

    .pdf-link-container .btn {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .pdf-link-container .btn i {
        font-size: 18px;
    }
}


/*******************************
* No CSS Should be added below the above TRUMPS section.
*
*
* Please add all additional CSS above the TRUMPS section above.
* */