/**
 * 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.
 * Posts.................Post content for loop on blog homepage, search page, archives, etc.
 * Tabs..................Tabbed content.
 *
 * UI
 * Page head.............The main page header.
 * Navigation............Navigation elements.
 * Masthead..............Page title/image/slideshow header block.
 * Page footer...........The main page footer.
 *
 * TRUMPS
 * Images................Round, Circle, Square Images.
 * Visiblity.............Make items visible.
 * Hiding................Make items invisible/hidden.
 * Screen Readers........Display for screen readers.
 * Print.................Display for printing.
 * Clears................Clearing floats.
 * Text alignment........Align text.
 * Font weights..........Adjust font weights.
 * Borders...............Add borders.
 * Add/remove margins....Remove margins.
 * Add/remove paddings...Remove padding.
 * Positioning...........float, center, and stick items.
 */




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

/**
 * Box-sizing
 */

* { -webkit-box-sizing: border-box; box-sizing: border-box; }


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

.wp-caption.alignright,
.wp-caption.alignleft,
.wp-caption.alignnone,
.wp-caption.aligncenter {
    margin: 0;
    width: auto !important;
}

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

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

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

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

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

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



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

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


body {
    font-size: 14px;
    line-height: 26px;
    font-family: 'Quicksand', sans-serif;
    margin: 0;
    padding: 0;
}

h1, .h1,
h2, .h2,
h3, .h3 {
    color: #434247;
    margin: 0;
    padding: 0;
    text-transform: none;
    font-weight: normal;
}

h1, .h1 {
  font-size: 36px;
  font-family: 'Lora', serif;
}

h2, .h2 {
  font-size: 36px;
  font-family: 'Lora', serif;
  line-height: 1;
}

h3, .h3 {
  font-size: 18px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;

}

blockquote {
    margin: 0;
    padding: 0;
}

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

a {
  text-decoration: none;
  color: #809A99;
}

  a:hover { color: #5F6769; }

  @media(min-width: 768px){

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

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

    h3, .h3 { font-size: 25px; }

  }

  @media(min-width: 1025px){

    body { 
        font-size: 16px;
        margin-top: 115px; /* height of header */
    }

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

    h2, .h2 {
        font-size: 46px;
        line-height: 1em;
    }

    h3, .h3 {
        font-size: 24px;
    }

    p {
        font-size: 16px;
        line-height: 28px;
    }

    a {
        font-size: 16px;
    }

}


/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

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

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

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

@media (max-width: 767px) {
    .slick-initialized .slick-slide {
        vertical-align: top;
    }

    .testi_content .slick-dots li {
        margin: 0 14px;
    }
}


/* Preload affect */

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

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

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

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

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

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


/* Slick Dots */

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

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

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

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

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

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    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';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}



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


/**
 * Wrappers
 */

.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 25px;
    padding-right: 25px;
}
.container {
    max-width: 1366px;
}


