/* FONTS */


 @import url(https://fonts.googleapis.com/css?family=Rajdhani:700,500,600);
 @import url(https://fonts.googleapis.com/css?family=Work+Sans:400,300,500,700);


html, body {
	margin: 0;
	padding: 0;
	background: #333; /* Same color as your menu */
}

.page {
	position: relative; /* Set the position property so z-index will apply */
	z-index: 20; /* Make sure this is higher than #menu */
}

p {
	line-height: 1.7em;	
}

body{
  -webkit-font-smoothing: antialiased;
  font-family: 'Rajdhani', sans-serif;
}

h1,h2,h3,h4 {
  font-family: 'Rajdhani', sans-serif;
  text-transform: uppercase;
}

p,ul,ol {
  font-family: 'Work Sans', sans-serif;
  font-weight: 300;
}



#slider, #carousel {
    max-width: 80%;
    margin: auto;
    
}

.help-me {
	position: relative;
	height: 600px;
}

#slider .slides img {
    max-height: 100%;
    max-width: 100%;
    height: auto;
    width: auto;
    margin: auto;
    
    position: absolute;  
    top: 0;  
    bottom: 0;  
    left: 0;  
    right: 0;  
    margin: auto;
}

#carousel .slides img {
	max-height: 120px;
    max-width: 100%;
    height: auto;
    width: auto;
    margin: 0 auto;
}



/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Buttons
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
.btn, input[type="submit"] {
  padding: 3% 4%;
  font-size: 1.5em;
  background-size: 200% 100%;
  background-repeat: no-repeat;
  background-position: bottom left;
  -webkit-transition: all 0.25s ease-in;
  -moz-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}

  .btn.condensed {
	  padding-top: 1%;
	  padding-bottom: 1%;
  }
  
  .btn.wide {
	  padding-left: 12%;
	  padding-right: 12%;
  }
  
  .btn:hover, input[type="submit"]:hover {
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    /** START THE FINAL STATE STYLING **/
    background-position: bottom right;
  }

  .btn.fullwidth {
    width: 100%;
    margin: 10% 0 0px 0;
  }

  .btn.bluebg, input[type="submit"] {
    color: #fff;
    background-image: linear-gradient(to right, #3f97e4 50%, #2573b7 50%);
    background-color: #3f97e4;
  }

  .btn.greenbg {
    color: #fff;
    background-image: linear-gradient(to right, #00c077 50%, #00945c 50%);
    background-color: #00c077;
  }

  .btn.ghostbtn {
    border: 1px solid #000;
    color: #000;
    background-image: linear-gradient(to right, transparent 50%, #2573b7 50%);
  }
    .btn.ghostbtn:hover {
      border: 1px solid #2573b7;
      color: #fff;
    }
    
  input[type="submit"] {
	  border: 0;
	  outline: 0;
	  padding-top: 1%;
	  padding-bottom: 1%;
	  padding-left: 12%;
	  padding-right: 12%;
  }
  
  .woocommerce-variation-add-to-cart button {
	  padding: 3% 4% !important;
	  font-size: 1.5em !important;
	  background-size: 200% 100% !important;
	  background-repeat: no-repeat !important;
	  background-position: bottom left !important;
	  -webkit-transition: all 0.25s ease-in !important;
	  -moz-transition: all 0.25s ease-in !important;
	  transition: all 0.25s ease-in !important;
	  border-radius: 0 !important;
	  font-weight: 500 !important;
	  text-transform: uppercase !important;
	  font-family: 'Rajdhani', sans-serif !important; 
	  width: 100% !important;
	  margin: 10% 0 0px 0 !important;
	  color: #fff !important;
	  background-image: linear-gradient(to right, #00c077 50%, #00945c 50%) !important;
	  background-color: #00c077 !important;
	  outline: none !important;
	  border-radius: 0 !important;
	  border: 0 !important;
   }
   .woocommerce-variation-add-to-cart button:hover {
	   -webkit-transition: all 0.25s ease-in;
	    -moz-transition: all 0.25s ease-in;
	    transition: all 0.25s ease-in;
	    /** START THE FINAL STATE STYLING **/
	    background-position: bottom right !important;
	    }
	    
	.sku_wrapper {
		display: none !important;
		}

/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Header
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
.header {
  background-color: #222222;
  position: relative;
}

#header .topheader{
	background: #2a2a2a;
	color: #fff;
	padding: 5px 0;
}

#header .topheader a{
	font-family: 'Work Sans', sans-serif;
	font-weight: 300;
	color: #a6a6a6;
}

#header .mainheader{
	height: 100px;
}

.topheader .navigation-wrapper li {
    display: inline-block;
    padding-right: 30px;
}



/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Navigation
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
     #header .mainheader .navigation-wrapper{
	      height:100%;
	      text-align: center;
     }
     
     #header span.h1 {
	    margin-top: 20px;
	    margin-bottom: 10px;
	}
     
     #header .mainheader .navigation-wrapper nav{
	      width:100%;
	      height: 100%;
		  line-height: 85px;
     }
     
     .navigation-wrapper ul {
	     margin: 0px;
	     padding: 0px;
     }
     
     .navigation-wrapper ul li{
	     padding: 5px 2%;
     }
    .navigation-wrapper nav > ul > li:after {
    	content: '';
    	display: block;
    	margin: auto;
    	height: 3px;
    	width: 0px;
    	margin-top: -30px;
    	background: transparent;
    	transition: width .5s ease, background-color .5s ease;
    }
    .navigation-wrapper nav > ul > li:hover:after {
    	width: 100%;
    	background: #3988d4;
    }
    .navigation-wrapper ul li a {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.1em;
      color: #fff;
    }
    .navigation-wrapper ul li a:hover {
      text-decoration: none;
      color: #fff;
    }
    
     .navigation-wrapper ul li ul.sub-menu {
	     display: none;
	     line-height: 0;
     }
     
	 .navigation-wrapper ul li:hover ul.sub-menu {
	    display: block;
	    position: absolute;
	    width: 200px;
	    padding: 10px;
	    text-align: left;
	    background: rgba(34,34,34,1);
	    top: 64px;
	    padding-top: 30px;
	    font-size: .8em;
	    z-index: 999;
	    
	 }
	 
	 .home-product-img {
		     padding: 36% 2.5%;
    position: absolute;
    width: 100%;
	 }
	 
	 .home-product-img img {
		 max-width: 95%;
		 height: auto;
	 }
	 
	 	.navigation-wrapper ul li:hover ul.sub-menu li {
		    width: 100%;
		    height: 25px;
		 }
		 
		 	.navigation-wrapper ul li:hover ul.sub-menu li a {
		    width: 100%;
		 }
    
    .woo-wrapper {
	    height: 100%;
	    border-left: 1px solid #707070;
	    font-size: 2em;
	    color: #fff;
	    padding: 0;
	    text-align: center;
	    text-transform: uppercase;
	}
	
	.woo-wrapper a {
	    text-decoration: none;
	    color: white;
	    }
	
    .woo-wrapper .cart-button {
	  height: 50%;
      border-bottom: 1px solid #707070;
      padding: 2% 0;
    }
    	
    	.woo-wrapper .cart-button span.cart-text {
		  color: #3988d4;
	    }
    	
    .woo-wrapper .account-button {
	    height: 50%;
	    padding: 2% 0;
    }
    
    .woo-wrapper p {
	    font-family: 'Rajdhani', sans-serif !important;
    }

    .shrink {
      -webkit-transition: all ease .5s;
      -moz-transition: all ease .5s;
      -ms-transition: all ease .5s;
      -o-transition: all ease .5s;
      transition: all ease .5s;
    }

    .shrink .logo-wrapper {
      height: 90px;
      padding: 10px 0;
      -webkit-transition: all ease .5s;
      -moz-transition: all ease .5s;
      -ms-transition: all ease .5s;
      -o-transition: all ease .5s;
      transition: all ease .5s;
    }
    
    #header .logo-wrapper {
	    max-width: 100%;
	    max-height: 100%;
	    text-align: center;
    }
    
    @media screen and (max-width: 1222px) {
	     .navigation-wrapper ul li a {
		     font-size: 1em;
		 }
		 .navigation-wrapper ul li{
		     padding: 5px 1.5%;
	     }
     }

