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

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

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

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

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

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

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

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

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

.object-fit-contain {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain';
  -o-object-position: center;
  object-position: center;
}

@media (min-width: 300px) and (max-width: 600px) {

  img.alignright,
  .wp-caption.alignright {
    float: none;
    margin: 0 0 10px 0;
    max-width: 100%;
  }
}

/*------------------------------------*\
    Typography
\*------------------------------------*/
/* Please set up line-heights in ems */
html {
  scroll-behavior: smooth;
}

body {
  color: #404041;
  font: 15px/1.8em 'Roboto', sans-serif;
  /*27px*/
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.page-body {
  min-height: 47vh;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4 {
  margin: 0;
  padding: 0;
  font-weight: 300;
  line-height: 1.2em;
}

h1, .h1,
h2, .h2 {
  font-size: 25px;
  padding-bottom: 0.8em;
  /*20px*/
}

h3, .h3 {
  font-size: 30px;
  padding-bottom: 0.533em;
  /*16px*/
}

h4, .h4 {
  font-size: 20px;
  padding-bottom: 0.7em;
  /*14px*/
  /* color: #004976; */
}

.title:before {
  content: "\f11c";
  font-family: 'Flaticon';
  color: #dc6b2f;
}

.title-sub-heading {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.235em;
  /*21px*/
  padding-bottom: 1.765em;
  /*30px*/
  color: #004976;
}

p, ul, ol {
  margin: 0;
  padding: 0;
  padding-bottom: 1.8em;
  /*27px*/
}

ul, ol {
  list-style: none;
}

.page-content ul,
.page-body ul,
ol {
  list-style: none;
  padding-left: 1.8em;
  /*27px*/
}

.page-content ul li,
.page-body ul li {
  list-style-type: disc;
}

.page-content .selectric-items ul li,
.page-body .selectric-items ul li,
.widget ul li {
  background: none;
}

.widget ul {
  padding-left: 0;
}

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

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

blockquote {
  background-color: #f3f3f3;
  font-size: 15px;
  line-height: 1.467em;
  /*22px*/
  margin: 2em 0 4em 0;
  /*30px*/
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

blockquote::before {
  content: "\f110";
  font-family: 'Flaticon';
  color: #dc6b2f;
  font-size: 50px;
  line-height: 1em;
  text-align: center;
  padding: 21px 30px 28px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.grey-bg blockquote {
  background-color: #fff;
}

blockquote p {
  padding: 10px !important;
  padding-left: 0;
}

@media (max-width:500px) {
  blockquote::before {
    position: absolute;
    width: 100%;
    top: -7px;
    padding-right: 0px;
    padding-left: 0px;
  }

  blockquote p {
    padding-top: 90px;
    padding-left: 30px;
    width: 100%;
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  h1, .h1 {
    font-size: 25px;
  }

  h2, .h2,
  h3, .h3 {
    font-size: 30px;
    padding-bottom: 0.867em;
    /*26px*/
  }

  h4, .h4 {
    font-size: 20px;
    padding-bottom: 1em;
    /*20px*/
  }

  .title-sub-heading {
    font-size: 20px;
    line-height: 1.3em;
    /*26px*/
    padding-bottom: 1em;
    /*20px*/
  }
}

@media (min-width: 1025px) {
  h1, .h1 {
    font-size: 50px;
  }

  h2, .h2 {
    font-size: 40px;
    padding-bottom: .5em;
  }

  .title {
    background-position: 0 8px;
  }

  .title {
    padding-left: 2.1rem;
    /*42px base 20px*/
  }
}

@media (min-width: 1200px) {
  .title-sub-heading {
    padding-bottom: 0;
    padding-left: 2.1em;
    /*42px*/
  }
}

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

::selection {
  color: #fff;
  background: #dc6b2f;
}

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

@media (min-width: 1200px) {

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

.container {
  max-width: 1366px;
}

/**
 * Grid System
 *
 * Bootstrap v3.3.1 (https://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: https://getbootstrap.com/css/#grid
 * -------------------------------------------------------------------------- */
.row {
  margin-left: -20px;
  margin-right: -20px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Clearfix
 * Apply clearing without adding additional markup
 */
.clearfix:before, .clearfix:after,
.container:before, .container:after,
.container-fluid:before, .container-fluid:after,
.row:before, .row:after {
  content: " ";
  display: table;
}

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

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

    e.g. an object shouldn't rely on trump helpers to apply padding etc.
\*--------------------------------------------------------------*/
/**
 * Buttons
 */
.btn {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font: 700 15px 'Roboto', sans-serif;
  letter-spacing: 0.001em;
  line-height: 1em;
  padding: 1em 2.5em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: #db6b30;
  border: 2px solid #db6b30;
  color: #fff;
}

.btn-primary:hover {
  background-color: #b65420;
  border: 2px solid #b65420;
  color: #fff;
}

.btn-secondary {
  border: 2px solid #a5a5a5;
  background-color: #a5a5a5;
  color: #000;
}

.btn-secondary:hover {
  border: 2px solid #d3d3d3;
  background-color: #d3d3d3;
  color: #000;
}

.btn-tertiary {
  background-color: #404042;
  border: 2px solid #404042;
}

.btn-tertiary:hover {
  background-color: transparent;
  color: #000;
}

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

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

@media (min-width: 768px) {
  .btn {
    font-size: 15px;
    line-height: 1em;
    padding: 1.133em 2.867em;
    /*17px 43px*/
  }
}

/**
 * Icons
 */
@font-face {
  font-family: "Flaticon";
  src: url("../icons/Flaticon.eot");
  src: url("../icons/Flaticon.eot?#jvzugl") 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-style: normal;
}

.flaticon-smartphone:before {
  content: "\f100";
}

.flaticon-loupe:before {
  content: "\f101";
}

.flaticon-dialogue:before {
  content: "\f102";
}

.flaticon-right-arrow:before {
  content: "\f103";
}

.flaticon-left-arrow:before {
  content: "\f104";
}

.flaticon-carton:before {
  content: "\f105";
}

.flaticon-drinks:before {
  content: "\f106";
}

.flaticon-filter:before {
  content: "\f107";
}

.flaticon-fruit:before {
  content: "\f108";
}

.flaticon-pouch:before {
  content: "\f109";
}

.flaticon-lightbulb:before {
  content: "\f10a";
}

.flaticon-youtube:before {
  content: "\f10b";
}

.flaticon-linkedin:before {
  content: "\f10c";
}

.flaticon-maps-and-flags:before {
  content: "\f10d";
}

.flaticon-printer:before {
  content: "\f10e";
}

.flaticon-maps:before {
  content: "\f10f";
}

.flaticon-quote:before {
  content: "\f110";
}

.flaticon-up-arrow:before {
  content: "\f111";
}

.flaticon-play-button:before {
  content: "\f112";
}

.flaticon-menu:before {
  content: "\f113";
}

.flaticon-call:before {
  content: "\f114";
}

.flaticon-email:before {
  content: "\f115";
}

.flaticon-facebook:before {
  content: "\f116";
}

.flaticon-right-arrow-2:before {
  content: "\f117";
}

.flaticon-left-arrow-2:before {
  content: "\f118";
}

.flaticon-down-arrow:before {
  content: "\f119";
}

.flaticon-down-arrow-2:before {
  content: "\f11a";
}

.flaticon-up-arrow-2:before {
  content: "\f11b";
}

.flaticon-title-bg:before {
  content: "\f11c";
}

.flaticon-square:before {
  content: "\f11d";
}

.flaticon-minus:before {
  content: "\f11e";
}

.flaticon-linkedin-nobkg:before {
  content: "\e900";
}

.flaticon-facebook-nobkg:before {
  content: "\e901";
}

.flaticon-youtube-nobkg:before {
  content: "\e902";
}

.flaticon-twitter:before {
  content: "\e903";
}

/**
 * Tables
 */
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #cacaca;
  margin: 80px 0;
}

thead {
  background: #cacaca;
  padding: 18px 0;
}

td, th {
  padding: 18px 5px;
  text-align: center;
}

td {
  border: 1px solid #cacaca;
  font-size: 16px;
}

thead+tbody tr:first-child {
  background: #f5f5f5;
  font-weight: 700;
}

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

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

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

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

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

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

@media (max-width: 600px) {
  table {
    display: block;
    overflow-x: auto;
  }
}

/**
 * Forms
 */
label {
  display: block;
  margin-bottom: 5px;
}

input {
  width: 100%;
  margin-bottom: 25px;
}

label span {
  color: #dc6b2f;
}

textarea {
  border: 1px solid #ccc;
  border-color: #ccc;
  width: 100%;
  height: 150px;
  line-height: 52px;
  margin-bottom: 25px;
  padding: 0 10px;
}

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

input:focus,
button:focus {
  outline: 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 #ccc;
  height: 47px;
  line-height: 52px;
  padding: 0 10px;
}

/* Default Submit Button Style */
[type="submit"] {
  background-color: #db6b30;
  border: 2px solid #db6b30;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font: 700 15px 'Roboto', sans-serif;
  line-height: 1em;
  padding: 1em 2.667em;
  text-align: center;
  text-transform: uppercase;
  transition: all .3s;
}

[type="submit"]:hover {
  background-color: #b65420;
  border: 2px solid #b65420;
  color: #fff;
  text-decoration: none;
}

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

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

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

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

.search-desktop input::-webkit-input-placeholder {
  color: #fff;
}

.search-desktop input::-moz-placeholder {
  color: #fff;
}

.search-desktop input:-ms-input-placeholder {
  color: #fff;
}

.search-desktop input::-ms-input-placeholder {
  color: #fff;
}

.search-desktop input::placeholder {
  color: #fff;
}

@media (min-width: 768px) {
  [type="submit"] {
    font-size: 15px;
  }
}

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

input:focus,
textarea:focus {
  border-color: #000;
}

input[type="submit"] {
  width: auto;
  padding: 17px 50px 14px 50px;
}

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

.selectric-responsive {
  width: 100%;
}

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

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  margin: 6px 50px 6px 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: 50px;
  height: 50px;
  line-height: 38px;
  background-color: #fff;
  border-left: 1px solid #BBB;
  color: #BBB;
  text-align: center;
  font: 0/0 a;
  *font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}

.selectric .button:after {
  content: "\f111";
  font: 14px 'Flaticon';
  color: #BBB;
  position: absolute;
  top: 17px;
  right: 17px;
  width: 16px;
  height: 16px;
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

.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 {
  display: block;
  color: #dc6b2f;
}

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

/* Styling for fields that have errors */
select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .selectric {
  border-color: #dc6b2f;
  margin-bottom: 5px;
}

/**
 * Breadcrumbs
 */
.breadcrumbs {
  padding-top: 15px;
}

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

.breadcrumbs li {
  margin: 0;
  background: none !important;
  font-size: 15px;
  font-weight: 300;
  line-height: .8em;
  color: #404041;
  display: inline;
  padding-left: 0px !important;
}

.breadcrumbs a {
  color: #404041;
  font-weight: 300;
}

.breadcrumbs a,
.breadcrumbs .breadcrumb_last {
  padding-left: 5px;
  padding-right: 5px;
}

.breadcrumbs li:first-child,
.breadcrumbs li:first-child a {
  padding-left: 0;
}

/**
 * Pagination
 */
.wp-pagenavi {
  padding-top: 100px;
  padding-left: 18px;
}

.wp-pagenavi .pages,
.wp-pagenavi a,
.wp-pagenavi span {
  border: 1px solid #c7c8ca;
  color: #dc6b2f;
}

.wp-pagenavi a,
.wp-pagenavi span {
  text-decoration: none;
  padding: 10px 15px;
  margin: 2px;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  background-color: #dc6b2f;
  border: 1px solid #dc6b2f;
  color: #fff;
}

/**
 * Sliders/Carousels
 * Slick Slider - https://kenwheeler.github.io/slick/
 */
/* General styling */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

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

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

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

/* Preload affect */
.slick-slider .slide {
  display: none;
}

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

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

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

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

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

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

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: .25;
}

.slick-prev:before,
.slick-next:before {
  font-family: 'Flaticon';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #c7c8ca;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '\f104';
}

[dir='rtl'] .slick-prev:before {
  content: '\f103';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '\f103';
}

[dir='rtl'] .slick-next:before {
  content: '\f104';
}

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

ul.slick-dots {
  padding: 0;
}

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

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

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

/* Custom styling per slider/carousel */
.banner .slick-arrow {
  position: absolute;
  width: 45px;
  height: 45px;
  background-color: #fff;
  bottom: -24px;
  top: auto;
  z-index: 9;
  border: none;
  color: #c7c8ca;
  cursor: pointer;
  font-size: 0;
}

.banner .slick-prev {
  left: 15px;
  border-top-left-radius: 10px
}

.banner .slick-next {
  left: 60px;
  border-top-right-radius: 10px;
  border-left: 1px solid #efefef;
}

.company-logo .slick-arrow {
  top: 50%;
  z-index: 10;
}

.company-logo .slick-prev {
  left: -15px;
}

.company-logo .slick-next {
  right: -15px;
}

.product-gallery-slider {
  border: 1px solid #c8c8c8;
  margin-bottom: 15px;
}

.product-gallery-nav .slider-item {
  border: 1px solid #c8c8c8;
  cursor: pointer;
  margin-left: 5px;
  margin-right: 5px;
}

.product-gallery-slider .slider-item {
  height: 400px;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit:contain';
}

.product-gallery-slider .slider-item img {
  object-fit: cover;
  height: 100%;
}

.thumb--has_video::after,
.blog-video__link.has-video::after {
  content: "";
  display: block;
  height: 80px;
  width: 80px;
  position: absolute;
  z-index: 9;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
  pointer-events: none;
  background-size: contain;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnN2Z2pzPSJodHRwOi8vc3ZnanMuY29tL3N2Z2pzIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgeD0iMCIgeT0iMCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgoJPGc+CgkJPHBhdGggZD0iTTI1NiwwQzExNC44MzMsMCwwLDExNC44NDQsMCwyNTZzMTE0LjgzMywyNTYsMjU2LDI1NnMyNTYtMTE0Ljg0NCwyNTYtMjU2UzM5Ny4xNjcsMCwyNTYsMHogTTM1Ny43NzEsMjY0Ljk2OSAgICBsLTE0OS4zMzMsOTZjLTEuNzUsMS4xMzUtMy43NzEsMS42OTgtNS43NzEsMS42OThjLTEuNzUsMC0zLjUyMS0wLjQzOC01LjEwNC0xLjMwMkMxOTQuMTI1LDM1OS40OSwxOTIsMzU1LjkwNiwxOTIsMzUyVjE2MCAgICBjMC0zLjkwNiwyLjEyNS03LjQ5LDUuNTYzLTkuMzY1YzMuMzc1LTEuODU0LDcuNjA0LTEuNzQsMTAuODc1LDAuMzk2bDE0OS4zMzMsOTZjMy4wNDIsMS45NTgsNC44OTYsNS4zNDQsNC44OTYsOC45NjkgICAgUzM2MC44MTMsMjYzLjAxLDM1Ny43NzEsMjY0Ljk2OXoiIGZpbGw9IiNmZmZmZmYiIGRhdGEtb3JpZ2luYWw9IiMwMDAwMDAiIGNsYXNzPSIiPjwvcGF0aD4KCTwvZz4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8L2c+PC9zdmc+);
}

.product-gallery-slider .has-video::after,
.thumb--has_video::after {
  background: #fff;
  border-radius: 100%;
  color: #dc6b2f;
  content: "\f112";
  font-family: Flaticon;
  font-style: normal;
  font-size: 21px;
  line-height: 1;
}

.thumb--has_video,
.blog-video__link.has-video {
  position: relative;
}

.thumb--has_video::after {
  height: 20px;
  width: 20px;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
}

/* .fx_video .blog-video__link:after {
	content: "";
	display: block;
	height: 80px;
	width: 80px;
	position: absolute;
	z-index: 9;
	left: calc(50% - 40px);
	top: calc(50% - 40px);
	pointer-events: none;
	background-size: contain;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnN2Z2pzPSJodHRwOi8vc3ZnanMuY29tL3N2Z2pzIiB3aWR0aD0iNTEyIiBoZWlnaHQ9IjUxMiIgeD0iMCIgeT0iMCIgdmlld0JveD0iMCAwIDUxMiA1MTIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDUxMiA1MTIiIHhtbDpzcGFjZT0icHJlc2VydmUiIGNsYXNzPSIiPjxnPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgoJPGc+CgkJPHBhdGggZD0iTTI1NiwwQzExNC44MzMsMCwwLDExNC44NDQsMCwyNTZzMTE0LjgzMywyNTYsMjU2LDI1NnMyNTYtMTE0Ljg0NCwyNTYtMjU2UzM5Ny4xNjcsMCwyNTYsMHogTTM1Ny43NzEsMjY0Ljk2OSAgICBsLTE0OS4zMzMsOTZjLTEuNzUsMS4xMzUtMy43NzEsMS42OTgtNS43NzEsMS42OThjLTEuNzUsMC0zLjUyMS0wLjQzOC01LjEwNC0xLjMwMkMxOTQuMTI1LDM1OS40OSwxOTIsMzU1LjkwNiwxOTIsMzUyVjE2MCAgICBjMC0zLjkwNiwyLjEyNS03LjQ5LDUuNTYzLTkuMzY1YzMuMzc1LTEuODU0LDcuNjA0LTEuNzQsMTAuODc1LDAuMzk2bDE0OS4zMzMsOTZjMy4wNDIsMS45NTgsNC44OTYsNS4zNDQsNC44OTYsOC45NjkgICAgUzM2MC44MTMsMjYzLjAxLDM1Ny43NzEsMjY0Ljk2OXoiIGZpbGw9IiNmZmZmZmYiIGRhdGEtb3JpZ2luYWw9IiMwMDAwMDAiIGNsYXNzPSIiPjwvcGF0aD4KCTwvZz4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPgo8L2c+CjxnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjwvZz4KPGcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPC9nPgo8L2c+PC9zdmc+);
}

.fx_video .blog-video__link {
    position: relative;
    display: block;
    max-height: 100%;
    overflow: hidden;
}

.fx_video  .blog-video__link__img {object-position: center;height: 500px;} */
.banner-slider video {
  margin: 0px auto;
  display: block;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
}

.banner-slider video {
  width: 100vw;
}

@media (max-width: 1025px) {
  .product-gallery-slider .slider-item {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .product-gallery-slider .slider-item {
    height: 250px;
  }
}

.product-gallery-slider .slider-item,
.product-gallery-nav .slider-item {
  position: relative;
}

.product-gallery-slider .slider-item .flaticon-play-button,
.product-gallery-nav .slider-item .flaticon-play-button {
  position: absolute;
  color: #dc6b2f;
  top: 0;
  left: 0;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: .3s all ease-in-out;
  -o-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

.product-gallery-slider .slider-item .flaticon-play-button {
  font-size: 60px;
}

.product-gallery-slider .slider-item .flaticon-play-button:hover {
  opacity: .85;
}

.product-gallery-nav .slider-item .flaticon-play-button {
  font-size: 28px;
}

@media (min-width: 1366px) {
  .banner .slick-prev {
    left: 50%;
    margin-left: -661px;
  }

  .banner .slick-next {
    left: 50%;
    margin-left: -616px;
  }

  .product-gallery-slider .slider-item .flaticon-play-button {
    font-size: 90px;
  }
}

/**
 * FancyBox
 */
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  z-index: 999999;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  -webkit-transition-duration: inherit;
  -o-transition-duration: inherit;
  transition-duration: inherit;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(.47, 0, .74, .71);
  -o-transition-timing-function: cubic-bezier(.47, 0, .74, .71);
  transition-timing-function: cubic-bezier(.47, 0, .74, .71);
}

.fancybox-is-open .fancybox-bg {
  opacity: .9;
  -webkit-transition-timing-function: cubic-bezier(.22, .61, .36, 1);
  -o-transition-timing-function: cubic-bezier(.22, .61, .36, 1);
  transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
  -o-transition: opacity .25s ease, visibility 0s ease .25s;
  transition: opacity .25s ease, visibility 0s ease .25s;
  visibility: hidden;
  z-index: 999999;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  -o-transition: opacity .25s ease 0s, visibility 0s ease 0s;
  transition: opacity .25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  z-index: 999999;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  white-space: normal;
  width: 100%;
  z-index: 999999;
}

.fancybox-slide::before {
  content: '';
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  -webkit-animation-timing-function: cubic-bezier(.5, 0, .14, 1);
  animation-timing-function: cubic-bezier(.5, 0, .14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 999999;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, .6);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color .2s;
  -o-transition: color .2s;
  transition: color .2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: .8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: -o-linear-gradient(bottom,
      rgba(0, 0, 0, .85) 0%,
      rgba(0, 0, 0, .3) 50%,
      rgba(0, 0, 0, .15) 65%,
      rgba(0, 0, 0, .075) 75.5%,
      rgba(0, 0, 0, .037) 82.85%,
      rgba(0, 0, 0, .019) 88%,
      rgba(0, 0, 0, 0) 100%);
  background: -webkit-gradient(linear,
      left bottom, left top,
      from(rgba(0, 0, 0, .85)),
      color-stop(50%, rgba(0, 0, 0, .3)),
      color-stop(65%, rgba(0, 0, 0, .15)),
      color-stop(75.5%, rgba(0, 0, 0, .075)),
      color-stop(82.85%, rgba(0, 0, 0, .037)),
      color-stop(88%, rgba(0, 0, 0, .019)),
      to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top,
      rgba(0, 0, 0, .85) 0%,
      rgba(0, 0, 0, .3) 50%,
      rgba(0, 0, 0, .15) 65%,
      rgba(0, 0, 0, .075) 75.5%,
      rgba(0, 0, 0, .037) 82.85%,
      rgba(0, 0, 0, .019) 88%,
      rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  -webkit-animation: fancybox-rotate 1s linear infinite;
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: .7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, .25, 1);
  -o-transition-timing-function: cubic-bezier(0, 0, .25, 1);
  transition-timing-function: cubic-bezier(0, 0, .25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  -webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
  -o-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
  transition-timing-function: cubic-bezier(.19, 1, .22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(1.5, 1.5, 1.5);
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(.5, .5, .5);
  transform: scale3d(.5, .5, .5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: rotate(-360deg);
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  -webkit-transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
  transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  -webkit-transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
  transform: translate3d(100%, 0, 0) scale(.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }

  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}

/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  -webkit-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, .1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: '';
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all .2s cubic-bezier(.25, .46, .45, .94);
  -o-transition: all .2s cubic-bezier(.25, .46, .45, .94);
  transition: all .2s cubic-bezier(.25, .46, .45, .94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}

.fancybox-button--close {
  margin: 36px 8px;
}

/* --------------------------------------------------*\
    UI
    UI peices are site specific non generic styles.
    eg: header, footer, sidebar, page specific styles
\* -----------------------------------------------------*/
/**
 * Page-head
 */
.page-header {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #fff;
  z-index: 99999;
  position: relative;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  box-shadow: 0 0 10px rgba(0, 0, 0, .1)
}

.top-header {
  background-color: #dc6b2f;
  padding: 0;
  margin: 0;
}

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

.top-header li {
  margin: 0;
  padding: 0;
  float: left;
  width: 50%;
  background: none;
  font-size: 12px;
  line-height: 28px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.top-header li:last-child {
  border: none;
}

.top-header a {
  color: #fff;
  display: block;
  font-weight: 400;
  padding: 8px;
}

.top-header a:hover {
  color: #000;
  text-decoration: none;
}

.middle-header {
  margin: 0;
  padding: 0;
  position: relative;
}

.logo {
  width: 117px;
  padding: 7px 0 7px 0;
  float: left;
}

.logo a {
  display: block;
}

.logo img {
  width: 100%;
  display: block;
}

.right-header {
  float: right;
  padding: 11px 0;
}

.icon-menu {
  font-size: 10px;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  padding-top: 0;
  cursor: pointer;
  float: right;
  line-height: 1.8em;
  margin-top: .7em;
}

.icon-menu i {
  display: block;
  font-size: 25px;
}

.search-icon {
  color: #000;
  cursor: pointer;
  color: #000;
  font-size: 26px;
  float: left;
  margin-right: 30px;
  padding-top: 7px;
}

.header-info {
  float: left;
  padding: 0 0;
}

.header-info ul {
  padding: 0;
  margin: 0;
}

.header-info li {
  padding: 0 17px 0 0;
  margin: 0;
  font-size: 13px;
  float: left;
}

.header-info a {
  display: block;
  font-weight: 400;
  color: #fff;
  background-color: #dc6b2f;
  padding: 11px 12px;
}

.header-info li i {
  padding-right: 5px;
}

.search-tab {
  float: left;
  border: 1px solid #c7c8ca;
  height: 49px;
  padding: 0 15px;
  width: 100%;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  display: none;
}

.search-tab input {
  border: none;
  height: 47px;
  width: 100%;
  padding-right: 28px;
  font: 13px 'Roboto', sans-serif;
}

.search-tab input::-webkit-input-placeholder {
  color: #9a9a9a;
}

.search-tab input::-moz-placeholder {
  color: #9a9a9a;
}

.search-tab input:-ms-input-placeholder {
  color: #9a9a9a;
}

.search-tab input:-moz-placeholder {
  color: #9a9a9a;
}

.search-tab button {
  border: none;
  background: none;
  position: absolute;
  font-size: 22px;
  top: 13px;
  right: 5px;
  cursor: pointer;
  padding: 0;
  color: #000;
}

.right-header-desktop {
  padding: 17px 0 0 0;
  float: right;
}

.call-ph {
  float: left;
  padding: 0 30px 0 0;
}

.call-ph a {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #404041;
  background-color: #FFF;
  line-height: 3em;
  letter-spacing: .6px;
}

.call-ph a:hover {
  color: #db6b30;
  text-decoration: none;
}

.request {
  float: right;
  text-transform: uppercase;
}

.request a {
  display: block;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 700;
  background: #db6b30;
  color: #FFF;
  line-height: 3em;
  letter-spacing: .6px;
}

.request a:hover {
  background: #b65420;
  color: #FFF;
  text-decoration: none;
}

.request i {
  padding-left: 5px;
  font-weight: 400;
  font-size: 12px;
}

.search-desktop {
  float: right;
  background-color: #383838;
  width: 164px;
  height: 44px;
  position: relative;
}

.search-desktop input {
  border: none;
  height: 47px;
  width: 100%;
  padding-left: 10px;
  padding-right: 30px;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  background: none;
  color: #fff;
  font-style: normal;
}

.search-desktop input::-webkit-input-placeholder {
  color: #b9b9b9;
}

.search-desktop input::-moz-placeholder {
  color: #b9b9b9;
}

.search-desktop input:-ms-input-placeholder {
  color: #b9b9b9;
}

.search-desktop input:-moz-placeholder {
  color: #b9b9b9;
}

.search-desktop button {
  border: none;
  background: none;
  position: absolute;
  font-size: 16px;
  top: 13px;
  right: 8px;
  cursor: pointer;
  color: #fff;
  padding: 0;
}

.search-desktop button:hover {
  color: #dc6b2f;
}

@media (min-width: 768px) {
  .page-header {
    padding: 12px 0 15px;
  }

  .logo {
    padding: 0;
    width: 159px;
  }

  .right-header {
    padding: 8px 0;
  }

  .search-tab {
    display: block;
    margin-right: 17px;
    position: relative;
    width: 207px;
  }

  .top-header a {
    padding: 0;
  }
}

@media (min-width: 1025px) {
  .page-header {
    padding: 10px 0 0 0;
    position: fixed;
  }

  .logo {
    padding: 0;
    width: 176px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .page-header .menu {
    float: left;
  }

  /* Space for the header */
  .page-body {
    padding-top: 137px;
  }

  .middle-header {
    min-height: 68px;
  }
}

@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 */
  .logo a {
    background-size: 117px 45px;
    display: inline-block;
    height: 45px;
    width: 117px;
  }
}

/**
 * Navigation
 */
.nav-primary {
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
  display: none;
  width: 100%;
}

.nav-primary .close-toggle {
  background-color: #000;
  text-align: right;
}

.nav-primary .close-toggle span {
  color: #fff;
  cursor: pointer;
  display: inline-block;
  padding: 12px 13px;
  font-weight: 900;
  width: 48px;
  font-size: 18px;
}

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

.nav-primary li {
  border-bottom: 1px solid #e8e8e8;
  background: none;
  letter-spacing: .6px;
  text-transform: uppercase;
  position: relative;
}

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

.nav-primary a {
  color: #272324;
  font-size: 12px;
  font-weight: 300;
  padding: 8px;
  display: block;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.nav-primary li:hover>a,
.nav-primary .current-menu-item>a,
.nav-primary .current-menu-parent>a,
.nav-primary .current-page-ancestor>a {
  color: #ef7921;
  text-decoration: none;
}

.nav-primary .sub-menu {
  display: none;
  padding-bottom: 10px;
}

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

.nav-primary .sub-menu-toggle {
  position: absolute;
  top: 0;
  right: -6px;
  width: 45px;
  line-height: 45px;
  font-size: 17px;
  font-weight: 300;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  display: block;
  cursor: pointer;
  text-align: center;
}

.nav-primary .sub-menu-toggle:before {
  content: '+';
}

.nav-primary .sub-menu-toggle.js-toggled {
  font-size: 30px;
}

.nav-primary .sub-menu-toggle.js-toggled:before {
  content: '-';
}

.nav-primary .sub-menu {
  border-top: 1px solid #e8e8e8;
  padding: 0 22px;
}

.nav-primary .sub-menu li a {
  display: block;
  padding: 6px 0;
}

@media (max-width: 767px) {
  .nav-primary .container {
    padding-left: 0;
    padding-right: 0;
  }
}

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

@media (min-width: 1025px) {
  .nav-primary {
    background-color: #000;
    position: relative;
    display: block;
    max-width: 100%;
    margin-top: 15px;
    padding: 0;
  }

  .nav-primary li {
    float: left;
    border-bottom: none;
    padding: 0 26px 0 0;
    line-height: 44px;
    position: relative;
  }

  .nav-primary a {
    color: #fff;
    font-size: 15px;
    padding: 0;
  }

  .nav-primary .current-menu-item>a,
  .nav-primary .current-menu-parent>a,
  .nav-primary .current-page-ancestor>a {
    font-weight: 700;
  }

  .nav-primary .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 350px;
    background-color: #000;
    padding: 16px 0;
  }

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

  .nav-primary .sub-menu li {
    border-bottom: none;
    line-height: 38px;
    padding: 0 20px;
    display: block;
    float: none;
  }

  .nav-primary .sub-menu li a {
    border-bottom: 1px solid #404040;
    padding: 0;
    line-height: 1em;
    padding: 12px 0;
  }

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

  .nav-primary .sub-menu li:hover,
  .nav-primary .sub-menu .current-menu-item,
  .nav-primary .sub-menu .current-menu-parent,
  .nav-primary .sub-menu .current-page-ancestor {
    background-color: #dc6b2f;
  }

  .nav-primary .sub-menu li:hover>a,
  .nav-primary .sub-menu .current-menu-item>a,
  .nav-primary .sub-menu .current-menu-parent>a,
  .nav-primary .sub-menu .current-page-ancestor>a {
    color: #fff;
    border-bottom-color: #dc6b2f;
  }
}

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

/**
 * Masthead
 */
.masthead {
  padding: 27px 0;
  text-align: center;
}

.full-image-background {
  position: relative;
  height: 365px;
}

.full-image-text-banner {
  position: absolute;
  top: 0;
  width: 100%;
  margin: auto;
}

.banner {
  background-color: #fff;
  color: #fff;
}

.banner .item {
  background: rgb(146, 146, 146);
  /* Old browsers */
  background: -o-linear-gradient(left, rgba(146, 146, 146, 1) 0%, rgba(207, 207, 207, 1) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(146, 146, 146, 1)), to(rgba(207, 207, 207, 1)));
  background: linear-gradient(to right, rgba(146, 146, 146, 1) 0%, rgba(207, 207, 207, 1) 100%);
  height: 365px;
}

.banner .container {
  padding-top: 30px;
  padding-bottom: 50px;
  background-size: auto 100%;
  height: 100%;
}

.banner .container.machine {
  background: url(../img/banner-bg.png) center 0 no-repeat;
}

.banner .item img {
  max-width: 100%;
  /* min-height: 365px;  */
}

.banner h1 {
  padding-bottom: 20px;
}

.banner h1.black {
  color: #000
}

.banner .btn {
  margin-bottom: 25px;
}

.full-image-background iframe {
  width: 100%;
}

@media (min-width: 768px) {
  .banner h1 {
    font-size: 38px;
  }

  .banner .item {
    background: -o-linear-gradient(left, rgba(128, 128, 128, 1) 0%, rgba(228, 228, 228, 0) 79%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(128, 128, 128, 1)), color-stop(79%, rgba(228, 228, 228, 0)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(128, 128, 128, 1) 0%, rgba(228, 228, 228, 0) 79%, rgba(255, 255, 255, 0) 100%);
    height: 430px;
  }

  .banner .container {
    padding-top: 95px;
    padding-bottom: 160px;
    background-size: auto 100%;
    position: relative;
  }

  .banner .container.machine {
    background: url(../img/banner-bg.png) 70px 0 no-repeat;
  }

  .banner-text {
    width: 405px;
    text-shadow: 1px 1px 2px #000;
  }

  .banner-image {
    position: absolute;
    top: 95px;
    right: 20px;
    width: 374px;
  }

  .banner-image img {
    width: 100%;
  }

  .masthead {
    padding: 40px 0;
  }

  .full-image-background {
    height: 430px;
  }
}

@media (min-width: 1025px) {
  .banner .item {
    height: 586px;
  }

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

  .banner-text {
    width: 540px;
  }

  .banner-image {
    width: 50%;
  }

  .masthead {
    padding: 67px 0 54px;
    text-align: left;
  }

  .full-image-background {
    height: 586px;
  }
}

@media (min-width: 1366px) {
  .banner .container {
    padding-top: 76px;
    padding-bottom: 94px;
  }

  .banner-text {
    padding: 120px 0 80px;
  }

  .banner-image {
    right: 0;
    width: auto;
    top: 76px;
  }
}

@media (min-width: 1680px) {
  .banner-image {
    right: -100px;
    width: auto;
  }
}

/* Machine and Text */
.case-inner {
  padding: 40px 0;
  border-bottom: 1px solid #c7c8ca;
}

.case-img img {
  max-width: 100%;
}

.wysiwyg-with-left-heading+.product-case .case-inner,
.full-width-wysiwyg .product-case .case-inner,
.product-case+.product-case .case-inner {
  border-top: none;
}

.case-inner h2 {
  padding-top: 25px;
}

.case-inner p:last-child {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .case-inner {
    padding: 45px 60px;
  }
}

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

  .half-and-half+.product-case {
    margin-top: 90px;
  }
}

.testimonial-section {
  padding: 35px 0 45px;
  margin: 0;
  background-color: #f3f3f3;
  position: relative;
}

.testimonial-inner {
  background-color: #dc6b2f;
  margin: 32px 0;
  padding: 40px;
  color: #fff;
  position: relative;
}

.testimonial-inner:before {
  content: "\f110";
  font-family: 'Flaticon';
  color: #404041;
  position: absolute;
  right: 20px;
  top: -26px;
  font-size: 60px;
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  transform: scaleX(-1);
}

.testimonial-inner p {
  padding-bottom: 0;
}

@media (max-width: 767px) {
  .testimonial-section .btn {
    display: block;
  }
}

@media (min-width: 768px) {
  .testimonial-inner {
    background-color: #dc6b2f;
    margin: 22px 0 32px 0;
    padding: 50px;
    color: #fff;
    position: relative;
  }

  .testimonial-inner::before {
    top: -23px;
    font-size: 55px;
  }

  .testimonial-bg-pict {
    position: absolute;
    bottom: 0;
    right: 0;
  }

  .testimonial-bg-pict img {
    display: block;
    width: 200px;
    height: auto;
  }

  .testimonial-section {
    padding-top: 42px;
  }
}

@media (min-width: 1200px) {
  .testimonial-bg-pict img {
    width: 300px;
  }
}

@media (min-width: 1366px) {
  .testimonial-bg-pict {
    position: absolute;
    bottom: -120px;
    right: 0;
  }

  .testimonial-section .container {
    position: relative;
  }

  .testimonial-bg-pict img {
    width: auto;
  }

  .testimonial-section {
    padding: 120px 0;
  }

  .testimonial-inner {
    padding: 65px;
  }

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

  .testimonial-inner::before {
            top: -30px;
        font-size: 70px;
  }
}

.video-highlight {
  margin-top: -1px;
  background-color: #f3f3f3;
  padding: 30px 0 45px;
  position: relative;
}

.video-highlight h2 {
  padding-bottom: 35px;
}

.blog-box {
  background-color: #F3F3F3;
  padding: 0;
  border-top: 4px solid #000;
  border-bottom: 4px solid #dc6b2f;
  position: relative;
  width: 100%;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.home .blog-box {
  background-color: #FFF;
}

.blog-box h3 {
  padding-bottom: 0;
}

.blog-video {
  height: 160px;
  position: relative;
}

.blog-video a {
  display: block;
  height: 100%;
  position: relative;
}

.blog-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  z-index: 1;
  /* left: 19px; */
}

.blog-text {
  padding: 16px 20px;
}

.blog-text h2,
.blog-text h3 {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 0.533em;
}

.blog-text h3>a {
  color: #404041;
}

.blog-text a:hover {
  text-decoration: none;
}

.module-link {
  display: block;
  font-weight: 400;
  color: #404041;
  height: 100%;
  position: relative;
}

.module-link p {
  padding-bottom: .75em;
  line-height: 1.65;
}

.module-link:hover {
  text-decoration: none;
}

.module-link .module-btn-height {
  height: 4rem;
}

.module-link .module-btn {
  display: block;
  background-color: #db6b30;
  border: 2px solid #db6b30;
  padding: 1em 2em;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.3;
  color: #FFF;
  transition: all .3s ease;
  position: absolute;
  bottom: 1.5rem;
}

.module-link:hover .blog-img {
  opacity: .75;
  transition: all .3s ease;
}

.module-link:hover .module-btn {
  background-color: #b65420;
  border: 2px solid #b65420;
}

.video-highlight h4 {
  padding: 10px 0;
  font-weight: 500;
  font-size: 15px;
}

.blog-text ul li {
  padding-left: 0;
  padding-bottom: 0;
}

.blog-text ul {
  padding-left: 15px;
  padding-bottom: 15px;
}

.blog-text li {
  margin: 0;
  padding-left: 0px;
  background: none !important;
  line-height: 21px;
}

.blog-text .btn {
  padding: 1em 2em;
  line-height: 1.3;
}

.box-bg-pict {
  display: none;
}

.box-video {
  height: 500px;
}

.box-video iframe {
  width: 100%;
  height: 100%;
}

.video-slider .slick-prev {
  left: 0;
}

.video-slider .slick-next {
  right: 0;
}

.video-slider .slick-prev:before,
.video-slider .slick-next:before {
  color: #000;
  opacity: 1;
}

.video-slider .slick-track,
.video-slider .slick-list {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.video-card {
  margin-bottom: 30px;
}

.blog-video a:after {
  content: '\f112';
  font-family: Flaticon;
  font-style: normal;
  font-size: 50px;
  text-shadow: 3px 3px 8px #000000b5;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 25px);
  color: #fff;
}

.blog-video a:hover {
  opacity: .95;
  position: relative;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.blog-video a:hover:after {
  color: #dc6b2f;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.video-slider {
  padding: 0 25px;
}

.category-select ul li {
  background: none;
  padding-left: 0;
}

.video-highlight .btn {
  margin-top: 25px;
}

@media (max-width: 767px) {

  .video-highlight [class*="col-"]:nth-child(2),
  .video-highlight [class*="col-"]:last-child {
    display: none;
  }
}

@media (min-width: 768px) {
  .video-highlight .row {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .video-highlight [class*="col-"] {
    float: none;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 1200px) {
  .video-highlight {
    padding: 75px 0 95px 0;
    margin-top: 200px;
  }

  .video-highlight .container,
  .de-top {
    position: relative;
  }

  .video-highlight h2 {
    padding-bottom: 50px;
  }

  .video-highlight h4 {
    font-size: 20px;
  }

  .blog-video {
    height: 215px;
  }

  .box-bg-pict {
    position: absolute;
    right: -255px;
    /*jaci edit*/
    display: block;
    top: -278px;
  }

  .video-slider {
    padding: 0;
  }

  .video-slider .slick-prev {
    left: -25px;
  }

  .video-slider .slick-next {
    right: -25px;
  }
}

/*
 *  Intro Text
 *  Company Logo Slider
 *  CTA Icon
 */
.intro-text {
  padding: 35px 0;
}

.company-logo h4 {
  font-weight: 400;
  font-size: 18px;
}

.company-logo .item img {
  margin: 0 auto;
  max-width: 70%;
}

.cta-icon {
  margin-top: 35px;
}

.cta-icon-title {
  background-color: #dc6b2f;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 22px;
  padding: 10px 35px;
  text-align: center;
  text-transform: capitalize;
}

.cta-icon-content {
  padding: 15px;
  background-color: #f3f3f3;
}

.cta-icon-content [class*="col-"] {
  padding-left: 20px;
  padding-right: 20px;
}

.cta-icon-product {
  border: 1px solid transparent;
  border-radius: 10px;
  height: 190px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.cta-icon-product img {
  max-width: 110px;
  margin: 0 auto;
}

.cta-icon-content a {
  color: #757576;
  display: block;
  text-align: center;
  padding: 0;
  width: 100%;
}

.cta-icon-content a:hover {
  text-decoration: none;
}

.cta-icon-content p {
  line-height: 18px;
  padding-top: 5px;
  padding-bottom: 0;
}

.cta-icon-product:hover {
  border: 1px solid transparent;
  background-color: #fff;
  border-color: #ccc;
}

.cta-icon-product:hover a {
  color: #404041;
}

/* .frontpage-intro { padding: 55px 0 0 0; } */
.frontpage-intro p {
  padding-top: 10px;
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .cta-icon-title {
    font-size: 20px;
    padding: 15px 0;
  }

  .cta-icon-content p {
    font-size: 17px;
  }
}

@media (min-width: 1025px) {
  .company-logo h4 {
    font-size: 20px;
  }

  .cta-icon {
    margin-top: -87px;
  }

  /* .frontpage-intro {
        border-top: 1px solid #dadada;
        margin-top: 43px;
        padding-top: 70px;
    } */
  .company-logo-slider a:hover img {
    opacity: .6;
  }
}

@media (min-width: 1200px) {
  .frontpage-intro h2 {
    padding-bottom: 20px;
  }

  .frontpage-intro p {
    padding-left: 40px;
    padding-right: 40px;
  }

  .cta-icon-content {
    padding: 35px;
  }

  .cta-icon {
    margin-left: 50px;
  }
}

/* CTA Image */
.product-item a {
  text-decoration: none;
}

.item-slide .item {
  padding: 0 1px;
  position: relative;
}

.item-img {
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.item-slide .slick-track {
  margin-left: 0;
  margin-right: 0;
}

.item-img img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit:contain;'
}

.product-item-inn-link {
  border: 1px solid transparent;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #757576;
  display: block;
  padding: 10px 0 0 0;
  position: relative;
}

.product-item-inn-link:hover {
  border-color: #ccc;
  color: #757576;
}

.item-slide .slick-list {
  margin-left: -2px;
  margin-right: -2px;
}

.product-item-inn-link p {
  font-weight: 700;
  font-size: 14px;
  padding: 5px 0 10px 0;
}

.more-info-link {
  opacity: 0;
}

.product-item-inn-link .more-info-link {
  color: #fff;
  background-color: #000;
  width: 100%;
  bottom: 0;
  text-transform: uppercase;
  padding: 8px 0;
  display: block;
  font-size: 13px;
  opacity: 0;
}

.product-item-inn-link:hover .more-info-link {
  opacity: 1;
  text-decoration: none;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.item-label {
  color: #767676;
  font-size: 18px;
  width: 100%;
  height: auto;
  display: block;
  margin-top: 20px;
  padding-bottom: 10px;
}

.product-item .container {
  padding: 0;
}

.product-item .slick-dots {
  text-align: center;
}

.product-item .slick-dots li {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #c7c8ca;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 7px;
  padding: 0;
}

.product-item .slick-dots li.slick-active {
  background-color: #dc6b2f;
}

.product-item .slick-dots li button {
  display: none;
}

.product-item.innerpage {
  background: url(https://massmanautomation.com/content/uploads/2020/05/bkg-pattern.jpg);
  padding-bottom: 30px;
  border-bottom: 1px solid #efefef;
}

.home .product-item.innerpage {
  background: none;
  position: relative;
  overflow: hidden;
}

.home .product-item.innerpage:before {
  content: '';
  background: url(https://massmanautomation.com/content/uploads/2020/06/home-background-texture.jpg);
  position: absolute;
  display: block;
  height: 1000px;
  width: 1000px;
  z-index: -1;
  bottom: 0;
  left: 0;
}

@media (min-width: 768px) {
  .product-item h2 {
    padding-bottom: 0.533em;
    /*16px*/
  }
}

@media (min-width: 1200px) {
  .product-item {
    padding-top: 100px;
  }

  .product-item.innerpage {
    padding-bottom: 100px;
  }

  .product-item h2 {
    padding-bottom: 0.2em;
  }

  .product-item h4 {
    padding-bottom: 60px;
  }

  .product-item-inn-link p {
    font-size: 17px;
    padding-top: 20px;
  }

  .product-item .container {
    padding: 0 30px;
  }

  .product-item-inn-link .more-info-link {
    font-size: 15px;
  }

  .product-item-inn-link:hover .more-info-link {
    text-decoration: none;
  }

  .item-img {
    padding: 10px 20px;
  }

  .item-img img {
    width: auto;
  }
}

.news-section {
  padding: 35px 0;
}

.news-section h2 {
  padding-bottom: 5px;
}

.news-inner {
  margin-top: 17px;
  border: 1px solid #ccc;
  position: relative;
}

.news-img {
  border-bottom: 1px solid #ccc;
  /*height: 200px;*/
  position: relative;
}

.single .news-img {
  height: 100%;
}

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

.single .news-img img {
  -o-object-fit: contain;
  object-fit: contain;
  font-family: 'object-fit: contain';
  margin: auto;
}

.news-text {
  padding: 15px;
}

.news-text p {
  padding: 0;
}

p.news-cat {
  color: #dc6b2f;
  font-size: 13px;
  font-weight: 700;
}

.news-cat a {
  padding-right: 10px;
  text-transform: uppercase;
}

.news-text h4 {
  padding: 25px 0 25px 0;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
}

.news-text h5 {
  padding: 0 0 20px 0;
  font-size: 20px;
  line-height: 25px;
  font-weight: 400;
  margin: 0;
}

.news-text a {
  font-size: 15px;
}

.news-text a i {
  font-weight: 400;
  font-size: 10px;
}

.newsleter input {
  width: 100%;
  border: 1px solid #ccc;
  height: 52px;
  line-height: 52px;
  padding: 0 10px;
  font-style: normal;
}

.newsleter button {
  margin-top: 25px;
}

.news-bttn {
  padding: 25px 0 23px 0;
}

.news-bttn .btn {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  display: block;
}

.blog-listing-container {
  border-top: 1px solid #c7c8ca;
  padding: 50px 0;
}

.blog-listing-container .col-sm-6 {
  padding: 0;
}

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

.page-sidebar .widget {
  border: 1px solid #c7c8ca;
  margin-bottom: 20px;
  padding: 20px 30px;
}

.page-sidebar .widget a {
  color: #000;
  display: block;
  border-bottom: 1px solid #c7c8ca;
  padding: 10px;
}

.page-sidebar .widget a:hover {
  background-color: #000;
  color: #ef7921;
  text-decoration: none;
}

.single .news-img img {
  object-fit: cover;
  -o-object-fit: cover;
  font-family: 'object-fit: cover;';
  height: 100%;
  width: 100%;
}

.social-share {
  padding-top: 50px;
}

.social-share a i {
  font-size: 30px;
  margin-right: 8px
}

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

@media (min-width: 768px) {
  .news-inner {
    margin-top: 25px;
  }

  .news-text {
    padding: 15px 30px 25px 30px;
  }

  .news-bttn .btn {
    margin-bottom: 30px;
  }

  .blog-listing-container .col-sm-6 {
    padding: 0px 20px 20px 20px;
  }

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

  .news-inner {
    height: 100%;
  }

  .news-inner {
    margin-top: 0;
  }

  .news-section h2 {
    padding-bottom: 30px;
  }

  .row.flex-row .col-sm-12 {
    margin-top: 30px;
  }
}

@media (min-width: 1200px) {
  .news-section {
    padding: 90px 0;
  }

  .news-text {
    padding: 25px 40px;
  }

  .news-text p {
    font-size: 17px;
  }

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

  .news-text h4 {
    font-size: 20px;
    line-height: 28px;
  }

  .news-text h5 {
    font-size: 25px;
    line-height: 31px;
  }

  .blog-listing-container {
    padding: 90px 0 100px;
  }

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

  .news-bttn {
    padding-bottom: 0;
  }

  .row.flex-row .col-sm-12 {
    margin-top: 0px;
  }

  .news-bttn .btn {
    margin-bottom: 0px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .newsleter input {
    width: 60%;
    float: left;
  }

  .newsleter .btn {
    float: right;
    width: 30%;
    padding-left: 0;
    padding-right: 0;
    margin-top: 0;
  }
}

.grey-bg {
  background-color: #f3f3f3;
  padding: 48px 0 28px 0;
}

.product-case+.centered-wysiwyg.grey-bg {
  margin-top: -1px;
}

@media (min-width: 768px) {
  .grey-bg {
    padding: 100px 0;
  }

  .grey-bg h2.title {
    padding-right: 10px;
  }
}

/* Half and Haf Text */
.product-case+.half-and-half {
  margin-top: -1px;
}

/* For the border bottom from machine and text section*/
.half-and-half-text {
  background: url(https://massmanautomation.com/content/uploads/2020/05/bkg-pattern.jpg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hidden-img {
  height: 340px;
  overflow: hidden;
}

.half-and-half-text.grey-bg {
  background: #eee;
}

.half-wrapper {
  padding: 45px 15px;
}

.half-wrapper h2 {
  padding-bottom: 10px;
}

.half-wrapper h4 {
  font-size: 17px;
  font-weight: 400;
  line-height: 21px;
  color: #606060;
}

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

@media (min-width: 1025px) {
  .half-and-half {
    position: relative;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
  }

  .half-and-half-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .half-left-img,
  .half-right-img {
    width: 40%;
  }

  .half-left-text,
  .half-right-text {
    width: 60%;
  }

  .half-and-half-text {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .half-and-half-text-wrapper-left {
    padding-right: 65px;
    padding-left: 30px;
  }

  .half-and-half-text-wrapper-right {
    padding-left: 65px;
    padding-right: 30px;
  }

  .half-wrapper {
    padding: 0;
  }

  .half-wrapper h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .hidden-img {
    height: auto;
  }
}

@media (min-width: 768px) {
  .testimonial-inner-page p {
    font-size: 20px;
    line-height: 27px;
  }

  .testimonial-inner-page .testimonial-inner:before {
    top: -30px;
  }
}

@media (min-width: 1200px) {
  .testimonial-inner-page {
    padding-top: 21px;
    padding-bottom: 65px;
  }

  .testimonial-inner-page .testimonial-inner p {
    padding: 0;
  }

  .testimonial-inner-page .testimonial-inner::before {
    top: -50px;
  }

  .inner-page-testimonial {
    padding-top: 80px;
  }
}

.white-bg {
  background-color: #fff;
  padding: 70px 0;
}

.white-bg+.white-bg,
.masthead+.white-bg {
  padding-top: 0;
}

/**
 * Divisions Logo
 */
.divisions-logo {
  padding-top: 50px;
  padding-bottom: 50px;
}

.divisions-logo-slider {
  margin-top: 20px;
}

.divisions-logo-slider [class*="col-"] {
  vertical-align: top;
  padding-left: 10px;
  padding-right: 10px;
}

.divisions-logo-slider .slick-current,
.divisions-logo-slider .slick-active {
  border: none !important;
}

.divisions-logo-slider .slick-list {
  overflow: hidden;
}

.divisions-logo-slider a {
  color: #646464;
  display: block;
  padding: 30px;
  font-weight: 400;
  outline: none;
}

.home .divisions-logo-slider a {
  padding: 10px;
}

.divisions-logo-slider a:hover {
  text-decoration: none;
  -webkit-box-shadow: 0px 0px 10px 5px rgba(234, 234, 234, 1);
  -ms-box-shadow: 0px 0px 10px 5px rgba(234, 234, 234, 1);
  -o-box-shadow: 0px 0px 10px 5px rgba(234, 234, 234, 1);
  box-shadow: 0px 0px 10px 5px rgba(234, 234, 234, 1);
}

.divisions-logo-slider img {
  margin: 0 auto 20px;
}

.divisions-logo-slider p:last-child {
  padding-bottom: 0;
}

.divisions-logo .slick-prev {
  padding-left: 15px;
}

.divisions-logo .slick-next {
  padding-right: 15px;
}

@media (min-width: 1025px) {
  .divisions-logo {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .home .divisions-logo {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/**
 * Contact Page Styling
 */
.contact-page--content {
  padding-top: 40px;
  position: relative;
}

.contact-machine-image {
  height: 60%;
  width: auto;
  position: absolute;
  right: -10%;
  bottom: -60px;
  z-index: -1;
}

.contact-page--content.white-bg {
  background-color: transparent;
  padding-top: 0px;
}

.page-template-page-contact .masthead .container {
  border-bottom: 1px solid #c5c5c5;
  padding-bottom: 50px;
}

.contact-half-and-half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.contact-half-and-half ul li {
  list-style-type: none;
}

.half-and-half-image,
.half-and-half-content {
  width: 100%;
  background-color: #e4e4e4;
  position: relative;
}

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

.half-text-content {
  padding: 75px 10% 25px;
}

.half-text-content li {
  font-size: 20px;
  line-height: 1.4em;
  margin-bottom: 20px;
  padding-left: 30px;
  position: relative;
}

.half-text-content li span {
  color: #dc6b2f;
  position: absolute;
  left: 0;
  font-size: 25px;
}

.half-text-content li a {
  color: #404041;
  font-weight: 400;
}

.half-text-content li a:hover {
  color: #dc6b2f;
  text-decoration: none;
}

.half-text-content h2 {
  position: relative;
  padding-left: 35px;
}

.half-text-content h2 img {
  position: absolute;
  top: 7px;
  left: 0;
}

.half-text-content ul {
  margin-left: 8px;
  padding-left: 0;
}

.half-text-content ul li {
  background: none;
  padding-left: 30px;
}

.thank-you-page-links {
  padding-left: 0;
  padding-bottom: 0;
}

ul.thank-you-page-links li {
  background: none;
  padding-left: 0;
  list-style-type: none;
}

.thank-you-page-links a {
  background-color: #dc6b2f;
  color: #fff;
  padding: 15px 30px;
  margin: 10px;
  display: block;
  text-align: center;
  border-radius: 10px;
}

.thank-you-page-links a:hover {
  background-color: #da6f1e;
  text-decoration: none;
}

@media (min-width: 769px) {

  .half-and-half-image,
  .half-and-half-content {
    width: 50%;
  }
}

@media (min-width: 1025px) {
  .half-text-content {
    padding: 130px 100px 85px;
  }

  .thank-you-page-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .contact-machine-image {
    height: 73%;
    right: -9%;
  }
}

@media (min-width: 1366px) {
  .contact-machine-image {
    height: 85%;
  }
}

@media (min-width: 1600px) {
  .contact-machine-image {
    height: 85%;
    right: 4%;
  }
}

/**
 * Products Page
 */
.accordion-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.grey-bg.accordion-content .row {
  margin: 0px;
}

.accordion dt,
.accordion dd {
  padding: 22px;
  border: 1px solid #ccc;
  border-bottom: 0;
  margin-left: 0;
}

.accordion dt:last-of-type {
  border-bottom: 1px solid #ccc;
}

.accordion dt h4 {
  cursor: pointer;
  font-weight: 500;
  position: relative;
}

.accordion dt h4:after {
  content: '\f111';
  color: #404042;
  font: 16px 'Flaticon';
  display: block;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  right: -20px;
  top: -15px;
  border-right: 1px solid #c8c8ca;
  margin: 3px 0;
  padding: 16px;
  text-align: center;
}

.accordion dt h4.js-toggled:after,
.accordion dt h4.active:after {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  border-right: none;
  border-left: 1px solid #c8c8ca;
  ;
}

.accordion dd {
  border-top: 0;
}

.accordion dd:last-of-type {
  border-bottom: 1px solid #ccc;
  position: relative;
  top: -1px;
}

.accordion dd p:last-child {
  padding-bottom: 0;
}

@media (min-height: 768px) {
  .accordion-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/**
 * Video Gallery
 */
.content-wrap {
  border-top: 1px solid #ccc;
  padding: 50px 0;
}

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

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

.widget-filter li {
  display: inline-block;
  margin: 8px 9px 8px 0px;
}

.widget-filter a {
  color: #000;
  font-weight: 400;
  font-size: 20px;
}

.widget-filter .cat-item.current-cat a {
  background-color: #dc6b2f;
  border-color: #dc6b2f;
}

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

.widget-filter .children a {
  background-color: #000;
  border: 2px solid #000;
  border-radius: 10px;
  color: #fff;
  font: 700 15px 'Roboto', sans-serif;
  line-height: 19px;
  padding: 12px 15px;
  display: inline-block;
  text-align: center;
}

.widget-filter .children a:hover {
  background-color: transparent;
  color: #000;
}

.cat-item ul.children {
  padding-left: 0px;
}

#wp-realtime-sitemap-pages ul {
  padding-left: 1.8em;
}

#wp-realtime-sitemap-pages li {
  padding-left: 0.867em;
  background: url(../img/bullet.png) 0 0.8em no-repeat;
  list-style-type: none;
}

.widget-filter h2 {
  font-size: 1.5em;
}

/**
 * Page-footer
 */
.page-footer {
  background-color: #000;
  /*padding: 30px 0;*/
}

.top-footer {
  border-bottom: 1px solid #212121;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-nav {
  float: left;
  margin: 0;
  padding: 0;
}

.footer-nav ul {
  padding-bottom: 0;
}

.footer-nav li {
  margin: 0;
  padding: 0;
  background: none;
  font-size: 14px;
  line-height: 30px;
}

.footer-nav li a {
  margin: 0;
  padding: 0;
  display: block;
  font-weight: 400;
  color: #fff;
}

.footer-nav li a:hover {
  color: #dc6b2f;
  text-decoration: none;
}

.footer-social {
  float: right;
  margin: 0;
  padding: 0;
}

.footer-social li {
  margin: 0;
  padding: 0 14px 0 0;
  background: none;
  font-size: 35px;
  line-height: 35px;
  float: left;
}

.footer-social li a {
  margin: 0;
  padding: 0;
  display: block;
  font-weight: 400;
  color: #004976;
}

.footer-social li a:hover {
  color: #fff;
  text-decoration: none;
}

.middle-footer {
  padding: 25px 0;
}

.f-address {
  padding: 30px 0;
}

.f-address ul {
  padding-bottom: 0;
}

.f-address li {
  padding: 10px 0 0 0;
  margin: 0;
  line-height: 18px;
  font-size: 14px;
  color: #C8C8CA;
  ;
  clear: both;
  background: none;
}

.f-address li i {
  padding-right: 5px;
  padding-bottom: 0;
  font-size: 16px;
  color: #dc6b2f;
}

.f-address li:first-child i {
  padding-bottom: 14px;
  float: left;
}

.f-address li a {
  font-weight: 400;
  color: #C8C8CA;
  ;
}

.f-address p {
  color: #C8C8CA;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 0;
  text-transform: uppercase;
}

.f-newsleter p {
  font-size: 16px;
  line-height: 22px;
  color: #C8C8CA;
  padding-bottom: 10px;
}

.newslleter-form {
  position: relative;
  background-color: #fff;
  max-width: 447px;
  width: 100%;
  height: 48px;
  ;
}

.newslleter-form input {
  background: none;
  border: none;
  width: 100%;
  height: 48px;
  padding: 0 60px 0 15px;
}

.newslleter-form button {
  background: none;
  border: none;
  width: 50px;
  height: 48px;
  background-color: #eb7923;
  color: #fff;
  text-align: center;
  line-height: 48px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 21px;
  padding: 0;
  border-radius: 0;
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.footer-bottom {
  border-top: 1px solid #212121;
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0;
  position: relative;
}

.footer-bottom ul {
  padding-bottom: 0;
}

.footer-bottom li {
  margin: 0;
  padding: 0 10px 0 0;
  background: none;
  display: inline-block;
  font-size: 12px;
}

.footer-bottom li a {
  color: #c7c8ca;
  font-weight: 400;
}

.footer-bottom li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-bottom p {
  margin: 0;
  padding: 0 0 0 0;
  font-size: 12px;
  color: #c7c8ca;
}

.back-to-top {
  background-color: #eb7923;
  color: #fff;
  position: fixed;
  right: 20px;
  bottom: 20px;
  text-align: center;
  width: 46px;
  height: 46px;
  line-height: 46px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.back-to-top:hover {
  color: #eb7923;
  background-color: #fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

@media (min-width: 768px) {
  .page-footer {
    padding-top: 20px;
  }

  .footer-nav li {
    float: left;
    background: url(../img/f-bullet.png) 0 14px no-repeat;
    padding: 0 10px 0 16px;
    line-height: 42px;
  }

  .footer-nav li:first-child {
    background: none;
    padding-left: 0;
  }

  .footer-nav li:last-child {
    padding-right: 0;
  }

  .middle-footer {
    padding: 37px 0;
  }

  .f-address {
    padding-left: 42px;
  }

  .f-newsleter {
    padding-top: 40px;
  }

  .f-newsleter p {
    padding-bottom: 25px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom ul,
  .footer-bottom p {
    display: inline-block;
  }

  .footer-bottom li,
  .footer-bottom p {
    font-size: 14px;
  }

  .f-address li:first-child i {
    padding-bottom: 0;
  }
}

@media screen and (max-width:860px) and (min-width:768px) {
  .footer-social li {
    margin: 0;
    padding: 0 7px 0 0;
    background: none;
    line-height: 20px;
    float: left;
    font-size: 35px;
  }
}

@media (min-width: 1025px) {
  .f-address {
    padding-left: 0;
  }

  .footer-nav li {
    padding: 0 16px 0 22px;
  }
}

@media (min-width: 1200px) {
  .f-newsleter {
    padding-top: 10px;
  }
}

/* Footer Redesign */
.page-footer .container {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 30px;
  padding-top: 30px;
}

.page-footer img {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.footer-logo {
  padding: 30px 0;
  width: 100%;
}

.footer-brands {
  font-size: 20px;
  width: 100%;
}

.brands-heading {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  line-height: 1em;
  padding-bottom: 10px;
}

.brands-heading img {
  height: auto;
  margin: 10px auto 0;
  width: 300px;
}

.brands-list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.brands-list a {
  padding: 10px 0;
  width: 50%;
}

.footer-info {
  color: #fff;
  font-weight: normal;
  margin-top: 30px;
  text-align: left;
  width: 100%;
}

.footer-info a {
  color: #fff;
  font-weight: normal;
  text-decoration: none;
}

.footer-info .info-social li {
  display: inline-block;
  margin-left: 10px;
}

.footer-info .info-social a {
  font-size: 30px;
}

.info-about br {
  display: none;
}

.footer-info a.footer-directions {
  color: #b65420;
  font-weight: 600;
  text-transform: uppercase;
}

@media (min-width:600px) {
  .brands-list a {
    width: 25%;
  }
}

@media (min-width:768px) {
  .page-footer img {
    margin: 0;
  }

  .footer-logo {
    border-right: 1px solid #fff;
    width: 30%;
  }

  .footer-brands {
    padding: 0 20px;
    width: 70%;
  }

  .brands-heading {
    flex-direction: row;
  }

  .brands-heading img {
    margin-left: 20px;
  }
}

@media (min-width:1025px) {
  .footer-logo {
    width: 20%;
  }

  .footer-brands {
    width: 65%;
  }

  .brands-list a {
    max-width: 160px;
    width: 25%;
  }

  .footer-info {
    margin-top: 0;
    text-align: right;
    width: 15%;
  }
}

@media (min-width:1200px) {
  .info-about br {
    display: inline-block;
  }
}

/**
 * Print CSS
 */
@media print {

  /* Reset*/
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-filter: none !important;
    text-shadow: none !important;
  }

  h2, h3 {
    /* Avoid a paragraph being detached from the heading immediately preceding it */
    page-break-after: avoid;
  }

  figure, table {
    /* Avoid breaking figure or table into 2 pages */
    -webkit-column-break-inside: avoid;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  p {
    /* Prevent single line at the end of a page and a single line at the top the next page */
    orphans: 2;
    widows: 2;
  }

  a[href]:after {
    /* Show URLs after links */
    content: " ("attr(href) ")";
  }

  /* Grid Styling */
  .container {
    width: auto;
  }

  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  /* Slick Slider - remove if not using slick slider */
  .slick-slider .slick-arrow,
  .slick-slider .slick-dots {
    display: none !important;
    /* we usually don't need to show slider navigation for print */
  }

  /* For sliders you want to display full width for print.
       Update ".slick-slider" with your specific slider names. */
  .slick-slider,
  .slick-sliderg .slick-list,
  .slick-slider .slick-track,
  .slick-slider .slick-slide {
    width: 100% !important;
    height: auto !important;
  }

  /* For sliders where you only want to show the 1st image of that slider.
       Update ".slick-slider" with your specific slider names. */
  .slick-slider .slick-slide {
    display: none !important;
  }

  .slick-slider .slick-slide.slick-active {
    display: block !important;
  }

  /* Show Only Active Thumbnails */
  .slick-slider .slick-cloned {
    display: none;
  }

  /* Reset adaptiveHeight */
  .slick-list {
    height: auto !important;
  }

  /* Remove Scrollbars */
  .slick-track {
    width: auto !important;
    height: auto !important;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }

  .slick-track.slick-slide {
    width: auto !important;
  }
}

/* Video Page Filter button */
#filter-btn {
  border: 0px solid transparent;
  background: transparent;
}

#filter-arrow {
  display: inline-block;
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1);
}

.js-arrow-flip {
  -webkit-transform: scale(1, 1) !important;
  -ms-transform: scale(1, 1) !important;
  transform: scale(1, 1) !important;
}

/*New Video Filtering Styles*/
.js-filter-reset {
  margin: 20px 0;
}

@media (max-width: 767px) {
  .video-filter-list .col-sm-4 {
    padding: 0;
  }

  .video-filter-list label {
    margin-top: 10px
  }

  .video-filters h2 {
    padding-bottom: 0.1em;
  }
}

@media (min-width: 768px) {
  .video-filter-list .col-sm-4:first-child {
    padding-left: 0;
  }

  .video-filter-list .col-sm-4:last-child {
    padding-right: 0;
  }
}

/* notification bar */
.ht-n-container a {
  color: #DC6B2F;
}

.ht-n-container a:hover {
  color: #CF6025;
}

/*------------------------------------*\
    Trumps
\*------------------------------------*/
@-ms-viewport {
  width: device-width;
}

/**
 * Images
 */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
 * Visiblity
 */
.show {
  display: block !important;
}

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 599px) {
  .visible-xxs {
    display: block !important;
  }

  table.visible-xxs {
    display: table;
  }

  tr.visible-xxs {
    display: table-row !important;
  }

  th.visible-xxs,
  td.visible-xxs {
    display: table-cell !important;
  }

  .visible-xxs-block {
    display: block !important;
  }

  .visible-xxs-inline {
    display: inline !important;
  }

  .visible-xxs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }

  table.visible-xs {
    display: table;
  }

  tr.visible-xs {
    display: table-row !important;
  }

  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }

  .visible-xs-block {
    display: block !important;
  }

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .visible-sm {
    display: block !important;
  }

  table.visible-sm {
    display: table;
  }

  tr.visible-sm {
    display: table-row !important;
  }

  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }

  .visible-sm-block {
    display: block !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }

  table.visible-md {
    display: table;
  }

  tr.visible-md {
    display: table-row !important;
  }

  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }

  .visible-md-block {
    display: block !important;
  }

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }

  table.visible-lg {
    display: table;
  }

  tr.visible-lg {
    display: table-row !important;
  }

  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }

  .visible-lg-block {
    display: block !important;
  }

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

/**
 * Hiding
 */
.hide,
.hidden-xxs-up {
  display: none !important;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.invisible {
  visibility: hidden !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

@media (max-width: 599px) {
  .hidden-xxs {
    display: none !important;
  }
}

@media (min-width: 600px) {
  .hidden-xs-up {
    display: none !important;
  }
}

@media (min-width: 600px) and (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .hidden-xs-down {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-sm-up {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .hidden-sm-down {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .hidden-md-up {
    display: none !important;
  }
}

@media (min-width: 1025px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (max-width: 1199px) {
  .hidden-md-down {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

/**
 * Screen Readers
 */
.sr-only,
.wpcf7 .screen-reader-response {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/**
 * Print
 */
.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block {
  display: none !important;
}

@media print {
  .visible-print {
    display: block !important;
  }

  table.visible-print {
    display: table;
  }

  tr.visible-print {
    display: table-row !important;
  }

  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }

  .visible-print-block {
    display: block !important;
  }

  .visible-print-inline {
    display: inline !important;
  }

  .visible-print-inline-block {
    display: inline-block !important;
  }

  .hidden-print {
    display: none !important;
  }
}

/**
 * Text alignment
 */
.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

/**
 * Positioning
 */
.affix-top {
  position: fixed !important;
  top: 0 !important;
}

.affix-bottom {
  position: fixed !important;
  bottom: 0 !important;
}

.affix-left {
  position: fixed !important;
  left: 0 !important;
}

.affix-right {
  position: fixed !important;
  right: 0 !important;
}

.pull-right {
  float: right !important;
}

.pull-left {
  float: left !important;
}

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* TODO: Update pushes, flushes, softs, and hards to match your vertical rhythm */
/**
 * Add/remove margins
 */
.push {
  margin: 20px !important;
}

.push-top {
  margin-top: 20px !important;
}

.push-right {
  margin-right: 20px !important;
}

.push-bottom {
  margin-bottom: 20px !important;
}

.push-left {
  margin-left: 20px !important;
}

.push-ends {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.push-sides {
  margin-right: 20px !important;
  margin-left: 20px !important;
}

.push-half {
  margin: 10px !important;
}

.push-half-top {
  margin-top: 10px !important;
}

.push-half-right {
  margin-right: 10px !important;
}

.push-half-bottom {
  margin-bottom: 10px !important;
}

.push-half-left {
  margin-left: 10px !important;
}

.push-half-ends {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.push-half-sides {
  margin-right: 10px !important;
  margin-left: 10px !important;
}

.flush {
  margin: 0 !important;
}

.flush-top {
  margin-top: 0 !important;
}

.flush-right {
  margin-right: 0 !important;
}

.flush-bottom {
  margin-bottom: 0 !important;
}

.flush-left {
  margin-left: 0 !important;
}

.flush-ends {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.flush-sides {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

/**
 * Add/remove paddings
 */
.soft {
  padding: 20px !important;
}

.soft-top {
  padding-top: 20px !important;
}

.soft-right {
  padding-right: 20px !important;
}

.soft-bottom {
  padding-bottom: 20px !important;
}

.soft-left {
  padding-left: 20px !important;
}

.soft-ends {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.soft-sides {
  padding-right: 20px !important;
  padding-left: 20px !important;
}

.soft-half {
  padding: 10px !important;
}

.soft-half-top {
  padding-top: 10px !important;
}

.soft-half-right {
  padding-right: 10px !important;
}

.soft-half-bottom {
  padding-bottom: 10px !important;
}

.soft-half-left {
  padding-left: 10px !important;
}

.soft-half-ends {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.soft-half-sides {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.hard {
  padding: 0 !important;
}

.hard-top {
  padding-top: 0 !important;
}

.hard-right {
  padding-right: 0 !important;
}

.hard-bottom {
  padding-bottom: 0 !important;
}

.hard-left {
  padding-left: 0 !important;
}

.hard-ends {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.hard-sides {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

@media (min-width:600px) {
  .flush-xs {
    margin: 0 !important;
  }

  .flush-xs-top {
    margin-top: 0 !important;
  }

  .flush-xs-right {
    margin-right: 0 !important;
  }

  .flush-xs-bottom {
    margin-bottom: 0 !important;
  }

  .flush-xs-left {
    margin-left: 0 !important;
  }

  .flush-xs-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .flush-xs-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .push-xs {
    margin: 20px !important;
  }

  .push-xs-top {
    margin-top: 20px !important;
  }

  .push-xs-right {
    margin-right: 20px !important;
  }

  .push-xs-bottom {
    margin-bottom: 20px !important;
  }

  .push-xs-left {
    margin-left: 20px !important;
  }

  .push-xs-ends {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .push-xs-sides {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .push-half-xs {
    margin: 10px !important;
  }

  .push-half-xs-top {
    margin-top: 10px !important;
  }

  .push-half-xs-right {
    margin-right: 10px !important;
  }

  .push-half-xs-bottom {
    margin-bottom: 10px !important;
  }

  .push-half-xs-left {
    margin-left: 10px !important;
  }

  .push-half-xs-ends {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .push-half-xs-sides {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }

  .push-double-xs {
    margin: 40px !important;
  }

  .push-double-xs-top {
    margin-top: 40px !important;
  }

  .push-double-xs-right {
    margin-right: 40px !important;
  }

  .push-double-xs-bottom {
    margin-bottom: 40px !important;
  }

  .push-double-xs-left {
    margin-left: 40px !important;
  }

  .push-double-xs-ends {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .push-double-xs-sides {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .push-triple-xs {
    margin: 60px !important;
  }

  .push-triple-xs-top {
    margin-top: 60px !important;
  }

  .push-triple-xs-right {
    margin-right: 60px !important;
  }

  .push-triple-xs-bottom {
    margin-bottom: 60px !important;
  }

  .push-triple-xs-left {
    margin-left: 60px !important;
  }

  .push-triple-xs-ends {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .push-triple-xs-sides {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

  .soft-xs {
    padding: 20px !important;
  }

  .soft-xs-top {
    padding-top: 20px !important;
  }

  .soft-xs-right {
    padding-right: 20px !important;
  }

  .soft-xs-bottom {
    padding-bottom: 20px !important;
  }

  .soft-xs-left {
    padding-left: 20px !important;
  }

  .soft-xs-ends {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .soft-xs-sides {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .soft-half-xs {
    padding: 10px !important;
  }

  .soft-half-xs-top {
    padding-top: 10px !important;
  }

  .soft-half-xs-right {
    padding-right: 10px !important;
  }

  .soft-half-xs-bottom {
    padding-bottom: 10px !important;
  }

  .soft-half-xs-left {
    padding-left: 10px !important;
  }

  .soft-half-xs-ends {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .soft-half-xs-sides {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .soft-double-xs {
    padding: 40px !important;
  }

  .soft-double-xs-top {
    padding-top: 40px !important;
  }

  .soft-double-xs-right {
    padding-right: 40px !important;
  }

  .soft-double-xs-bottom {
    padding-bottom: 40px !important;
  }

  .soft-double-xs-left {
    padding-left: 40px !important;
  }

  .soft-double-xs-ends {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .soft-double-xs-sides {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .soft-triple-xs {
    padding: 60px !important;
  }

  .soft-triple-xs-top {
    padding-top: 60px !important;
  }

  .soft-triple-xs-right {
    padding-right: 60px !important;
  }

  .soft-triple-xs-bottom {
    padding-bottom: 60px !important;
  }

  .soft-triple-xs-left {
    padding-left: 60px !important;
  }

  .soft-triple-xs-ends {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .soft-triple-xs-sides {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }

  .hard-xs {
    padding: 0 !important;
  }

  .hard-xs-top {
    padding-top: 0 !important;
  }

  .hard-xs-right {
    padding-right: 0 !important;
  }

  .hard-xs-bottom {
    padding-bottom: 0 !important;
  }

  .hard-xs-left {
    padding-left: 0 !important;
  }

  .hard-xs-ends {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hard-xs-sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

@media (min-width:768px) {
  .flush-sm {
    margin: 0 !important;
  }

  .flush-sm-top {
    margin-top: 0 !important;
  }

  .flush-sm-right {
    margin-right: 0 !important;
  }

  .flush-sm-bottom {
    margin-bottom: 0 !important;
  }

  .flush-sm-left {
    margin-left: 0 !important;
  }

  .flush-sm-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .flush-sm-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .push-sm {
    margin: 20px !important;
  }

  .push-sm-top {
    margin-top: 20px !important;
  }

  .push-sm-right {
    margin-right: 20px !important;
  }

  .push-sm-bottom {
    margin-bottom: 20px !important;
  }

  .push-sm-left {
    margin-left: 20px !important;
  }

  .push-sm-ends {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .push-sm-sides {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .push-half-sm {
    margin: 10px !important;
  }

  .push-half-sm-top {
    margin-top: 10px !important;
  }

  .push-half-sm-right {
    margin-right: 10px !important;
  }

  .push-half-sm-bottom {
    margin-bottom: 10px !important;
  }

  .push-half-sm-left {
    margin-left: 10px !important;
  }

  .push-half-sm-ends {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .push-half-sm-sides {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }

  .push-double-sm {
    margin: 40px !important;
  }

  .push-double-sm-top {
    margin-top: 40px !important;
  }

  .push-double-sm-right {
    margin-right: 40px !important;
  }

  .push-double-sm-bottom {
    margin-bottom: 40px !important;
  }

  .push-double-sm-left {
    margin-left: 40px !important;
  }

  .push-double-sm-ends {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .push-double-sm-sides {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .push-triple-sm {
    margin: 60px !important;
  }

  .push-triple-sm-top {
    margin-top: 60px !important;
  }

  .push-triple-sm-right {
    margin-right: 60px !important;
  }

  .push-triple-sm-bottom {
    margin-bottom: 60px !important;
  }

  .push-triple-sm-left {
    margin-left: 60px !important;
  }

  .push-triple-sm-ends {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .push-triple-sm-sides {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

  .soft-sm {
    padding: 20px !important;
  }

  .soft-sm-top {
    padding-top: 20px !important;
  }

  .soft-sm-right {
    padding-right: 20px !important;
  }

  .soft-sm-bottom {
    padding-bottom: 20px !important;
  }

  .soft-sm-left {
    padding-left: 20px !important;
  }

  .soft-sm-ends {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .soft-sm-sides {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .soft-half-sm {
    padding: 10px !important;
  }

  .soft-half-sm-top {
    padding-top: 10px !important;
  }

  .soft-half-sm-right {
    padding-right: 10px !important;
  }

  .soft-half-sm-bottom {
    padding-bottom: 10px !important;
  }

  .soft-half-sm-left {
    padding-left: 10px !important;
  }

  .soft-half-sm-ends {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .soft-half-sm-sides {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .soft-double-sm {
    padding: 40px !important;
  }

  .soft-double-sm-top {
    padding-top: 40px !important;
  }

  .soft-double-sm-right {
    padding-right: 40px !important;
  }

  .soft-double-sm-bottom {
    padding-bottom: 40px !important;
  }

  .soft-double-sm-left {
    padding-left: 40px !important;
  }

  .soft-double-sm-ends {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .soft-double-sm-sides {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .soft-triple-sm {
    padding: 60px !important;
  }

  .soft-triple-sm-top {
    padding-top: 60px !important;
  }

  .soft-triple-sm-right {
    padding-right: 60px !important;
  }

  .soft-triple-sm-bottom {
    padding-bottom: 60px !important;
  }

  .soft-triple-sm-left {
    padding-left: 60px !important;
  }

  .soft-triple-sm-ends {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .soft-triple-sm-sides {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }

  .hard-sm {
    padding: 0 !important;
  }

  .hard-sm-top {
    padding-top: 0 !important;
  }

  .hard-sm-right {
    padding-right: 0 !important;
  }

  .hard-sm-bottom {
    padding-bottom: 0 !important;
  }

  .hard-sm-left {
    padding-left: 0 !important;
  }

  .hard-sm-ends {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hard-sm-sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

@media (min-width:1025px) {
  .flush-md {
    margin: 0 !important;
  }

  .flush-md-top {
    margin-top: 0 !important;
  }

  .flush-md-right {
    margin-right: 0 !important;
  }

  .flush-md-bottom {
    margin-bottom: 0 !important;
  }

  .flush-md-left {
    margin-left: 0 !important;
  }

  .flush-md-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .flush-md-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .push-md {
    margin: 20px !important;
  }

  .push-md-top {
    margin-top: 20px !important;
  }

  .push-md-right {
    margin-right: 20px !important;
  }

  .push-md-bottom {
    margin-bottom: 20px !important;
  }

  .push-md-left {
    margin-left: 20px !important;
  }

  .push-md-ends {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .push-md-sides {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .push-half-md {
    margin: 10px !important;
  }

  .push-half-md-top {
    margin-top: 10px !important;
  }

  .push-half-md-right {
    margin-right: 10px !important;
  }

  .push-half-md-bottom {
    margin-bottom: 10px !important;
  }

  .push-half-md-left {
    margin-left: 10px !important;
  }

  .push-half-md-ends {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .push-half-md-sides {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }

  .push-double-md {
    margin: 40px !important;
  }

  .push-double-md-top {
    margin-top: 40px !important;
  }

  .push-double-md-right {
    margin-right: 40px !important;
  }

  .push-double-md-bottom {
    margin-bottom: 40px !important;
  }

  .push-double-md-left {
    margin-left: 40px !important;
  }

  .push-double-md-ends {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .push-double-md-sides {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .push-triple-md {
    margin: 60px !important;
  }

  .push-triple-md-top {
    margin-top: 60px !important;
  }

  .push-triple-md-right {
    margin-right: 60px !important;
  }

  .push-triple-md-bottom {
    margin-bottom: 60px !important;
  }

  .push-triple-md-left {
    margin-left: 60px !important;
  }

  .push-triple-md-ends {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .push-triple-md-sides {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

  .soft-md {
    padding: 20px !important;
  }

  .soft-md-top {
    padding-top: 20px !important;
  }

  .soft-md-right {
    padding-right: 20px !important;
  }

  .soft-md-bottom {
    padding-bottom: 20px !important;
  }

  .soft-md-left {
    padding-left: 20px !important;
  }

  .soft-md-ends {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .soft-md-sides {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .soft-half-md {
    padding: 10px !important;
  }

  .soft-half-md-top {
    padding-top: 10px !important;
  }

  .soft-half-md-right {
    padding-right: 10px !important;
  }

  .soft-half-md-bottom {
    padding-bottom: 10px !important;
  }

  .soft-half-md-left {
    padding-left: 10px !important;
  }

  .soft-half-md-ends {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .soft-half-md-sides {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .soft-double-md {
    padding: 40px !important;
  }

  .soft-double-md-top {
    padding-top: 40px !important;
  }

  .soft-double-md-right {
    padding-right: 40px !important;
  }

  .soft-double-md-bottom {
    padding-bottom: 40px !important;
  }

  .soft-double-md-left {
    padding-left: 40px !important;
  }

  .soft-double-md-ends {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .soft-double-md-sides {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .soft-triple-md {
    padding: 60px !important;
  }

  .soft-triple-md-top {
    padding-top: 60px !important;
  }

  .soft-triple-md-right {
    padding-right: 60px !important;
  }

  .soft-triple-md-bottom {
    padding-bottom: 60px !important;
  }

  .soft-triple-md-left {
    padding-left: 60px !important;
  }

  .soft-triple-md-ends {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .soft-triple-md-sides {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }

  .hard-md {
    padding: 0 !important;
  }

  .hard-md-top {
    padding-top: 0 !important;
  }

  .hard-md-right {
    padding-right: 0 !important;
  }

  .hard-md-bottom {
    padding-bottom: 0 !important;
  }

  .hard-md-left {
    padding-left: 0 !important;
  }

  .hard-md-ends {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hard-md-sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

@media (min-width:1200px) {
  .flush-lg {
    margin: 0 !important;
  }

  .flush-lg-top {
    margin-top: 0 !important;
  }

  .flush-lg-right {
    margin-right: 0 !important;
  }

  .flush-lg-bottom {
    margin-bottom: 0 !important;
  }

  .flush-lg-left {
    margin-left: 0 !important;
  }

  .flush-lg-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .flush-lg-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .push-lg {
    margin: 20px !important;
  }

  .push-lg-top {
    margin-top: 20px !important;
  }

  .push-lg-right {
    margin-right: 20px !important;
  }

  .push-lg-bottom {
    margin-bottom: 20px !important;
  }

  .push-lg-left {
    margin-left: 20px !important;
  }

  .push-lg-ends {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .push-lg-sides {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .push-half-lg {
    margin: 10px !important;
  }

  .push-half-lg-top {
    margin-top: 10px !important;
  }

  .push-half-lg-right {
    margin-right: 10px !important;
  }

  .push-half-lg-bottom {
    margin-bottom: 10px !important;
  }

  .push-half-lg-left {
    margin-left: 10px !important;
  }

  .push-half-lg-ends {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .push-half-lg-sides {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }

  .push-double-lg {
    margin: 40px !important;
  }

  .push-double-lg-top {
    margin-top: 40px !important;
  }

  .push-double-lg-right {
    margin-right: 40px !important;
  }

  .push-double-lg-bottom {
    margin-bottom: 40px !important;
  }

  .push-double-lg-left {
    margin-left: 40px !important;
  }

  .push-double-lg-ends {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .push-double-lg-sides {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .push-triple-lg {
    margin: 60px !important;
  }

  .push-triple-lg-top {
    margin-top: 60px !important;
  }

  .push-triple-lg-right {
    margin-right: 60px !important;
  }

  .push-triple-lg-bottom {
    margin-bottom: 60px !important;
  }

  .push-triple-lg-left {
    margin-left: 60px !important;
  }

  .push-triple-lg-ends {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .push-triple-lg-sides {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

  .soft-lg {
    padding: 20px !important;
  }

  .soft-lg-top {
    padding-top: 20px !important;
  }

  .soft-lg-right {
    padding-right: 20px !important;
  }

  .soft-lg-bottom {
    padding-bottom: 20px !important;
  }

  .soft-lg-left {
    padding-left: 20px !important;
  }

  .soft-lg-ends {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .soft-lg-sides {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }

  .soft-half-lg {
    padding: 10px !important;
  }

  .soft-half-lg-top {
    padding-top: 10px !important;
  }

  .soft-half-lg-right {
    padding-right: 10px !important;
  }

  .soft-half-lg-bottom {
    padding-bottom: 10px !important;
  }

  .soft-half-lg-left {
    padding-left: 10px !important;
  }

  .soft-half-lg-ends {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .soft-half-lg-sides {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .soft-double-lg {
    padding: 40px !important;
  }

  .soft-double-lg-top {
    padding-top: 40px !important;
  }

  .soft-double-lg-right {
    padding-right: 40px !important;
  }

  .soft-double-lg-bottom {
    padding-bottom: 40px !important;
  }

  .soft-double-lg-left {
    padding-left: 40px !important;
  }

  .soft-double-lg-ends {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .soft-double-lg-sides {
    padding-right: 40px !important;
    padding-left: 40px !important;
  }

  .soft-triple-lg {
    padding: 60px !important;
  }

  .soft-triple-lg-top {
    padding-top: 60px !important;
  }

  .soft-triple-lg-right {
    padding-right: 60px !important;
  }

  .soft-triple-lg-bottom {
    padding-bottom: 60px !important;
  }

  .soft-triple-lg-left {
    padding-left: 60px !important;
  }

  .soft-triple-lg-ends {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .soft-triple-lg-sides {
    padding-right: 60px !important;
    padding-left: 60px !important;
  }

  .hard-lg {
    padding: 0 !important;
  }

  .hard-lg-top {
    padding-top: 0 !important;
  }

  .hard-lg-right {
    padding-right: 0 !important;
  }

  .hard-lg-bottom {
    padding-bottom: 0 !important;
  }

  .hard-lg-left {
    padding-left: 0 !important;
  }

  .hard-lg-ends {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .hard-lg-sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

/* resize video img & remove black border */
.post-type-archive-fx_video .video-card .blog-box {
  border-top: 0;
}
@media(min-width: 768px){
  .video-card .blog-video {
    height: 120px;
  }
}
@media(min-width: 1200px){
  .video-card .blog-video {
    height: 130px;
  }
}
@media(min-width: 1350px){
  .video-card .blog-video {
    height: 154px;
  }
}


/* NS forms */
@media (min-width: 835px) {
  iframe.ns-form {
    height: 820px;
  }
}

@media (min-width: 1025px) {
  iframe.ns-form {
    height: 1140px;
  }
}

@media (min-width: 1259px) {
  iframe.ns-form {
    height: 810px;
  }
}

/*******************************
 * No CSS Should be added below the above TRUMPS section.
 *
 *
 * Please add all additional CSS above the TRUMPS section above.
 * /
*/
}