/**
 * 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: -25px;
    margin-right: -25px;
}

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

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

.col-xxs-12 { width: 100%; }
.col-xxs-11 { width: 91.66666667%; }
.col-xxs-10 { width: 83.33333333%; }
.col-xxs-9  { width: 75%; }
.col-xxs-8  { width: 66.66666667%; }
.col-xxs-7  { width: 58.33333333%; }
.col-xxs-6  { width: 50%; }
.col-xxs-5  { width: 41.66666667%; }
.col-xxs-4  { width: 33.33333333%; }
.col-xxs-3  { width: 25%; }
.col-xxs-2  { width: 16.66666667%; }
.col-xxs-1  { width: 8.33333333%; }

.col-xxs-pull-12 { right: 100%; }
.col-xxs-pull-11 { right: 91.66666667%; }
.col-xxs-pull-10 { right: 83.33333333%; }
.col-xxs-pull-9  { right: 75%; }
.col-xxs-pull-8  { right: 66.66666667%; }
.col-xxs-pull-7  { right: 58.33333333%; }
.col-xxs-pull-6  { right: 50%; }
.col-xxs-pull-5  { right: 41.66666667%; }
.col-xxs-pull-4  { right: 33.33333333%; }
.col-xxs-pull-3  { right: 25%; }
.col-xxs-pull-2  { right: 16.66666667%; }
.col-xxs-pull-1  { right: 8.33333333%; }
.col-xxs-pull-0  { right: auto; }

.col-xxs-push-12 { left: 100%; }
.col-xxs-push-11 { left: 91.66666667%; }
.col-xxs-push-10 { left: 83.33333333%; }
.col-xxs-push-9  { left: 75%; }
.col-xxs-push-8  { left: 66.66666667%; }
.col-xxs-push-7  { left: 58.33333333%; }
.col-xxs-push-6  { left: 50%; }
.col-xxs-push-5  { left: 41.66666667%; }
.col-xxs-push-4  { left: 33.33333333%; }
.col-xxs-push-3  { left: 25%; }
.col-xxs-push-2  { left: 16.66666667%; }
.col-xxs-push-1  { left: 8.33333333%; }
.col-xxs-push-0  { left: auto; }

.col-xxs-offset-12 { margin-left: 100%; }
.col-xxs-offset-11 { margin-left: 91.66666667%; }
.col-xxs-offset-10 { margin-left: 83.33333333%; }
.col-xxs-offset-9  { margin-left: 75%; }
.col-xxs-offset-8  { margin-left: 66.66666667%; }
.col-xxs-offset-7  { margin-left: 58.33333333%; }
.col-xxs-offset-6  { margin-left: 50%; }
.col-xxs-offset-5  { margin-left: 41.66666667%; }
.col-xxs-offset-4  { margin-left: 33.33333333%; }
.col-xxs-offset-3  { margin-left: 25%; }
.col-xxs-offset-2  { margin-left: 16.66666667%; }
.col-xxs-offset-1  { margin-left: 8.33333333%; }
.col-xxs-offset-0  { margin-left: 0%; }

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

    .col-xs-12 {width: 100%;}
    .col-xs-11 { width: 91.66666667%; }
    .col-xs-10 { width: 83.33333333%; }
    .col-xs-9  { width: 75%; }
    .col-xs-8  { width: 66.66666667%; }
    .col-xs-7  { width: 58.33333333%; }
    .col-xs-6  { width: 50%; }
    .col-xs-5  { width: 41.66666667%; }
    .col-xs-4  { width: 33.33333333%; }
    .col-xs-3  { width: 25%; }
    .col-xs-2  { width: 16.66666667%; }
    .col-xs-1  { width: 8.33333333%; }

    .col-xs-pull-12 { right: 100%; }
    .col-xs-pull-11 { right: 91.66666667%; }
    .col-xs-pull-10 { right: 83.33333333%; }
    .col-xs-pull-9  { right: 75%; }
    .col-xs-pull-8  { right: 66.66666667%; }
    .col-xs-pull-7  { right: 58.33333333%; }
    .col-xs-pull-6  { right: 50%; }
    .col-xs-pull-5  { right: 41.66666667%; }
    .col-xs-pull-4  { right: 33.33333333%; }
    .col-xs-pull-3  { right: 25%; }
    .col-xs-pull-2  { right: 16.66666667%; }
    .col-xs-pull-1  { right: 8.33333333%; }
    .col-xs-pull-0  { right: auto; }

    .col-xs-push-12 { left: 100%; }
    .col-xs-push-11 { left: 91.66666667%; }
    .col-xs-push-10 { left: 83.33333333%; }
    .col-xs-push-9  { left: 75%; }
    .col-xs-push-8  { left: 66.66666667%; }
    .col-xs-push-7  { left: 58.33333333%; }
    .col-xs-push-6  { left: 50%; }
    .col-xs-push-5  { left: 41.66666667%; }
    .col-xs-push-4  { left: 33.33333333%; }
    .col-xs-push-3  { left: 25%; }
    .col-xs-push-2  { left: 16.66666667%; }
    .col-xs-push-1  { left: 8.33333333%; }
    .col-xs-push-0  { left: auto; }

    .col-xs-offset-12 { margin-left: 100%; }
    .col-xs-offset-11 { margin-left: 91.66666667%; }
    .col-xs-offset-10 { margin-left: 83.33333333%; }
    .col-xs-offset-9  { margin-left: 75%; }
    .col-xs-offset-8  { margin-left: 66.66666667%; }
    .col-xs-offset-7  { margin-left: 58.33333333%; }
    .col-xs-offset-6  { margin-left: 50%; }
    .col-xs-offset-5  { margin-left: 41.66666667%; }
    .col-xs-offset-4  { margin-left: 33.33333333%; }
    .col-xs-offset-3  { margin-left: 25%; }
    .col-xs-offset-2  { margin-left: 16.66666667%; }
    .col-xs-offset-1  { margin-left: 8.33333333%; }
    .col-xs-offset-0  { margin-left: 0%; }
}

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

    .col-sm-12 { width: 100%; }
    .col-sm-11 { width: 91.66666667%; }
    .col-sm-10 { width: 83.33333333%; }
    .col-sm-9  { width: 75%; }
    .col-sm-8  { width: 66.66666667%; }
    .col-sm-7  { width: 58.33333333%; }
    .col-sm-6  { width: 50%; }
    .col-sm-5  { width: 41.66666667%; }
    .col-sm-4  { width: 33.33333333%; }
    .col-sm-3  { width: 25%; }
    .col-sm-2  { width: 16.66666667%; }
    .col-sm-1  { width: 8.33333333%; }

    .col-sm-pull-12 { right: 100%; }
    .col-sm-pull-11 { right: 91.66666667%; }
    .col-sm-pull-10 { right: 83.33333333%; }
    .col-sm-pull-9  { right: 75%; }
    .col-sm-pull-8  { right: 66.66666667%; }
    .col-sm-pull-7  { right: 58.33333333%; }
    .col-sm-pull-6  { right: 50%; }
    .col-sm-pull-5  { right: 41.66666667%; }
    .col-sm-pull-4  { right: 33.33333333%; }
    .col-sm-pull-3  { right: 25%; }
    .col-sm-pull-2  { right: 16.66666667%; }
    .col-sm-pull-1  { right: 8.33333333%; }
    .col-sm-pull-0  { right: auto; }

    .col-sm-push-12 { left: 100%; }
    .col-sm-push-11 { left: 91.66666667%; }
    .col-sm-push-10 { left: 83.33333333%; }
    .col-sm-push-9  { left: 75%; }
    .col-sm-push-8  { left: 66.66666667%; }
    .col-sm-push-7  { left: 58.33333333%; }
    .col-sm-push-6  { left: 50%; }
    .col-sm-push-5  { left: 41.66666667%; }
    .col-sm-push-4  { left: 33.33333333%; }
    .col-sm-push-3  { left: 25%; }
    .col-sm-push-2  { left: 16.66666667%; }
    .col-sm-push-1  { left: 8.33333333%; }
    .col-sm-push-0  { left: auto; }

    .col-sm-offset-12 { margin-left: 100%; }
    .col-sm-offset-11 { margin-left: 91.66666667%; }
    .col-sm-offset-10 { margin-left: 83.33333333%; }
    .col-sm-offset-9  { margin-left: 75%; }
    .col-sm-offset-8  { margin-left: 66.66666667%; }
    .col-sm-offset-7  { margin-left: 58.33333333%; }
    .col-sm-offset-6  { margin-left: 50%; }
    .col-sm-offset-5  { margin-left: 41.66666667%; }
    .col-sm-offset-4  { margin-left: 33.33333333%; }
    .col-sm-offset-3  { margin-left: 25%; }
    .col-sm-offset-2  { margin-left: 16.66666667%; }
    .col-sm-offset-1  { margin-left: 8.33333333%; }
    .col-sm-offset-0  { margin-left: 0%; }
}

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

  .col-md-12 { width: 100%; }
  .col-md-11 { width: 91.66666667%; }
  .col-md-10 { width: 83.33333333%; }
  .col-md-9  { width: 75%; }
  .col-md-8  { width: 66.66666667%; }
  .col-md-7  { width: 58.33333333%; }
  .col-md-6  { width: 50%; }
  .col-md-5  { width: 41.66666667%; }
  .col-md-4  { width: 33.33333333%; }
  .col-md-3  { width: 25%; }
  .col-md-2  { width: 16.66666667%; }
  .col-md-1  { width: 8.33333333%; }

  .col-md-pull-12 { right: 100%; }
  .col-md-pull-11 { right: 91.66666667%; }
  .col-md-pull-10 { right: 83.33333333%; }
  .col-md-pull-9  { right: 75%; }
  .col-md-pull-8  { right: 66.66666667%; }
  .col-md-pull-7  { right: 58.33333333%; }
  .col-md-pull-6  { right: 50%; }
  .col-md-pull-5  { right: 41.66666667%; }
  .col-md-pull-4  { right: 33.33333333%; }
  .col-md-pull-3  { right: 25%; }
  .col-md-pull-2  { right: 16.66666667%; }
  .col-md-pull-1  { right: 8.33333333%; }
  .col-md-pull-0  { right: auto; }

  .col-md-push-12 { left: 100%; }
  .col-md-push-11 { left: 91.66666667%; }
  .col-md-push-10 { left: 83.33333333%; }
  .col-md-push-9  { left: 75%; }
  .col-md-push-8  { left: 66.66666667%; }
  .col-md-push-7  { left: 58.33333333%; }
  .col-md-push-6  { left: 50%; }
  .col-md-push-5  { left: 41.66666667%; }
  .col-md-push-4  { left: 33.33333333%; }
  .col-md-push-3  { left: 25%; }
  .col-md-push-2  { left: 16.66666667%; }
  .col-md-push-1  { left: 8.33333333%; }
  .col-md-push-0  { left: auto; }

  .col-md-offset-12 { margin-left: 100%; }
  .col-md-offset-11 { margin-left: 91.66666667%; }
  .col-md-offset-10 { margin-left: 83.33333333%; }
  .col-md-offset-9  { margin-left: 75%; }
  .col-md-offset-8  { margin-left: 66.66666667%; }
  .col-md-offset-7  { margin-left: 58.33333333%; }
  .col-md-offset-6  { margin-left: 50%; }
  .col-md-offset-5  { margin-left: 41.66666667%; }
  .col-md-offset-4  { margin-left: 33.33333333%; }
  .col-md-offset-3  { margin-left: 25%; }
  .col-md-offset-2  { margin-left: 16.66666667%; }
  .col-md-offset-1  { margin-left: 8.33333333%; }
  .col-md-offset-0  { margin-left: 0%; }
}

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

  .col-lg-12 { width: 100%; }
  .col-lg-11 { width: 91.66666667%; }
  .col-lg-10 { width: 83.33333333%; }
  .col-lg-9  { width: 75%; }
  .col-lg-8  { width: 66.66666667%; }
  .col-lg-7  { width: 58.33333333%; }
  .col-lg-6  { width: 50%; }
  .col-lg-5  { width: 41.66666667%; }
  .col-lg-4  { width: 33.33333333%; }
  .col-lg-3  { width: 25%; }
  .col-lg-2  { width: 16.66666667%; }
  .col-lg-1  { width: 8.33333333%; }

  .col-lg-pull-12 { right: 100%; }
  .col-lg-pull-11 { right: 91.66666667%; }
  .col-lg-pull-10 { right: 83.33333333%; }
  .col-lg-pull-9  { right: 75%; }
  .col-lg-pull-8  { right: 66.66666667%; }
  .col-lg-pull-7  { right: 58.33333333%; }
  .col-lg-pull-6  { right: 50%; }
  .col-lg-pull-5  { right: 41.66666667%; }
  .col-lg-pull-4  { right: 33.33333333%; }
  .col-lg-pull-3  { right: 25%; }
  .col-lg-pull-2  { right: 16.66666667%; }
  .col-lg-pull-1  { right: 8.33333333%; }
  .col-lg-pull-0  { right: auto; }

  .col-lg-push-12 { left: 100%; }
  .col-lg-push-11 { left: 91.66666667%; }
  .col-lg-push-10 { left: 83.33333333%; }
  .col-lg-push-9  { left: 75%; }
  .col-lg-push-8  { left: 66.66666667%; }
  .col-lg-push-7  { left: 58.33333333%; }
  .col-lg-push-6  { left: 50%; }
  .col-lg-push-5  { left: 41.66666667%; }
  .col-lg-push-4  { left: 33.33333333%; }
  .col-lg-push-3  { left: 25%; }
  .col-lg-push-2  { left: 16.66666667%; }
  .col-lg-push-1  { left: 8.33333333%; }
  .col-lg-push-0  { left: auto; }

  .col-lg-offset-12 { margin-left: 100%; }
  .col-lg-offset-11 { margin-left: 91.66666667%; }
  .col-lg-offset-10 { margin-left: 83.33333333%; }
  .col-lg-offset-9  { margin-left: 75%; }
  .col-lg-offset-8  { margin-left: 66.66666667%; }
  .col-lg-offset-7  { margin-left: 58.33333333%; }
  .col-lg-offset-6  { margin-left: 50%; }
  .col-lg-offset-5  { margin-left: 41.66666667%; }
  .col-lg-offset-4  { margin-left: 33.33333333%; }
  .col-lg-offset-3  { margin-left: 25%; }
  .col-lg-offset-2  { margin-left: 16.66666667%; }
  .col-lg-offset-1  { margin-left: 8.33333333%; }
  .col-lg-offset-0  { margin-left: 0%; }
}



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

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

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


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

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


/**
 * Buttons
 */

.btn {
    border: 1px solid #fff;
    position: relative;
    font-size: 21px;
    line-height: 65px;
    display: inline-block;
    padding: 0 51px;
    color: #fff !important;
    text-transform: capitalize;
    font-weight: 500;
}

.btn:before {
    max-height: 85%;
    max-width: 95%;
    content: '';
    left: 5px;
    display: block;
    position: absolute;
    top: 4px;
    border: 1px solid #fff;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: .30s;
    -o-transition: .30s;
    transition: .30s;
}

.btn:hover:before {
    opacity: 1;
}

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

    .btn-primary:hover {
        background-color: #678688;
        border: 1px solid transparent;
    }


.btn-secondary {
    border: 1px solid #fff;
    padding: 7px 25px;
    display: inline-block;
    background-color: #5f6769;
    line-height: normal;
    font-size: 16px !important
}

.btn.btn-secondary:before {
    max-height: 85%;
    max-width: 94%;
    content: '';
    left: 3px;
    display: block;
    position: absolute;
    top: 3px;
    border: 1px solid #fff;
    width: 94%;
    height: 75%;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: .30s;
    -o-transition: .30s;
    transition: .30s;
}


.btn.btn-secondary:hover:before {
    opacity: 1;
}

    .btn-secondary:hover {
        border: 1px solid transparent;
    }

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

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



/**
 * Icons
 */

/**
 * Flaticons
*/

@font-face {
    font-family: "Flaticon";
    src: url("../icons/Flaticon.eot");
    src: url("../icons/Flaticon.eot?#iefix") format("embedded-opentype"),
         url("../icons/Flaticon.woff2") format("woff2"),
         url("../icons/Flaticon.woff") format("woff"),
         url("../icons/Flaticon.ttf") format("truetype"),
         url("../icons/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("../icons/Flaticon.svg#Flaticon") format("svg");
        }
  }

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

  .flaticon-next:before { content: "\f100"; }
  .flaticon-down-arrow:before { content: "\f101"; }
  .flaticon-right-arrow:before { content: "\f102"; }
  .flaticon-facebook:before { content: "\f103"; }
  .flaticon-linkedin:before { content: "\f104"; }
  .flaticon-close:before { content: "\f105"; }
  .flaticon-instagram:before { content: "\f106"; }


  /*---------
      Icomoon
  ---------*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .icon-ctrl:before {
    content: "\ea50";
  }


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

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

.table-wrap-outer:after {
    content: '';
    position: absolute;
    right: -1px;
    top: 0;
    height: 100%;
    width: 80px;
    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%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=1 );
}

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

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



/**
 * Forms
 */