/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Hero-Image
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/

.hero-image {
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: 650px;
}
  .hero-image .row {
    padding: 8%;
    text-transform: uppercase;
    height: 100%;
	  position: relative;
	  z-index: 1;
  }
  .hero-image .row h1 {
    color: white;
    text-shadow: 0px 0px 6px #000;
  }
  .hero-image .row h1 span.heading {
    font-size: 50px;
    font-weight: 500;
  }
  .hero-image .row h1 span.sub-head {
    font-size: 70px;
    font-weight: 700;
  }
  
  .hero-image.interior h1{
	  text-align: center;
	  padding: 25px;
  }
  
  .hero-image.interior h1 span{
  	border-bottom: 4px solid #3f97e4;
  	}
  
  @media screen and (min-width: 844px){
	  .hero-image.interior {
		  height: 350px;
	  }
  }
  
  iframe {
	  max-width: 100% !important;
	  }

  /*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
  _Slideboard Categories
  ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
.slideboards {
  background-color: #333333;
  background-image: url('../images/greygrid.png');
  background-repeat: repeat;
}
  .slideboards-header {
    margin-top: -35px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 6px;
	  position: relative;
    z-index: 2;
  }

    .slideboards-header .container .row {
      background-color: #fff;
      padding: 14px 0px;
       -webkit-transition: all ease .5s;
	      -moz-transition: all ease .5s;
	      -ms-transition: all ease .5s;
	      -o-transition: all ease .5s;
	      transition: all ease .5s;
    }
    .slideboards-header .container .row:hover {
          background-color: rgba(63,151,228,.8);
         
    }
    a.blue-over {
        color:#3f97e4;
    }
    a.blue-over:hover { 
        text-decoration:none;
          color:white;
    }

  .slideboards-images {
/*     height: 250px; */
  }
    .slideboards-images .slide-cat {
      height: 250px;
      background-repeat: no-repeat;
      background-size: cover;
      padding: 0;
    }
    
    .slideboards-images .slide-cat .cat-title-lnlf,.slideboards-images .slide-cat .cat-title-lnrt {
	    border-bottom: 1px solid #fff;
	    width: 36%;
	    position: relative;
	    bottom: -15px;
    }
    
    .slideboards-images .slide-cat .cat-title-lnrt {
	    float: right;
    }
    
      .slideboards-images .slide-cat .content {
        padding: 0 15px;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,.4);
        position: absolute;
        text-align: center;
        font-size: 30px;
        font-weight: 600;
      }
        .slideboards-images .slide-cat .content .icon{
          margin-top: 65px;
          z-index: 999;
          position: relative;
        }
          .slideboards-images .slide-cat .content .icon img{
            max-width: 30px;
          }
        .slideboards-images .slide-cat .content .cat-title {
          width: 70%;
          padding: 15px 0;
          border-top: 1px solid #fff;
          border-left: 1px solid #fff;
          border-right: 1px solid #fff;
          color: white;
          position: relative;
          z-index: 999;
          margin: 0 auto;
          top: 50%;
          -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
          transform: translateY(-50%);
        }
		.slideboards-images .slide-cat .content {
	       padding: 0 15px;
	       height: 100%;
	       width: 100%;
	       background-color: rgba(0,0,0,.4);
	       position: absolute;
	       text-align: center;
	       font-size: 30px;
	       font-weight: 600;
	       -webkit-transition: all ease .5s;
	      -moz-transition: all ease .5s;
	      -ms-transition: all ease .5s;
	      -o-transition: all ease .5s;
	      transition: all ease .5s;
	     }
        .slideboards-images .slide-cat .content:hover {
	        background-color: rgba(63,151,228,.8);
	        -webkit-transition: all ease .5s;
	      -moz-transition: all ease .5s;
	      -ms-transition: all ease .5s;
	      -o-transition: all ease .5s;
	      transition: all ease .5s;
	     }
        /*
      .slideboards-images .slide-cat .hoverlay {
        height: 100%;
        width: 100%;

        position: relative;
        background-size: 100% 201%;
        background-repeat: no-repeat;
        background-position: bottom;
        -webkit-transition: all 0.25s ease-in;
        -moz-transition: all 0.25s ease-in;
        transition: all 0.25s ease-in;
        background-image: linear-gradient(to top, transparent 50%, rgba(63,151,228,.8) 50%);
      }
      .slideboards-images .slide-cat .hoverlay.hoverfy {
        -webkit-transition: all 0.25s ease-in;
        -moz-transition: all 0.25s ease-in;

        transition: all 0.25s ease-in;
        /** START THE FINAL STATE STYLING 
        background-position: top;
      }*/

