#navigation-wrapper {
  padding-top: 2px;
  padding-bottom: 0px;
  background-color: #fff;
  border-bottom: 1px solid #E2E2E2;
  /*    border-top: 1px solid #e7e7e7;*/
  position: relative;
  z-index: 99;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.10);
}
/*HTML5 BUTTON*/
.h5button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  /* show a hand cursor on hover; some argue that we
  should keep the default arrow cursor for buttons */
  cursor: pointer;
}
/*GO BUTTON*/
.btn-go {
  font-size: 14px;
  border: none;
  background-color: inherit;
  padding-top: 14px;
  padding-right: 28px;
  padding-left: 28px;
  padding-bottom: 14px;
  margin-top: 10px;
  cursor: pointer;
  display: inline-block;
}
.btn-go:hover {
  background: #eee;
}
.btn-go:active {
  background: #eee;
}
/*END GO BUTTON*/
/*HOVER IMG*/
.product {
  position: relative;
  /*  width: 50%;*/
}
.hvimage {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
}
.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  bottom: -10;
  top: 85%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.product:hover .hvimage {
  opacity: 0.5;
}
.product:hover .middle {
  opacity: 1;
}
.hv-text {
  background-color: #000000;
  color: white;
  font-size: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 12px 16px;
  letter-spacing: 1px;
}
.middle:hover .hv-text {
  background-color: #dddddd;
  color: #000000;
}
.middle:active .hv-text {
  background-color: #dddddd;
  color: #000000;
}
/*END HOVER IMG*/
/*STICKY NAVIGATION & TOP BUTTON*/
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 50; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #BBBBBB; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 8px 13px; /* Some padding */
  border-radius: 6px; /* Rounded corners */
  font-size: 20px; /* Increase font size */
}
#myBtn:hover {
  background-color: #575757;
}
/* Page content */
.stickyscroll {
  padding-top: 16px;
}
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
.sticky {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  background-color: #EEEEEE;
  border-bottom: 1px #e7e7e7 solid;
}
#navigation.sticky ul li a {
  border-right: 1px solid #EEEEEE;
}
/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
.sticky + .stickyscroll {
  padding-top: 60px;
}
/*END STICKY NAVIGATION & TOP*/
/*SLIDESHOW*/
* {
  box-sizing: border-box
}
body {
  font-family: Hind, sans-serif;
}
img {
  vertical-align: center;
  max-width: 100%;
  height: auto;
}
/* Slideshow container */
.slideshow-container {
  /*  text-align: center;*/
  max-width: 1300px;
  position: relative;
  margin: auto;
  overflow: hidden;
}
/* Hide the images by default */
.mySlides {
  display: none;
}
.slideElmnt {}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #DDDDDD;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 5px;
  width: 5px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.active, .dot:hover {
  background-color: #717171;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 2.5s;
  animation-name: fade;
  animation-duration: 2.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: .4
  }
  to {
    opacity: 1
  }
}
@keyframes fade {
  from {
    opacity: .4
  }
  to {
    opacity: 1
  }
}
/*END SLIDESHOW*/
body {
  font-family: Hind, Helvetica, Arial, sans-serif;
  color: #444;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
body {
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  min-height: 600px;
}
body.dialogpage, body.filedialog, body.wysiwygeditor {
  background-color: #FFF;
  background-image: none;
}
.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}
.font-hind {
  font-family: 'Hind', sans-serif;
}
.font-roboto {
  font-family: 'Roboto', sans-serif;
}
a {
  color: #000;
  text-decoration: none;
  text-decoration: underline;
}
a:visited {
  color: #000;
}
a:hover {
  color: #575757;
  text-decoration: underline;
}
a:active {
  color: #575757;
  text-decoration: underline;
}
.breakLongURLs {
  white-space: pre; /* CSS 2.0 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3.0 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  white-space: -moz-pre-wrap; /* Mozilla */
  white-space: -hp-pre-wrap; /* HP Printers */
  word-wrap: break-word; /* IE 5+ */
}
/*Add class to form input to make the value (words) gray until the box is clicked into and then text becomes black*/
.form-input-gray {
  color: #999;
}
.form-input-gray:focus {
  color: #000;
}
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
.clearboth {
  clear: both;
}
.content {
  width: 94%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.rows {
  padding: 10px 0px 10px 0px;
}
.column-container {
  text-align: center;
  margin-bottom: 20px;
}
.divider {
  border-top: 1px solid #DADADA;
  padding-top: 10px;
  margin-top: 30px;
}
.underline {
  border-bottom: 1px solid #DADADA;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.underline-dotted {
  border-bottom: 1px dotted #DADADA;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.img-shadow img {
  border: 8px solid #fff;
  -webkit-box-shadow: 0px 1px 1px rgba(50, 50, 50, 0.25);
  -moz-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0.45);
  box-shadow: 1px 1px 6px rgba(185, 185, 185, 0.9);
}
#hdr-left {
  width: 35%;
  float: left;
}
#hrd-center {
  width: 30%;
  text-align: center;
  float: left;
  padding-top: 5px;
}
#hdr-right {
  width: 34%;
  float: right;
  text-align: center;
}
#main-body {
  padding-top: 20px;
  padding-bottom: 20px;
  min-height: 450px;
}
.404141s {
  overflow: hidden;
}
.text-small {
  text-weight: small;
  font-size: .85em;
}
.text-align-left {
  text-align: left;
}
.text-align-right {
  text-align: right;
}
.text-align-center {
  text-align: center;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.gutter-left {
  margin-left: 2%;
}
.gutter-right {
  margin-right: 2%;
}
.col-two {
  width: 48%;
}
.col-three {
  width: 32%;
}
.col-three-two-thirds {
  width: 64%;
}
.col-four {
  width: 22%;
}
.gutter-left-four {
  margin-left: 04%;
}
.col-four-three-fourths {
  width: 74%;
}
.col-five {
  width: 16.8%;
}
.col-six {
  width: 16%;
}
.col-six-two-thirds {
  width: 66.4%;
}
.col-six-one-third {
  width: 32.8%;
}
.col-six-fourths {
  width: 24.4%;
}
.gutter-left-six {
  margin-left: .8%;
}
.gutter-right-six {
  margin-right: .8%;
}
.padding-top-10px {
  padding-top: 10px;
}
.padding-top-20px {
  padding-top: 20px;
}
.padding-btm-10px {
  padding-bottom: 10px;
}
.padding-btm-20px {
  padding-bottom: 20px;
}
.padding-left-20px {
  padding-left: 20px;
}
.padding-right-20px {
  padding-right: 20px;
}
.padding-left-50px {
  padding-left: 50px;
}
.padding-right-50px {
  padding-right: 50px;
}
.padding-left-100px {
  padding-left: 100px;
}
.padding-right-100px {
  padding-right: 100px;
}
.margin-top-10px {
  margin-top: 10px;
}
.margin-top-20px {
  margin-top: 20px;
}
.margin-top-30px {
  margin-top: 30px;
}
.margin-top-60px {
  margin-top: 60px;
}
.margin-btm-10px {
  margin-bottom: 10px;
}
.margin-btm-20px {
  margin-bottom: 20px;
}
.margin-btm-30px {
  margin-bottom: 30px;
}
.border-left {
  border-left: #d7d7d7 1px solid;
}
.border-right {
  border-right: #d7d7d7 1px solid;
}
.box-border {
  border-style: solid;
  border-width: 1px;
  border-color: #e7e7e7;
  background-color: #ffffff;
  padding: 1%;
}
.box-gutter-left {
  margin-left: 4%;
}
.searchbox {
  width: 45%;
  float: right;
  text-align: right;
}
.creditcards img {
  margin-left: 3px;
  margin-right: 3px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.social-media img {
  margin-left: 7px;
  margin-right: 7px;
  margin-top: 0px;
  margin-bottom: 2px;
}
#header-wrapper {
  padding-bottom: 10px;
}
#header-wrapper a {
  color: #222;
}
#header-wrapper a:visited {
  color: #222;
}
#header-wrapper a:hover {
  color: #555555;
}
#header-wrapper a:active {
  color: #555;
}
#footer-wrapper {
  background-color: #FFFFFF;
  border-top: 1px solid #C9C9C9;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 30px;
}
#footer {
  padding-top: 10px;
  font-size: 0.9em;
}
#footer a {
  color: #3a3a3a;
  margin-right: 20px;
}
#footer a:visited {
  color: #3a3a3a;
}
#footer a:hover {
  color: #dc4137;
}
#footer a:active {
  color: #dc4137;
}
#sub-footer {
  font-size: .8em;
  border-top: 1px solid #C9C9C9;
  padding-top: 10px;
  margin-top: 10px;
}