/**
 * 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; scroll-behavior: smooth; }



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

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



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

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

html { overflow-x: hidden; }

body {
    margin: 0;
    padding: 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 15px;
    color: #333;
    font-weight: normal;
    overflow-x: hidden;
    letter-spacing: -.02em;
    -webkit-font-smoothing: antialiased;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
p,
ol {
    margin:0;
    padding: 0;
}

h2, .h2,
h3, .h3,
h4, .h4,
.gray-section h1,
.white-content h1 {
    font-weight: 600;
    font-family: 'Exo', sans-serif;
}

h1 {
    font-size: 30px;
    line-height: 1.3em;
}

h2,
.gray-section h1,
.white-content h1 {
    font-size: 22px;
    line-height: 1.3em;
}

h3 {
    padding-bottom: 14px;
    font-size: 20px;
    line-height: 1.3em;
}

h4 {
    font-size: 16px;
    line-height: 1.2em;
    text-transform: uppercase;
}

p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3em;
    font-family: 'Work Sans', sans-serif;
}

sub,
sup {
    font-size: 60%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.6em;
}

ul {
    margin: 0;
    padding: 0 0 0 40px;
}

ul li {
    background: url(../img/list-style-icon.png) 0 8px no-repeat;
    list-style: none;
    font-weight: 500;
    padding: 0 0 10px 22px;
    line-height: 1.8em;
}


ol {
    padding: 0 0 10px 40px;
    list-style: none;
}

ol li {
    display: list-item;
    padding: 0 0 10px 22px;
    font-weight: 500;
    counter-increment: list;
    list-style-type: none;
    line-height: 1.8em;
    position: relative;
    font-family: 'Work Sans', sans-serif;
}

ol li:before {
    color: #323232;
    content: counter(list) ".";
    left: 0px;
    position: absolute;
    text-align: right;
    width: 12px;
}


a {
    color: #5d9732;
    font-weight: 400;
    text-decoration: none;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

    a:hover {
        text-decoration: underline;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition:all .3s;
    }


@media (min-width:768px) {

    h1 { font-size: 40px }

    h2,
    .gray-section h1,
    .white-content h1 {
        font-size: 30px;
    }

    h3 {
        font-size: 22px;
    }

    p {
        font-size: 13px;
        line-height: 1.384em;
    }

}

@media (min-width:1025px) {

    h1 { font-size: 72px; }

    h2,
    .gray-section h1,
    .white-content h1 {
        font-size: 50px;
        line-height: 1.3em;
    }

    h3 {
        font-size: 30px;
    }

    p {
        font-size: 15px;
        line-height: 1.8em;
    }

}



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


/**
 * Wrappers
 */

.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 22px; /* TODO: Update paddings to match your needed grid sizing */
    padding-right: 22px;
}


    .container { max-width: 1364px; }

/**
 * 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: -22px; /* TODO: Update margin number to match container padding */
    margin-right: -22px;
}

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

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


.home .btn { padding: 11px 40px 11px 13px; }

