:root {
  --blue: #0681c5;
  --dark-blue: #1b51a4;
  --crimson: #9f2743;
  --red: #981b22;
  --dark-gray: #231f20;
}

@charset "utf-8";
@font-face {
  font-family: 'gotham-black';
  src: url('/fonts/gotham-black-webfont.woff2') format('woff2'),
    url('/fonts/gotham-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gotham-bold';
  src: url('/fonts/gotham-bold-webfont.woff2') format('woff2'),
    url('/fonts/gotham-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gotham-book';
  src: url('/fonts/gothambook-webfont.woff2') format('woff2'),
    url('/fonts/gothambook-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gotham-medium';
  src: url('fonts/gothammedium_1-webfont.woff2') format('woff2'),
    url('fonts/gothammedium_1-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gothic-book';
  src: url('fonts/ITCFranklinGothicStd-Book.woff2') format('woff2'),
    url('fonts/ITCFranklinGothicStd-Book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gothic-demi';
  src: url('fonts/ITCFranklinGothicStd-Demi.woff2') format('woff2'),
    url('fonts/ITCFranklinGothicStd-Demi.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gothic-mdcd';
  src: url('fonts/ITCFranklinGothicStd-MdCd.woff2') format('woff2'),
    url('fonts/ITCFranklinGothicStd-MdCd.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */
html {
  scroll-behavior: smooth;
  min-height: 100%;
}
body {
  overflow-x: hidden;
  font-family: 'gotham-book';
  /* background: #231f20; */
  color: var(--dark-gray);
  height: 100%;
  position: relative;
}

a {
  transition: color 0.5 ease !important;
  color: inherit;
}
a:hover {
  text-decoration: none;
  color: var(--blue);
}
strong,
b {
  font-family: 'gotham-bold';
}
h1,
h2,
h3 {
  font-weight: 800;
}
h1 {
  text-transform: uppercase;
  font-family: 'gotham-bold';
}
h2 {
}
.white-panel {
  border-top: 15px solid #bf8256;
  border-bottom: 15px solid #bf8256;
}
.green-panel {
  background: #bf8256;
  border-top: 10px solid #fff;
  border-bottom: 10px solid #fff;
  background-color: #bf8256;
  background-image: url('https://www.transparenttextures.com/patterns/45-degree-fabric-dark.png');
  /* This is mostly intended for prototyping; please download the pattern and re-host for production environments. Thank you! */
}
.green-panel h1,
.green-panel p {
  color: #fff !important;
}
h2 {
}
h3 {
}
h4 {
}
p,
#content ul,
#content ol {
  line-height: 1.4;
  font-size: 18px;
  font-weight: 300;
}
#Page_Title h1 {
  /* margin-top: 20px; */
  margin: 0;
}
.bold {
  font-weight: 800;
}
.marker-text {
  font-family: uppercut-angle, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #cb0404 !important;
}
#top-nav .marker-text {
  font-size: 2.1em;
}
.blue-text {
  color: #00416a;
}
.grey-text {
  color: #8a8a8d;
}
.white-text {
  color: #fff;
}
#hero {
  height: calc(100vh - 70px);
  color: white;
}
/* #hero #vid-bg {
  position: absolute;
  bottom: 0;
  z-index: 0;
} */
.product-file {
  background-color: rgba(0, 0, 0, 0.3);
}
.product-file a {
  display: block;
  padding: 2em;
  text-decoration: none;
  color: white;
}
.product-file a:hover {
  text-decoration: underline;
  color: white;
}
/*--------- Theme buttons ---------*/
.btn,
.jf-form-buttons {
  text-decoration: none !important;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  border-radius: 0;
  border: 2px solid #000;
  text-transform: uppercase;
  color: inherit;
}
.btn:before,
.jf-form-buttons:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0;
  height: 100%;
  background: #000;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.btn:hover,
.btn:focus,
.btn:active,
.jf-form-buttons:hover,
.jf-form-buttons:focus,
.jf-form-buttons:active {
  color: white !important;
}
.btn:hover:before,
.btn:focus:before,
.btn:active:before,
.jf-form-buttons:hover:before,
.jf-form-buttons:focus:before,
.jf-form-buttons:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.btn-primary {
  background: #00416a !important;
}
.btn-white,
.black-bg .jf-form-buttons {
  color: #fff !important;
  border-color: #fff !important;
}
.btn-white:hover,
.black-bg .jf-form-buttons:hover {
  color: #000 !important;
}
.btn-white:before,
.black-bg .jf-form-buttons:before {
  background: #fff !important;
}
.btn-black-t {
  padding: 1em;
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  border-radius: 0;
}
.btn-black-t:hover {
  background-color: rgba(0, 0, 0, 1);
  color: white;
}
.btn:hover {
}
.offset-btn {
  text-align: center;
  margin-top: 15px;
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 9;
}
.ghost-btn {
  border: 2px solid #fff;
  border-radius: 0;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  text-transform: uppercase;
  min-width: 200px;
  transition: background 0.5s ease;
}
.ghost-btn:hover,
.ghost-btn:active {
  background: rgba(0, 0, 0, 1);
}
[name='subscribe'] {
  background-color: rgba(0, 0, 0, 0.8) !important;
  color: white !important;
  padding: 1em !important;
}
section {
  padding: 50px 0 60px;
  position: relative;
}
section#easel-content {
  padding: 0;
}
section.template-default-wide {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  position: relative;
}
section.no-animation {
  visibility: visible !important;
  opacity: 1 !important;
}
.full-width {
  position: relative;
}
.full-width:before {
  content: '';
  background: inherit;
  position: absolute;
  height: 100%;
  width: 200%;
  left: -50%;
  top: 0;
  z-index: -1;
}
.no-padding {
  padding: 0 !important;
}
.dark-blue-bg {
  background-color: #925226;
  width: 100%;
}
.white-bg {
  background-color: #fff;
}
.form-control {
  border-radius: unset !important;
}
/* NAV 
-*--------------------------------------------------*/
/*sticky header position*/
header {
  position: unset;
}
#top-nav {
  background: transparent;
}
.is-sticky #bottom-nav {
  background: rgba(30, 90, 65, 0.9);
}
#bottom-nav {
  background: #333;
}
.main-nav-links .justify-content-between {
  flex-direction: row;
}
.navbar {
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
  padding-bottom: 0.5rem !important;
  transition: background 0.8s ease;
  top: 0 !important;
}
.sticky.is-sticky {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  width: 100%;
  background: rgba(255, 255, 255, 1);
  transition: all 1s ease;
  color: black;
}