/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Featured Products
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
.featured-products {
	background: #ffffff;
}

.featured-products .featured-title {
  color: #000;
  border-bottom: 1px solid #b7b7b7;
  text-align: center;
}
	.featured-products .featured-title h2 {
	    margin: 3% 0;
	    font-size: 3.2em;
	}
.featured-products .product-cta {
  background-color: #333;
  color: #fff;
}
.featured-products .products-col .container .row .product {
  border-left: 1px solid #b7b7b7;
  height: 510px;
  padding: 0 !important;
}

.featured-products .owl-carousel .owl-item img {
	position: absolute;
	transform-style: none;
	display: initial;
/* 	width: auto; */
    -webkit-transform-style: none;
}

.featured-products .product-col {
	border-bottom: 1px solid #b7b7b7;
}

.featured-products a.btn.prev,.featured-products a.btn.next {
	display: inline-block;
	margin-top: -10px;
}

@media screen and (min-width:991px){
	.featured-products a.btn.prev,.featured-products a.btn.next {
		display: none;
		margin-top: -10px;
	}
}

  .featured-products .product p {
    font-family: 'Rajdhani', sans-serif;
  }
  .featured-products .products-col .container .row .product:last-child {
    border-left: 1px solid #b7b7b7;
    border-right: 1px solid #b7b7b7;
  }

  .featured-products .products-col .container .row .product .customize-it{
    position: absolute;
    top: -39px;
    right: -9px;
    width: 0;
	  height: 0;
	  border-top: 60px solid transparent;
	  border-bottom: 60px solid transparent;
	  border-right:60px solid #3f97e4;
    -ms-transform: rotate(135deg); /* IE 9 */
    -webkit-transform: rotate(135deg); /* Chrome, Safari, Opera */
    transform: rotate(135deg);
  }
    .featured-products .products-col .container .row .product .customize-it img {
      -ms-transform: rotate(219deg);
      -webkit-transform: rotate(219deg);
      transform: rotate(219deg);
      position: relative;
      top: -21px;
      right: -21px;
      width: initial;
    }

  .featured-products .products-col .product .product-title {
    font-size: 35px;
    color: #3f97e4;
    position: absolute;
    bottom: 70px;
    padding-left: 40px;
  }

  .featured-products .products-col .product .product-price {
    font-size: 30px;
    color: #333333;
    position: absolute;
    bottom: 40px;
    padding-left: 40px;
  }
   {

  }
  .featured-products .products-col .container .row .product .product-ov {
    height: 100%;
    width: 100%;
    opacity: 0;
    position: relative;
    padding: 70px 50px;
    background-color: rgba(0,0,0,.8);
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
  }
    .featured-products .product-ov .product-desc {
      color: #fff;
      font-family: 'Work Sans', sans-serif;
      border-bottom: 4px dashed #fff;
      font-size: 18px;
      position: relative;
      padding-bottom: 50px;
      text-align: center;
    }
  .featured-products .products-col .container .row .product .product-ov:hover {
    -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    opacity: 1;
  }
  .featured-products .product-cta {
    overflow: hidden;
    border-bottom: 8px solid #3f97e4;
  }
  
  .featured-products .product-cta a {
	      color: #fff;
		  text-decoration: none;
  }
  
  .featured-products .product-cta a:hover {
	      color: #fff;
		  text-decoration: none;
  }

  .featured-products .product-cta > div {
      padding: 0;
      background-size: 100%;
      background-position: center;
      text-align: center;
      text-transform: uppercase;
      -moz-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
         -o-filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
         -webkit-filter: grayscale(100%);
         filter: gray;
         filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
      -webkit-transition: all 0.25s ease-in;
    -moz-transition: all 0.25s ease-in;
    transition: all 0.25s ease-in;
    }
    .featured-products .product-cta > div:first-child {
    	transform: skewX(-20deg);
	    width: 53%;
	    z-index: 888;
	    margin-left: -2%;
	    position: absolute;
	    border-right: 12px solid #fff;
	}
    .featured-products .product-cta > div:last-child {
	    float: right;
	    width: 52%;
    }
    .featured-products .product-cta > div:first-child h3 {
	    transform: skewX(20deg);
    }
    
    .featured-products span.cta-div {
	    width: 40px;
	    height: 40px;
	    position: absolute;
	    background-image: url('../images/cta-divide.png');
	    background-size: cover;
	    z-index: 999;
	    right: 48%;
	    margin-top: 45px;
	    -webkit-filter: grayscale(0%);
	    filter: unset;
    }
    
    .featured-products .product-cta > div .ov {
      padding: 30px 0 40px 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,.7);
    }
    .featured-products .product-cta > div:hover {
      -webkit-filter: grayscale(0%);
      filter: unset;
      background-size: 120%;
      -webkit-transition: all 0.25s ease-in;
	  -moz-transition: all 0.25s ease-in;
	  transition: all 0.25s ease-in;
    }