.btn {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    border: 0;
    outline: 0;
    font-size: 12px;
    padding: 10px 40px 10px 13px;
    display: inline-block;
    font-family: 'Exo', sans-serif;
    text-transform: uppercase;
    position: relative;
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
    margin-left: 18px;
    z-index: 1;
}

    .btn:after {
        content: "";
        position: absolute;
        top: 0;
        -webkit-transform: skew(-18deg);
        -ms-transform: skew(-18deg);
        transform: skew(-18deg);
        padding: 0 10px;
        height: 100%;
        width: 100%;
        right: -9px;
        z-index: -1;
    }


    .btn:before {
        background: url(../img/go-left-icon-big.png) right 0 no-repeat;
        position: absolute;
        top: 10px;
        right: 14px;
        content:'';
        width:15px;
        height: 16px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition:all 0.3s ease;
    }

    .btn:hover {
        color:#fff;
        text-decoration: none;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .btn:hover:before {
        right: 10px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition:all 0.3s ease;
    }

.btn-primary { background-color:#e8a713;}

    .btn-primary:after { background-color: #e8a713; }

    .btn-primary:hover,
    .btn-primary:hover:after {
        background: rgb(244,212,139);
        background: -o-linear-gradient(left,  rgba(244,212,139,1) 0%,rgba(233,171,29,1) 100%);
        background: -webkit-gradient(linear,  left top, right top,  from(rgba(244,212,139,1)),to(rgba(233,171,29,1)));
        background: linear-gradient(to right,  rgba(244,212,139,1) 0%,rgba(233,171,29,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f4d48b', endColorstr='#e9ab1d',GradientType=1 );
    }

.btn-secondary { background-color: #5d9732; }

    .btn-secondary:after { background-color: #5d9732;  }

    .btn-secondary:hover,
    .btn-secondary:hover:after {
        background: rgb(176,204,155);
        background: -o-linear-gradient(left,  rgba(176,204,155,1) 0%,rgba(106,155,56,1) 100%);
        background: -webkit-gradient(linear,  left top, right top,  from(rgba(176,204,155,1)),to(rgba(106,155,56,1)));
        background: linear-gradient(to right,  rgba(176,204,155,1) 0%,rgba(106,155,56,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0cc9b', endColorstr='#6a9b38',GradientType=1 );
    }


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

.btn + .btn {
    margin-left: 10px;
}

@media (min-width: 768px) {

    .btn {
        padding: 15px 57px 14px 30px;
    }

    .btn::before {
        top: 14px;
        right: 30px;
    }

    .btn:hover::before {
        right: 25px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .home .btn::before {
        top: 10px;
        right: 18px;
    }

    .home .btn:hover::before { right: 13px; }


}

@media (min-width: 1025px) {
    .btn,
    .home .btn {
        padding: 15px 66px 15px 39px;
        font-size: 16px;
    }


    .btn:before,
    .home .btn:before {
        top: 30%;
        right: 40px;
    }

    .btn:hover:before,
    .home .btn:hover:before {
        right: 35px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    .btn.btn-secondary:before { right: 30px; }

    .btn.btn-secondary:hover:before { right: 25px; }
}


/**
 * Icons
 */

/* add icon code here */

@font-face {
    font-family: "Flaticon";
    src: url("../fonts/Flaticon.eot");
    src: url("../fonts/Flaticon.eot?#iefix") format("embedded-opentype"),
         url("../fonts/Flaticon.woff2") format("woff2"),
         url("../fonts/Flaticon.woff") format("woff"),
         url("../fonts/Flaticon.ttf") format("truetype"),
         url("../fonts/Flaticon.svg#Flaticon") format("svg");
    font-weight: normal;
    font-style:normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: "Flaticon";
        src: url("../fonts/Flaticon.svg#Flaticon") format("svg");
    }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-style:normal;
}

.flaticon-telephone-handle-silhouette:before { content: "\f100"; }
.flaticon-right-arrow:before { content: "\f101"; }
.flaticon-magnifying-glass:before { content: "\f102"; }
.flaticon-bars:before { content: "\f103"; }
.flaticon-linkedin:before { content: "\f104"; }
.flaticon-facebook-app-logo:before { content: "\f105"; }
.flaticon-twitter:before { content: "\f106"; }
.flaticon-upload:before { content: "\f107"; }
.flaticon-add:before { content: "\f108"; }
.flaticon-plus-symbol:before { content: "\f109"; }
.flaticon-substract:before { content: "\f10a"; }
.flaticon-minus:before { content: "\f10b"; }
.flaticon-phone:before { content: "\f10c"; }
.flaticon-go-back-left-arrow:before { content: "\f10d"; }

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

[class^="icon-"], [class*=" icon-"] {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-go-back-right-arrow:before {
    content: "\e90d";
}
.icon-chip-1:before {
    content: "\e900";
}
.icon-circuit:before {
    content: "\e901";
}
.icon-data-collection:before {
    content: "\e902";
}
.icon-distributed:before {
    content: "\e903";
}
.icon-go-back-left-arrow:before {
    content: "\e904";
}
.icon-hosting:before {
    content: "\e905";
}
.icon-keyboard-right-arrow-button:before {
    content: "\e906";
}
.icon-linkedin-2:before {
    content: "\e907";
}
.icon-microchip-1:before {
    content: "\e908";
}
.icon-processor:before {
    content: "\e909";
}
.icon-search:before {
    content: "\e90a";
}
.icon-service:before {
    content: "\e90b";
}
.icon-twitter-1:before {
    content: "\e90c";
}


/**
 * Tables
 */


.table-section { padding-top: 30px; }

.table-section h3 {
    text-align: center;
    padding-bottom: 32px;
}

.table-structure { padding-left: 0 }

.tablepress{
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #efefef;
}

.tablepress thead {
    background-color:#5d9732 !important;
    color: #ffffff;
}

.tablepress thead th,
.tablepress tfoot th  {
    background-color:#5d9732 !important;
    color: #fff;
    text-align: center;
}

.tablepress tbody td, .tablepress tfoot th {
    border-top: 0 !important;
    text-align: center;
}

.tablepress thead tr th {
    padding: 18px 10px 13px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Exo', sans-serif;
    border: none;
}

.tablepress tbody tr { text-align: center; }

.tablepress tbody tr:nth-of-type(2n+1) { background-color: #efefef; }

.tablepress tbody tr td {
    padding: 18px 10px 13px;
    color: #333333;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    font-family: 'Work Sans', sans-serif;
}

.table-wrap-outer:after { display: none; }

@media screen and (max-width: 767px) {

    .tablepress { padding-left: 0; }

}

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

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


/**
 * Forms
 */

.contact-form,
.product-contact-form {
    margin-top: 42px;
}

.contact-form-control,
.product-contact-form-control {
    margin-bottom: 30px;
}

.ab-test-form div.wpcf7 {
	display: none; /* For A/B Testing */
}

label {
    padding: 0 0 13px;
    font-size: 16px;
    line-height: 1.2em;
    font-weight: 400;
    text-align: left;
    color: #333333;
    display: block;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
}

label span {
    color: #528c2b;
    font-weight: 400;
}

.product-contact-form-control label {
	color: #fff;
}

.product-contact-form-control label span {
	color: #e8a713;
}

.product-contact-form-control button[type="submit"].btn {
	margin-top: 0;
}

textarea {
    padding: 20px 12px;
    font-size: 15px;
    line-height: 1em;
    font-weight: 400;
    text-align: left;
    color: #414141;
    display: block;
    height: 160px;
    width: 100%;
    resize: none;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 0;
    font-family: 'Work Sans', sans-serif;
    outline: 0;
}

textarea:focus {
    border: 2px solid #5d9732;
}

/* Removes default webkit form styling */

input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
    -webkit-appearance: none;
}

/* default text input style */
.contact-form [type="text"],
.product-contact-form [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"],
.contact .selectric {
    padding: 0 12px;
    font-size: 15px !important;
    line-height: 1.2em;
    font-weight: 400;
    text-align: left;
    color: #414141;
    display: block;
    height: 44px;
    width: 100%;
    background: #ffffff;
    font-family: 'Work Sans', sans-serif;
    border: 2px solid transparent;
    border-radius: 0;
    outline: 0;
}

.contact .selectric { padding: 0; }

.contact .selectric .label {
    font-size: 15px !important;
    font-weight: 400;
    height: 40px;
}

.contact .selectric-items li {
    color: #414141;
    font-weight: 400;
}

.contact .selectric-items li.highlighted,
.contact .selectric-items li:hover { background: #5d9732; }

.contact .selectric .button { background-color: #fff; }

[type="text"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="week"]:focus,
[type="date"]:focus,
.contact .selectric-hover .selectric,
.contact .selectric-items {
    border: 2px solid #5d9732 !important;
}

.submit {
    text-align: center;
    margin-bottom: 0;
    margin-top: 20px;
}

.contact-form-control .btn,
.product-contact-form-control .btn {
    padding: 14px 57px 12px 25px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form-control .btn,
.product-contact-form-control .btn {
    padding: 14px 57px 12px 25px;
    font-size: 16px;
    cursor: pointer;
}

/*.contact-form-control .btn:after { padding: 23.3px 10px; }*/

.contact-form-control .btn:before,
.product-contact-form-control .btn:before {
    top: 14px;
    right: 30px;
}

.contact-form-control .btn:hover:before,
.product-contact-form-control .btn:hover:before {
    right: 25px;
}

.contact-form-control .btn span::after,
.product-contact-form-control .btn span::after {
    top: 1px;
}

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

.selectric-responsive {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

.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: #fff;
    border: 1px solid #671924 !important;
    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 {
    background: 0;
    display: block;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    color: #671924;
    text-align: left;
    cursor: pointer;
}

.selectric-items li.selected {
    background: #e8a713;
    color: #fff;
}

.selectric-items li.highlighted {
    background: #e8a713;
    color: #fff;
}

.selectric-items li:hover {
    background: #e8a713;
    color: #fff;
}

.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 */
.wpcf7-not-valid-tip {
    color: #fff;
    font-weight: 400;
    font-size: 11px;
    background-color: #e8a713;
    padding: 5px 10px;
    position: relative;
    top: -4px;
    left: 15px;
}

    .wpcf7-not-valid-tip:after {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 18%;
        margin-left: -5px;
        border-width: 6px;
        border-style: solid;
        border-color: transparent transparent #e8a713 transparent;
    }

/* Entire form error message */
.wpcf7-response-output {
}

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

.wpcf7-validation-errors {
    color: #e8a713;
    margin-top: 25px;
}



/**
 * Breadcrumbs
 */

.breadcrumbs {
    margin: 0;
    padding: 25px 0;
    font-size: 14px;
    color:#888888;
    font-weight: 600;
    line-height: 16px;
    position: relative;
    z-index: 9;
    font-family: 'Exo', sans-serif;
}

.breadcrumbs ul { padding: 0; }

.breadcrumbs li {
    display: inline-block;
    list-style: none;
}


.breadcrumbs a {
    color:#888888;
    background: url(../img/seperator.png) right center no-repeat;
    padding: 0 13px 0 0;
    margin: 0 4px 0 0;
    text-decoration: none;
    line-height: 16px;
    display: inline-block;
    font-weight: 400;

}

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


/**
 * Pagination
 */

.wp-pagenavi { padding: 30px 20px; }

.wp-pagenavi .current{ margin: 10px; }


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

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
        -ms-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;
    margin: 0 20px;
}

/* 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 {
    min-height: 50px;
    position: relative;
}

.js-slider-has-preloader:before {
    content: url('../img/loading.gif');
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    -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 {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
}


/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots{
    position: absolute;
    bottom: -30px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width:12px;
    margin: 0 10px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width:12px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    font-family: 'slick';
    position: absolute;
    top: 0;
    left: 0;
    width:10px;
    height:10px;
    content: '';
    opacity:1;
    color: black;
    background: #ffffff;
    border: 1px solid #65737e;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 50%;
}

.slick-dots li.slick-active button:before {
    background: #65737e;
}

.slick-prev,
.slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block ;
    width: 71px;
    height: 69px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
    z-index: 9;
}


/* Custom styling per slider/carousel */




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

/**
 * Page-head
 */

.page-header {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

.top-header { background-color: #e8a713; }

.top-header-call {
    -webkit-transform: skew(-16deg);
    -ms-transform: skew(-16deg);
    transform: skew(-16deg);
    width:calc(50% + 16px);
    margin-left:-16px;
    padding: 10px;
    background-color: #5d9732;
    float: left;
    text-align: center;
}

.top-header-call span {
    display: inline-block;
    -webkit-transform: skew(16deg);
    -ms-transform: skew(16deg);
    transform: skew(16deg);
    line-height: 30px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 12px;
    position: relative;
    vertical-align: middle;
}

.top-header-call span a {
    background: url(../img/call-icon.png) 0 3px no-repeat;
    padding-left: 17px;
}

.top-header-call a,
.top-header-contact a {
    color: #fff;
    font-weight: 700;
}

.top-header-contact {
    padding: 10px;
    background-color: #e8a713;
    width:50%;
    float: left;
    text-align: center;
}

.top-header-contact span {
    display: inline-block;
    line-height: 30px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 12px;
}

.top-header-contact span a {
    background: url(../img/go-left-icon.png) right 2px no-repeat;
    padding-right: 17px;
}

.bottom-header {
    background-color: #fff;
    padding: 4px 0 6px 0;
    position: relative;
}

.logo { width:128px; }

button:focus { outline: none; }

.icon-menu {
    font-size: 9.64px;
    color: #333333;
    font-family: 'Work Sans', sans-serif !important;
    font-weight: 700;
    position: absolute;
    right: 20px;
    top: 10px;
    text-transform: uppercase;
    padding: 0;
    padding-top:25px;
    background: url(../img/menu.png) center top no-repeat transparent;
    border: none;
    cursor: pointer;
    margin: 0;
}

.icon-close {
    background: url(../img/menu-close.png) center top no-repeat transparent;
}

.search-icon {
    font-size: 21px;
    cursor: pointer;
    position: absolute;
    right:80px;
    top: 12px;
}

.top-header-desktop {
    background-color: #5d9732;
}

.top-header-desktop ul {
    float: right;
    margin: 0;
    padding: 0;
}

.top-header-desktop ul li {
    float: left;
    list-style: none;
    background: 0;
    padding: 0;
}

.top-header-desktop ul li a.tel {
    display: block;
    color:#fff;
    line-height: 44px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding-right: 20px;
    background: url(../img/call-icon.png) 0 center no-repeat;
    padding-left: 17px;
}

.top-header-desktop ul li a.tel:hover {
    color:#e8a713;
}

.top-header-desktop a:hover { text-decoration: none; }

.search-div {
    display: none;
    position: absolute;
    background: #e8a713;
    height: 70px;
    margin:0 auto;
    padding: 0 15px;
    padding-top: 15px;
    width:100%;
    z-index: 99;
    font-family: 'Trebuchet MS';
}

.search-inner {
    max-width: 600px;
    background: #fff;
    position: relative;
    margin:0 auto;
    height: 40px;
    padding: 0 0;
}

.search-inner input[type="submit"] {
    border: none;
    line-height: 40px;
    position: absolute;
    right:0;
    cursor: pointer;
    font-family: 'Trebuchet MS';
    padding: 0 26px;
    border-radius: 0;
    color:#fff;
    font-size:16px;
}

.search-inner .btn:hover {
    background-color: #c81b1b;
}

.search-inner input[type="text"] {
    border: none;
    width:100%;
    height: 40px;
    padding: 0 120px 0 15px;
    font-family: 'Trebuchet MS';
}

.search-top { display: none; }

.search-top i.fa-search:hover {
    color: #e8a713;
}

@media(min-width: 768px) {
    .top-header-desktop .btn { padding: 9px 57px 8px 30px; }

    .top-header-desktop ul { margin: 0 15px 0 0; }
}

@media (min-width: 1025px) {

    .admin-bar .page-header { top: 32px; }

}

@media (min-width: 1200px) {

    .page-header {
        position: fixed;
        -webkit-box-shadow: 0 0 40px 0 rgba(0,0,0,.15);
        box-shadow: 0 0 40px 0 rgba(0,0,0,.15);
    }

    .top-header-desktop ul li a.tel {
        font-size: 16px;
        background: none;
        line-height: 51px;
    }

    .top-header-desktop ul li a.tel span {
        display: none;
    }

    .bottom-header {
        padding: 0 0 0 0;
    }

    .logo {
        width:auto;
        margin-top: 14px;
    }

    .search-icon,
    .icon-menu {
        display: none
    }

    .search-top {
        color:#fff;
        padding-right: 40px;
        padding-left: 20px;
        line-height: 48px;
        display: inline-block;
        vertical-align: middle;
        cursor: pointer;
    }

    .top-header-desktop .btn { padding: 12px 66px 12px 39px; }

}


@supports ((-o-object-fit: cover) or (object-fit: cover)) and (-ms-ime-align:auto) {
    .hero-vid{ height:auto }
}


/**
 * Navigation
 */

.page-header_main-menu {
    position: absolute;
    width:100%;
    left: 0;
    padding-top: 6px
}

.nav-primary {
    padding: 0 0;
    display: none;
}

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

.nav-primary ul li {
    background: 0;
    margin:0;
    padding: 0 20px;
    font-size: 15px;
    font-weight: 400;
    background-color: #efefef;
    position: relative;
    list-style: none;
}

.nav-primary ul li:first-child {
    background-image: url(../img/nav-shadow.png);
    background-repeat: repeat-x;
    background-position: 0 0;
}

.nav-primary ul li ul.sub-menu li:first-child {
    background-image: none;
}

.nav-primary ul li a {
    color:#333;
    border-bottom: 1px solid rgba(136, 136, 136, .15);
    display: block;
    line-height: 32px;
    font-weight: 400;
}

.nav-primary ul li a:hover {
    color:#5d9732;
    text-decoration: none;
}

.nav-primary ul li:last-child a {
    border-bottom: none;
}

.nav-primary ul li:last-child ul.sub-menu li a {
    border-bottom: 1px solid rgba(136, 136, 136, .15);
}

.nav-primary ul li ul.sub-menu li:last-child a {
    border-bottom: none;
}

.icon-arrow-down {
    right:20px;
    top:0;
    position: absolute;
    cursor: pointer;
    font-size:7px;
    line-height: 32px;
    font-weight: bold;
}

.icon-arrow-down:before{
    content:'\f108';
    font-family: "Flaticon";
}

.icon-arrow-down.js-clicked:before{
    content:'\f10b';
    font-family: "Flaticon";
}

.nav-primary ul.sub-menu {
    display: none;
    margin-top:-1px
}

.nav-primary ul.sub-menu li {
    background-color: #e0e0e0;
    margin-left:-20px;
    width:calc(100% + 40px);
    text-indent: 38px;
}

.nav-primary ul.sub-menu ul.sub-menu li {
    text-indent: 58px;
}

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

.current-page-ancestor a { color: #5d9732; }
.nav-primary li.current-menu-ancestor > a,
.nav-primary li.current-menu-parent > a,
.nav-primary li.current-menu-item > a,
.nav-primary li:hover > a,
.nav-primary li > a:hover{
    color: #5d9732;
}


@media(min-width: 1025px) {

    .sub-menu { display: none; }

    .sub-menu li.current-menu-ancestor > a,
    .sub-menu li.current-menu-parent > a,
    .sub-menu li.current-menu-item > a,
    .sub-menu li:hover > a,
    .sub-menu li > a:hover,
    .nav-primary .sub-menu .sub-menu .current_page_item a {
        color: #fff;
        /* background-color: #5d9732; */
    }

    .nav-primary ul.sub-menu li.current-menu-item .icon-arrow-down,
    .nav-primary ul.sub-menu li.current-menu-ancestor .icon-arrow-down {
        background: url(../img/nav-child-h.png) 0 0 no-repeat;
    }

    .nav-primary li.current-menu-ancestor > a,
    .nav-primary li.current-menu-parent > a,
    .nav-primary li.current-menu-item > a,
    .nav-primary li:hover > a,
    .nav-primary li > a:hover{
        font-weight: 500;
    }

}

@media (min-width: 1200px) {
    .nav-primary { display: block; }

    .page-header_main-menu {
        position: relative;
        padding: 0;
    }

    .icon-arrow-down { display: none; }

    .nav-primary ul li,
    .nav-primary ul li:first-child { background: none; }

    .nav-primary ul { float: right }

    .nav-primary ul li {
        font-size: 17px;
        float: left;
        padding: 0 0 0 0;
        padding-left: 50px;
    }

    .nav-primary ul li a {
        border: none;
        padding: 32px 0;
    }

    .nav-primary ul.sub-menu {
        position: absolute;
        width:280px;
        padding: 10px;
        background: #efefef;
        left: 50%;
        top: 100%;
        margin-left: -125px;
    }

    .nav-primary ul li:last-child ul.sub-menu,
    .nav-primary ul li:nth-child(6) ul.sub-menu {
        right: 0;
        left: 0;
    }

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

    .nav-primary ul li:hover .sub-menu .sub-menu  {
        left: 250px;
        top: -9px;
        width: 290px;
        margin-left: 0;
    }


    .nav-primary ul.sub-menu li {
        background-color:transparent;
        margin-left:-0;
        width:100%;
        text-indent: 0;
        padding: 0 10px;
        font-size: 15px;
    }

    .nav-primary ul.sub-menu ul.sub-menu li { text-indent: 0; }

    .nav-primary ul .sub-menu li a {
        line-height: 50px;
        padding: 0 15px;
        border-bottom: 1px solid #e2e2e2;
    }

    .nav-primary ul .sub-menu li a:hover {
        color:#fff;
        background-color: #5d9732;
    }

    .nav-primary ul.sub-menu .icon-arrow-down {
        background: url(../img/nav-child.png) 0 0 no-repeat;
        right:20px;
        top:19px;
        width:13px;
        height: 13px;
        position: absolute;
        display: block;
    }

    .nav-primary ul.sub-menu .icon-arrow-down:before,
    .nav-primary ul.sub-menu .sub-menu:before  {
        display: none;
    }

    .nav-primary ul.sub-menu:before {
        display: inline-block;
        content: '';
        width: 0;
        height: 0;
        border-bottom: 15px solid #fff;
        border-bottom-color: #efefef;
        border-right: 15px solid transparent;
        border-left: 15px solid transparent;
        position: absolute;
        top: -15px;
        left: 50%;
        margin-left:-7px;
    }



    .nav-primary ul li:last-child ul.sub-menu:before,
    .nav-primary ul li:nth-child(6) ul.sub-menu:before {
        left: 70%;
        margin-left:-7px;
    }

    .nav-primary ul.sub-menu li:hover .icon-arrow-down {
        background: url(../img/nav-child-h.png) 0 0 no-repeat;
    }

    .nav-primary ul.sub-menu li:hover a {
        background: #5d9732;
        color: #fff;
    }

    .nav-primary ul.sub-menu li:hover ul li a {
        background: none;
        color: #333;
    }

    .nav-primary ul.sub-menu li ul li a:hover {
        background: #5d9732;
        color: #fff;
    }
}

@media (min-width: 1366px) {
    .nav-primary ul li {
        padding-left: 60px;
    }
}


/**
 * Masthead
 */
.banner {
    height: 266px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* prefixed by https://autoprefixer.github.io (PostCSS: v7.0.26, autoprefixer: v9.7.3) */

.banner .hero-vid {
    margin: auto;
    position: relative;
    width: 100% ;
    max-width: none;
    height: 100%;
    min-height: 266px;
    -o-object-fit: cover;
       object-fit: cover;
}

.banner-image {
    width: 100% ;
    height: 266px;
    position: relative;
}

.banner-image img {
    width: 100% ;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.banner-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.home .banner-text:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.25);
    z-index: -1;
}

.home .banner-text h1,
.home .banner-text p {
    text-shadow: 2px 2px 4px #333333;
}

.page-template-page-location .banner-text { background: rgba(0,0,0,0.1); }

.banner-text-wrapper {
    padding-top: 35px;
}

.banner-text h1 {
    margin: 0;
    padding: 0;
    font-size: 30px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Exo', sans-serif;
}

.page-id-162 .banner-text h1 {
    color: #000000;
}

.banner-text p {
    margin: 0;
    padding: 18px 0 15px;
    font-size: 22px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.136em;
    font-family: 'Exo', sans-serif;
    text-transform: uppercase;
    display: block;
}

.inner-banner,
.inner-banner .hero-vid { min-height: 200px; }

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

.inner-banner .banner-text-wrapper {
    padding-top: 0;
    position: absolute;
    bottom: 25px;
}

@media(max-width: 600px){
    .inner-banner .banner-text-wrapper{
        bottom: 90px;
    }
}

.location-banner .banner-text { background: none; }

@media (min-width: 768px) {
    .banner,
    .banner .hero-vid { min-height: 325px; }
    .banner-image {
        height: 325px;
    }
    .banner-text-wrapper { padding-top: 90px; }

    .banner-text h1 { font-size: 40px; }

    .banner-text p {
        margin: 0;
        padding: 10px 0 25px;
    }

}

@media (min-width: 1025px) {
    .banner,
    .banner .hero-vid { min-height: 675px; }

    .banner-text-wrapper { padding-top: 295px; }

    .banner-text h1 { font-size: 50px; }

    .banner-text p {
        font-size: 30px;
        padding: 10px 0 50px;
    }

    .inner-banner,
    .inner-banner .hero-vid { 
        min-height: 419px; 
    }

    .inner-banner .hero-vid { 
        min-height: 419px; 
        background: url(../img/default-banner-image.jpg) center center no-repeat;
        background-size: cover;
    }

    .page .inner-banner { margin-top: 145px; }

    .page-id-162 .inner-banner .hero-vid { 
        min-height: 419px; 
        background: url(../img/default-banner-image2.jpg) center center no-repeat;
        background-size: cover;
        position: absolute;
        top: -50%;
        margin-top: 11%;
    }

    .page-id-19 .inner-banner .hero-vid { 
        position: absolute;
        top: -50%;
        margin-top: 15%
    }

    .inner-banner .banner-text-wrapper { bottom: 30px; }

}

@media (min-width: 1300px) {
    .banner  { margin-top: 145px ; }

    .page-id-19 .banner,
    .page-id-162 .banner {
        margin-top: 145px !important;
    }

    .banner-text h1 { font-size: 72px; }

    .page-id-162 .inner-banner .hero-vid { 
        margin-top: -7%;
    }

    .page-id-19 .inner-banner .hero-vid { 
        margin-top: -6%;
    }
}

/* Banner Form */

.ab-test-banner .banner-form {
    display: none;
}

.banner-form {
	position: relative;
    width: auto;
    height: 100%;
	z-index: 12;
}

.banner-form > div.container.container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
    padding-top: 30px;
	min-width: auto !important;
}

.banner-form-wrapper {
	position: relative;
	background-color: #fff;
	padding: 30px;
	width: 100%;
	max-width: 100%;
    border: 1px solid #5d9732;
}

.banner-form-wrapper h2 {
	margin-bottom: 2rem;
}

.banner-form-wrapper input[type="email"] {
	border: 1px solid #8f8f8f;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .banner-form {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
    }

    .banner-form > div.container.container {
        justify-content: flex-end;
        padding-top: 0;
    }

    .banner-form-wrapper {
        max-width: 450px;
        border: none;
    }
}

@media (min-width: 1025px) {
    .banner-form {
        position: relative;
    }

    .banner-form-wrapper {
        max-width: 600px;
    }
}

/*Homepage*/

/* what-we-do */

.what-we-do {
    padding: 40px 0 0;
    position: relative;
    background: url(../img/what-we-do-bg.png) right bottom no-repeat;
    background-size: auto;
    margin-bottom: 20px;
}

.section-heading-sub {
    margin: 0;
    padding: 0 0 2px;
    font-size: 16px;
    font-weight: 700;
    color: #888888;
    line-height: 1.6875em;
    font-family: 'Exo', sans-serif;
    text-transform: uppercase;
    display: block;
    letter-spacing: -0.3px;
}

.section-heading {
    margin: 0;
    padding: 0 0 14px;
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    line-height: 1.3em;
    font-family: 'Exo', sans-serif;
    display: block;
    letter-spacing: -0.3px;
}

.what-we-do p {
    margin: 0;
    padding: 0 0 18px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 1.285em;
    font-family: 'Work Sans', sans-serif;
    display: block;
}

.hidden-section { overflow: hidden; }

@media (min-width: 768px) {
    .what-we-do {
        padding: 45px 0 30px;
        margin-bottom: 0;
        background: #ffffff;
    }

    .section-heading {
        font-size: 30px;
        line-height: 1.4em;
        padding: 0 11px 14px 0;
    }

    .what-we-do p {
        font-size: 13px;
        line-height: 1.384em;
    }

    .what-we-do-image-section {
        position: absolute;
        top: 0;
        right: -40px;
        z-index: 1;
    }

    .what-we-do-image {
        width: 270px;
        height: 270px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        margin: 0 auto;
        overflow: hidden;
        position: relative;
    }

    .what-we-do-image img {
        width: 365px;
        height:385px;
        -webkit-transform-origin: 50% 50%;
            -ms-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
        -webkit-transform: rotate(-45deg) translateY(-74px);
        -ms-transform: rotate(-45deg) translateY(-74px);
        transform: rotate(-45deg) translateY(-74px);
        -o-object-fit: cover;
           object-fit: cover;
        font-family: 'object-fit: cover;';
    }

    .what-we-do-red-image {
        width: 200px;
        height: 200px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        bottom: -145px;
        right: 0;
        background: rgba(232, 167, 19, 0.52);
        z-index: 99;
    }

    .what-we-do-green-image {
        width: 100px;
        height: 100px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        position: absolute;
        top: 34px;
        right: 25px;
        border: 2px solid rgba(110, 169, 56, 0.8);
        z-index: 99;
    }
}

@media (min-width: 1025px) {
    .what-we-do-image-section { top: 45px; }

    .what-we-do-image {
        width: 350px;
        height: 350px;
    }

    .what-we-do-image img {
        width: 732px;
        height: 612px;
        -webkit-transform-origin: 50% 50%;
            -ms-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
        -webkit-transform: rotate(-45deg) translateY(-169px);
        -ms-transform: rotate(-45deg) translateY(-169px);
        transform: rotate(-45deg) translateY(-169px);
        -o-object-fit: cover;
           object-fit: cover;
        font-family: 'object-fit: cover;';
    }

    .what-we-do-green-image {
        width: 100px;
        height: 100px;
        top: 50px;
        right: 40px;
    }

    .what-we-do-red-image {
        width: 180px;
        height: 180px;
        bottom: -100px;
        right: 67px;
        z-index: 99;
    }
}

@media (min-width: 1300px) {
    .what-we-do {
        padding: 86px 0 70px;
        margin-bottom: 0;
    }
    .section-heading {
        font-size: 48px;
        color: #333333;
        line-height: 1.12em;
        letter-spacing: -0.3px;
    }

    .what-we-do p {
        font-size: 16px;
        line-height: 1.6875em;
        max-width: 635px;
        letter-spacing: -0.3px;
    }

    .what-we-do-image-section {
        left: 58.33333333%;
        right: inherit;
        top: 45px;
    }

    .what-we-do-image {
        width: 430px;
        height: 430px;
    }

    .what-we-do-image img {
        width: 732px;
        height: 612px;
        -webkit-transform-origin: 50% 50%;
            -ms-transform-origin: 50% 50%;
                transform-origin: 50% 50%;
        -webkit-transform: rotate(-45deg) translateY(-169px);
        -ms-transform: rotate(-45deg) translateY(-169px);
        transform: rotate(-45deg) translateY(-169px);
        -o-object-fit: cover;
           object-fit: cover;
        font-family: 'object-fit: cover;';
    }

    .what-we-do-green-image {
        width: 165px;
        height: 165px;
        top: 50px;
        right: -60px;
    }

    .what-we-do-red-image {
        width: 340px;
        height: 340px;
        bottom: -310px;
        right: -122px;
        z-index: 99;
    }

}


/* offering section start */

@media (max-width: 767px) {
    .offering {
        background: url(../img/offering-bg-small.jpg) center center no-repeat !important;
        background-size: cover !important;
    }
}
.offering {
    background: url(../img/offering-bg-small.jpg) center center no-repeat;
    background-size: cover;
}

.offering-overlay { padding: 35px 0; }

.offering p {
    margin: 0;
    padding: 0 0 18px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    line-height: 18px;
    font-family: 'Work Sans', sans-serif;
    display: block;
    letter-spacing: -0.3px;
}

.offering-content ul { font-weight: 500; }

.design-service {
    margin: 0;
    text-align: center;
    padding: 10px 0 0;
}

.design-service h3 {
    margin: 0;
    padding: 0 0 18px;
    font-size: 16px;
    font-weight: 600;
    color: #e8a713;
    line-height: 20px;
    font-family: 'Exo', sans-serif;
    display: block;
    letter-spacing: -0.3px;
    text-transform: uppercase;
    position: relative;
    background: url(../img/border.png) center bottom no-repeat;
    background-size: auto;
}

.design-service ul { padding: 0; }

.no-padding { padding: 0; }

.design-service-listings {
    padding: 25px 0 0;
    text-align: center;
}

.design-service-listings ul li {
    display: inline-block;
    vertical-align: middle;
    width: 32%;
    min-height: 115px;
    padding: 0;
    background: 0;
}

.design-service-icon {
    max-width: 50px;
    margin: 0 auto 0;
    min-height: 52px;
    font-size: 50px;
    color: #000000;
    position: relative;
}


.design-service-listings a:hover { text-decoration: none; }


.design-service-icon .img-top {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    right: 0;
    margin: 0 auto;

}

.design-service-icon .img-black {
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.design-service-icon .img-black--hover,
.design-service-listings a:hover .img-black--default {
    display: none;
}

.design-service-listings a:hover .img-black--hover {
    display: block;
}

.design-service-icon:hover .img-top,
.design-service-listings a:hover .img-top { display: inline; }

/*.design-service-icon:hover .img-black,
.design-service-listings a:hover .img-black { opacity: 0; }*/

.design-service-listings h4 {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    line-height: 16px;
    font-family: 'Exo', sans-serif;
    display: -webkit-box;
    display: -ms-flexbox; 
    display: flex;    
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    letter-spacing: -0.3px;
    height: 35px;
    position: relative;
    text-transform: capitalize;
}

.design-service-listings h4:after {
    content: "\e90d";
    position: relative;
    top: 0;
    right: 0;
    font-style: normal;
    font-family: 'icomoon';
    color: #5d9732;
    padding-left: 5px;
    font-size: 14px;
    display: none;
}

.design-service-listings h4 span {
    -ms-flex-item-align: end;
        align-self: flex-end;
    text-align: center;
}

.design-service-listings ul li a:hover h4,
.design-service-listings ul li a:hover .design-service-icon {
    color: #5d9732;
}

.design-service-listings ul li a {
    display: block;
    position: relative;
    overflow: hidden;
}

.quote-btn { text-align: center; }

@media (min-width: 768px) {
    .offering .section-heading {
        max-width: 360px;
        line-height: 35px;
        padding: 0 0 18px 0;
    }

    .offering p {
        padding: 0 0 18px;
        font-size: 13px;
    }

    .design-service {
        max-width: 484px;
        margin: 0 auto;
    }

    .design-service-listings ul li {
        display: block;
        width: 25%;
        min-height: 115px;
        float: left;
    }

    .design-service-listings h4 {
        max-width: 108px;
        margin: 14px auto 0;
        display: block;
        text-align: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        height: auto;
    }

    .no-padding {
        padding-left: 22px;
        padding-right: 22px;
    }

    .quote-btn {
        text-align: left;
        margin-top: 10px;
    }

    .offering {
        background: url(../img/offering-bg-tab.jpg) center center no-repeat;
        background-size: cover;
    }

}

@media (min-width: 1025px) {
    .offering {
        background: url(../img/offering-bg.jpg) center center no-repeat;
        background-size: cover;
    }

    .offering-overlay {
        padding: 80px 0 100px;
    }

    .offering .section-heading {
        max-width: 100%;
        line-height: 50px;
        padding: 0 0 30px 0;
    }

    .offering p {
        font-size: 16px;
        line-height: 27px;
    }

    .offering-content {
        padding-right: 40px;
    }

    .design-service {
        max-width: 100%;
        margin: 0 auto;
        padding: 4px 0 0;
    }

    .design-service-icon {
        max-width: 65px;
        margin: 0 auto 0;
        min-height: 66px;
        font-size: 66px;
    }

    .design-service-listings {
        padding: 35px 0 0;
    }

    .design-service-listings ul li {
        min-height: 174px;
    }

    .design-service-listings h4 {
        font-size: 16px;
        line-height: 25px;
        max-width: 140px;
        margin: 20px auto 0;
    }

    .design-service h3 {
        padding: 0 0 24px;
        font-size: 18px;
    }

    .design-service-listings ul li a:hover h4:after {
        display: block;
    }

}


/* offering section end */

/* product section start */

.product { padding: 35px 0; }


.product-content p {
    margin: 0;
    padding: 0 0 18px;
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 18px;
    font-family: 'Work Sans', sans-serif;
    display: block;
    letter-spacing: -0.3px;
}

.product-content .section-heading br { display: none; }

.product-listings {
    min-height: 210px;
    max-width:315px;
    margin: 40px auto 30px -21px;
    position: relative;
}

.product-col { position: absolute; }

.ip-col {
    top: 0;
    left: 30px;
}

.sensor-col {
    top: 78px;
    left: 110px;
}

.arm-col {
    top: 0;
    left: 190px;
}


.product-image {
    width: 100px;
    height: 100px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg) ;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 147px;
    height: 147px;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: rotate(-45deg) translateY(-34px);
    -ms-transform: rotate(-45deg) translateY(-34px);
    transform: rotate(-45deg) translateY(-34px);
}

.product-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg) ;
    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;
    text-align: center;
    background: rgba( 0,18,70,.5);
    -webkit-transform: rotate(-45deg) translateY(-33px);
    -ms-transform: rotate(-45deg) translateY(-33px);
    transform: rotate(-45deg) translateY(-33px);
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
}

.sensor-col .product-text { background: rgba( 232,167,19,.85); }

.arm-col .product-text { background: rgba( 1,105,55,.70); }

.blnk-col .product-text { background: rgba( 66,80,117,.75); }

.product-col:hover .product-text { background: rgba( 0,18,70,.8); }

.sensor-col:hover .product-text { background: rgba( 232,167,19,.90); }

.arm-col:hover .product-text { background: rgba( 1,105,55,.90); }

.blnk-col:hover .product-text { background: rgba( 66,80,117,.75);}

.product-text p {
    padding: 0 0;
    padding: 0 20px;
    font-size: 14px;
    font-family: 'Exo', sans-serif;
    color: #ffffff;
    font-weight: 600;
    line-height: 15px;
}

.hover-text {
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
    color:#ffffff;
    font-weight: 400;
    line-height: 21px;
    max-width: 242px;
    margin: 0 auto;
    transition: all ease-in-out 0.5s;
   opacity: 0;
   height: 0;
   overflow: hidden;
}

.read-more {
    text-align: center;
    margin-top: 15px;
}
.product-image .read-more img {
    width: auto;
    height: auto;
    -webkit-transform-origin: inherit;
        -ms-transform-origin: inherit;
            transform-origin: inherit;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    margin: 0 auto;
    display: block;
}



@media (min-width: 343px) {
    .product-listings { position: relative; }

    .product-listings {
        max-width:315px;
        margin: 40px auto 30px auto;
    }
}



@media (min-width: 768px) {
    .product { padding: 35px 0; }

    .product-content .section-heading {
        line-height: 35px;
        padding: 0 11px 20px 0;
    }

    .product-content .section-heading br { display: block; }

    .product-content p {
        padding: 0 0 18px;
        font-size: 13px;
    }

    .ip-col {
        top: 0;
        left: 15px;
    }

    .sensor-col {
        top: 134px;
        left: 149px;
    }

    .arm-col {
        top: 268px;
        left: 16px;
    }

    .product-image {
        width: 170px;
        height: 170px;
    }

    .product-image img {
        width: 240px;
        height: 240px;
        -webkit-transform: rotate(-45deg) translateY(-50px);
        -ms-transform: rotate(-45deg) translateY(-50px);
        transform: rotate(-45deg) translateY(-50px);
    }

    .product-text {
        width: 240px;
        height: 240px;
        -webkit-transform: rotate(-45deg) translateY(-50px);
        -ms-transform: rotate(-45deg) translateY(-50px);
        transform: rotate(-45deg) translateY(-50px);
    }

    .product-text p { font-size: 15px; }

    .product-listings {
        margin: -15px auto 30px;
        max-width: 100%;
    }
}

@media (min-width: 1025px) {
    .product { padding: 90px 0; }

    .product .section-heading {
        max-width: 100%;
        line-height: 35px;
        padding: 10px 0 30px 0;
        font-size: 30px;
    }

    .product-content p {
        padding: 0 0 30px;
        font-size: 16px;
        line-height: 27px;
    }

    .blnk-col {
        top: 401px;
        left: 150px;
    }

}

@keyframes fadeInUp {
    from { 
      opacity: 0;
      -webkit-transform: translate3d(0, 100%, 0);
      transform: translate3d(0, 100%, 0);
    }
  
    to {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }

@media (min-width: 1300px) {
    .product { padding: 90px 0 120px; }

    .product .section-heading {
        line-height: 53px;
        font-size: 48px;
    }

    .product-image {
        width: 240px;
        height: 240px;
    }

    .product-image img {
        width: 340px;
        height: 340px;
        -webkit-transform: rotate(-45deg) translateY(-68px);
        -ms-transform: rotate(-45deg) translateY(-68px);
        transform: rotate(-45deg) translateY(-68px);
    }

    .product-text {
        width: 340px;
        height: 340px;
        -webkit-transform: rotate(-45deg) translateY(-71px);
        -ms-transform: rotate(-45deg) translateY(-71px);
        transform: rotate(-45deg) translateY(-71px);
    }

    .ip-col {
        top: 0;
        left: 15px;
    }

    .sensor-col {
        top: 195px;
        left: 206px;
    }

    .arm-col {
        top: 386px;
        left: 16px;
    }

    .blnk-col {
        top: 586px;
        left: 206px;
    }

    .product-text p {
        font-size: 20px;
        line-height: 25px;
    }

    .product-listings {
        margin: -60px auto 30px;
        max-width: 100%;
    }

    .product-col:hover .product-text p.boxes-title {
        display: none;
    }

    .product-col:hover .hover-text {
        opacity: 1;
        height: auto;
        overflow: visible;
        transition: all ease-in-out 0.5s;
        animation: fadeInUp 0.5s ease-in-out 0s forwards;
    }

    .product-col:hover .product-text p {
        padding-top: 30px;
        max-width: 200px;
        margin: 0 auto;
    }

}


/**Market Section*/

.market-overlay-bg { padding: 40px 0; }

.market-section {
    color: #fff;
    position: relative;
}

    .market-bg {
        -o-object-fit: cover;
           object-fit: cover;
        font-family: 'object-fit: cover;';
        -o-object-position: center;
           object-position: center;
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }

.market-section ul { margin-top: 20px; }

.market-section h2 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.market-section p {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.3px;
    padding: 15px 0 0 0;
}

.white-bg {
    padding:23px 29px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 35px;
    background-color: rgba(255, 255, 255, 0.6)
}

.white-bg ul {
    margin:0;
    padding: 0;
}

.white-bg ul li {
    margin:0 0;
    padding:6px 0;
    list-style: none;
    background: 0;
}

.market-pict {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
    height: 88px;
    background: rgba(93, 151, 50, 1);
}

.market-pict img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: "object-fit: cover";
    -o-object-position: center;
       object-position: center;
    -webkit-transition: all 10ms ease;
   -moz-transition: all 10ms ease;
   -ms-transition: all 10ms ease;
   transition: all 10ms ease;
}

.market-overlay {
    position: absolute;
    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;
    width: 100%;
    height: 100%;
    z-index: 9;
    text-align: center;
    top:0;
    left: 0;
}

.market-overlay p {
    font-size: 18px;
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    letter-spacing: -0.3px;
    padding: 0 0 0 0;
    color:#fff;
    text-shadow: 9px 0 32px rgba(0,0,0,0.49);
    line-height: 21px;
}

    .market-overlay a:hover { text-decoration: none; }

.market-pict:hover img {
    opacity: .1;
    /*background: rgba(93, 151, 50, 0.89);*/
}

.mobile-bttn { text-align: center; }

.hide-desk {
    display: none;
    margin-top: 40px;
}

.market-pict img.center-gap {
    -o-object-position: center;
       object-position: center;
}

@media (min-width: 768px) {

    .market-section h2 { font-size: 30px }

    .market-section p {
        font-size: 13px;
        padding: 20px 0 0 0;
    }

    .mobile-bttn { display: none; }

    .hide-desk { display: inline-block; }

    .white-bg {
        padding:23px 35px;
        margin: 0 auto;
        margin-top:-20px;
    }

    .market-pict {
        margin:0 auto;
        height: 75px;
    }

    .market-overlay p { padding-top: 0; }

}

@media (min-width: 1025px) {
    .mobile-bttn { text-align: left; }

    .hide-desk { display: none; }

    .mobile-bttn {
        display: inline-block;
        padding-top: 25px;
    }

    .white-bg {
        padding: 26px;
        margin-top:0
    }

    .white-bg ul { text-align: center; }

    .white-bg ul li {
        display: inline-block;
        padding: 15px;
    }

    .market-pict {
        width: 192px;
        height: 100px;
    }

        .market-pict img { height: 100%; }

    .market-section p {
        font-size: 16px;
        line-height: 27px;
        padding: 0 0 25px 0;
        /*text-shadow: 0 19px 125px #212e3c;*/
    }

    .market-section ul { margin-top: 0; }

    .market-overlay-bg {
        padding:70px 0 98px 0;
        position: relative;
    }

    .market-section h2 {
        font-size: 50px;
        text-align: center;
        padding-bottom: 70px;
    }

    .market-section .col-sm-push-1 { left: 0; }

    .market-overlay p {  padding: 0 13px; }

}

@media(min-width: 1200px) {
    .white-bg { margin-top: 20%; }

    .market-pict { height: 200px; }
}

@media(min-width: 1360px) {
    .white-bg { margin-top: 0; }

    .market-pict { height: 254px; }
    
    .white-bg ul li:nth-child(2) .market-pict img {
        -o-object-position: right;
           object-position: right;
    }
}


/*Home Testimonial*/

.testimonial-left {
    background: #faeccd;
    padding: 30px 22px;
}

.testimonial-left-inner p {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.3px;
    padding: 0 0 0 0;
}

.testimonial-left-inner h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    padding: 0 0 0 0;
    margin: 0;
    font-size: 16px;
    color: #888;
    line-height: 18px;
    letter-spacing: -0.3px;
}

.testimonial-left-inner h2 {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    padding: 5px 0 10px 0;
    margin: 0;
    font-size: 22px;
    letter-spacing: -0.3px;
}

.testimonial-right {
    position: relative;
    padding:30px 22px;
    text-align: center
}

.testimonial-right .slick-prev,
.testimonial-right .slick-next {
    width: 12px;
    height: 19px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.testimonial-right .slick-prev {
    left: 0;
    background-image:url(../img/arrow-left.png);
}

.testimonial-right .slick-next {
    right: 0;
    background-image:url(../img/arrow-right.png);
}

.testimonial-right-inner img {
    margin: 0 auto;
    width: 44px;
}

.testimonial-right-inner p {
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.3px;
    padding:15px;
}

.testimonial-right-inner span.author {
    font-size: 12px;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    letter-spacing: -0.3px;
}

@media (min-width: 768px) {

    .testimonial { width: 100%; }

    .testimonial-left {
        float: left;
        width: 58.33333333%;
        background:url(../img/skew-back.png) right 0 no-repeat;
        background-size: 100% 100%;
        padding: 70px 0 0 0;
        height: 395px;
    }

    .testimonial-right {
        width:41.66666667%;
        float: right;
        padding-left: 0;
        padding-top: 50px;
    }

    .testimonial-left-inner {
        padding-left: 22px;

    }

    .testimonial-right-inner {
        max-width:400px;
    }

    .testimonial-left-inner h2 {
        font-size: 30px;
        padding-bottom: 20px;
    }

    .testimonial-left-inner p {
        font-size: 13px;
        line-height: 20px;
        max-width:315px;
    }

    .testimonial-right-inner p {
        font-size: 13px;
        line-height: 20px;
    }

}

@media(min-width: 1025px) {
    .testimonial-left { height: 350px; }
}

@media(min-width: 1200px) {
    .testimonial-left { height: 370px; }
}

@media (min-width: 1400px) {
    .testimonial-left {
        height: 505px;
        padding-top: 104px;
    }
    .testimonial-left-inner {
        width: 600px;
        float: right;
        padding-right: 154px;

    }

    .testimonial-right {
        padding-top: 60px;
    }

    .testimonial-right-inner img {
        width:61px;
    }

    .testimonial-left-inner h2 {
        font-size: 36px;
        padding-bottom: 25px;
        padding-top: 15px;
    }

    .testimonial-left-inner p {
        font-size: 16px;
        line-height: 27px;
        max-width:415px;
    }

    .testimonial-right-inner p {
        font-size: 18px;
        line-height: 27px;
        padding: 15px 0;
    }

    .testimonial-right-inner span.author {
        font-size: 14px;
    }

    .testimonial-right-inner {
        max-width:450px;
        margin: 0 auto;
    }

    .testimonial-right .slick-prev,
    .testimonial-right .slick-next {
        width: 17px;
        height: 26px;
    }

    .testimonial-right .slick-prev { left:-20px; }

    .testimonial-right .slick-next { right: -20px; }

    .testimonial-left {  width:45%; }

    .testimonial-right {
        width: 55%;
        padding-right: 10%;
    }
}


/*Home Blog*/

.home-blog {
    background-color: #efefef;
    padding: 30px 0;
}

.blog-top { text-align: center; }

.home-blog h2 {
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    padding: 0 0 10px 0;
    margin: 0 0 0 0;
    font-size: 22px;
    display: inline-block;
    vertical-align: middle;
}

.blog-home-inner {
    margin-top: 22px;
    position: relative;
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.blog-pict-inner {
    width: 100%;
    height: 113px;
}

.blog-pict-inner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    display: block;
}

.blog-text {  padding: 15px 14px 40px 14px; }

.blog-text span.date {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.blog-text h3 {
    font-family: 'Exo', sans-serif;
    font-weight: 600;
    padding: 0 0 0 0;
    margin: 0;
    font-size: 16px;
    color:#5d9732;
    line-height: 18px;
    letter-spacing: -0.3px;
}

.blog-text p {
    padding: 10px 10px 0 0;
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.3px;
}

.triangle-bttn{
    width: 64px;
    height: 61px;
    position: absolute;
    right:0;
    bottom: 0;
    display: block;
    background: url(../img/gold-triangle-new.png) 0 0 no-repeat;
    background-size: 100%;
}

.blog-home-inner:hover .triangle-bttn {
    background: url(../img/gold-triangle-new-h.png) 0 0 no-repeat;
    background-size: 100%;
}

.triangle-bttn a {
    width: 100%;
    height: 100%;
    display: block;
    background: url(../img/arrow.png) 70px 70px no-repeat;
    background-size: auto;
}

.triangle-bttn:hover a {
    background: url(../img/arrow.png) 80px 70px no-repeat;
}

.triangle-bttn img {
    width: 11px;
    display: block;
    position: absolute;
    left: -23px;
    top: 35px;
}



  @media (min-width: 768px) {
    .home-blog {
        padding: 55px 0;
        margin-top: -30px
    }

    .home-blog h2 {
        font-size: 30px;
        text-align: center;
        margin-right: 40px;
    }

    .blog-text p {
        padding: 20px 0 0 0;
        margin: 0;
        font-size: 13px;
        line-height: 18px;
    }

    .blog-home-inner { min-height: 400px; }
    .blog .blog-home-inner { min-height: 465px; }
    .blog-text h3 a {
        font-weight: 600;
    }

  }

@media (min-width: 1200px) {
    .home-blog {
        padding: 80px 0;
        margin-top:-50px;

    }
    .blog-home-inner { min-height: 545px; }

    .blog-pict-inner { height: 170px; }

    .home-blog h2 {
        font-size: 50px;
        padding-bottom: 20px;
    }

    .blog-text h3 {
        font-size: 24px;
        line-height: 27px;
        padding-bottom: 40px;
    }

    .blog-text h3 a {
        font-weight: 600;
    }

    .blog-text span.date { font-size: 14px; }


    .blog-text { padding: 30px 30px 90px 30px; }

    .blog-text p {
        padding:0 0 0 0;
        margin: 0;
        font-size: 16px;
        line-height: 27px;
    }

    .triangle-bttn{
        width:118px;
        height:112px ;
    }
}

@media (max-width: 1024px) {
    .triangle-bttn {
        width: 100px;
        height: 93px
    }

    .blog-home-inner:hover .triangle-bttn {
        width: 100px;
        height: 93px
    }

    .triangle-bttn a {
        background-position: 54px 58px;
    }

    .triangle-bttn:hover a {
        background-position: 64px 58px;
    }
}

/*End Homepage*/

/*Inner Page*/

/*Half Text Half Image*/

.half-image-half-text { padding: 30px 0 0; }


.page-id-162 .half-image-half-text,
.page-id-19 .half-image-half-text,
.page-id-170 .half-image-half-text,
.page-id-34 .half-image-half-text { padding: 30px 0; }

.page-id-21 .half-image-half-text,
.page-id-24 .half-image-half-text,
.page-id-399 .half-image-half-text { padding: 0; }

.half-image-half-text .pull-right { float: none !important; }

.half-image-area {
    width: 100%;
    height: 280px;
    position: relative;
    z-index: 100;
}

.half-image-area img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
}

.page-id-26 .half-image-area img { height: auto; }


.half-text-area {
    margin: 0 0;
    padding-bottom: 40px;
    color: #333333;
    position: relative;
    z-index: 99;
}

.diamond-shape-red {
    width: 170px;
    height: 170px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: -66px;
    right: 64px;
    background:transparent;
    z-index: 99;
    border: 2px solid rgba( 232,167,19,.17);
}

.half-text-area:after {
    content: "";
    position: absolute;
    right: -22px;
    bottom: -40px;
    background: url(../img/what-we-do-bg.png) right bottom no-repeat;
    background-size: auto;
    width: 320px;
    height: 480px;
    z-index: -1;
}

.half-text-area h2 {  padding: 0 0 14px; }

.half-text-area p { padding: 0 0 18px; }

.half-text-area p:last-child { padding-bottom: 0; }

.half-text-area .btn { margin-top: 10px; }

.red-shape {
    width: 155px;
    height: 156px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: 61px;
    right: -67px;
    background:rgba(232, 167, 19, 0.30);
    z-index: -9;
    display: none;
}

.green-shape {
    width: 80px;
    height: 80px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    bottom: -10px;
    right: -15px;
    border: 2px solid rgba(110, 169, 56, 0.6);
    z-index: 9;
    display: none;
}


@media(min-width: 600px) {
    .page-id-34 .half-text-area { margin: 0 auto; }

    .page-id-34 .half-text-area img {
        float: left;
        margin-left: 55px;
    }

    .page-id-34 .half-text-area img.wp-image-1037  {  margin-top: -20px; }
}

@media (min-width: 768px) {

    .half-image-half-text .pull-right { float: right !important; }

    .half-image-half-text { padding: 50px 0 20px; }

    .page-id-34 .half-text-area img { margin-left: 0; }

    .half-text-area:after { display: none; }

    .half-text-area { padding-bottom: 0; }

    .half-text-area .btn { padding: 15px 57px 14px 30px }

    .green-shape,
    .red-shape {
        display: block;
    }

    .half-text-sm { padding-bottom: 0; }

    .page-id-26 .half-image-half-text { padding-bottom: 40px }

    .half-image-area { z-index: 0; }

}

@media(min-width: 800px) {
    .page-id-34 .half-text-area img { margin-left: 14px; }
}


@media(min-width: 900px) {
    .page-id-34 .half-text-area img { margin-left: 30px; }
}

@media (min-width:1025px) {

    .half-image-area {
        height: 520px;
        margin-top: 6px;
    }

    .page-id-428 .half-image-area img { -o-object-position: 80%; object-position: 80%; }

    .page-id-34 .half-text-area img.wp-image-1037 {
        margin-top: -65px;
    }
    .page-id-34 .half-text-area img { margin-left: 50px; }

    .half-text-area h2 {  padding: 0 0 25px;  }

    .half-text-area p { padding: 0 0 30px;  }

    .page-id-428 .half-text-area { padding-bottom: 0; }

    .red-shape {
        width: 300px;
        height: 300px;
        bottom: 94px;
        right: -103px;
    }

    .green-shape {
        width: 130px;
        height: 130px;
        bottom: -36px;
        right: 0px;
    }

    .half-text-area .btn {
        position: relative;
        z-index: 99;
    }

    .half-text-area .btn { padding: 12px 66px 12px 39px; }

    .half-image-half-text,
    .page-id-170 .half-image-half-text,
    .page-id-19 .half-image-half-text,
    .page-id-24 .half-image-half-text { padding: 25px 0 50px; }

    .page-id-182 .half-image-half-text { padding: 25px 0 30px; }

    .page-id-164 .half-image-half-text,
    .page-id-721 .half-image-half-text,
    .page-id-428 .half-image-half-text { padding: 25px 0 0; }

    .page-id-21 .half-image-half-text { padding: 0 0 30px; }

    .page-id-26 .half-image-half-text,
    .page-id-399 .half-image-half-text { padding-bottom: 70px }
}



.text-Offerings-section .image-button-info {
    background: transparent;
}

.Offerings-section .image-button-col:hover .image-button-info-design {
    background: rgba( 70,127,35,.9);
}

.Offerings-section .image-button-col:hover .image-button-info-turnkey {
    background: rgba( 232,167,19,.80);
}

.Offerings-section .image-button-col:hover .image-button-info-ip {
    background: rgba( 0,86,158,.80);
}



/* white-content - Image Buttons*/

.white-content {
    text-align: center;
    padding: 20px 0 10px;
}

.image-button-col {
    -webkit-transform: skew(-5deg);
    -ms-transform: skew(-5deg);
    transform: skew(-5deg);
    overflow: hidden;
    height: 260px;
    width: 260px;
    margin: 20px auto 40px;
}

.image-button-col-sub {
    -webkit-transform: skew(5deg);
    -ms-transform: skew(5deg);
    transform: skew(5deg);
    height: 100%;
}

.image-button-image img {
    margin-left: -33px;
    width: 410px;
    height: 275px;
    -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: rotate(0deg) translateY(0);
    -ms-transform: rotate(0deg) translateY(0);
    transform: rotate(0deg) translateY(0);
}

.image-button-info {
    position: absolute;
    top: 0;
    left: -13px;
    width: 110%;
    height: 100%;
    background: rgba( 0,86,158,.24);;
    padding: 0 55px;
    text-align: center;
    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;
    color: #ffffff;
}

.image-button-info h4 {
    margin: 0 0 0;
    padding: 0 0 2px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    font-family: 'Exo', sans-serif;
    display: inline-block;
    letter-spacing: -0.3px;
    background: transparent;
    text-shadow: 0 4px 20px rgba(21, 40, 58, 0.94);
}

.image-button-info p {
    display: none;
    -webkit-transition: all ease-in-out 0.3s;
    -o-transition: all ease-in-out 0.3s;
    transition: all ease-in-out 0.3s;
    padding: 15px 0 0;
}

.image-button-col:hover .image-button-info h4 {
    padding: 0 25px 2px 0;
    background: url(../img/go-left-icon-big.png) right center no-repeat;
    text-shadow: none;
}

.image-button-col:hover .image-button-info p {
    display: block;
}

.image-button-col:hover .image-button-info {
    background: rgba( 232,167,19,.80);
}

.image-button-col:hover .image-button-info-blue {
    background: rgba( 0,86,158,.80);
}

.image-button-col:hover .image-button-info-green {
    background: rgba( 93,151,50,.80);
}


@media (min-width:768px) {
    .image-button-col { width: 360px; }
}

@media (min-width:1025px) {

    .white-content { padding: 40px 0 60px;  }

    .image-button-col {
        height: 260px;
        width: 100%;
        margin-bottom: 0;
    }

    .image-button-info { left: -20px; }

}


/* gray-section - Image on the Right*/

.gray { background: #efefef; }
.white { background-color: #fff; }

.gray-section,
.gray-section.white,
.page-id-21 .image-on-the-right { padding: 40px 0; }

.page-id-403 .image-on-the-right { padding: 0; }

.page-id-721 .image-on-the-right { padding: 40px 0 0; }

.page-id-162 .image-on-the-right { padding: 0 0 40px; }

.gray-section h4 { color: #333333; }

.btn-area .btn { margin-top: 20px; }

.gray-section-content .btn { padding-top: 11px; }


.small_padding .gray-section-content { padding-bottom: 0; }

.gray-section-image {
    position: relative;
    margin: 0 auto;
    margin-bottom: 40px;
}

.gray-section-image img {
    width: auto;
    height: 100%;
}

@media(max-width: 600px){
    .gray-section-image img{
        height: auto;
    }
}

.gray-section-content {
    margin: 0 0;
    padding-bottom: 40px;
    color: #333333;
}

.page-id-382 .gray-section-content,
.page-id-182 .gray-section-content,
.page-id-172 .gray-section-content,
.page-id-174 .gray-section-content,
.page-id-178 .gray-section-content { padding-bottom: 0; }

.gray-section-content-image img { display: none; }

.gray-section h2,
.gray-section h1,
.white-content h1 { padding: 0 0 14px; }

.gray-section p { padding: 0 0 18px; }

.gray-section p:last-child { padding-bottom: 0;}

.post-414 .gray-section-content a {  word-break: break-all; }

.page-id-721 .gray-section.large_padding { padding: 0 0 40px; }

@media (min-width: 768px) {

    .page-id-182 .gray-section.white,
    .page-id-174 .gray-section.white,
    .page-id-428 .gray-section.white { padding: 0 0 40px; }

    .gray-section-content { padding-bottom: 0; }

    .gray-section-image { margin-top: 10px;}

    .gray-section,
    .page-id-19 .image-on-the-right { padding: 40px 0; }

    .gray-section-image { height: 250px; }

    .gray-section-content-image img { display: block; }

    .gray-section-content-image .btn,
    .gray-section-content .btn  {
        padding: 14px 57px 15px 30px;
    }

}

@media (min-width: 1025px) {

    .gray-section.white,
    .page-id-174 .gray-section.white { padding: 25px 0 40px; }

    .page-id-428 .gray-section.white { padding: 30px 0 40px; }

    /*.gray-section-image { height: 410px; }*/

    .gray-section-image {  margin-top: 15px; }

    .gray-section,
    .page-id-19 .image-on-the-right  { padding: 50px 0 70px; }

    .gray-section h2,
    .gray-section h1,
    .white-content h1 { padding: 0 0 30px; }

    .gray-section p { padding-bottom: 30px; }

    .gray-section-content img { margin-top: 5px; }

    .gray-section-image {
        width: 466px;
        /*height: 414px;*/
    }

    .gray-section-content-image .btn,
    .gray-section-content .btn  {
        padding: 12px 66px 12px 39px;
    }

}


/*CTA Bar - Green Call to Action*/

.page-id-24 .cta-bar { margin-top: 30px; }

.cta-bar {
    padding: 30px 0;
    position: relative;
    color: #fff;
    text-align: center;
}
    
    .cta-bar img {
        width: 100%;
        height: 100%;
        -o-object-position: center;
           object-position: center;
        -o-object-fit: cover;
           object-fit: cover;
        font-family: 'object-fit: cover;';
        position: absolute;
        top: 0;
        left: 0;
    }

.cta-bar h3 {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Exo', sans-serif;
    position: relative;
    margin: 0 auto 10px;
}

.cta-bar h3 span {
    background: #528c2b;
    padding: 0 10px;
    position: relative;
    z-index: 99;
}

.cta-bar p {
   position: relative;
 }

 .cta-bar p a {
  color: #e8a713;
 }

.cta-bar .btn {
    margin-top: 10px;
    padding: 12px 40px 11px 13px;
}

.cta-bar .btn:hover:before {right: 11px; }

@media(max-width: 767px) {

    .cta-bar h3:before,
    .cta-bar h3:after {
        content: "";
        background-color: #7f9323;
        height: 3px;
        display: inline-block;
        position: absolute;
        width: 90%;
        top: 20%;
    }

    .cta-bar h3:before { right: 3%;}

    .cta-bar h3:after { left: 3%; }
}

@media(max-width: 500px) {
    .cta-bar h3:before,
    .cta-bar h3:after { width: 98%; }
}

@media(max-width: 400px) {
    .cta-bar h3 { padding: 0 20px; }

    .cta-bar h3:before,
    .cta-bar h3:after { top: 45%; }

    .cta-bar h3 span {
        margin: 0 auto;
        display: block;
        width: 80%;
    }
}

@media(max-width: 320px) {

    .cta-bar h3 span { width: 100%; }

    .page-id-24 .cta-bar .btn:before { top: 17px; }
}


@media (min-width: 768px) {
    .page-id-24 .cta-bar { margin-top: 50px; }
    .page-id-410 .cta-bar { margin-top: 30px; }

    .cta-bar { padding: 50px 0; }

    .cta-bar h3:after {
        left: 0;
        top: -5px;
    }

    .cta-bar .btn {
        margin-top: 25px;
        padding: 16px 52px 15px 20px;
    }

    .cta-bar h3 {
        font-size: 16px;
        font-weight: 600;
        font-family: 'Exo', sans-serif;
        position: relative;
        margin: 0 auto 10px;
    }

    .cta-bar h3 span {
        background: #528c2b;
        padding: 0 10px;
        position: relative;
        z-index: 99;
    }


    .cta-bar h3:before,
    .cta-bar h3:after {
        content: "";
        background-color: #7f9323;
        height: 3px;
        display: inline-block;
        position: relative;
        width: 20%;

    }

    .cta-bar h3:before {
        right: 0;
        top: -5px;
    }

    .cta-bar h3:after {
        left: 0;
        top: -3px;
    }

}

@media (min-width:1025px) {
    .cta-bar h3 { font-size: 30px; }

    .cta-bar {  padding: 60px 0;  }

    .cta-bar h3::after,
    .cta-bar h3::before {
        top: -8px;
        width: 14%;
    }

    .cta-bar h3 span { padding: 0 5px;  }

    .cta-bar h2 {  padding-bottom: 30px; }

    .cta-bar .btn { padding: 16px 66px 14px 39px; }

    .cta-bar .btn::before {
        right: 35px;
        top: 16px;
    }

    .cta-bar .btn:hover::before { right: 30px; }

}



/*Text Section*/

.white-color-section {
    text-align: left;
    padding: 40px 0 40px;
    color: #333333;
}

.page-id-403 .white-color-section { padding-bottom: 20px; }

.white-color-section h3 { padding-bottom: 22px; }

.white-color-section p { padding-bottom: 18px; }

.white-color-section p:last-child { padding-bottom: 0; }

.quote-text {
    margin: 0;
    padding: 5px 25px 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    letter-spacing: -0.3px;
    color: #888888;
    position: relative;
}

.quote-text:before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 18px;
    height: 13px;
    background: url(../img/quote-left-icon.png) 0 0 no-repeat;
}

.quote-text:after {
    content: "";
    position: absolute;
    bottom: 24px;
    width: 36px;
    height: 13px;
    background: url(../img/quote-right-icon.png) 10px 0 no-repeat;
}

.white-content h2 { padding: 0 0 14px; }

.images img {
    margin: 40px auto;
    float: none;
    display: block;
}


@media(min-width: 768px) {
    .images img {
        margin: 20px auto;
        float: none;
        display: block;
    }

    .images .col-sm-4 {
        height: 230px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}

@media (min-width:1025px) {
    .white-color-section { padding: 40px 0 40px; }
    .page-id-403 .white-color-section { padding-bottom: 0; }

    .page-id-176 .white-color-section { padding: 25px 0 40px; }

    .quote-text {
        font-size: 20px;
        line-height: 32px;
        padding: 10px 30px 0px;
    }

    .white-color-section p { padding-bottom: 30px; }

    .quote-text::after { bottom: 12px; }

    .quote-text::before { top: 8px; }

    .white-content h2 { padding: 0 0 30px; }

    .images .col-sm-4 { height: 220px; }
}


/* digital section - Text Over Image*/

.digital {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.digital-overlay {
    background: rgba( 255,255,255,.80);
    padding: 50px 0 50px;
    color: #333333;
}

.digital h3 {  text-align: center; }

.digital-info {  margin-top: 30px; }

.digital-info-col { margin-bottom: 40px; }

.digital-info-col h4 {
    font-size: 17px;
    font-weight: 600;
    color: #5d9732;
    text-transform: uppercase;
    padding-bottom: 10px;
}

.digital-info-col ul { padding: 0; }

.digital-info-col ul li {
    background: 0;
    padding: 0 0 14px 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    color: #333333;
    display: block;
    font-family: 'Work Sans', sans-serif;
}

.digital-info-col ul li a { color: #333333; }

.digital-info-col ul li a:hover { color: #5d9732; }

.digital-quote-btn { text-align: center; }


@media (min-width:768px) {
    .digital-info-col {
        margin-bottom: 30px;
        min-height: 240px;
    }

    .digital-quote-btn .btn:before { 
        right: 16px; 
        top: 8px;
    }

    .digital-quote-btn .btn:hover:before { right: 11px; }
}


@media ( min-width: 1025px ) {
    .digital-overlay { padding: 85px 0 85px; }

    .digital-info-col {
        margin-bottom: 40px;
        min-height: auto;
    }

    .digital-info {  margin-top: 46px; }

    .digital-info-col h4 { font-size: 19px; }

    .digital-quote-btn .btn { padding: 12px 66px 12px 39px; }

    .digital-quote-btn .btn::before {  
        right: 37px; 
        top: 12px;
    }

    .digital-quote-btn .btn:hover::before { right: 33px; }

}

@media ( min-width: 1300px ) {
    .digital-info-col h4 { font-size: 22px; }
}


/*Gray Text section - WYISWYG*/

.gray-text-section { padding: 50px 0 20px;}

.page-id-420 .gray-text-section { padding: 0 0 20px;}

.page-id-178 .gray-text-section { padding: 40px 0 0;}

.gray-text-section h3 { padding-bottom: 15px; }

.gray-text-section h4 {
    padding-bottom: 15px;
    padding-top: 10px;
    font-size: 18px;
    color: #333333;
}

@media (min-width: 768px) {
    .gray-text-section { padding: 85px 0 50px; }

    .gray-text-section h3 { padding-bottom: 30px; }

    .gray-text-section h4 { font-size: 22px; }
}

@media(min-width: 1025px) {
    .gray-text-section { padding: 60px 0 50px; }
}

@media (min-width:1200px) {
    .gray-text-section p { font-size: 16px; }
}



/** Page Meet The Team*/

.teamarea {
    padding: 16px 0 50px 0;
    background: url(../img/team-bg.jpg) center bottom no-repeat;
}

.team-leader h2 {
    margin: 0;
    padding: 14px 0;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3em;
    font-family: 'Exo', sans-serif;
    display: block;
    letter-spacing: -0.3px;
}

.team-leader p {
    margin: 0;
    padding: 0 0 18px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.285em;
}


.team-section { padding: 0; }

.team-section h2 {
    margin: 0;
    padding: 32px 0 27px;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3em;
    font-family: 'Exo', sans-serif;
    display: block;
    letter-spacing: -0.3px;
    text-align: center;
}

.image__cell {
    float:left;
    position: relative;
    margin-bottom:45px;
}

.view-bio-click {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9;
    cursor: pointer;
}

.teamimg {
    border: 1px solid #ddd;
    min-height: 275px;
    position: relative;
    margin: 0 22px;
    border-bottom: none;
}

.team-text {
    text-align: center;
    margin:0 22px;
    padding-top: 17px;
}

.team-text h3 {
    font-weight:600;
    color:#5d9732;
    padding:10px 15px;
    margin:0;
    font-size:20px;
    line-height:20px;
    font-family: 'Exo', sans-serif;
    letter-spacing: -0.3px;
    display: inline-block;
    border-bottom: 1px solid #d4d4d4;
}

.team-text h4 {
    font-weight:600;
    color:#888888;
    padding: 12px 0 0 0;
    margin:0;
    font-size:16px;
    line-height:20px;
    font-family: 'Exo', sans-serif;
    letter-spacing: -0.3px;
    text-transform: inherit;
    min-height: 70px;
}

p.view-bio {
    font-weight:600;
    color:#e8a91a;
    padding:0 0 15px 0;
    cursor: pointer;
    position: relative;
    margin:0;
    font-size:16px;
    line-height:20px;
    font-family: 'Exo', sans-serif;
    letter-spacing: -0.3px;
}

p.view-bio:after {
    content: "+";
    padding-left: 15px;
    font-size: 24px;
}

.is-expanded .team-text { background:#5d9732; }

.is-expanded p.view-bio { color:#fff; }

.is-expanded .team-text h3, .is-expanded .team-text h4 {
    color: #fff;
    border-color:#97bd7c;
}

.is-expanded p.view-bio:after { content: "-"; }


.team_details {
    background: #efefef;
    margin: 0 0;
    padding: 30px;
    position: relative;
}

.team_details p {
    margin: 0;
    padding: 0 0 20px 0 ;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.285em;
}

.team_details p span {
    text-transform: uppercase;
    font-weight: 600;
}

.close_pop {
    position: absolute;
    top: 0;
    right: 7%;
    font-size: 16px;
    cursor: pointer;
    color: #888888;
}

.basic__img {
    display: block;
    width: 100%;
    min-height: 275px;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
}


.image__cell.is-expanded .image--expand {
    margin-bottom: 10px;
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    transform: scaleY(1);
    height: 100%;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.image--expand {
    position: relative;
    left: 0;
    padding: 0;
    overflow: hidden;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    transform: scaleY(0);    
    -webkit-transform-origin: top;    
        -ms-transform-origin: top;    
            transform-origin: top;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    height: 0;
}

.image__cell.is-collapsed .arrow--up {
    height: 10px;
    width: 100%;
}

.image__cell.is-expanded .arrow--up {
    border-bottom: 18px solid #efefef;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    height: 0;
    width: 0;
    margin: 2px auto 0;
}


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

.image__cell { width: 50%; }

.image__cell:nth-of-type(2n+2) .image--expand {
    margin-left: -100%;
}

.image__cell:nth-of-type(2n+3) {
    clear:left;
}

.image--expand { width: 200%; }

}
@media only screen and ( min-width: 768px) {
    .team-leader img { width: 100%; }

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

    .teamimg {
        height: auto;
        padding: 0;
    }

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

    .close_pop { right: 3%; }
}

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

    .team-leader h2, .team-section h2 {
        font-size: 50px;
    }

    .team-leader h2 {
        padding-top: 0;
    }

    .image__cell { width: 25%; }

    .image__cell:nth-of-type(4n+2) .image--expand { margin-left: -100%; }

    .image__cell:nth-of-type(4n+3) .image--expand { margin-left: -200%; }

    .image__cell:nth-of-type(4n+4) .image--expand { margin-left: -300%; }

    .image__cell:nth-of-type(2n+3) { clear: none; }

    .image__cell:nth-of-type(4n+5) { clear: left; }

    .image--expand { width: 400%; }

    .team-leader p {
        font-size: 20px;
        line-height: 27px;
        padding-top: 10px;
    }

    .team_details {  padding: 65px 100px 25px 100px; }

    .team_details {
        font-size: 15px;
        line-height: 27px;
        padding-bottom: 35px;
    }

    .team-leader { padding-bottom: 20px; }

    .team_details p {
        font-size: 15px;
        line-height: 27px;
    }

    .teamimg { height: 360px; }

    .close_pop { right: 1%; }
}



/*Map - Locations*/

.map-content-grey{
    background-color: #efefef;
    padding-top: 20px;
    padding-bottom: 30px;
}

section.map-content {
    height: 100%;
    width: 100%;
}

#map { height: 300px; }

#locations_map { margin-top: 30px; }

#locations_map .map-marker { padding: 20px; }

#locations_map .map-marker h6 {
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
}

#locations_map .map-marker p {
    font-size: 14px;
    line-height: 1.35;
    margin-top: 0;
    margin-bottom: 10px;
    padding-bottom: 0;
}

#locations_map .map-marker a {
    font-weight: 400;
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
    display: inline-block;
    color: #e8a713;
    background: url(../img/go-left-icon-orange.png) right center no-repeat;
    padding-right: 22px;
    text-transform: uppercase;
}

#locations_map .map-marker a:hover { padding-right: 26px; }

.map-content h2,
.map-content h3,
.map-content-grey h2,
.map-content-grey h3 {
    padding-bottom: 10px;
    padding-top: 20px;
}

.map-content-grey h2:first-child,
.map-content-grey h3:first-child {  padding-top: 0; }

.map-content-grey p,
.map-content-grey ul,
.map-content-grey ol {
    padding-bottom: 10px;
}

.map-content-grey h2.yellow { color: #e8a713; }

.map-content-grey h2.green { color: #5d9732; }

.map-content-grey h2.green:last-child { color: #333; }

.map-content-grey h2 a { color: #5d9732; }

.map-content-grey h2 a:hover { color: #e8a713; }

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

    #map { height: 400px; }

    .map-content-grey {
        padding-top: 50px;
        padding-bottom: 50px;
    }

}

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

    #map { height: 572px; }

    .map-content h2,
    .map-content h3,
    .map-content p,
    .map-content ul,
    .map-content ol,
    .map-content-grey h2,
    .map-content-grey h3,
    .map-content-grey p,
    .map-content-grey ul,
    .map-content-grey ol {
        padding-bottom: 30px;
    }

    .map-content p,
    .map-content ul,
    .map-content ol {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.35;
    }

    .map-content-grey {
        padding-bottom: 40px;
        padding-top: 60px;
    }

}

@media only screen and (max-width: 1024px) {
    ul li {
        font-size: 13px;
        background-position: 0 5px;
    }
}

/* contact section */

.contact {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.contact-overlay {
    background: rgba( 239,239,239,.70);
    padding: 50px 0 50px;
    color: #333333;
}

.contact h3 { padding-bottom: 15px; }


@media (min-width:768px) {

    .contact-overlay { padding: 80px 0 90px; }

    .contact h3 { padding-bottom: 22px; }

    .contact p { font-size: 16px; }
}



/**
 * Search
 */

.content-area {  padding: 50px 0;  }

.content-area .blog-text { padding-bottom: 30px; }

.content-area .blog-text .btn { margin-top: 20px; }

.content-area .blog-home-inner { min-height: auto; }


@media(min-width: 1025px) {
    .content-area {  padding: 0 0 50px 0;  }
}

/**
 * Testimonial
 */

.filter-testimonials { padding: 50px 0; }

.testimonial-list .item {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.testimonial-list span.author {
    font-size: 12px;
    font-family: 'Exo', sans-serif;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.testimonial--video img { margin: 0 auto; }

.post-filter { margin-bottom: 50px; }

.widget-filter {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 100%;
    padding: 15px 20px;
    margin-bottom: 30px;
}

.widget-filter ul {
    margin: 0;
    padding: 0;
}

.widget-filter li {
    background: none;
    border-bottom: 1px solid #e8a713;
    padding: 10px 15px;
}

.widget-filter li:last-child { border-bottom: 0; }

.widget-filter li:hover {
    background-color: #e8a713;
    color: #fff;
}

.widget-filter li:hover a { color: #fff; }

.widget-filter a {
    color: #414141;
    font-weight: 500;
}

    .widget-filter a:hover { text-decoration: none; }

/**
 * Blog
 */


.page-sidebar { margin-top: 30px; }

.page-sidebar .widget {
    background-color: #efefef;
    margin-bottom: 30px;
    padding: 20px;
}

.page-sidebar .widget h3 { color: #5d9732 }

.page-sidebar .widget ul {
    margin: 0;
    padding: 0;
}

.page-sidebar .widget li {
    background: none;
    border-bottom: 1px solid #e2e2e2;
    padding: 10px 20px;
}

    .page-sidebar .widget li:last-child { border-bottom: 0; }

    .page-sidebar .widget li:hover { background-color: #5d9732; }

    .page-sidebar .widget li:hover a { color: #fff; }

.page-sidebar .widget a {
    display: block;
    color: #333;
    line-height: 20px;
}

    .page-sidebar .widget a:hover { text-decoration: none; }


.page-sidebar .widget .screen-reader-text { display: none; }

.page-sidebar .selectric .label {
    font-size: 16px;
    font-weight: 600;
}

.page-sidebar .selectric-items { border: 0 !important}

.page-sidebar .selectric-items li { color: #333;}

.page-sidebar .selectric-items li:hover { color: #fff;  }


.page-sidebar .selectric-items li.selected {
    background-color: #5d9732;
    color: #fff;
}

.single p { margin: 30px 0; }

.blog-share h4,
.blog-share ul { display: inline-block; }

.blog-share ul {
    margin: 0;
    padding: 0;
}

    .blog-share li {
        background: none;
        display: inline-block;
        padding: 0;
    }

    .blog-share a {
        font-size: 30px;
    }

        .blog-share a:hover { color: #e8a713  }

.search-form .search-field {
    border: 1px solid #ccc;
    width: 98%;
}

.search-form .search-submit {
    background-color: #e8a713;
    border: 0;
    color: #fff;
    font-weight: 600;
    padding: 10px 25px;
    text-transform: uppercase;
}

.error404 .btn-contact { margin: 15px 0; }

@media(min-width: 1025px) {
    .page-sidebar { margin-top: 20px; }

    .blog .blog-home-inner { min-height: 790px; }
}


/**
 * Page-footer
 */

.page-footer {
    padding: 0;
    margin: 0;
    background-color: #fff;
}

.top-footer {
    padding: 38px 0 25px 0;
}

.top-footer-mobile {
    margin:0;
    padding: 0;
}

.top-footer-mobile ul {
    margin:0;
    padding: 0;
}

.top-footer-mobile li {
    background: 0;
    margin:0;
    padding: 0 20px 0 0;
    float: left;
}

.top-footer-mobile li:last-child {
    padding: 0;
}

.top-footer-mobile li img {
    width:129px;
    height: auto;
    display: block
}

.top-footer-mobile li .btn {
    padding: 6px 18px 6px 12px;
    float: right;
    margin-top:5px;
}

.top-footer-mobile li .btn span {
    padding-right: 20px;
    background-size:12px;
}

.top-footer-mobile .btn { margin-left: 0px; }

.footer-text {  padding-top: 30px; }

.footer-text h3 {
    font-size: 16px;
    color:#333;
    margin: 0;
    padding: 0;
    font-weight: 700;
}

.footer-text p,
.footer-text .telephone {
    font-size: 12px;
    color:#333;
    line-height: 16px;
    margin: 0;
    padding:10px 0 0 0;
}

.footer-text .telephone {
    background: none;
    padding:  0;
    font-weight: 500;
}

.footer-text .telephone:hover { text-decoration: none; }

.footer-text p a {
    display: inline-block;
    color:#e8a713;
    background: url(../img/go-left-icon-orange.png) right center no-repeat;
    padding-right: 22px;
}

.footer-text p a:hover {
    padding-right: 26px;
}

.social-media {
    padding-top:30px;
    position: relative;
}

.back-to-top {
    position: absolute;
    right: 0;
    top:62px;
    transition: all ease-in-out 0.3s;
}

.social-media h3 {
    color:#333;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Exo', sans-serif;
    text-transform: uppercase;
    padding: 0 0 0 0;
    margin: 0;
}

.social-media ul {
    margin: 0;
    padding: 0;
}

.social-media ul li {
    margin: 0 10px 0 0;
    padding: 0px 15px 0 0;
    font-size: 30px;
    float: left;
    padding: 0;
    background: 0;
}

.social-media ul li a {
    color:#bdbdbd;
    display: block;
    padding-top: 10px;
}

.social-media ul li:hover a {
    padding-top: 0px;
}

.footer-text-big {
    border-right:1px solid #efefef;
}

.footer-text-big p {
    font-size: 12px;
    line-height: 19px;
    padding-bottom: 15px;
    color:#555555;
    letter-spacing: -.3px;
    padding-right: 50px;
}

.footer-text-big p span {
    font-weight: 600;
}

.f-logo {
    padding-bottom: 20px;
}

.f-w-logo {
    float: left;
    padding-right: 10px;
    padding-bottom: 40px;
    margin: 0;
}



.copyright {
    background-color:#efefef;
    padding: 30px 0 20px 0;
}

.copyright p {
    font-size: 12px;
    line-height: 19px;
    padding-bottom: 15px;
    color:#555555;
    letter-spacing: -.3px;
}

.copyright p span {
    font-weight: 600;
}

.copyright ul {
    text-align: center;
    margin: 0;
    padding: 0;
}

.copyright ul li {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 12px;
    color:#555555;
    padding: 0 15px 0 15px;
    margin: 0 0;
    letter-spacing: -.3px;
    border-left:1px solid #555555;
    background: 0;
}

.copyright ul li a {
    color:#555555;
    margin:0;
}

.copyright ul li:first-child, .copyright ul li:last-child, .copyright ul li:nth-child(3) {
    border: none;
}

.copyright ul li:last-child, .copyright ul li:nth-child(3)  {
    width:100%;
}

.f-w-logo {
    display: none;
    float: left;
    padding-right: 25px;
    margin: 0;
}


@media (orientation: landscape) {
    .top-footer-mobile .btn {
         margin-left: 18px;
    }
}

@media (max-width: 768px) {
    .top-footer-mobile li:last-child {
        float: right;
    }
}

@media (min-width: 768px) {

    .top-footer-mobile li img {
        width:181px;
    }
    .top-footer-mobile li {
        padding-right: 40px;
    }

    .top-footer-mobile .btn { margin-left: 18px; }

    .top-footer-mobile .btn::before {
        right: 12px;
        top: 9px;
    }

     .top-footer-mobile .btn:hover:before { right: 8px; }

        /*.top-footer-mobile .btn::after { padding: 19.3px 10px; }*/

    .copyright ul li:last-child, .copyright ul li:nth-child(3)  {
        width:auto
     }
     .copyright ul li:last-child , .copyright ul li:nth-child(3) {
        border-left:1px solid #555555;
    }
    .f-w-logo {
        display: block;
        margin: 0;
        width: 78px;
        padding-bottom: 10px;
    }

    .f-w-logo.alignleft{ margin: 0; }

    .top-footer .col-lg-2 { padding: 0 22px; }

}

@media (min-width: 1200px) {

    .top-footer .col-lg-2 { padding: 0 15px; }

    .social-media, .footer-text  { padding-top: 18px; }

    .social-media .btn {
        padding: 15px 40px 15px 16px;
        margin-bottom:20px;
    }

        .social-media .btn:before { right: 15px;  }

        .social-media .btn:hover:before { right: 10px; }

    .social-media { text-align: center; }

    .back-to-top {
        position: fixed;
        z-index: 9;
        right: 25px;
        bottom: 25px;
        top: auto
    }

    .back-to-top:hover {
        bottom: 35px;
    }

    .social-media ul li {
        padding-right: 5px;
        padding-left: 5px;
        margin: 0;
        list-style: none;
    }

    .social-media ul {
        margin: 0 auto;
        width: 125px;
    }

    .copyright p { display: none; }

    .f-w-logo { width: 80px; padding-bottom: 40px;}
}


.gm-style .gm-style-iw-c {
    border-radius: 0!important;
}


img.wp-image-875 {
    margin-top: 20px;
}

@media (max-width: 767px) {
    .images-col {
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-bar {
        margin: 40px 0 0;
    }

    .gray-section-content img.alignleft,
    .gray-section-content img.alignright {
        max-width: 100%;
        float: none;
        margin: 15px 0 15px ; 
        display: block;
    }

    ul li,
    ol li {
        line-height: 1.3em;
        font-size: 14px;
    }

    .gray-section-content img.wp-image-875 {
        margin-top: 20px;
    }
	
	
}

@media (max-width: 600px) {
    .images-col {
        max-width: 200px;
        margin: 0 auto;
    }
}

@media (min-width: 1025px) {
    .page-id-164 .white-content .image-button .row {
        text-align: center;
    }

    .page-id-164 .white-content .image-button .col-md-4 {
        float: none;
        display: inline-block;
        width: 33%;
    }
}

@media (min-width: 1300px) {
    .image-button-image img {
        width: 440px;
    }
}


@media (max-width: 1199px) {
	.page-header {
		position: fixed;
		-webkit-box-shadow: 0 0 40px 0 rgb(0 0 0 / 15%);
		box-shadow: 0 0 40px 0 rgb(0 0 0 / 15%);
	}
	
	.banner,
    .page .inner-banner {
		margin-top: 98px;
	}
}

@media (max-width: 767px) {
	
	.banner {
		margin-top: 84px;
	}
}


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


}

.hero-vid{
    height: auto !important;
}
/*------------------------------------*\
    Trumps
\*------------------------------------*/


@-ms-viewport { width: device-width; }


/**
 * Images
 */

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}


/**
 * Visiblity
 */

.show { display: block !important; }

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg { display: none !important; }

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block { display: none !important; }

@media (max-width: 599px) {
    .visible-xxs      { display: block !important; }
    table.visible-xxs { display: table; }
    tr.visible-xxs    { display: table-row !important; }
    th.visible-xxs,
    td.visible-xxs    { display: table-cell !important; }

    .visible-xxs-block        { display: block !important; }
    .visible-xxs-inline       { display: inline !important; }
    .visible-xxs-inline-block { display: inline-block !important; }
}


@media (min-width: 600px) and (max-width: 767px) {
    .visible-xs      { display: block !important; }
    table.visible-xs { display: table; }
    tr.visible-xs    { display: table-row !important; }
    th.visible-xs,
    td.visible-xs    { display: table-cell !important; }

    .visible-xs-block        { display: block !important; }
    .visible-xs-inline       { display: inline !important; }
    .visible-xs-inline-block { display: inline-block !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .visible-sm      { display: block !important; }
    table.visible-sm { display: table; }
    tr.visible-sm    { display: table-row !important; }
    th.visible-sm,
    td.visible-sm    { display: table-cell !important; }

    .visible-sm-block        { display: block !important; }
    .visible-sm-inline       { display: inline !important; }
    .visible-sm-inline-block { display: inline-block !important; }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .visible-md      { display: block !important; }
    table.visible-md { display: table; }
    tr.visible-md    { display: table-row !important; }
    th.visible-md,
    td.visible-md    { display: table-cell !important; }

    .visible-md-block        { display: block !important; }
    .visible-md-inline       { display: inline !important; }
    .visible-md-inline-block { display: inline-block !important; }
}

@media (min-width: 1200px) {
    .visible-lg      { display: block !important; }
    table.visible-lg { display: table; }
    tr.visible-lg    {  display: table-row !important; }
    th.visible-lg,
    td.visible-lg    { display: table-cell !important; }

    .visible-lg-block        { display: block !important; }
    .visible-lg-inline       { display: inline !important; }
    .visible-lg-inline-block { display: inline-block !important; }
}


/**
 * Hiding
 */

.hide,
.hidden-xxs-up { display: none !important; }
.hidden       { display: none !important; visibility: hidden !important; }
.invisible    { visibility: hidden !important; }
.text-hide    {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

@media (max-width: 599px) {
    .hidden-xxs { display: none !important; }
}

    @media (min-width: 600px) {
      .hidden-xs-up { display: none !important; }
    }

@media (min-width: 600px) and (max-width: 767px) {
    .hidden-xs { display: none !important; }
}

    @media (max-width: 767px) {
      .hidden-xs-down { display: none !important; }
    }

    @media (min-width: 768px) {
      .hidden-sm-up { display: none !important; }
    }

@media (min-width: 768px) and (max-width: 1024px) {
    .hidden-sm { display: none !important; }
}

    @media (max-width: 1024px) {
      .hidden-sm-down { display: none !important; }
    }

    @media (min-width: 1025px) {
      .hidden-md-up { display: none !important; }
    }

@media (min-width: 1025px) and (max-width: 1199px) {
    .hidden-md { display: none !important; }
}

    @media (max-width: 1199px) {
      .hidden-md-down { display: none !important; }
    }

@media (min-width: 1200px) {
    .hidden-lg { display: none !important; }
}


@media (min-width: 1800px) {
    .testimonial-left {
        padding: 70px 40px 0 0;
    }
}


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

}


/*******************************
 * No CSS Should be added below the above TRUMPS section.
 *
 *
 * Please add all additional CSS above the TRUMPS section above.
 * /


*/