.sticky.is-sticky.hide-nav {
  top: -98px !important;
}
.sticky.is-sticky.hide-nav:hover {
  top: 0 !important;
}
.secondary-nav {
  margin-top: 0;
  transition: all 0.1s ease;
}
ul.navbar-nav {
  width: 100%;
  font-size: 1.2em;
  text-transform: unset !important;
  height: 100%;
}
/* .links-block {
  position: relative !important;
} */
/* .links-block:after {
  content: '';
  background: #00416a;
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  bottom: -0.5rem;
  transition: all 0.5s ease;
  left: 0;
}
.is-sticky .links-block:after {
  width: 200%;
  left: -50%;
} */
.links-block a {
  transition: all 0.5s ease;
  padding: 10px 20px;
  display: block;
  color: #00416a !important;
}
a.nav-link {
  color: inherit !important;
  padding-left: 0.75em !important;
  padding-right: 0.75em !important;
}
a.nav-link:hover {
}
a.nav-link.active,
a.nav-link:hover {
  color: inherit !important;
}
.navbar-collapse {
  flex-grow: inherit;
}
.navbar-toggler {
  background: white;
  border-radius: 0;
  border: none !important;
  color: black;
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 8px;
}
.navbar-toggler-icon {
  width: 1.5em;
  background-size: 300% 130%;
  height: auto;
}
.navbar-toggler:hover {
  background: black;
  color: white;
}
.navbar-toggler:focus {
  box-shadow: none;
}
#nav-caption h1 {
  font-family: 'Droid Serif', Georgia, Times, serif;
  color: #fff;
  font-weight: 300 !important;
  font-style: italic;
  font-size: 1.7em;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media (min-width: 992px) {
  .navbar-toggler {
    display: none;
  }
}
/* --------------SVG LOGO ---------------------
*/
#logo-box {
  transition: height 0.5s ease;
  margin: 0;
  height: auto !important;
}
#logo-box a {
  width: 100%;
}
#logo-box img {
  width: 100%;
  /* max-width: 50px; */
  /* max-height: 50px; */
}
.is-sticky #logo-box {
}
/* dropdown links 
------------------------------------------------*/
.dropdown-menu {
  background: #005d8c;
  padding: 50px 0 !important;
  font-size: 0.8em;
  left: auto !important;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 0;
}
.dropdown-menu a {
  color: #fff !important;
  display: block;
}
.dropdown-menu a:hover {
  text-decoration: underline;
}
.dropdown-menu h5 {
  border-bottom: 1px solid #925226 !important;
  padding-bottom: 5px;
}
.dropdown-menu hr {
  border-top-color: #925226 !important;
}
.dropdown-menu.product-dropdown {
  padding: 0 !important;
}
.dark-blue-bg .row {
  background: rgba(0, 0, 0, 0);
  transition: background 0.5s ease;
}
.hex-bg {
  background-image: url(/images/hex-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
a.dd-thumb {
  color: #fff !important;
  display: block;
  text-align: center;
  font-size: 1.2em;
  letter-spacing: 1px;
  padding: 35px 10px;
  margin: 10px;
  position: relative;
}
.dark-blue-bg a.dd-thumb {
  font-size: 1.1em;
}
a.dd-thumb:hover {
  background: rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
  color: #fff !important;
}
a.dd-thumb img {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  max-width: 90%;
}
a.dd-thumb span.product-text {
  margin-top: 10px;
  display: block;
  /* position: absolute;
    top: 70%;
    right: 0;
    text-shadow: 1px 1px 3px rgba(0,0,0,.5);
    padding: 5px 15px;*/
}
a.dd-thumb:hover img,
a.dd-thumb:focus img,
a.dd-thumb:active img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
/* PEEKABOO SEARCH INPUT
-------------------------------------------------- */
#search {
  min-width: 44%;
}
.searchField {
  position: relative !important;
  height: 100%;
}
.searchFieldInput.peek-search {
  border-radius: 0;
  height: 35px !important;
  border-bottom: 1px solid #231f20 !important;
  width: 0 !important;
  padding: 5ps !important;
  right: 35px;
  transition: width 0.6s;
  box-shadow: none !important;
  opacity: 0;
  transition: opacity 0.5 ease;
}
.searchField:hover .peek-search,
.peek-search:hover {
  width: 100% !important;
  opacity: 1;
}
#searchBtn {
  color: #231f20 !important;
  text-indent: 0 !important;
  right: 0 !important;
  left: auto !important;
  position: absolute !important;
  width: 40px;
  top: 0 !important;
  height: 35px;
  background: none;
  border: none;
}
@media (min-width: 992px) {
  nav {
    min-height: unset;
  }
  .sticky.is-sticky .secondary-nav {
    opacity: 0;
  }
  .dropdown.dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  }
  ul.navbar-nav button.dropdown-toggle-split {
    display: none;
  }
  ul.navbar-nav li.nav-item {
    position: static !important;
    width: 100%;
    text-align: center;
  }
  /* .links-block,
  #navbarSupportedContent {
    display: block !important;
  } */

  .w-100 {
    left: 0;
    position: absolute;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .navbar-collapse {
    font-size: 0.8em;
  }
  .nav-item a {
    height: 100%;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .nav-item a:hover {
    background-color: var(--blue);
    color: white !important;
  }
}
@media (max-width: 991px) {
  .sticky-wrapper {
    height: 0 !important;
  }
  #logo-box {
    flex: 1;
  }
  #logo-box a {
    width: 100%;
    max-width: 300px;
  }
  ul.navbar-nav {
    padding-bottom: 15px;
    flex-direction: column !important;
  }
  .links-block {
    position: relative;
    max-width: none !important;
  }
  .links-block a,
  li.nav-item a.nav-link {
    z-index: 99;
    font-size: 2em;
  }
  /*  .links-block:before{
        content: '';
    display: block;
    position: absolute;
    left: -50%;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 0;
    left: -150%;
    width: 315%;
        z-index:0;
    }*/
  .secondary-nav {
    position: relative;
    z-index: 2;
  }
  #search {
    min-width: 100% !important;
    margin-bottom: 25px;
  }
  .searchFieldInput.peek-search {
    opacity: 100;
    width: 100% !important;
    border-bottom: none !important;
    height: 45px !important;
  }
  #searchBtn {
    height: 45px !important;
  }
  .dropdown-toggle-split::after,
  .dropright .dropdown-toggle-split::after,
  .dropup .dropdown-toggle-split::after {
    color: #fff;
  }
  .dropdown-menu {
    width: 100%;
    text-align: center;
    background-color: rgba(0, 0, 0, 1);
  }
  li.nav-item,
  .secondary-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  btn.dropdown-toggle {
    margin: 0;
  }
  .navbar-collapse {
    order: 5;
    position: relative;
  }
  .navbar-nav {
    height: 100vh !important;
    text-align: center;
  }
  /*
	.navbar-collapse:before, .navbar-collapse:after{
		content: '';
		background: #00416a;
		position:absolute;
		height: 100%;
		width: 50%;
		top: 0;
	}
	.navbar-collapse:before{
		left: -50%;
	}
	
	.navbar-collapse:after{
		right: -50%;
	}
*/
}
@media (max-width: 576px) {
  .navbar-toggler {
    margin-right: 10px;
  }
  #logo-box {
    height: auto;
  }
  #logo-box img {
    max-width: inherit;
  }
  #nav-caption {
    order: 3;
    width: 100%;
    margin-bottom: 15px;
    margin-top: 5px;
  }
  #nav-caption h1 {
    font-size: 1.5em;
    display: block;
    text-align: center;
    width: 100%;
  }
  button.navbar-toggler {
    order: 2;
  }
  section {
    padding: 50px 0;
    text-align: center;
  }
  h1 {
    font-size: 1.8em;
  }
  section .col-sm-6 {
    margin-bottom: 15px;
  }
  #floating-mat {
    position: relative !important;
    top: 0 !important;
  }
  #perspective-lay {
    order: 4;
  }
}
/* tempalte brand - links*/
.navbar-brand {
  height: 100%;
  position: relative;
}
.navbar-brand img {
  position: relative;
  z-index: 5;
}
/* secondary nav -------------------------------*/
#head-telephone {
  padding-left: 1.25em !important;
  padding-right: 1.25em !important;
}
/* social icons */
#header-social a.social-link {
  display: inline-block;
  margin-right: 3px;
  height: 32px;
  width: 32px;
  padding: 7px;
  background-color: rgba(24, 89, 138, 0);
  text-align: center;
  font-size: 1.25em;
  color: unset;
  transition: background-color 0.5s ease;
}
#header-social a.social-link:hover {
  color: #00416a !important;
  background: transparent;
}
#header-social a.social-link i {
  display: block;
  height: 100%;
  width: 100% !important;
}
#header-social a.social-link i:before {
  display: block;
}
@media (min-width: 992px) {
}
@media (max-width: 991px) {
}
/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */
/* Carousel base class */
.carousel {
  top: -45px;
  margin-bottom: -45px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-item .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.carousel-caption {
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
  color: #231f20;
  padding: 15px 25px;
  margin-left: -25px;
  margin-right: -25px;
  position: relative;
  right: 0;
  left: 0;
  bottom: auto;
  margin-top: 150px;
}
.carousel-caption h1 {
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 5px;
}
.carousel-caption h4 {
  color: #231f20 !important;
}
.carousel-caption a.btn {
  position: absolute;
  bottom: -35px;
  right: 25px;
}
/* Declare heights because of positioning of img element */
.carousel-item {
  height: 85vh;
  max-height: 760px;
  min-height: 450px;
  background-color: #777;
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage-carousel .carousel-control-prev,
.homepage-carousel .carousel-control-next {
  font-size: 4em;
}
.homepage-carousel .carousel-control-prev {
  margin-left: -25px;
}
.homepage-carousel .carousel-control-next {
  margin-right: -25px;
}
/* FOOTER
-------------------------------------------------- */
#content {
  margin-bottom: 0;
}
footer {
  color: #fff;
}
#footer-bar {
  background: #333;
  position: relative;
  margin-bottom: 30px;
  color: #ccc !important;
}
#footer-bar:before {
  background: #333;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
}
#footer-bar:after {
  background: #333;
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  right: -100%;
  top: 0;
}
footer {
  background: var(--dark-gray);
  padding-top: 50px;
  overflow-x: hidden;
  border-top: 5px solid var(--blue);
}
#footer-company-info p {
  font-size: 14px;
  line-height: 1.2;
  margin-bottom: 8px;
}
#footer-company-info a {
  color: #fff;
}
#footer-company-info a:hover {
  text-decoration: underline;
  color: #666;
}
footer .footer-nav ul {
  list-style: none;
  padding-left: 0;
}
.footer-nav,
#footer-company-info {
  font-size: 0.9em;
}
footer #copyright {
  padding: 10px 0;
  align-items: center;
}
footer #copyright a {
  color: inherit;
}
/* footer #copyright a:hover {
  color: var(--blue);
} */
footer #copyright p {
  margin-bottom: 0 !important;
  color: #4a4a4a;
}
#footer-logo {
  flex: 2;
  padding-top: 6px;
  padding-bottom: 6px;
}
#footer-logo img {
  max-height: 50px;
  margin-top: 9px;
  margin-bottom: 5px;
}
/* social icons */
#footer-social,
#footer-subscribe {
}
#footer-social {
  font-size: 1.5em;
}
#footer-social a.social-link {
  display: inline-block;
  margin-right: 3px;
  padding: 15px;
  background-color: rgba(24, 89, 138, 0);
  text-align: center;
  width: unset;
  height: unset;
  color: #fff;
  transition: background-color 0.5s ease;
}
#footer-social a.social-link:hover {
  color: #fff !important;
  background-color: rgba(30, 90, 65, 0.1);
}
#footer-sociall a.social-link i {
  display: block;
  height: 100%;
  width: 100% !important;
}
#footer-social a.social-link i:before {
  display: block;
}
#footer-subscribe {
  flex: 2;
}
#footer-subscribe form,
#footer-subscribe .form-group {
  height: 100%;
}
#footer-subscribe label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
#footer-subscribe .form-group {
  display: flex;
  margin-bottom: 0;
}
#footer-subscribe .form-control {
  background: #ccc !important;
}
#footer-subscribe button.btn {
  margin: 0 !important;
  background: #231f20 !important;
}
#footer-subscribe button.btn:hover {
}
#footer-subscribe small#emailHelp {
  display: none;
}
/*////////////////////////
PRODUCT CAROUSEL - THUMBS 
////////////////////////////*/
/* #featured-products {
  position: relative;
}
#product-carousel .owl-stage {
  display: flex;
  flex-direction: row;
  height: 100%;
}
.owl-stage div.owl-item {
  height: 100% !important;
}
.thumb-container {
  height: 100%;
  position: relative;
  text-align: center;
  font-size: 0.85em;
  margin: 0 25px;
  line-height: 1.1;
}
.thumb-container img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: contain;
} */
/* .owl-nav,
.owl-dots {
  height: 0;
} */
.nav-btn {
  position: absolute;
  display: block;
  height: 30px;
  width: 30px;
  border-color: blue;
  top: 30%;
  z-index: 9;
}
.thumb-prev {
  border-left: 5px solid#bf8256;
  border-bottom: 5px solid#bf8256;
  transform: rotate(45deg);
  left: 0;
}
.thumb-prev:hover {
  opacity: 0.5;
}
.thumb-next {
  border-right: 5px solid#bf8256;
  border-bottom: 5px solid#bf8256;
  height: 30px;
  width: 30px;
  transform: rotate(-45deg);
  right: 0;
}
/*//////// FEATURE /////*/
.row#features {
  margin-left: -5px;
  margin-right: -5px;
}
.row#features [class^='col-'] {
  padding-left: 5px;
  padding-right: 5px;
}
.img-thumb {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAH0lEQVQYV2NkQAX/GZH4/xkYGBhhAmAOSBJEwDkgAQCCrgQEjpMcPgAAAABJRU5ErkJggg==);
  background-size: 5.66px 5.66px;
  background-blend-mode: color;
  border-radius: 5px;
  padding: 9px;
}
.img-thumb a {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  display: block;
  padding: 5px;
}
a span.thumb-caption {
  color: #fff;
  font-size: 1.1em;
  text-transform: uppercase;
  font-weight: bold;
}
/*//////////////////////////////////
MEDIA 
///////////////////////////////////*/
#contact-form form {
  position: relative;
  padding-top: 15px;
}
/*///////////////////////////////////
Media (news, blog, events) section 
///////////////////////////////////*/
section#media {
  background-image: url(/images/site/notbokeh-1.jpg);
  position: relative;
  border-top: 10px solid #231f20;
}
#media:before {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(33, 27, 25, 0.85) 60%
  );
  content: '';
  height: 100%;
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
}
section#media .BlogTitle h1 {
  font-size: 1.2em;
}
section#media .BlogTitle h1 a {
  color: #bf8256;
}
section#media .BlogTitle h1 a {
  color: #925226;
}
#media hr {
  display: none;
}
.media-footer-col {
  position: relative;
  padding-bottom: 55px;
}
.media-footer-col a.btn {
  position: absolute;
  bottom: 0;
  right: 15px;
}
@media (min-width: 992px) {
}
@media (min-width: 768px) and (max-width: 992px) {
}
/*///////////////////////
general 
////////////////////////*/
ul.checkmark li {
  background: url('/images/checkmark.png') no-repeat 0 0%;
  padding-left: 40px;
  margin-left: -30px;
  list-style: none !important;
  text-transform: uppercase;
  font-size: 1.2em;
  line-height: 1.2;
  padding-bottom: 10px;
}
/*/////////GALLEERY THUMBNAILS-*/
#wrapper_gallery.row,
.row.gallery-wrapper {
  margin-right: -5px;
  margin-left: -5px;
}
a.Gallerythumbnails.col-sm-4,
.gallery-item {
  padding: 0 5px !important;
  margin-bottom: 10px;
}
a.Gallerythumbnails img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.gallery-thumb {
  display: block;
  height: 100%;
}
.gallery-item img {
  object-fit: cover;
  height: 100%;
  height: 320px;
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property: transform;
  transition-property: transform;
}
.gallery-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  transition: transform 0.5s ease;
}
.thumb-caption {
  display: block;
  background: rgba(0, 0, 0, 0);
  padding: 10px;
  position: absolute;
  bottom: 0;
  width: calc(100% - 10px);
  font-size: 1.2em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  max-height: 50px;
  overflow: hidden;
  font-weight: 600;
}
.gallery-item:hover .thumb-caption {
  background: rgba(0, 0, 0, 0.85);
  transition: all 0.4s ease;
  max-height: 50%;
}
.project-link {
  font-family: 'Droid Serif', Georgia, Times, serif;
  font-weight: 300 !important;
  font-style: italic;
  font-size: 14px;
  color: #bf8256;
  text-transform: capitalize;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
  height: 0;
}
.project-link:hover {
  color: #e0b89c;
}
.gallery-item:hover .project-link {
  opacity: 1;
  height: auto;
  transition: opacity 0.1s ease;
}
@media (max-width: 992px) {
  .navbar-toggler {
    order: 2;
  }
  #col-links {
    order: 3;
  }
}
@media (max-width: 768px) {
}
@media (min-width: 576px) {
  #footer-social {
    padding-right: 0 !important;
  }
}
@media (max-width: 576px) {
}
/*  CONTENT
-------------------------------------------------- */
.container-tinted {
  background: rgba(0, 0, 0, 0.5);
  padding: 35px 25px;
  border-radius: 5px;
}
/* Featurettes
------------------------- */
.featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}
/* Thin out the marketing headings */
.featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05rem;
}
/* RESPONSIVE CSS
-------------------------------------------------- */
@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }
  .featurette-heading {
    font-size: 50px;
  }
}
@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}
/* content 
--------------------------------------------------*/
/* LOGO CAROUSEL
-------------------------------------------------- */
/* .owl-item {
  padding: 15px;
  text-align: center;
}
.owl-item div img {
  max-width: 150px;
  margin-left: auto;
  margin-right: auto;
}
.owl-item span.owl-caption {
  margin-top: 5px !important;
  display: block;
}
#logo-carousel {
  border-top: 1px solid #eee;
}
#logo-carousel .owl-stage {
  display: flex;
  align-items: center;
} */
/* VIDEO BACKGROUND
-------------------------------------------------- */
#vid-bg {
  position: relative;
  background-color: black;
  height: 75vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}