label {
    display: block;
}

textarea {
    width: 100%;
    height: 95px;
    border: 2px solid #3c4245;
    outline: none;
    padding: 5px 10px;
    line-height: normal;
    font-weight: normal;
}

textarea:focus {
     border-color: #719192;
    }

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

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    border: 1px solid transparent;
    border-bottom: 1px solid #3c4245;
    color: #3c4245;
    width: 100%;
    font-size: 17px;
    line-height: 20px;
    outline: none;
    height: 25px;
}

[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 {
    border-bottom: 1px solid #719192;
}

.contact_field:focus + label {
    color: #719192;
}

.wpcf7-form-control-wrap:focus + label {
    color: #f00;
}


input[type="checkbox"] {
    width: 15px !important;
    height: 15px !important;
    position: relative;
    top: 3px;
}


input[type="checkbox"]:focus {
    border: 2px solid #719192;
}

.wpcf7-form-control-wrap:focus + label {
  color: red;
}


[type="submit"] {
    margin-top: 36px;
    border: none;
    outline: none;
}

    button::-moz-focus-inner,
    [type="reset"]::-moz-focus-inner,
    [type="button"]::-moz-focus-inner,
    [type="submit"]::-moz-focus-inner {
        border: none;
        padding:0;
    }


.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
    display: inline-block;
    margin-left: 5px;
    font-size: 14px;
}

.wpcf7-checkbox .wpcf7-list-item-label {
    font-weight: 600;
}


.wpcf7-form-control-wrap {
    display: block;
    font-weight: normal;
    position: relative;
}


.wpcf7-list-item {
    width: 50%;
    float: left;
}

.wpcf7-list-item-label {
    display: block;
}

.wpcf7-checkbox .wpcf7-list-item {
    width: 33%;
}

/* 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: 12px;
    line-height: 38px;
    color: #444;
    height: 38px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* CF7 Validation (Replace if not using CF7) */

/* Individual field error messages */
.wpcf7-not-valid-tip {
    color: #69110b;
    font-size: 14px;
    position: relative;
    bottom: -0;
    left: 0;
    width: 100%;
    text-align: right;
}

/* Entire form error message */

.wpcf7-form.invalid {
    position: relative;
}

.wpcf7-validation-errors {
    position: relative;
    bottom: -0;
    left: 0;
    width: 100%;
    display: block;
    font-size: 14px;
    color: #69110b;
    font-weight: bold;
}

/**
 * Breadcrumbs
 */

.breadcrumbs {
    border: 1px solid #f00;
    display: none;
}

.breadcrumbs a {
    font-size: 16px !important;
}


/**
 * Pagination
 */

.wp-pagenavi {
    clear: both;
    padding: 10px 0;
    margin: 40px 0 0;
    font-size: 14px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display:inline-block;
    color:#fff;
    text-decoration: none;
    background: #3C4245;
    border:0;
    font-size: 15px;
    padding: 5px 10px;
    margin-right: 5px;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    color:#fff;
    background: #719192;
}

 /**
 * Posts
 * Used on blog, category, archive and search results pages
 */

.post-item {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-top: 30px;
}

.post-item:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}


/**
 * Tabs
 * In use on search.php template by default.
 * Use as base for any other tabs on the site.
 */


.tabs {
    list-style: none;
    border-bottom: 1px solid #ddd;
    padding: 0;
    margin: 0;
}

.tabs:before,
.tabs:after {
    content: '';
    display: table;
}

.tabs:after,
.tab-content:after {
    clear: both;
}

.tab {
    list-style-type: none !important;
    margin: 0 5px -1px 0;
    padding: 0;
    float: left;
}

.tab > a {
    display: block;
    padding: 10px 35px;
    text-decoration: none;
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 1px 1px 0 0;
    color: inherit;
    font-weight: bold;
}

.tab-active > a {
    border-bottom: 1px solid #fff;
}

.tab-active > a,
.tab:hover > a,
.tab:focus > a {
    color: inherit;
    background: #fff;
    text-decoration: none;
}

.tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
    display: none;
}


/**
 * FAQ Section
 */

.faqs-section {
    padding: 45px 0 45px 0;
}

.question-content {
    padding: 0 15px;
}