/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Featured Video
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/

.featured-video-section{
	padding-top: 50px;
	padding-bottom: 60px;
	background-color: #222;
	color: #fff;
	background-image: url(../images/subtle_carbon.png);
	background-size:18px 15px;
	background-repeat: repeat;
	border-bottom: 8px solid #3f97e4;
	border-top: 8px solid #3f97e4;
}
.featured-video-section .row{
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
	    align-items: center;
	flex-wrap: wrap;
}
.featured-video-section .drop-shadow{
	box-shadow: 0 0 10px rgba(0,0,0,1);
    border: 3px solid #222;
}
.featured-video-section h3{
	margin-top: 0;
	margin-bottom: 40px;
	color: #fff;
    font-size: 3.2em;
	text-align: center;
}
.featured-video-section h4{
	line-height: 1.4;
	font-size: 2.3em;
	margin: 30px 0;
	color: #3f97e4;
}

@media screen and (max-width:991px){
	.featured-video-section .row{
		display: block;
	}
	.featured-video-section h3{
		margin-bottom: 20px;
	}
	.featured-video-section h4{
		margin-top: 0;
		text-align: center;
		font-size: 2.3rem;
	}
}
@media screen and (max-width:767px){

	.featured-video-section h3{
		margin-bottom: 15px;
		font-size: 2.9rem;
	}
	.featured-video-section h4{
		font-size: 2rem;
	}
}