#vid-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -ms-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#vid-bg .container {
  position: relative;
  z-index: 2;
}
#vid-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  opacity: 0.5;
  z-index: 1;
}
@media (pointer: coarse) and (hover: none) {
  #vid-bg {
    background: url('https://source.unsplash.com/XT5OInaElMw/1600x900') black
      no-repeat center center scroll;
  }
  #vid-bg video {
    display: none;
  }
}
.mask-it {
  mask-image: url(/images/h-gradient-mask.svg);
  -webkit-mask-image: url(/images/h-gradient-mask.svg);
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: top;
}
.hero-content {
  height: 100%;
  z-index: 9;
  position: relative;
}
.hero-content > .row {
  height: 100%;
}

/* snap scroll home */
main {
  scroll-snap-type: mandatory;
  scroll-snap-points-y: repeat(100vh);
  scroll-snap-type: y mandatory;
}
.panel {
  /*min-height: calc(100vh - 70px);*/
  min-height: 100vh;
  padding: 0 !important;
  scroll-snap-align: start;
}
.panel-header {
  width: 100%;
  border-top: ridge 4px #595a5c;
  border-bottom: double 4px #595a5c;
  height: 20%;
  background-attachment: fixed;
  background-color: #e7e8e9;
}
.panel-header img {
  max-width: 50vh;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.panel-body {
  height: 80%;
  width: 100%;
}
/* scroll menu */
.scroll-menu {
  position: fixed;
  right: 5px;
  list-style: none;
  top: 45%;
  z-index: 999;
}
.scroll-menu li {
  position: relative;
  text-align: right;
}
.scroll-menu a {
  padding-right: 30px;
  color: #fff;
}
.scroll-menu .scroll-title {
  opacity: 0;
  width: 0;
  transition: all 0.5s ease;
}
.scroll-menu li a:hover .scroll-title {
  opacity: 1;
  width: auto;
  background-color: var(--blue);
  padding: 6px;
}
.scroll-menu li a:after {
  content: '';
  width: 8px;
  height: 8px;
  background: #eee;
  border-radius: 100%;
  opacity: 1;
  display: block;
  position: absolute;
  right: 15px;
  top: 45%;
  box-shadow: 1px 1px 4px rgb(0 0 0 / 50%);
  transition: all 0.5s ease;
  transform: translate(50%, 0);
}
.scroll-menu li a:hover:after {
  width: 11px;
  height: 11px;
  box-shadow: 1px 1px 6px rgb(0 0 0 / 40%);
}
.scroll-menu li.active a:after {
  background: #00416a !important;
  width: 11px;
  height: 11px;
  box-shadow: 1px 1px 6px rgb(0 0 0 / 40%);
}

/* section styles*/
.panel {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#recsurfaces {
  background-color: #c77e81;
  background-image: url(/images/BG/pushup-five.jpg);
  background-blend-mode: soft-light;
}
#traction {
  background-color: #f9d587;
  background-image: url(/images/BG/race.jpg);
  background-blend-mode: soft-light;
}
#humane {
  background-color: #788cb9;
  background-image: url(/images/BG/horse.jpg);
  background-blend-mode: soft-light;
}
#scsupply {
  background-color: #333;
  background-image: url(/images/BG/scsupply-bg.jpg);
  background-blend-mode: soft-light;
}