.accordion-toggle {
    background: #719192;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

.accordion-title {
    display: block;
    padding-right: 30px;
}

    .accordion-title:after {
        content: "\e901";
        display: block;
        font-family: 'icomoon' !important;
        -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
                transform: rotate(90deg);
        position: absolute;
        right: 22px;
        font-size: 18px;
        font-weight: 400;
        top: 14px;
    }

.accordion-content {
    display: none;
    padding: 15px 0;
    margin-left: 15px;
}

.accordion-title .active {
    display: block;
}

    .accordion-title.active:after {
        -webkit-transform: rotate(270deg);
            -ms-transform: rotate(270deg);
                transform: rotate(270deg);
    }

.accordion-toggle {
    position: relative;
    z-index: 1;
}



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

/**
 * Page-head
 */

.page-header {
    background-color: #3d4246;
}

.mobile_cta {
    height: 31px;
    background-color: #5f6769;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: block;
    z-index: 999;
    top: 0;
}

.mobile_cta a {
    float: left;
    width: 50%;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 2px 0;
}

.mobile_cta .mbphone {
    background-color: #729193;
    height: 100%;
}

.mbphone .hphonebg {
    display: inline-block !important;
}

.mbphone .hphonebg {
    background-image: url('../img/phone.png');
    background-repeat: no-repeat;
    background-position: left;
    display: block;
    padding-left: 20px;
}

.search_button {
    width: 60px;
    float: left;
    display: block;
    height: 100%;
    position: relative;
    top: 5px;
    cursor: pointer;
}

.search_icon {
    height: 25px;
    width: 40px;
    background-image: url('../img/search_icon.png');
    background-repeat: no-repeat;
    background-position: left;
    margin: 0 auto;
}

.search_button strong {
    color: #fff;
    text-transform: capitalize;
    font-size: 12px;
    line-height: normal;
}

.searchtoggle {
    position: absolute;
    left: 0;
    width: 100%;
    display: none;
    top: 85px;
    z-index: 999;
    background-color: #fff;
}

.searchtoggle p {
    margin: 0;
    padding: 0;
}

.searchtoggle [type="text"] {
    height: 40px;
    padding-right: 50px;
    padding-left: 15px;
    background-color: transparent;
    border: 2px solid #5f6769;
}

.searchtoggle [type="submit"] {
    margin-top: 0 !important;
    position: absolute;
    height: 100%;
    display: inline-block;
    right: 0;
    top: 0;
    background-image: url(../img/search_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto;
    color: transparent;
    background-color: #5f6769;
    width: 50px;
}

.searchtoggle label {
    display: none;
}

@media(min-width: 768px){

    .searchtoggle {
        top: 107px;
    }

}


.page-header .container {
    position: relative;
    padding: 16px 25px;
}

.logo {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    width: 138px;
    margin: 0 auto;
    top: 20px;
}

.logo img{
    width: 138px;
}


.menu-bar {
    background-color: transparent;
    padding: 10px 0;
    display: inline-block;
    line-height: normal;
    float: right;
}

.menu-bar.icon-close:before {
    font-size: 22px;
    color: #fff;
    display: block;
    text-align: center;
}

.menu-bar.icon-close {
    padding: 5px 0;
}

.menu-bar.icon-close span {
    display: none;
}

.menu-bar.icon-close .menutext {
    font-family: 'Quicksand', sans-serif;
}

.menu-bar span:first-child {
    margin-top: 0;
}

.menu-bar span {
    border: 1px solid #fff;
    display: block;
    margin-top: 5px;
    width: 30px;
}

.menu-bar .menutext {
    text-transform: capitalize;
    margin-top: 3px;
    display: block;
    color: #fff;
    font-size: 12px;
}

.menu_section {
    display: inline-block;
    text-align: right;
}


@media(min-width: 768px){

    .page-header {
        background-color: #3c4245;
        padding: 22px 0 28px;
        position: relative;
        z-index: 9;
    }

    .page-header .container {
        position: relative;
        z-index: 1;
        padding-top: 0;
        padding-bottom: 0;
    }

    .logo {
        display: inline-block;
        position: relative;
        top: 7px;
        width: 235px;
    }

    .logo img{
        width: auto;
    }

    .menu-bar {
        padding: 0 !important;
    }

    .menu-bar .menutext {
        font-size: 15px;
        font-family: 'Quicksand', sans-serif;
    }

    .menu-bar span {
        border: 1px solid #fff;
        display: block;
        margin-top: 8px;
        width: 36px;
    }

    .header_cta {
        position: absolute;
        width: 218px;
        bottom: -3px;
        right: 25px;
    }

    .header_cta label {
        display: none;
    }

    .header_cta p {
        margin: 3px 0;
    }

    .phonesec {
        background-color: #719192;
        font-size: 16px;
        padding: 3px 25px;
        color: #fff;
        display: inline-block;
        height: 32px;
        position: absolute;
        right: 0;
        top: 0;
    }

    .phonesec .hphonebg {
        background-image: url('../img/phone.png');
        background-repeat: no-repeat;
        background-position: left;
        display: block;
        padding-left: 20px;
    }

    .phonesec:hover {
        background-color: #5F6769;
        color: #fff;
    }

    .header_cta form {
        background-color: #5f6769;
        width: 121px;
        overflow: hidden;
        height: 32px;
        position: relative;
        border: none;
    }

    .header_cta form [type="text"] {
        font-size: 16px;
        height: 100%;
        width: 100%;
        background-color: transparent;
        padding-left: 20px;
        border: none;
        color: #fff;
    }

    .header_cta form [type="text"]::-webkit-input-placeholder {
        color: #fff;
    }

    .header_cta form [type="text"]::-moz-placeholder {
        color: #fff;
    }

    .header_cta form [type="text"]:-ms-input-placeholder {
        color: #fff;
    }

    .header_cta form [type="text"]::-ms-input-placeholder {
        color: #fff;
    }

    .header_cta form [type="text"]::placeholder {
        color: #fff;
    }

    .header_cta form [type="submit"] {
        position: absolute;
        width: 48px;
        height: 32px;
        color: transparent;
        top: -35px;
        right: 0px;
        background: url(../img/search_icon.png) #5f6769;
        background-repeat: no-repeat;
        background-position: center;
        background-size: 47%;
        border: none;
        cursor: pointer;
    }

}

@media(min-width: 1025px){

    .page-header {
        position: fixed;
        top: 0;
        padding: 20px 0 0;
        width: 100%;
        z-index: 999;
    }

    .menu_section {
        width: 75%;
        float: right;
    }

    .header_cta {
        position: relative;
        width: 218px;
        float: right;
        right: 20px;
    }

    .header_cta .searchtoggle {
        position: absolute;
        left: -250%;
        width: 768px;
        color: #5F6769;
        top: 87px;
    }

    .header_cta form {
        width: 100% !important;
        border: 2px solid #5f6769;
        height: 42px;
    }

    .header_cta form [type="text"] {
        background-color: #fff !important;
        height: 42px;
        color: #000;
    }

    .header_cta form p { margin: 0; }

    .header_cta form [type="submit"] {
        top: 0;
        height: 42px;
    }

}

@media(min-width: 1200px){

    .header_cta .searchtoggle {
        position: absolute;
        left: -370%;
        width: 1025px;
        color: #5F6769;
        top: 87px;
    }


}


@media (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px), (-webkit-min-device-pixel-ratio: 2) and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px), (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) and (max-width: 1024px) {

  /* TODO: Add Retina-specific logo here - see instructions https://webpagefx.mangoapps.com/mlink/wiki/NjA3Nzg */

}


/**
 * Nav Primary
 */

.nav-primary .sub-menu,
.nav-primary .sub-menu ul{ display:none; }
.sub-menu.js-toggled { display:block; }
.sub-menu ul.js-toggled { max-height: 55em; }


    .icon-menu {
        display: block;
        top: 19px;
    }

    .nav-primary {
        display: none;
    }

    .nav-primary {
        position: absolute;
        left: 0;
        width: 100%;
        background-color: #3c4245;
        top: 85px;
        border-top: 1px solid #e4ecf2;
        padding: 0;
        z-index: 9995;
    }

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

    .nav-primary ul li {
        float: none;
        line-height: 45px;
        text-align: left;
        position: relative;
    }

    .nav-primary ul li a {
        display: block;
        padding: 0 55px 0 15px;
        color: #fff;
    }

    .nav-primary ul li a:hover {
        color: #719192;
    }

    /*.nav-primary li:hover > .sub-menu {
        display: none;
    }*/

    .sub-menu-toggle {
        position: absolute;
        width: 40px;
        height: 40px;
        right: 10px;
        cursor: pointer;
        top: 3px;
        -webkit-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                transform: rotate(90deg);
        color: #fff;
        font-size: 10px;
        padding: 13px;
    }

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

    .nav-primary .sub-menu li.menu-item-has-children .sub-menu {
        display: none !important;
        padding: 0;
    }

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

    .nav-primary .sub-menu li.menu-item-has-children:hover .sub-menu li {
        color: #fff;
    }

    .nav-primary .sub-menu {
        background: none;
        position: relative;
        top: 0;
        width: 100%;
    }

    .nav-primary .sub-menu li {
        border: none;
        padding-left: 25px;
    }

    .nav-primary .sub-menu li a{
        text-transform: capitalize;
    }

    .nav-primary ul li.contact {
        text-align: center;
    }

    .nav-primary .current-menu-parent a,
    .nav-primary ul li.current-menu-item a {
        color: #719192;
    }

    .nav-primary ul li a:hover { color: #719192; }

    .nav-primary .sub-menu {
        display: none;
        background: #3c4245;
        position: relative;
        top: 60%;
        left: 0;
        width: 100%;
        z-index: 999;
        padding: 0;
    }

    .nav-primary .sub-menu a { color: #fff !important; }

    .nav-primary .sub-menu li:hover a{
        float: none;
        background: transparent;
        color: #719192 !important;
    }

    .nav-primary .sub-menu li a {
        background: none !important;
    }

    .nav-primary .sub-menu a { color: #fff !important; }

    .nav-primary .sub-menu a:hover { color: #6d8c8d; }

    .nav-primary .sub-menu .sub-menu {
        background: #3D4246;
        padding: 25px 0;
        position: relative;
    }

    .nav-primary .sub-menu li {
        padding: 0;
        float: none;
    }

    .nav-primary ul li ul.sub-menu li a {
        font-size: 14px;
        line-height: 20px;
        display: block;
        padding: 10px;
        background: transparent;
    }

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

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

    .nav-primary li:hover > .sub-menu { /*display: block;*/ position: relative; }

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

    .nav-primary li .sub-menu-toggle.icon-next.js-toggled .sub-menu { /*display: block;*/ }

    .nav-primary li.current_page_ancestor a,
    .nav-primary li.current-menu-item > .sub-menu-toggle,
    li.current_page_ancestor > .sub-menu-toggle,
    li.current_page_ancestor li.current_page_ancestor a,
    li.current-menu-parent li.current-menu-item > .sub-menu-toggle,
    li.current_page_ancestor li.current_page_ancestor .current_page_item a { color: #719192; }

    .nav-primary li li.current_page_item > a, .nav-primary li li.current-menu-ancestor > a {
        color: #719192 !important;
    }

    .sub-menu.js-toggled {
        display: block !important;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }

    .sub-menu.js-toggled li a{ color: #fff; }

    .sub-menu .sub-menu li{ padding-left: 30px; }

    .sub-menu .sub-menu li:hover{ padding-left: 30px; }

    .sub-menu li.current_page_ancestor .sub-menu li a { color: #fff !important; }

    .sub-menu li.current_page_ancestor .sub-menu li:hover a { color: #719192 !important; }

    .sub-menu .sub-menu.js-toggled li a { color: #fff !important; }

    .sub-menu .sub-menu.js-toggled li:hover a { color: #719192 !important; }

        @media (min-width: 768px) {
            .nav-primary { top: 97px; }
        }

        @media( min-width: 1025px ) {

            .nav-primary { display: block; top: 0; position: relative; border-top: 0; }

            /*.nav-primary .sub-menu {
                left: -25px;
                width: 220px;
            }*/

            .nav-primary ul.menu {
                display: -webkit-inline-box;
                display: -ms-inline-flexbox;
                display: inline-flex;
                padding: 0;
                margin: 0;
                list-style: none;
                float: right;
                margin-top: 15px;
            }

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

            .nav-primary ul.menu li { padding-right: 30px; position: relative; }

            .nav-primary ul.menu li a {  font-size: 14px; padding: 0 0 10px; }

            .nav-primary ul.menu .sub-menu li { position: relative; }

            .sub-menu li.current_page_ancestor .sub-menu li { padding-left: 0 !important;  }

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

            .nav-primary .sub-menu .menu-item-has-children .sub-menu-toggle { display: inline-block; position: relative; right: 0; top: 0px; -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg);}

            .sub-menu .menu-item-has-children:hover .sub-menu  li > a { color: #fff !important; }

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



        }


        @media( min-width: 1200px ) {

            .nav-primary ul.menu li { padding-right: 39px; }

            .nav-primary ul.menu .sub-menu li { padding-right: 0; }

            .nav-primary ul.menu li a { font-size: 16px; }

            .sub-menu-toggle {
                right: 18px;
                width: 15px;
                height: 8px;
                padding: 0;
                top: 21px;
            }

        }

        @media( min-width: 1366px ) {
            .nav-primary ul.menu li { padding-right: 40px; }
        }



/**
 * Masthead
 */



.masthead {
    padding: 80px 0 84px;
    position: relative;
    z-index: 0;
    text-align: center;
}

.masthead:before {
    position: absolute;
    top: 0;
    content: '';
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: block;
    opacity: .60;
    z-index: 2;
}

.masthead img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
}

.masthead_content {
    position: relative;
    z-index: 3;
    color: #434347;
}
.masthead_content .btn {
    border: 0;
    width: 238px;
}

.masthead_content .btn:before {
    opacity: 1 !important;
    width: 100%;
}


.masthead_content h1 {
    font-size: 36px;
    line-height: 46px;
    font-weight: 500;
}

.subcontent {
    color: #545458;
    display: block;
    font-size: 18px;
    font-weight: 400;
    z-index: 5;
    padding: 10px 0 36px;
    font-family: 'Quicksand';
}

.masthead_content .btn-primary{
    color: #fff;
}

.masthead-slide button {
    position: absolute;
    top: 0;
    z-index: 999;
    top: 50%;
    height: 39px;
    background-color: transparent;
    border: transparent;
    background-color: transparent;
    font-weight: 800;
    color: #434347;
    background-position: left;
}

.masthead-slide button span {
    font-size: 36px;
    display: block;
    font-weight: 700;
}

.masthead-slide button:hover { color: #fff; }

.masthead-slide .slick-prev {
    left: 0;
    -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
}

.masthead-slide .slick-next {
    right: 0;
    -webkit-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}


@media(min-width: 768px){

    .masthead { padding: 167px 0 187px; }

    .masthead:before { background-color: #d1c4be; }

    .masthead_content h1 { font-size: 60px; line-height: 70px; }

    .subcontent { font-size: 25px; }

}

@media(min-width: 1025px){

    .masthead { padding: 207px 0 217px; }

    .masthead:before { background-color: #d1c4be; }

    .masthead_content h1 { font-size: 76px; line-height: 70px; }

    .subcontent { font-size: 25px; }

}

.icons_block {
    margin-top: -26px;
    position: relative;
    z-index: 111;
    padding-bottom: 35px;
}

.icons_block .container { padding: 0 20px !important; }

.icon_slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
 }

.icon_slider .slick-dots { display: none !important; }

.icon_item {
    max-width: 152px !important;
    height: 152px;
    background-color: #e1e1e1;
    padding: 13px 0;
    text-align: center;
    cursor: pointer;
}

.icon_content {
    max-width: 90px;
    height: 85px;
    display: block;
    margin: 0 auto;
    background-image: url(../img/greenestone.png);
    background-repeat: no-repeat;
    background-position: center;
    display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-size: contain;
}

.icon_item:hover .icon_content {
    background-image: url(../img/greenestone_hover.png);
    background-size: contain;
}

.icon_content img {
    max-width: 50px!important;
    margin: 0 auto;
    max-width: 100%;
    position: relative;
    left: 10px;
}
.icon_item:hover .icon_title { color: #434347; }

.icon_title {
    position: relative;
    margin-top: 7px;
    display: block;
    line-height: 18px;
    color: #3c4245;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
}

.icon_slider_container {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
}

.slide_button  {
    text-align: center;
    position: relative;
    margin: 15px 0;
}

.icons_block button {
    height: 40px;
    width: 45%;
    position: absolute;
    z-index: 99;
    background-color: transparent;
    color: #3c4145;
    background-repeat: no-repeat;
    background-position: left;
    z-index: 0;
    border: none;
    z-index: 999;
}

.icons_block button::before {
    content: "\e901";
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 31px;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.icons_block button.button_prev {
    left: 6%;
    background-position: right;
}

.icons_block button.button_prev::before {
    content: "\e901";
    font-family: 'icomoon' !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 31px;
    font-weight: 700;
    position: absolute;
    top: 0;
    right: -70%;
    -webkit-transform: rotate(-180deg);
            -ms-transform: rotate(-180deg);
            transform: rotate(-180deg);
}

.icons_block button.button_next { right: 5%; }

.text_container { padding-top: 60px; }

.text_info {
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 35px;
}

.text_content h2 {
    color: #444348;
    line-height: normal;
    font-size: 35px;
    font-weight: normal;
}

.text_content h2 br{ display: none; }

.icon_slider .slick-slide { margin: 0 5px !important; }

    @media(min-width: 600px){

        .icons_block button { width: 48%; }

        .text_content h2 br{ display: block; }

        .text_content img {
            height: 251px;
            float: none;
            width: 100%;
            position: relative;
            -o-object-fit: cover;
            object-fit: cover;
            font-family: 'object-fit: cover;'; /* IE object-fit fix */
        }

        .text_info { padding-bottom: 46px; }

        .icon_item {
            max-width: 175px !important;
            min-height: 167px;
            position: relative;
        }

        .icon_title { font-size: 15px; }

        .icon_content {
            max-width: 105px;
            height: 96px;
            background-size: cover;
        }

        .icon_item:hover .icon_content { background-size: cover; }

            .icon_slider_container {
                position: relative;
                max-width: 380px;
                margin: 0 auto;
            }

        .icons_block button.button_next { right: 2%; }
        .icons_block button.button_prev { left: 3%; }

    }

    @media(min-width: 768px){

        .icons_block { padding-bottom: 45px; }

        .icon_slider_container {
            position: relative;
            height: 204px;
            max-width: 626px;
            margin: 0 auto;
            overflow-y: hidden;
        }

        .icon_slider_container .slide_button  {
            position: absolute;
            top: 65px;
            left: 0;
            right: 0;
            width: 100%;
            height: 18%;
            content: '';
            display: block;
            margin: 0 !important;
        }

        .icon_slider { width: 549px; margin: 0 auto; }

        .icons_block button {
            width: 40px;
            background-position: left;
            top: 0;
        }

        .icons_block button.button_next {
            right: -2%;
            background-position: right;
        }

        .icons_block button.button_prev {
            left: -1%;
            background-position: left;
        }

        .icons_block button.button_prev::before { right: 0; }

        .icon_slider .slick-slide { margin: 0 5px !important; }

        .icons_block { margin-top: -40px; }

        .text_content { position: relative; }

        .text_content h2 { font-size: 44px; }

        .text_content img {
            position: absolute;
            right: 0;
            top: 0px;
            width: 40%;
            height: 100%;
        }

        .text_info {
            font-size: 16px;
            line-height: 24px;
            max-width: 60%;
            padding-right: 30px;
            padding-bottom: 0;
        }

            .icon_item:hover .icon_content {
                background-image: url(../img/ctahover_background.png);
                background-size: cover;
            }

        .icon_title {
            position: absolute;
            margin-top: 7px;
            display: block;
            line-height: 18px;
            color: #3c4245;
            font-size: 13px;
            font-weight: 600;
            text-transform: capitalize;
            width: 100%;
            padding: 0 19px;
            top: 110px;
            left: 0;
        }

    }

    @media(min-width: 1025px){

        .icons_block { padding-bottom: 115px; }

        .icon_slider_container {
            max-width: 100%;
        }

        .icon_item {
            width: 181px !important;
            height: 183px;
        }

        .icon_slider {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            width: auto;
            max-width: 1136px;
            margin: 0 auto;
        }

        .icon_item {
            width: 16.6%;
            padding: 15px 20px;
            margin: 0 5px;
        }

        .text_container { padding-top: 63px; }

        .text_content h2 {
            line-height: 50px;
        }

        .text_info {
            padding-right: 84px;
        }

        .icon_item {
            width: 180px !important;
            min-height: 167px;
        }

    }

    @media(min-width: 1366px){

        .text_info {
            max-width: 63%;
        }

        .text_content img{
            width: 37%;
        }

    }

.block_background {
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

.home .block_background {
    z-index: 112;
}


.block_background img {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-family: 'object-fit: cover;';
    object-fit: cover;
    -o-object-fit: cover;
    z-index: 2;
}

.gray_background {
    background-color: rgba(60,66,69,0.9);
    position: relative;
    z-index: 3;
    max-width: 978px;
    margin: 0 auto;
    color: #fff;
    padding: 29px 18px 29px;
    font-size: 14px;
    line-height: 24px;
}

.block_background .block-btns { display: block; margin-top: 27px; }

.gray_background .block-btns { display: none !important; }

.home .block_background .block-btns,
.home .gray_background .block-btns { z-index: 2; }

.gray_background h2 {
    font-weight: 500;
    padding-bottom: 10px !important;
    line-height: normal;
    color: #fff;
}

.home .plyr:-webkit-full-screen { z-index: 5; }
.home .plyr:-ms-fullscreen { z-index: 5; }
.home .plyr:fullscreen { z-index: 5; }

.block-btns {
    position: relative;
    z-index: 5;
    text-align: center;
}

.block-btns .btn { display: block; }

.block-btns .btn + .btn {
    display: block;
    margin-left: 0 !important;
    margin-top: 10px;
}

    @media(min-width: 768px){

        .block_background { padding: 40px 0; }

        .gray_background { padding: 40px 37px; font-size: 16px; }

        .block_background .block-btns { display: none; }

        .gray_background .block-btns { display: block !important; margin-top: 0 !important; }


        .block-btns .btn { display: inline-block; }

        .block-btns .btn + .btn {
            display: inline-block;
            margin-left: 16px !important;
        }


    }


    @media(min-width: 1025px){

        .block_background { padding: 100px 0; }

        .gray_background { padding: 39px 50px 50px; font-size: 16px; }

    }


.block_banner,
.block_banner.newsletter {
    background-image: url(../img/banner-image-background.jpg);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

.block_banner h2 {
    max-width: 785px;
    margin: 0 auto 15px;
    line-height: 40px;
    font-weight: 500;
    color: #fff !important;
}

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

        .block_banner h2 {
            line-height: 50px;
        }
    }

    @media(min-width: 1025px){

        .block_banner {
            padding: 40px 0;
        }
    }


.testimonial_section {
    position: relative;
    color: #38424c;
}

.testimonial_section img {
    position: relative;
    height: 248px;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    width: 100%;
    -o-object-position: center;
       object-position: center;
}

.testi_content {
    padding: 61px 20px;
    text-align: center;
    background-image: url(../img/testimonials-bg.jpg);
    background-size: cover;
}

.testi_content .container { padding: 0 20px !important; }

.testi_content h2 { font-weight: normal; }

.testi_content .btn { width: 259px; height: 70px; }

.testi_content .btn:before {
    max-height: 83%;
    width: 100%;
    content: '';
    display: block;
    position: absolute;
    top: 0px;
    width: 95.4%;
    height: 100%;
    margin: 0 auto;
    opacity: 1 !important;
    -webkit-transition: .30s;
    -o-transition: .30s;
    transition: .30s;
    display: block;
    left: 0;
    right: 0;
    margin: 5px;
}

.testimonials_button {
    height: 40px;
    max-width: 300px;
    margin: -34px auto 0;
}

.testimonials_button button {
    background: transparent;
    border: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    outline: none;
}

.testimonials_button button .flaticon-down-arrow:before {
    margin: 0 !important;
    font-size: 15px;
}

.testimonials_button button span{
    font-family: 'icomoon';
    font-size: 14px;
    font-weight: 600;
}

.testimonials_button .testi_prev {
    float: left;
    -webkit-transform: rotate(90deg);
            -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}

.testimonials_button .testi_next{
    float: right;
    -webkit-transform: rotate(-90deg);
            -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
}



.testi-author {
    padding-bottom: 30px;
    display: inline-block;
    font-style: normal !important;
    font-size: 16px;
}


.testi_content .slick-dots { bottom: -19px; }

.testi_content .slick-dots li {
    border: 1px solid #fff;
    padding: 2px;
    width: 19px;
    height: 19px;
}

.testi_content .slick-dots li.slick-active {
    border: 1px solid #3c4245;
}

.testi_content .slick-dots li button {
    width: 13px;
    height: 13px;
    background-color: #3c4245;
}

.testi_content .btn { margin: 21px 0 0 0;}

    @media(min-width: 768px){

        .testimonial_section img {
            height: 298px;
        }

        .testi_content {
            padding: 81px 30px;
        }

        .testimonials_button {
            max-width: 182px;
        }

    }

    @media(min-width: 1025px){

        .testimonial_section img {
            position: absolute;
            width: 45%;
            height: 100%;
        }

        .testimonial_section h2 { padding-bottom: 20px; }

        .testi_content {
            float: right;
            width: 55%;
            padding: 81px 80px;
        }


        .testi_content .container {
            max-width: 100%;
            padding-left: 59px;
            font-size: 18px;
            font-weight: 500;
            float: left;
        }

        .testi_content p {
            font-size: 18px;
        }

    }


    @media(min-width: 1366px){

        .testimonial_section img {
            position: absolute;
            width: 43%;
            height: 100%;
        }

        .testimonial_section h2 {
            padding-bottom: 20px;
            padding-left: 50px;
        }

        .testi_content {
            width: 57%;
        }


        .testi_content .container {
            max-width: 798px;
            padding-left: 79px;
        }

    }

/**
 * Testimonial Page
*/

/* .testimonial { padding-bottom: 45px; } */

.testimonial:last-child { padding-bottom: 0 !important; }

@media (max-width: 767px) {
    .testimonial h2 {
        font-size: 23px;
        line-height: 1.3em;
    }
}


/**
 * Inner page Style
*/

.gallery__title {
    display: inline-block;
}

.gallery_btn {
    line-height: 50px;
    margin-left: 15px;
}

.gallery__images {
    margin: 20px 0;
}

.page-content.inner-content {
    position: relative;
}

.page-content.inner-content a {
    color: #719192;
    font-size: 14px
}

.page-content.inner-content a.gallery_btn {
    display: none;
}

.page-content.inner-content a:hover {
    color: #5F6769;
    text-decoration: underline;
}

.inner-banner {
    padding: 40px 0;
    text-align: center;
    position: relative;
}

.inner-banner h1 {
    color: #434247;
    font-size: 36px;
    line-height: 40px;
    font-weight: normal;
    z-index: 100;
    position: relative;
}

.single h2 { line-height: 50px; }
.single h3 { display: block; line-height: 42px; }

.inner-banner img {
    position: absolute;
    top: 0;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    width: 100%;
    height: 100%;
    left: 0;
    opacity: .3;
    z-index: 99;
    -webkit-box-shadow: 11px 9px 34px -7px rgba(252,252,252,1);
    box-shadow: 11px 9px 34px -7px rgba(252,252,252,1);
}

@media(min-width: 768px){

    .page-content.inner-content a {
        font-size: 16px
    }

    .inner-banner {
        padding: 102px 0;
        overflow: hidden;
    }

    .inner-banner:before {
        height: 100%;
        width: 100%;
        background-color: #fff;
        opacity: .65;
        content: '';
        position: absolute;
        z-index: 4;
        left: 0;
        top: 0;
    }

    .inner-banner img {
        position: absolute;
        top: 0;
        -o-object-fit: cover;
           object-fit: cover;
        font-family: 'object-fit: cover;';
        width: 100%;
        height: 100%;
        left: 0;
        opacity: .3;
        z-index: 99;
        -webkit-box-shadow: 11px 9px 34px -7px rgba(252,252,252,1);
        box-shadow: 11px 9px 34px -7px rgba(252,252,252,1);
    }

    .inner-banner h1 {
        font-size: 60px;
        position: relative;
        line-height: 60px;
        z-index: 990;
    }
}


@media (min-width: 1025px) {
    .modaal-gallery-item img {
        max-height: 700px;
        width: auto !important;
        margin: 0 auto;
    }

    .modaal-container {
        background: transparent !important;
    }

    .modaal-image .modaal-container {
        width: 100% !important;
        max-width: 80% !important;
    }

    .modaal-gallery-item {
        width: 100% !important;
        min-height: 500px !important;
    }
}

@media(min-width: 1200px){


    .inner-banner h1 {
        font-size: 76px;
    }

    .inner-banner img {
        -o-object-fit: cover;
           object-fit: cover;
        font-family: 'object-fit: cover;';
        width: 100%;
        height: 100%;
        left: 0;
        opacity: .3;
        z-index: 99;
        -webkit-box-shadow: 11px 9px 34px -7px rgba(252,252,252,1);
        box-shadow: 11px 9px 34px -7px rgba(252,252,252,1);
    }

}

@media(min-width: 1366px){

    .inner-banner { padding: 107px 0; }

    .inner-banner h1 { font-size: 76px; line-height: 76px; }
}
.intro_section {
    background-image: url(../img/intro_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 12px 0 37px;
}

    .intro_section .container {
        position: relative;
        z-index: 1;
    }

    .page-template-default .intro_section .container {
        max-width: 1200px;
    }

    .intro_section img {
        height: 376px;
        position: relative;
        -o-object-fit: cover;
        object-fit: cover;
        font-family: 'object-fit: cover;'; /* IE object-fit fix */
        z-index: 2;
        margin-top: 25px;
    }

    .intro_text h2 {
        font-size: 27px;
        line-height: 35px;
        color: #434247;
    }


@media(min-width: 768px) {

    .intro_section { padding: 52px 0 49px; }

    .intro_section img {
        float: none;
        position: relative;
        right: 0;
        width: 100%;
    }

    .intro_text h2{
        font-size: 44px;
        font-weight: 500;
        line-height: 50px;
    }

}

@media(min-width: 1025px) {

    .intro_section { padding: 76px 0 84px; }

    .intro_section img {
        position: absolute;
        right: 25px;
        width: 42%;
        top: 0;
        height: 100%;
        object-fit: scale-down;
        -o-object-fit: scale-down;
        font-family: 'object-fit: scale-down;';
        margin-top: 0;
    }

    .intro_text {
        width: 50%;
        padding: 0 15px 37px 0;
        min-height: 376px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: left;
    }

    .intro_text h2 { font-size: 46px; line-height: 52px; }

}

.buttons_cta {
    padding: 44px 0 47px;
    background-image: url(../img/inner_ctabg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.buttonitem { display: block; }

.button_title {
    font-size: 24px;
    font-weight: 500;
    display: block;
    margin-bottom: 20px;
    font-family: 'Lora', serif;
    color: #434247;
    position: relative;
}

.button_title:after {
    content: "\e901" !important;
    color: #000;
    content: '';
    display: block;
    position: absolute;
    right: 0;
    width: 27px;
    height: 40px;
    font-family: 'icomoon';
    top: 0;
    padding: 15px 0px 0;
    font-size: 16px;
    font-weight: 800;
}
.buttons_cta [class*="col-"]:last-of-type .button_title {
    margin-bottom: 0px;
}

.button_caption {
    background-color: #e1e1e1;
    padding: 20px;
    margin-bottom:;
}


.button_content p { display: block; margin: 0; padding: 0; }

.button_content .btn.btn-primary {
    font-size: 16px;
    line-height: 45px;
    margin-top: 20px;
    background-color: #5F6769;
}

@media(min-width: 768px) {

    .buttons_cta { padding: 42px 0; }

    .buttons_cta .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .buttons_cta [class*="col-"] {
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .buttonitem {
        margin-top: 0;
        position: relative;
        overflow: hidden;
        display: block;
        color: #3D4245 !important;
        height: 100%;
    }

    .button_title { font-size: 20px; margin-bottom: 0; padding: 0; font-weight: normal; }

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

    .button_caption {
        padding: 20px;
        height: calc(100% - 275px);
    }

    .buttonitem:hover .button_caption {
        bottom: 0;
    }

    .buttonitem:hover .button_content {
        opacity: 1;
        padding-top: 10px;
        display: block;
    }

    .button_title:after { display: none; }

}

@media(min-width: 1025px) {

    .buttons_cta { padding: 22px 0 52px; }


    .button_title { font-size: 24px; }

}


.main-content {
    background-image: url(../img/textbody_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 49px 0 52px;
}

.main-text {/* padding-bottom: 42px; */}

.main-text h2 {
    line-height: normal;
}

.main-text img {
    float: none;
}

.text_image { padding-top: 42px; }

.text_left { padding-top: 40px; }


@media(min-width: 768px) {

    .text_image {
        position: relative;
    }

    .text_left {
        width: 50%;
        padding-top: 0;
    }

    .main-text img {
        float: right;
        position: absolute;
        right: 0;
        width: 50%;
        height: auto;
        -o-object-fit: cover;
           object-fit: cover;
        font-family: 'object-fit: cover;';
        padding: 0 0 30px 30px;
        top: 42px;
    }

}


@media(min-width: 1025px) {

    .main-content {
        padding: 3rem 0;
    }

    .main-text img {
        width: 445px;
        height: 94%;
    }

}


@media(min-width: 1200px) {

    .main-text img { width: 553px; }

}


@media(min-width: 1366px) {

    .main-text img {
        width: 636px;
        top: 42px;
    }

}



.haltext_halfimage {
    background-image: url(../img/textbody_background.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.top_content { padding: 20px 0; }

.top_content ul { margin-top: 0; }

.inner-content h2,
.inner-content h3 { line-height: normal; }

.inner-content h2 { padding-bottom: 19px; }

.inner-content h2 { padding-bottom: 19px; }

.inner-content ul { margin: 0; }

.himage_htext {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0;
}

.himage_htext img {
    width: 80%;
    position: relative;
}

.htext__img {
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.htext_content { padding: 40px 0 48px; }

.htext_content h2 {
    padding-bottom: 20px;
    line-height: normal;
    font-weight: normal;
        color: #38424C;
}

.htext_content .container {
    width: calc(100% - 90px);
}

    @media(min-width: 768px) {

        .haltext_halfimage { font-size: 16px; }

        .htext_content { padding: 50px 0; }

        .himage_htext img {height: 353px;width: auto;}

        .top_content h2 { padding-bottom: 15px; }

        .htext__img {

                -webkit-box-pack: end;

                    -ms-flex-pack: end;

                        justify-content: flex-end;
        }


    }

    @media(min-width: 1025px) {

        .top_content { padding: 80px 0; }

        .top_content p { font-size: 16px !important; }

        .himage_htext img {
            /* height: 100%; */
            /* position: absolute; */
            /* width: 50%; */
        }

        .htext_content {
            width: 50%;
            float: right;
            padding: 80px 0;
        }

        .htext_content h2 {
            line-height: normal;
            padding-bottom: 10px;
            font-size: 43px;
        }

    }

    @media(min-width: 1200px) {

        .htext_content h2 { font-size: 46px; }

        .htext_content .container {
            /* padding-left: 48px; */
            max-width: 789px;
            margin: 0;
        }

        .himage_htext img {/* width: 42.6%; */}

        .htext_content {
            /* width: 57.4%; */
        }

    }

    @media(min-width: 1366px) {
        .htext_content .container {
            /* padding-left: 90px; */
            max-width: 600px;
        }

    }



/**
 * Innerpage Newsletter
*/

.block_banner.newsletter { padding: 40px 0 50px !important; }

.block_banner.newsletter form {
    padding: 0 !important;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.block_banner.newsletter input {
    height: 52px;
    margin: 0 !important;
}


#mailpoet_form_1 .mailpoet_paragraph {
    line-height: 20px;
    text-align: center;
    margin: 0 !important;
}

#mailpoet_form_1 .mailpoet_paragraph.last {
    margin-top: 25px !important;
}

#mailpoet_form_1 .mailpoet_validate_success { color: #fff !important; }

#mailpoet_form_1 .mailpoet_text {
    width: 100% !important;
    border: 1px solid #e2e2e2;
    padding-left: 15px;
}

#mailpoet_form_1 .mailpoet_submit {
    width: 240px;
    margin: 0 auto;
    background: none;
    border: none;
    background-color: #f4bf2e;
    color: #fff;
    height: 52px;
    position: relative;
    right: 0;
    top: 0;
    z-index: 999;
}

#mailpoet_form_1 .mailpoet_submit:hover {
    background-color: #5F6769 !important;
}

@media(min-width: 768px){

    #mailpoet_form_1 .mailpoet_paragraph.last {
        margin-top: 0 !important;
    }

    #mailpoet_form_1 .mailpoet_text {
        width: 100% !important;
        border: 1px solid #e2e2e2;
        padding-left: 15px;
        padding-right: 240px;
    }

    #mailpoet_form_1 .mailpoet_submit {
        width: 240px;
        margin: 0 auto;
        background: none;
        border: none;
        background-color: #f4bf2e;
        color: #fff;
        height: 52px;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 995;
    }


}


/**
 * Innerpage Testimonial Section
 */

.inner-testimonials {
    position: relative;
    display: block;
}

.inner-testimonials .testi_content {
    float: none;
    width: 100%;
}

.inner-testimonials .container {
    max-width: 1018px;
    padding: 0 25px;
    margin: 0 auto;
    float: none;
}

.inner-testimonials h2 {
    padding-bottom: 22px;
}

.innertext-content { padding-bottom: 30px; }

.innertext-content h3{ line-height: normal; }



/**
 *  Contact Section
 */

.page-contact-section {
    background-image: url(../img/intro_background.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
}

.page-contact-section .container h3 { padding-bottom: 20px; }

.page-contact-section [class*="col-"] { margin-bottom: 20px; }

.has-value { color: #719192; display: block;  }

@media(min-width: 1025px){

    .page-contact-section {
        padding: 49px 0 37px;
    }
}


/**
 * Page Contact
 */

.contact-section {
    max-width: 952px;
    margin: 0 auto;
    position: relative;
}

.contact-section img {
    height: 376px;
    position: relative;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    z-index: 2;
    width: 100%;
}

.contact_field {
    padding-top: 15px;
}

.contact_field label { font-weight: bold; display: block; font-size: 12px; }

.contact_field:first-child {
    padding-top: 0 !important;
}

.contact_content {
    padding-top: 25px;
}

.contact_content h3 {
    font-family: 'Quicksand', sans-serif;
    color: #444446;
    font-weight: 800;
}


@media(min-width: 1025px){

    .contact-section {
        max-width: 952px;
        margin: 0 auto;
        position: relative;
    }

    .contact-section img {
        position: absolute;
        left: 0;
        width: 55%;
        height: 100%;
        content: '';
        -o-object-fit: cover;
           object-fit: cover;
        font-family: 'object-fit: cover;';
        display: block;
        -o-object-position: center;
           object-position: center;
    }

    .contact_content {
        background-color: #fff;
        width: 45%;
        position: relative;
        float: right;
        height: 100%;
        padding: 51px 36px;
    }

    .contact_field label {
        font-size: 14px;
    }

    .contact_content h3 { padding-bottom: 20px; }

}


/**
 * Blog
*/

.article_container {
    display: block;
    -webkit-box-shadow: 0 4px 1px rgba(197,197,197,.2);
            box-shadow: 0 4px 1px rgba(197,197,197,.2);
    background: #fff;
    -webkit-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    width: 100%;
    color: #5F6769;
}

.page-content {
    background-color: #F1F3F5;
}

.post-item a h3,
.post-title {
    color: #434247;
    font-family: 'Lora', serif;
    line-height: normal;
    font-size: 24px;
}

.blog-section {
    padding: 40px 0;
    background-color: #F1F3F5;
}

.page-id-510 .blog-section {
    padding-top: 0;
}

.article_container img {
    width: 100%;
    margin: auto;
    height: auto;
    float: left;
}

.read-more {
    display: inline-block;
    text-transform: uppercase;
    color: #719192;
    position: relative;
}

.read-more i {
    position: absolute;
    right: -23px;
    font-size: 14px;
    font-family: 'Flaticon';
    font-weight: 500;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    top: 2px;
}

.read-more:hover i { right: -25px; }

.wpcf7-form-control.wpcf7-submit.btn.btn-primary:hover { border: 0; }

.blog-cta-block {
    background: #719192;
    color: #fff;
    padding: 50px;
    margin-top: 60px;
}

.blog-cta-block h2 {
    color: #fff;
}

.blog-cta-block .btn {
    margin: 10px;
}

    @media(min-width: 600px){

        .article_container img {
            width: auto;
            max-width: 250px;
            margin: 25px auto;
            height: auto;
            float: left;
            margin-right: 20px;
        }

    }

    @media(min-width: 768px){

        .post-item a h3,
        .post-title{ font-size: 32px; }

    }

    @media(min-width: 1025px) {

        .blog-section { padding: 80px 0;  }
        .page-id-510 .blog-section { padding-top: 20px;}
        .post-item a h3,
        .post-title{ font-size: 42px; }

    }


.widget { margin: 0 0 20px; }

.widget li { left: 0 !important; }

.widget h3 {
    font-family: 'Lora', sans-serif;
    background-color: #719192;
    color: #fff;
    font-size: 20px;
    padding: 20px;
    margin: 0;
}

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

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

.widget li {
    background-color: #EDEDED;
    display: block;
    list-style-type: none;
    padding: 0;
}

.widget li.current-cat a { color: #719192; }

.widget li:before { display: none; }

.widget li:nth-child(odd)  { background-color: #F7F7F7; }

.widget a {
    color: #102c36;
    display: block;
    padding: 20px;
}

.widget a:hover { color: #102c36; text-decoration: none;}

.search-submit { margin: 0 12px; }

.widget .wpcf7-list-item-label {
    display: inline;
    margin: 0 10px;
}


.widget_search label { display: none; }

.widget_search p { margin: 0; padding: 0; }

.widget_search form {
    position: relative;
    display: block !important;
    top: 0 !important;
    margin: 21px auto 0;
    border: none;
}


.widget_search [type="text"] {
    position: relative;
    width: 100% !important;
    padding: 5px 0 5px 10px;
    font-size: 14px;
    background-color: #fff;
    height: 42px;
    border: 1px solid #e2e2e2;
}

.widget_search [type="submit"] {
    width: 50px;
    padding: 10px 0 10px 10px;
    right: 0;
    border: none;
    position: absolute;
    top: 0;
    color: transparent;
    background: url(../img/search_icon.png) #5f6769;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
    height: 100%;
    margin-top: 0 !important;
}

.widget_search [type="submit"]:hover {
    background: url(../img/search_icon.png) #719192;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

.widget-popular-posts li { position: relative; }

.widget-popular-posts li span {
    padding: 0 20px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 12px;
    color: #719192;
    font-weight: 600;
}

@media(min-width: 768px){

    .widget {
        margin-left: 0;
        margin-right: 0;
    }

    .widget_search .search-field{
        width: 100% !important;
    }

    .widget_search .search-form::after{
        width: 97% !important;
        text-indent: 45px;
    }

}

@media(min-width: 1025px){
    .widget_search .search-form::after{
        text-indent: 55px;
    }
}

@media(min-width: 768px){

    .widget {
        margin-left: 0;
        margin-right: 0;
    }

    .widget_search .search-field{
        width: 95% !important;
    }

    .widget_search .search-form::after{
        width: 97% !important;
        text-indent: 45px;
    }

}

@media(min-width: 1025px){
    .widget_search .search-form::after{ text-indent: 55px; }
}

/**
 * Page 404
 */

.error_content .container {
    padding: 50px 0;
}

.error404 .button_caption {
    bottom: 0;
    height: auto;
}

#wp-realtime-sitemap-pages { padding-top: 30px; }

#wp-realtime-sitemap-pages a { font-size: 16px; }


/**
 * Search Results
 */

.search-results .widget_categories,
.search-results .post-item__meta { display: none; }
.search-results .tab-content h3 { padding-bottom: 20px; }


/** * Page Our Staff * **/

.page-template-page-team  .buttons_cta {
    background-image: none;
}

.staff_position {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2em;
    margin-top: 15px;
}

.teamimg-wrapper {
    height: 275px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .teamimg-wrapper {
        height: auto;
    }

    .buttonitem {
        margin-bottom: 30px;
    }
}


/**
  * Brochure
  */

@media (max-width: 599px) {

    [class*="-flip-book"] { display: none; }

}



/**
  * Page-footer
  */

.page-footer {
    padding: 61px 0 0;
}

.page-footer .h3 a {
    font-weight: 800 !important;
    color: #434039 !important;
}

.page-footer a {
    color: #424038 !important;
    font-weight: 500;
}

.page-footer ul{
    padding: 0;
    margin: 0;
}

.flogo_section {
    text-align: center;
    padding-bottom: 0;
}

.flogo_section a { display: block; }

.carf_flogo { padding-top: 21px; }

.menu_mobile { margin-top: 16px; }

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

.menu_mobile .h3 a {
    color: #424038;
    display: block !important;
    padding-top: 15px;
    line-height: normal;
    font-size: 14px;
    font-weight: bold;
}

.menu_mobile li.h3 { font-size: 14px !important; }

.menu_mobile .h3:first-child a{
    padding-top: 0 !important;
}

.menu_mobile .h3:last-child a{
    padding-bottom: 10px !important;
}

.fcontact_section { font-weight: 500; font-size: 14px; }

.fcontact_section a { color: #424038; padding-left: 11px; display: inline-block; font-size: 14px; }

.fcontact_section .mailto { padding-left: 0;  }

.fcontact_section address { font-style: normal; }

.smedia { padding-top: 10px; }

.contact-smedia { display: inline; }

.contact-smedia a { padding-right: 10px; }

.fcontact_section a:first-child { padding-left: 0; }

.smedia a span { font-size: 20px; }

.contact-smedia.smedia a span {
    font-size: 30px;
}

.smedia a span.icon-twitter-square {
    font-size: 24px;
    position: relative;
    top: 1px;
}

.smedia a:hover span { color: #678688; }


.page-footer a.back-to-top {
    display: inline-block;
    padding: 4px 15px 4px 23px;
    background-color: #5f6769;
    color: #fff !important;
    font-weight: 500;
    font-size: 15px;
    text-transform: capitalize;
    position: relative;
    text-align: center;
    margin: 30px 0;
    cursor: pointer;
    z-index: 1
}


.back-to-top .icon-ctrl {
    display: inline-block;
    position: relative;
    top: 8px;
    font-size: 18px;
    font-family: 'icomoon';
    z-index: 2;
    font-weight: 300;

}

.sticky-btn {
    position: fixed;
    bottom: 8px;
    right: 10px;
    z-index: 999;
    width: auto;
    text-align: right;
    display: none; /* remove when Crisp is reenabled */
}

.sticky-btn .btn {
    color: #fff !important;
    font-weight: normal;
    padding: 0px 52px;
    height: 68px;
    font-size: 21px;
}

.sticky-btn .btn-primary { background-color: #3c4245; }

.sticky-btn .btn.btn-secondary { font-size: 21px; }

.sticky-btn .btn.btn-secondary:before {
    max-height: 96%;
    max-width: 96%;
    content: '';
    left: 3px;
    display: block;
    position: absolute;
    top: 3px;
    border: 1px solid #fff;
    width: 100%;
    height: 75%;
    margin: 0 auto;
    opacity: 0;
    -webkit-transition: .30s;
    -o-transition: .30s;
    transition: .30s;
}

.sticky-btn .btn span {
    display: inline-block;
    font-size: 24px;
    padding-right: 7px;
    position: relative;
    top: 3px;
    font-weight: normal;
}


.fnav_list .h3 a,
.fnav_list h3 a,
.fnav_list .h3 {
    font-family: 'Quicksand', sans-serif;
    font-weight: bold;
}


@media(min-width: 768px){

    .flogo_section a { display: inline-block; }

    .carf_flogo {
        margin-left: 40px;
        padding-top: 0;
    }

    .fnav_list .h3,
    .fnav_list h3 {
        font-size: 14px;
        list-style: none;
    }

    .fnav_list {
        float: left;
        width: 33.3%;
        height: 185px;
    }

    .fnav_list li {
        font-size: 14px;
        list-style: none;
    }

    .page-footer a.back-to-top { margin-top: 0 !important; }

    .flogo_section { padding-bottom: 26px; }

    .page-footer .h3 a,
    .page-footer .h3 {
        padding-bottom: 5px;
        display: block;
    }

}

@media(min-width: 1025px){

    .page-footer {
        padding: 72px 0 0;
    }

    .page-footer a { font-size: 14px; }


    .fnav_list .h3 a,
    .fnav_list h3 a,
    .fnav_list .h3 {
        font-size: 16px;
        list-style: none;
        font-weight: bold;
        padding-bottom: 5px;
        color: #434039 !important;
    }

    .fnav_list .h3 a,
    .fnav_list h3 a,
    .fnav_list .h3 {
        padding-bottom: 5px;

    }


    .flogo_section { text-align: left !important; }


    .ftop_section { position: relative;   }

    .fnav_section {
        padding-top: 34px;
        display: block;
        padding-right: 20px;
    }

    .carf_flogo { margin-left: 52px; }

    .page-footer a.back-to-top {
        position: absolute;
        right: 0;
        bottom: 12px;
    }

    .fnav_list {
        float: left;
        width: 18%;
        height: 248px;

    }

    .fnav_list:first-of-type {
        width: 10%;
    }

    .fnav_list:nth-last-of-type(2) {
        width: 10%;
    }

    .fnav_list:last-of-type {
        padding-top: 0 !important;
        padding-right: 20px;
    }
}


@media(min-width: 1366px){
    .page-footer a.back-to-top {
        right: 18px;
    }

    .fnav_list:last-of-type {
        padding-left: 40px;
        padding-right: 0;
    }
}



.copyright {
    background-color: #3c4245;
    padding: 8px 0;
    text-align: center;
}

.copyright .container {
    position: relative;
}


.copyright ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: inline-block;
}

.copyright ul li{
    display: inline-block;
    margin-left: 15px;
}

.copyright ul li:first-child{
    margin-left: 0;
}

.copyright ul a{
   color: #fff !important;
    display: inline-block;
    font-size: 14px;
    padding: 0px 2px;
}

.copyr_text {
   color: #fff;
    font-size: 14px;
    display: block;
    line-height: normal;
}


@media(min-width: 768px) {

    .copyright { text-align: left; }

    .copyr_text {
        position: absolute;
        right: 25px;
        top: 4px;
    }

    .copyright ul li {
        margin-left: 25px;
    }


}


@media(min-width: 1025px) {

    .copyright { text-align: left; }

    .copyr_text {
        position: absolute;
        right: 249px;
        top: 6px;
    }
}

@media(min-width: 1480px) {

    .copyright { text-align: left; }

    .copyr_text {
        right: 40px;
    }
}


body .crisp-client .crisp-1rjpbb7[data-full-view="true"] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06,
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 {
    width: 228px !important;
    height: 68px !important;
    border-radius: 0px !important;
    background: none !important;
    z-index: 99 !important;
}
body .crisp-client .crisp-1rjpbb7[data-last-operator-face="false"] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing="false"] {
    background-image: none !important;
}

body .crisp-client .crisp-1rjpbb7[data-last-operator-face="false"] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing="false"] {
    background-image: none !important;
}

body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx,
body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr {
    right: 10px !important;
    bottom: 9px !important;
}

body .crisp-client .crisp-1rjpbb7 .crisp-17f70m7 {
    background-image: none !important;
    background-color: #719192 !important;
}

body .crisp-client .crisp-1rjpbb7 .crisp-ws3gf1 {
    background-color: #719192 !important;
}

body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg[data-tile="eyes"]::before {
    background-image: none !important;
}


/* hide header on get help template */
.page-template-page-get-help-now .inner-banner { display: none; }

.page-template-page-get-help-now .main-content {
        padding: 12px 0;
    }

@media (min-width: 1025px) {
    .page-template-page-get-help-now .main-content {
        padding: 35px 0;
    }
}



/**
 * 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 {
        page-break-after: avoid;
    }

    figure, table {
        -webkit-column-break-inside: avoid;
           -moz-column-break-inside: avoid;
                break-inside: avoid;
        page-break-inside: avoid;
    }

    p {
        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 .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;
    }


}


/*------------------------------------*\
    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; }
      img.hidden-xs-down { display: block !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; }
}



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



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

}

@media (max-width:768px){
    .img-responsive{
        width: 100%;
    }
    .intro_section img{
        -o-object-fit: contain;
           object-fit: contain;
        font-family: 'object-fit: contain;';
        height: auto;
    }

}

/* YoutTube Plugin Color Overrides */
.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true], .plyr__control--overlaid {
    background: rgb(113 145 146) !important;
}
.plyr--full-ui input[type=range] {
    color: rgb(113 145 146) !important;
}
.plyr__control.plyr__tab-focus {
    -webkit-box-shadow: 0 0 0 5px rgba(113,145,146,.5) !important;
    box-shadow: 0 0 0 5px rgba(113,145,146,.5) !important;
}