/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Fitness Benefits
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
.fitness-benefits {
  background-size: cover;
  background-position: top;
  text-align: center;
}

	.fitness-benefits .row{
		padding: 0 15px;
	}

  .fitness-benefits .overlay {
    background-color: rgba(0,0,0,.6);
    padding: 50px 0;
    color: #fff;
  }

    .fitness-benefits .overlay .container .row .fit-card {
      border-right: 1px solid #fff;
      height: 200px;
    }
    .fitness-benefits .overlay .container .row .fit-card:last-child {
      border-right: none;
    }

    .fitness-benefits .overlay .title {
      display: inline-block;
      padding-top: 0px;
}

    }
      .fitness-benefits .overlay .title h3 {
        margin: 0;
      }

    .fitness-benefits .overlay .image {
      width: 100%;
      display: inline-block;
    }
    
    .fitness-benefits .card-head > div:first-child {
    	padding: 0 6px;
    }
    
    .fitness-benefits .overlay .image img {
      max-width: 100%;
    }

    .fitness-benefits .overlay p {
      font-size: 16px;
      padding: 15px 0;
    }
    
    @media screen and (max-width: 991px) {
	   .fitness-benefits .overlay .container .row .fit-card:nth-child(2) {
	      border-right: none;
	   } 
	   
	   .fitness-benefits .overlay .container .row .fit-card {
		   height: 320px;
		   padding-top: 15px;
		  }
	   
	   .fitness-benefits .overlay .container .row .fit-card .card-head {
		   height: 130px;
		  }
	   
	   .fitness-benefits .overlay .container .row .fit-card .card-body {
		   height: 170px;
		  }
	   
	   .fitness-benefits .row .container .row:nth-child(2) div:first-child .card-body,.fitness-benefits .row .container .row:nth-child(2) div:nth-child(2) .card-body {
			border-bottom: 1px solid #fff;
		}
		
		h1,h2,h3,h4,h5,h6 {
			line-height: 1.5em;
		}
		h1 {
			font-size1: 26px;
		}
	   
    }
    
    @media screen and (max-width: 481px) {
	   .fitness-benefits .overlay .container .row .fit-card:nth-child(2) {
	      border-right: none;
	   } 
	   
	   .fitness-benefits .overlay .container .row .fit-card {
		   height: 445px;
		   padding-top: 15px;
		  }
	   
	   .fitness-benefits .overlay .container .row .fit-card .card-head {
		   height: 130px;
		  }
	   
	   .fitness-benefits .overlay .container .row .fit-card .card-body {
		   height: 290px;
		  }
	   
	   .fitness-benefits .row .container .row:nth-child(2) div:first-child .card-body,.fitness-benefits .row .container .row:nth-child(2) div:nth-child(2) .card-body {
			border-bottom: 1px solid #fff;
		}
		
		.content-area img {
			width: 100%;
			height: auto;
		}
	   
    }


/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Footer
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
footer, .contact-footer {
  background-color: #222;
  color: #fff;
  font-family: 'Work Sans', sans-serif;
  font-size: 16px;
  padding: 32px 0;
}

.contact-footer {
  font-size: 18px;
}
  .contact-footer a {
    color: #fff;
    text-decoration: none;
  }
  .contact-footer a:hover {
    text-decoration: underline;
  }
  .contact-footer p {
    padding: 20px 0 0px 0;
  }
  .contact-footer .phone, .contact-footer .email {
    font-weight: 400;
  }
.contact-footer input[type="text"],.contact-footer input[type="email"] {
  height: 50px;
  margin-bottom: 20px;
  color: #333;
  outline: none;
  width: 100%;
}
.contact-footer input[type="button"] {
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
}
footer {
  border-top: 1px solid #444444;
  text-align: center;
}

footer .nav {
  margin-bottom: 25px;
}
  footer .nav>li {
    display: inline !important;
  }
  footer .nav>li>a {
    display: inline !important;
    text-decoration: none;
    color: #fff;
  }
    footer .nav>li>a:hover {
      background-color: transparent !important;
      text-decoration: underline;
    }

footer .authorize-seal {
  position: absolute;
  margin-top: 0;
  margin-left: 80%;
}

.social {
	
}
	
	.social ul {
		margin-top: 20px;
		padding-left: 0;
	}
	
	.social ul li {
		list-style: none;
		display: inline;
		margin-right: 10px;
	}
	
	.social ul li:last-child {
		margin-right: 0px;
	}
	
		.social ul li svg {
			max-width: 45px;
		}
		
		
		.social ul li svg .cls-1 {
		-webkit-transition: all 0.25s ease-in;
		  -moz-transition: all 0.25s ease-in;
		  transition: all 0.25s ease-in;
		}
		
		.social ul li svg:hover .cls-1 {
			fill: #3f97e4;
			-webkit-transition: all 0.25s ease-in;
		  -moz-transition: all 0.25s ease-in;
		  transition: all 0.25s ease-in;
		}
	
  @media screen and (max-width: 991px) {
    footer .authorize-seal {
      position: initial;
      margin-top: 0;
      margin-left: 0;
      padding-bottom: 30px;
    }
  }

/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
Fade In Hero Video
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/


.video-bg{
/*	display: none;*/
    position: absolute;
    z-index: -1;
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
	background: #000;
	text-align: center;
}

.video-bg:after { /* video overlay */
    content: '';
/*    background: rgba(0, 0, 0, 0.5);*/
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    position: absolute;
	background-image: url(../images/blackgrid_30.png);
}

video {
/*
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
*/
	
	max-width: 100%;
    /* max-height: 100%; */
    width: auto;
    height: auto;
    position: relative;
    top: 50%;
    /* left: 50%; */
    transform: translate(0%, -50%);
    background: #000;
}

.fade-in-video {
    opacity: 0;
    transition: opacity .5s linear;
}
.fade-in-video.is-playing {
    opacity: 1;  
}


/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_General Content
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/

.breadcrumbs {
/*   height: 60px; */
  text-align: left;
  font-size: 16px;
  background-color: #efefef;
  text-transform: uppercase;
  line-height: 60px;
  
}

.breadcrumbs #breadcrumbs {
	font-family: 'Rajdhani', sans-serif !important;
	margin: 10px auto;
}

.main-content {
  padding: 74px 0;
}
  .main-content h1 {
    font-size: 50px;
  }
  .main-content p {
    font-size: 22px;
  }
  
  
.blog-content {
  padding: 50px 0;
}
  .blog-content h1 {
    font-size: 50px;
  }
  .blog-content p {
    font-size: 14px;
  }
  
  .blog-content article {
	    padding: 30px 0;
		border-bottom: 1px solid #ccc;
  }
  
  .blog-content article:last-child {
	    padding: 30px 0 0 0;
		border-bottom: 0px;
  }
  
    .blog-content article:first-child,.blog-content article:only-child {
	    padding: 0px 0 30px 0;
  }
  
  .sidebar {
	  padding-top: 16px;
  }

  .sidebar .widget .widgettitle {
	  border-radius: 10px 10px 0px 0px;
	-moz-border-radius: 10px 10px 0px 0px;
	-webkit-border-radius: 10px 10px 0px 0px;
	border: 0px;
	padding: 10px 20px;
	background: #337ab7;
	margin-bottom: 0;
	color: white;

  }
  
  .sidebar .widget ul {
	  border-radius: 0px 0px 10px 10px;
	-moz-border-radius: 0px 0px 10px 10px;
	-webkit-border-radius: 0px 0px 10px 10px;
	border: 1px solid #ccc;
	padding: 10px 20px;
	list-style: none;
  }


.quick-tips {
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: top;
  height: 450px;
}
  .quick-tips .ov {
    background-color: rgba(0,0,0,.6);
    height: 100%;
    width: 100%;
  }

  .quick-tips .tip-content {
    background-color: #fff;
    margin-top: 65px;
    margin-bottom: 65px;
    min-height: 320px;
  }

    .quick-tips .tip-content h2 {
      padding-bottom: 20px;
      border-bottom: 1px solid #3988d4;
    }
    .quick-tips .tip-content ul {
      padding-left: 20px;
    }
    .quick-tips .tip-content li {
      font-size: 18px;
      padding-bottom: 20px;
    }

    @media screen and (max-width: 1199px) {
      .quick-tips .tip-content li {
        font-size: 18px;
        padding-bottom: 16px;
      }
    }
    
    

    @media screen and (max-width: 991px) {
      .quick-tips .tip-content h2 {
        padding-top:20px
      }
      .quick-tips .tip-content {
        background-color: rgba(255,255,255,.8);
      }
      .fitness-benefits .card-head > div{
	  	text-align: center !important;    
	  }
    }

/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Gallery
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
.gallery {
  padding-top: 64px;
  padding-bottom: 64px;
}
  .gallery .images {

  }
    .gallery .images img {
      max-width: 100%;
    }
  .gallery .testimonials {
    border: 1px solid #3f97e4;
    padding-left: 34px;
    padding-right: 34px;
  }
    .gallery .testimonials .quote {
      padding: 20px 0;
    }
    .gallery .testimonials p {
      font-size: 16px;
    }
    .gallery .testimonials p.author {
      font-weight: 500;
    }


/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Training Videos
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
.video-content {
  background-color: rgba(255,255,255,.6);
  text-align: center;
  padding-top: 30px;
  padding-bottom: 50px;
}

  .video-content h2 {
    padding-bottom: 30px;
  }

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

/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Recommended Boards
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
.rec-boards {
  text-align: center;
}
  .rec-boards h2 {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  .rec-boards .board-block {
    border-top: 1px solid #a1a1a1;
    border-right: 1px solid #a1a1a1;
    padding: 40px 0 60px 0;
        height: 210px;
  }
    .rec-boards .board-block:last-child {
      border-right: none;
    }

    .rec-boards .board-block img {
        max-height: 90%;
	    height: auto;
	    width: auto;
    }

    .rec-boards .board-block .ov {
      margin-top: -40px;
      color: white;
      opacity: 0;
      width: 100%;
      height: 100%;
      height: 100%;
      width: 100%;
      position: absolute;
      padding: 80px 50px;
      background-size: 100% 201%;
      background-repeat: no-repeat;
      background-position: bottom;
      -webkit-transition: all 0.25s ease-in;
      -moz-transition: all 0.25s ease-in;
      transition: all 0.25s ease-in;
      background-image: linear-gradient(to top, transparent 50%, rgba(63,151,228,.8) 50%);
    }
      .rec-boards .board-block .ov:hover {
        -webkit-transition: all 0.25s ease-in;
        -moz-transition: all 0.25s ease-in;
        transition: all 0.25s ease-in;
        opacity: 1;
        /** START THE FINAL STATE STYLING **/
        background-position: top;
      }
    .rec-boards .board-block .ov h3 {
      font-size: 36px;
      font-weight: 500;
    }
  .rec-boards .title {
    background-color: #3f97e4;
    float: right;
    bottom: 0;
    right: 0;
    color: #fff;
    padding: 0px 40px;
    position: absolute;
  }


/*▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
_Training Videos
▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄*/
.featured-video {
  padding: 0;
  margin-bottom: 35px;
}
  .featured-video h1 {
    margin: 50px 0 50px 0;
    font-size: 55px;
  }
  .featured-video .image-bg {
    height: 475px;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .featured-video .video-info,.video-product .video-info {
    background-color: #efefef;
    padding: 35px 25px;
    border-bottom: 3px solid #3f97e4;
  }
    .featured-video .video-info h2 {
      font-size: 45px;
      text-transform: none;
      margin: 0;
    }
    .featured-video .video-info p.price {
      font-size: 40px;
      color: #3f97e4;
      font-family: 'Rajdhani', sans-serif;
      margin: 0;
    }
    .featured-video .video-info .download-icon {
      position: absolute;
      float: right;
      bottom: 0;
      right: 15px;
      padding: 10px;
      background-color: #3f97e4;
    }
      .featured-video .video-info .download-icon img {
        max-width: 100%;
      }

.video-product {
  padding: 0 15px;
  margin-bottom: 35px;
}

.video-list div.row:last-child {
  text-align: center;
  text-transform: uppercase;
  padding: 30px 0 50px 0;
}

.video-list .row .video-product:first-child {
  padding-left: 0;
  padding-right: 30px;
}

  .video-list .row .video-product:first-child .download-icon {
    right: 30px;
  }

.video-list .row .video-product:last-child {
  padding-right: 0;
  padding-left: 30px;
}
  .video-list .row .video-product:last-child .download-icon{
    right: 0px;
  }

    .video-product .image-bg {
      height: 215px;
      background-size: cover;
      background-repeat: no-repeat;
    }
    .video-product .video-info h3 {
      font-size: 30px;
      text-transform: none;
      margin: 0;
    }
    .video-product .video-info p.price {
      font-size: 30px;
      color: #3f97e4;
      font-family: 'Rajdhani', sans-serif;
      margin: 0;
    }
    .video-product .video-info .download-icon {
      position: absolute;
      float: right;
      bottom: 0;
      right: 15px;
      padding: 10px;
      width: 40px;
      height: 40px;
      background-color: #3f97e4;
    }
      .video-product .video-info .download-icon img {
        max-width: 100%;
      }

      @media screen and (max-width: 991px) {
        .video-list .row .video-product {
          padding: 0 !important;
        }
        .video-list .row .video-product .download-icon {
          right: 0px !important;
        }
      }




.content-area {
	margin: 60px auto;
	font-size: 1.2em;
	
}


.cta-left-bg {
    right: 0;
    position: absolute;
    height: 100%;
    overflow: hidden;
    z-index: -10;
}

.cta-right-bg {
	position: absolute;
    height: 100%;
    overflow: hidden;
    z-index: -10;
}



.form-cta .cta-right {
	padding: 40px 12%;
	text-align: left;
	background: #efefef;
}

.form-cta .cta-left {
	background-size: cover;
	background-position: center center;
}

.form-cta input[type="submit"] {
	float: right;
	margin-right: 12px;
}



/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

.container.content h1 {
	margin-top: 50px;
	text-align: center;
}

.compare-table {
	margin: 50px 0;
	overflow: scroll;
}

	.compare-table table {
		border-radius: 25px;
		width: 100%;
		border-collapse: separate;
	}

	.compare-table table thead {
		/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#46a5df+0,4093d7+100 */
		background: #46a5df; /* Old browsers */
		background: -moz-linear-gradient(top,  #46a5df 0%, #4093d7 100%); /* FF3.6-15 */
		background: -webkit-linear-gradient(top,  #46a5df 0%,#4093d7 100%); /* Chrome10-25,Safari5.1-6 */
		background: linear-gradient(to bottom,  #46a5df 0%,#4093d7 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#46a5df', endColorstr='#4093d7',GradientType=0 ); /* IE6-9 */
		text-align: center;
	}
	
		.compare-table table thead th {
			text-align: center;
/* 			border: 1px solid #e0e0e0; */
			color: white;
			font-weight: normal;
			padding: 10px;
			height: 50px;
		}
	
	.compare-table table tbody {
		text-align: center;
	}
	
		.compare-table table tbody tr:nth-child(even) {
			background: #f3f3f3;
		}
		.compare-table table tbody tr:nth-child(odd) {
			background: #fbfbfb;
		}
		
		.compare-table table td {
			border: 1px solid #e0e0e0;
			height: 50px;
			padding: 10px;
		}
	
		.compare-table table td:first-child {
			width: 15%;
			
		}
		
	.compare-table table thead tr th:first-child {
		border-radius: 10px 0 0 0;
	}
	
	.compare-table table thead tr th:last-child {
		border-radius: 0 10px 0 0;
	}
	
	.compare-table table tbody tr:last-child td:first-child {
		border-radius: 0 0 0 10px;
	}
	
	.compare-table table tbody tr:last-child td:last-child {
		border-radius: 0 0 10px 0;
	}
	
/* ALL SIZES */


/* Mobile Menu */
.global-wrap {
	position: relative;
	overflow: hidden;
	width: 100%;
	background: #fff;
}

.site-wrap {
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: .3s ease all;
	transition: .3s ease all;
}

.mobile-menu {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 100%;
	background: #222222;
}

.mobile-menu div#menu li ul {
	background: #222222;
	height: 0;
	display: none;
	-webkit-transition: .3s ease all;
	transition: .3s ease all;
	position: relative;
    top: 22px;
}

.mobile-menu div#menu li.expand ul {
	height: auto;
	display: block;
	-webkit-transition: .3s ease all;
	transition: .3s ease all;
}

.mobile-menu div#menu li ul li {
	border-bottom: 0;
	font-family: 'Rajdhani', sans-serif;
	font-size: .9em;
	list-style: none;
	padding-top: 2%;
	padding-bottom: 2%;
}

.mobile-menu div#menu li ul li a {
	padding-left: 4%;
}

.mobile-menu div#menu {
	background: #333333;
	height: 100%;
}

.mobile-menu div#menu > li {
	border-bottom: 1px solid #404040;
    list-style: none;
    font-size: 1.2em;
    text-transform: uppercase;
    padding: 5% 0;
}

.mobile-menu div#menu > li:hover {
	background: #404040;
}
.mobile-menu div#menu li a {
	color: #fff;
	text-decoration: none;
	font-family: 'Rajdhani', sans-serif;
	padding-left: 5%;
}

.mobile-menu div#menu li a {
	color: #fff;
	text-decoration: none;
}

.header-mobile .menu {
	
}

.menu-icon {
	float: right;
	margin-top: 15px;
}

.menu-icon a span {
	color: white;
    font-size: 30px;
}

#header-mobile img {
	max-width: 50%;
	padding: 15px;
}

.mobile-menu img {
    max-width: 78% !important;
    padding: 15px !important;
}

.global-wrap.show-nav .site-wrap {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

dl, dt {
	display: inline-block !important;
}

dl {
	padding-right: 50px !important;
}

dl:last-child {
	padding-right: 0px !important;
}

dl dt img {
	max-width: 125px !important;
	height: auto;
}

.entry-content img {
	max-width: 100%;
    height: auto;
    padding-bottom: 20px;
}

@media screen and (min-width: 846px) {
	.woocommerce-page table.cart td.actions input {
		width: 160px !important;
	}
}


@media screen and (max-width: 844px) {
	.hero-image {
	  height: 300px;
	}
	 .hero-image .row h1 span.heading {
	    font-size: 20px;
	  }
	  .hero-image .row h1 span.sub-head {
	    font-size: 30px;
	  }
	.hero-image .video-bg{
		display: none;
	}
}


@media screen and (max-width: 1380px) {
	.compare-table {
		font-size: 12px !important;
	}
}


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

}

@media screen and (min-width: 768px) {
	nav ul li {
		display: inline-block;
/* 		float: left; */
		padding: 10px 7px;
		font-size: 1.2em;
	}
}

/* TABLET */

@media screen and (max-width: 768px) {
	
	.featured-products .product-cta > div:last-child, .featured-products span.cta-div {
		display: none;
	}
	
	.featured-products .product-cta > div:first-child {
		width: 125%;
	    margin-left: -9%;
	    position: initial;
	}
	
	.products-col {
/* 		width: 280%; */
	}
	
	.products-col .container {
		margin-right: 2%;
		margin-left: 2%;
	}

}

/* MOBILE ONLY */

@media screen and (max-width: 481px) {
	
	.hero-image .row {
		padding: 5%;
		text-align: center;
	}
	
	.hero-image {
	  height: 250px;
	}
	 .hero-image .row h1 span.heading {
	    font-size: 20px;
	  }
	  .hero-image .row h1 span.sub-head {
	    font-size: 30px;
	  }
	  
	.slideboards-header {
		letter-spacing: 0;
	}
		.slideboards-header h2 {
			font-size: 1.6em;
			line-height: 1.5em;
		}
		
		
	.featured-products .featured-title h2 {
		font-size: 1.7em;
	}
	
	.card-head .title h3 {
	    font-size: 1.6em;
	}
	h1, .h1 {
	    font-size: 26px;
	}

}


.fitness-benefits .overlay .container .row .fit-card:nth-child(2) {
	      border-right: none;
	   } 
	   
	   .fitness-benefits .overlay .container .row .fit-card {
		   min-height: 275px;
		   padding-top: 15px;
	   }
	   
	   .fitness-benefits .overlay .container .row .fit-card .card-head {
		   min-height: 100px;
	   }
	   
	   .fitness-benefits .overlay .container .row .fit-card .card-body {
		   min-height: 160px;
	   }
	   
	   .fitness-benefits .row .container .row:nth-child(2) div:first-child .card-body,.fitness-benefits .row .container .row:nth-child(2) div:nth-child(2) .card-body {
			border-bottom: 1px solid #fff;
		}4
		
		