@charset "UTF-8";
/**
* SassFlexbox
* Manage Flexbox in Sass easily.
*
* @author     Samuel Marchal (zessx)
* @version    0.1
*/
/*
    Display
 */
/*
    Flex direction
 */
/*
    Flex wrap
 */
/*
    Flex flow
 */
/*
    Order
 */
/*
    Flex grow
 */
/*
    Flex shrink
 */
/*
    Flex basis
 */
/*
    Flex
 */
/*
    Justify content
 */
/*
    Align items
 */
/*
    Align self
 */
/*
    Align content
 */
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,600,600i,700,700i,800,800i&display=swap");
/* Breakpoints */
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000000;
}
body:after {
  content: "";
  background: url(../img/bg.png) repeat-x;
  opacity: 0.3;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}
body.fixed {
  margin-top: 80px;
}

/*FLEX*/
.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}
.w-100.row {
  width: calc(100% + 30px);
}
.w-100.row.flex {
  width: 100%;
}

@media (min-width: 992px) {
  .flex {
    display: -webkit-flexbox;
    display: flex;
  }
}

.flex-direction-column {
  -moz-flex-direction: column;
  flex-direction: column;
}

.justify-content-space-between {
  -webkit-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.justify-content-center {
  -webkit-flex-pack: center;
  -moz-justify-content: center;
  justify-content: center;
}

.justify-content-end {
  -webkit-flex-pack: end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.align-items-center {
  -moz-align-items: center;
  align-items: center;
}

.align-items-end {
  -moz-align-items: flex-end;
  align-items: flex-end;
}

/*GENERIC*/
input:focus, select:focus, textarea:focus, button:focus {
  outline: none !important;
}

.fal.fa-angle-down {
  font-size: 18px;
  margin-left: 6px;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
}

.container-full {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 576px) {
  .container-full {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 1910px) {
  .container-full {
    padding-left: 300px;
    padding-right: 300px;
  }
}
.container-full:before {
  content: none;
}

.oneCol .container-full {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
@media (min-width: 992px) {
  .oneCol .container-full {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}

.upper {
  text-transform: uppercase;
}

ul.list-unstyled li {
  margin: 5px 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(128, 130, 131, 0.4);
  padding: 0;
}
hr.blueLine {
  border-top: 4px solid #3FA9F5;
  margin: 5px 0 0;
}
hr.short {
  width: 45px;
  margin: 0 auto;
}

section {
  padding: 40px 0;
}
section.half {
  padding: 20px 0;
}
section.fullBottom {
  padding: 20px 0 40px;
}
section.halfBottom {
  padding: 20px 0 0;
}
section.quarter {
  padding: 10px 0;
}

.greyBorder {
  border: 1px solid rgba(128, 130, 131, 0.25);
  background: #ffffff;
  display: block;
}

.accentText {
  color: #3FA9F5;
}

.floatOuter {
  position: relative;
  background-color: #ffffff;
  mix-blend-mode: multiply;
}
.floatOuter .marker {
  position: absolute;
  top: -10px;
  left: -25px;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
  font-size: 12px;
  line-height: 16px;
  padding: 1px 15px;
}
.floatOuter .icon {
  position: absolute;
  left: 0;
  top: 15px;
  width: 100px;
  text-align: left;
}

.marker {
  color: #ffffff !important;
  background-color: #3FA9F5;
  padding: 1px 8px;
  display: inline-block;
  vertical-align: top;
}

@media (min-width: 992px) {
  li.dropdown {
    margin: 0 10px;
  }
}
@media (min-width: 1365px) {
  li.dropdown {
    margin: 0 20px;
  }
}

.dropdown .dropdown-menu {
  min-width: 170px;
  border-radius: 0;
  margin-top: 1px !important;
  box-shadow: none;
  padding: 0;
  font-size: 14px;
  background: white;
  background: linear-gradient(180deg, white 0%, #f1f4f5 100%);
}
@media (min-width: 992px) {
  .dropdown .dropdown-menu {
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
  }
}
@media (min-width: 992px) {
  .dropdown .dropdown-menu .yamm-content {
    padding-bottom: 40px;
  }
}
@media (min-width: 1910px) {
  .dropdown .dropdown-menu .yamm-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.dropdown .dropdown-menu li {
  margin: 0 !important;
}
.dropdown .dropdown-menu li a {
  padding: 10px 20px;
}
.dropdown .dropdown-menu a {
  color: #000000 !important;
  text-transform: none;
}
.dropdown .dropdown-menu a:hover {
  background: transparent;
  text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.4);
}

.text-right .dropdown button {
  padding: 5px 10px;
}
.text-right .dropdown .dropdown-menu {
  right: 0;
}

.input-group {
  width: 100%;
}
.input-group .select {
  overflow: hidden;
  position: relative;
  display: block;
}
.input-group .select:after {
  content: "";
  font-family: FontAwesome;
  color: #000;
  padding: 10px 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
  text-align: center;
  width: 30px;
  pointer-events: none;
  box-sizing: border-box;
}
.input-group select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

ul.list-unstyled li:last-child {
  margin-bottom: 0;
}

.textShadow {
  text-shadow: 1px 1px 15px black;
}

.table-striped th, .table-striped td {
  border: 1px solid #e6e6e6;
}
.table-striped th.blank, .table-striped td.blank {
  background: #ffffff;
  border: none;
}
.table-striped td {
  color: #545454;
}

.table-striped > tbody > tr > th {
  width: 10%;
}
.table-striped > tbody > tr > th:first-child {
  width: 20%;
}

p span {
  color: #808283;
}

img.grey {
  border: 1px solid #ccc;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
}
img.shadow {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}

.greyBG {
  background: #f1f4f5;
}
.greyBG.fiftyPerc {
  background: rgba(241, 244, 245, 0.5);
}

.greyDIENT {
  background: #F1F4F5;
  background: linear-gradient(180deg, #e5e8e9 0%, #f1f4f5 100%);
}

.whiteBG {
  background: #ffffff;
}

.whiteText {
  color: #ffffff;
}

.greyText {
  color: #808283;
}

.redText {
  color: #E81F26;
}

.fa-map-marker {
  line-height: 56px;
}

.form-control {
  border-radius: 3px;
}

.form-field {
  height: 55px;
  border: 1px solid #DADFE1;
  background-color: transparent;
}

form p {
  height: 55px;
  display: table;
}
form p span {
  display: table-cell;
  vertical-align: middle;
}

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

.moreviewOuter {
  width: 90px;
  border: 1px solid #DADFE1;
}
.moreviewOuter.active {
  border: 1px solid #3FA9F5;
}

#imageholder {
  padding-right: 0;
}

.selector {
  padding-left: 0;
  padding-bottom: 15px;
  padding-right: 15px;
}

.testingsample {
  padding-left: 10px;
  padding-right: 10px;
}

.color {
  margin-top: 10px;
  border: 1px solid #000;
  height: 30px;
  width: 30px;
}

/*TRANSITION*/
a, button, .form-control {
  transition: all 0.1s ease-in-out 0.1s;
  outline: 0;
}

.fa, #slider a {
  transition: none;
}

/*BUTTON & ANCHOR*/
.btn {
  white-space: normal;
  padding: 20px 40px;
  font-size: 16px;
  line-height: 19px;
  border-radius: 0;
  letter-spacing: 2px;
  height: auto !important;
  text-decoration: none;
  font-weight: 700;
  font-style: italic;
  box-shadow: none;
  background: transparent;
}
.btn.search {
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}
.btn.white {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn.white:hover {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #000000;
}
.btn.blue {
  background: #3FA9F5;
  color: #ffffff;
  border: 1px solid #3FA9F5;
}
.btn.blue:hover {
  background: #ffffff;
  border: 1px solid #3FA9F5;
  color: #3FA9F5;
}
.btn.red {
  background: #d43f3a;
  color: #ffffff;
  border: 1px solid #d43f3a;
}
.btn.red:hover {
  background: #ffffff;
  border: 1px solid #d43f3a;
  color: #d43f3a;
}
.btn.green {
  background: #a2d56e;
  color: #000000;
  border: 1px solid #a2d56e;
}
.btn.green:hover {
  background: #ffffff;
  border: 1px solid #a2d56e;
}
.btn.black {
  background: transparent;
  color: #000000;
  border: 1px solid #000000;
}
.btn.black:hover {
  background: #000000;
  border: 1px solid #000000;
  color: #ffffff;
}
.btn.block {
  display: block;
  width: 100%;
}

a {
  outline: none;
}
a img {
  outline: none;
}
a:hover, a:active, a:focus, a:visited {
  outline: none;
}
a:hover img, a:active img, a:focus img, a:visited img {
  outline: none;
}
a.link {
  font-size: 16px;
  color: #3FA9F5;
  letter-spacing: 1px;
}
a.link:hover {
  color: #1F1F1F;
  text-decoration: none;
}
a.greyText {
  color: #808283 !important;
  text-decoration: none;
}
a.greyText h3 {
  color: #808283 !important;
}

p a {
  font-size: 14px !important;
}

a.underLine {
  text-decoration: underline;
}
a.underLine:hover {
  text-decoration: underline !important;
}
a.dark {
  color: #1F1F1F;
}
a.dark:hover {
  color: #3FA9F5;
}

.modal-header {
  padding: 0;
  border: 0;
}
.modal-header button.close {
  margin: 0;
  position: absolute;
  z-index: 999;
  right: 10px;
  font-size: 40px;
  color: #3FA9F5 !important;
  opacity: 0.8;
}
.modal-header button.close:hover {
  opacity: 1;
}

.modal-dialog {
  width: calc(100% - 15px) !important;
  margin: 60px auto 60px 15px;
}
@media (min-width: 576px) {
  .modal-dialog {
    width: 600px !important;
    margin: 60px auto;
  }
}

/*FONT SIZE*/
.xxxxLarge, .xxxxLarge p {
  font-size: 68px !important;
}

.xxxLarge, .xxxLarge p {
  font-size: 42px !important;
}

.xxLarge, .xxLarge p {
  font-size: 36px !important;
}

.xLarge, .xLarge p {
  font-size: 32px !important;
}

.large, .large p {
  font-size: 22px !important;
}

.medium, .medium p {
  font-size: 20px !important;
}

.small, .small p {
  font-size: 18px !important;
}

.xSmall, .xSmall p {
  font-size: 16px !important;
  line-height: 20px;
}

.xxSmall, .xxSmall p {
  font-size: 14px !important;
}

.xxxSmall, .xxxSmall p {
  font-size: 12px !important;
}

/*PADDING*/
.padTen {
  padding: 5px !important;
}

.padTwenty {
  padding: 10px !important;
}

.padThirty {
  padding: 15px !important;
}

.padForty {
  padding: 20px !important;
}

.padEighty {
  padding: 40px !important;
}

.padHundred {
  padding: 50px !important;
}

.noPad {
  padding: 0 !important;
}

.padTop {
  padding-top: 5px !important;
}

.secPad {
  padding-top: 280px !important;
}

.padLeft {
  padding-left: 15px !important;
}

/*MARGIN*/
.margBottom {
  margin-bottom: 10px !important;
}

.margFifty {
  margin: 25px 0;
}

.margLeft {
  margin: 0 0 0 30px;
}

.noMarg {
  margin: 0 !important;
}

#NoMarg {
  margin-bottom: 0;
}

/*WEIGHT*/
.boldWeight {
  font-weight: 700;
}

.semiBoldWeight, strong {
  font-weight: 600;
}

.regularWeight {
  font-weight: 400;
}

/*ITALIC*/
.italic {
  font-style: italic;
}

/*HEADER*/
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 15px;
  padding: 0;
  color: #000000;
  letter-spacing: 2px;
}

h2 span {
  color: #a2d56e;
}

h3.title {
  margin: 0 0 20px;
}
h3.title span {
  background: #3FA9F5;
  color: #ffffff;
  padding: 1px 8px;
  margin-right: 5px;
}
h3.blueLine {
  border-bottom: 4px solid #3FA9F5;
  padding-bottom: 8px;
}
h3.greyLine {
  border-bottom: 4px solid rgba(128, 130, 131, 0.25);
  padding-bottom: 8px;
}
h3.prodNumber {
  color: #3FA9F5;
  margin: 0;
}

h4.blackBG {
  color: #ffffff;
  background: #000000;
  padding: 3px 30px;
  display: inline-block;
}

.dark h1, .dark h2, .dark h3, .dark h4, .dark h5, .dark h6 {
  color: #ffffff;
}

/*HEADER*/
.navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
  background: transparent;
  box-shadow: none;
}

@media (min-width: 992px) {
  .nav > li > a {
    display: flex;
  }
}

#searchBar button span {
  display: none;
}

header {
  font-size: 16px;
}
@media (min-width: 576px) {
  header {
    font-size: 14px;
  }
}
@media (min-width: 1365px) {
  header {
    font-size: 16px;
  }
}
header .fixedSearch {
  position: fixed !important;
  top: 0;
  z-index: 9999;
  width: 100%;
}
header .fixedNav {
  position: fixed !important;
  top: 60px;
  z-index: 9999;
  width: 100%;
}
header #topBar {
  height: 40px;
  background: #333232;
  background: linear-gradient(180deg, #333232 0%, #333232 100%);
  color: #ffffff;
}
@media (min-width: 992px) {
  header #topBar {
    height: 40px;
  }
}
header #topBar .flex {
  display: -webkit-flexbox;
  display: flex;
}
header #topBar .flex.w-100 {
  -webkit-flex-pack: justify;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media (min-width: 992px) {
  header #topBar .flex.w-100 {
    -webkit-flex-pack: start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  header #topBar .flex-child {
    margin-right: 40px;
  }
}
header #topBar .flex-child:last-child {
  margin-right: 0;
}
header #topBar .flex-child img {
  vertical-align: text-top;
}
header #topBar .flex-child button {
  background: transparent;
  border-radius: 0;
  border: 0;
  padding: 0;
  font-weight: 600;
}
header #topBar .flex-child a {
  font-weight: 600;
  color: #ffffff;
}
header #topBar .flex-child a.active {
  color: #ffffff;
}
header #topBar .flex-child .dropdown.open {
  color: #ffffff;
}
header #topBar .flex-child .dropdown:hover {
  color: #ffffff;
}
header #topBar .flex-child:first-child .dropdown .dropdown-menu {
  min-width: 170px;
}
header #topBar #searchBar .form-control, header #topBar #searchBar .input-group-btn button {
  border-radius: 0;
  border: none;
  box-shadow: none;
  height: 35px;
  padding: 0;
  border-radius: 0;
  font-size: 16px;
}
header #topBar #searchBar .form-control {
  border-bottom: 1px solid #ffffff;
  background: transparent;
  color: #ffffff;
  padding-left: 0;
  padding-right: 20px;
}
header #topBar #searchBar .input-group-btn button {
  background: transparent;
  padding: 0;
  color: #ffffff;
  margin-left: 10px;
}
header #logoBar {
  display: -webkit-flexbox;
  display: flex;
}
header #logoBar .navbar-brand {
  display: block;
}
header #logoBar .navbar-brand h1#logo {
  display: none;
}
header #navBar {
  background: #ffffff;
  border-top: 1px solid #808283;
  border-bottom: 1px solid #808283;
  position: relative;
}
@media (min-width: 992px) {
  header #navBar {
    height: 80px;
  }
}
header #navBar .navbar-collapse {
  padding: 0;
}
header #navBar .navbar-nav li.dropdown:first-child a.dropdown-toggle {
  padding-left: 0;
}
header #navBar .navbar-nav li.dropdown:last-child a.dropdown-toggle {
  padding-right: 0;
}
header #navBar .navbar-nav li.dropdown:last-child .dropdown-menu {
  right: 15px;
}
header #navBar .navbar-nav li.dropdown.open a {
  color: #3FA9F5;
}
header #navBar .navbar-nav li.dropdown.open .fal.fa-angle-down {
  color: #3FA9F5 !important;
}
header #navBar .navbar-nav li.dropdown a:hover {
  transition: none;
}
header #navBar .navbar-nav li.dropdown a:hover .fal.fa-angle-down {
  transition: none;
}
header #navBar .navbar-nav li.dropdown a:active, header #navBar .navbar-nav li.dropdown a:focus, header #navBar .navbar-nav li.dropdown a:visited {
  background: transparent;
}
header #navBar .navbar-nav li.dropdown:hover > a {
  color: #3FA9F5;
}
header #navBar .navbar-nav li.dropdown a {
  color: #000000;
}
header #navBar .navbar-nav li.dropdown a.dropdown-toggle {
  padding: 15px 0;
}
@media (min-width: 992px) {
  header #navBar .navbar-nav li.dropdown a.dropdown-toggle {
    padding: 0 0 28px;
  }
}
header #navBar .navbar-nav li.dropdown a.dropdown-toggle:hover {
  color: #3FA9F5;
}
header #navBar .navbar-nav li.dropdown a .fal.fa-angle-down {
  color: #3FA9F5;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu {
  border: 0;
  border-radius: 0;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu.twoCol {
  min-width: 468px;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu.threeCol {
  min-width: 702px;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu.single {
  min-width: 234px;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu.single a {
  padding: 5px 0;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu h4 {
  color: #000000;
  letter-spacing: 2px;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
}
@media (min-width: 992px) {
  header #navBar .navbar-nav li.dropdown .dropdown-menu h4 {
    margin-top: 30px;
  }
}
@media (min-width: 1365px) {
  header #navBar .navbar-nav li.dropdown .dropdown-menu h4 {
    font-size: 22px;
  }
}
header #navBar .navbar-nav li.dropdown .dropdown-menu h5 {
  text-transform: uppercase;
  margin: 0;
  border-bottom: 3px solid #3FA9F5;
  display: inline-block;
  letter-spacing: 2px;
  font-size: 16px;
}
@media (min-width: 1365px) {
  header #navBar .navbar-nav li.dropdown .dropdown-menu h5 {
    font-size: 18px;
  }
}
header #navBar .navbar-nav li.dropdown .dropdown-menu h5 a {
  padding: 0 0 5px;
  display: inline-block;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu h5 a:hover {
  color: #3FA9F5;
  font-weight: 700;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu h5 a:hover, header #navBar .navbar-nav li.dropdown .dropdown-menu h5 a:active, header #navBar .navbar-nav li.dropdown .dropdown-menu h5 a:focus {
  text-decoration: none;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu ul {
  margin-bottom: 30px;
}
@media (min-width: 1365px) {
  header #navBar .navbar-nav li.dropdown .dropdown-menu ul {
    margin-bottom: 40px;
  }
}
header #navBar .navbar-nav li.dropdown .dropdown-menu ul li {
  border: 0;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu ul li:first-child {
  border: 0;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu ul li .col-sm-4, header #navBar .navbar-nav li.dropdown .dropdown-menu ul li .col-xs-6 {
  padding-left: 10px;
  padding-right: 10px;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu ul li a {
  display: block;
  padding: 0;
  margin-bottom: 5px;
  font-size: 14px;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu ul li a:hover, header #navBar .navbar-nav li.dropdown .dropdown-menu ul li a:active, header #navBar .navbar-nav li.dropdown .dropdown-menu ul li a:focus {
  background: transparent;
  text-decoration: none;
  text-shadow: 1px 0px 1px rgba(0, 0, 0, 0.4);
}
header #navBar .navbar-nav li.dropdown .dropdown-menu ul li:hover > a {
  background: transparent;
}
header #navBar .navbar-nav li.dropdown .dropdown-menu ul li:hover a {
  background: transparent;
}
header .yamm .nav, header .yamm .collapse, header .yamm .dropup, header .yamm .dropdown {
  position: relative;
  z-index: 999;
}
@media (min-width: 992px) {
  header .yamm .nav, header .yamm .collapse, header .yamm .dropup, header .yamm .dropdown {
    position: static;
  }
}
header .yamm .container {
  position: relative;
}
header .yamm .dropdown-menu {
  left: auto;
}
header .yamm .dropdown.yamm-fw .dropdown-menu {
  left: 0;
  right: 0;
}
@media (min-width: 992px) {
  header .yamm .dropdown.yamm-fw .dropdown-menu {
    left: 110px;
    right: 110px;
  }
}
@media (min-width: 1910px) {
  header .yamm .dropdown.yamm-fw .dropdown-menu {
    left: 260px;
    right: 260px;
  }
}
header .col-xs-5ths, header .col-sm-5ths, header .col-md-5ths, header .col-lg-5ths {
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
}
header .col-xs-5ths {
  width: 20%;
  float: left;
}

/*HOME*/
#home #jumbo {
  background-image: url(../img/jumbo.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  position: relative;
  height: 900px;
  max-height: 950px;
  color: #ffffff;
}
#home #jumbo .flex {
  display: -webkit-flexbox;
  display: flex;
}
@media (min-width: 992px) {
  #home #jumbo {
    min-height: 900px;
    height: calc(100vh - 140px);
  }
}
#home #jumbo .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
  background: #755e5e;
  background: linear-gradient(180deg, #3d3d3d 0%, #1f1f1f 100%);
  opacity: 0.5;
}
#home #jumbo .container-full {
  position: relative;
  z-index: 2;
}
#home #jumbo .container-full .col-sm-12 {
  margin-bottom: 70px;
}
#home #jumbo h2, #home #jumbo h3 {
  margin: 0;
  text-shadow: 0px 5px 10px rgba(0, 0, 0, 0.5);
}
#home #jumbo h2 {
  margin-bottom: 20px;
}
@media (min-width: 576px) {
  #home #jumbo h2 {
    line-height: 55px;
  }
}
@media (min-width: 992px) {
  #home #jumbo h2 {
    margin-bottom: 0;
    font-size: 60px;
    line-height: 70px;
  }
}
#home #jumbo h3 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
}
@media (min-width: 576px) {
  #home #jumbo h3 {
    line-height: 50px;
  }
}
#home #jumbo .slider-down-arrow {
  background: transparent;
  border: 1px solid #ffffff;
  border-radius: 999px;
  bottom: 20px;
  cursor: pointer;
  display: block;
  height: 40px;
  width: 40px;
  left: 50%;
  margin: 0 auto 0 -20px;
  position: absolute;
  z-index: 999;
}
#home #jumbo .slider-down-arrow i {
  color: #fff;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 38px;
}
#home #jumbo .slider-down-arrow:hover {
  background: #ffffff;
}
#home #jumbo .slider-down-arrow:hover i {
  color: #1F1F1F;
  text-decoration: none;
}
#home #interactiveCatalog {
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
#home #interactiveCatalog a.link {
  color: #a2d56e;
  letter-spacing: 1px;
}
#home #interactiveCatalog a.link:hover {
  color: #ffffff;
}

/*SIDEBAR*/
#sidebar li.active a {
  text-decoration: underline;
  font-weight: 700;
}
#sidebar li.active ul {
  padding-left: 20px;
  margin-bottom: 15px;
}
#sidebar li.active ul li {
  list-style: none;
}
#sidebar li.active ul li a {
  text-decoration: none;
  font-weight: 400;
}
#sidebar li.active ul li a:hover {
  text-decoration: underline;
}
#sidebar li a {
  color: #1F1F1F !important;
}

/*BREADCRUMBS*/
#breadcrumbs {
  color: #3FA9F5;
  padding-bottom: 0;
}
#breadcrumbs li + li {
  margin-left: 10px;
}
#breadcrumbs li a {
  color: #3FA9F5;
  padding: 0;
}
#breadcrumbs li a:hover {
  background: transparent;
  color: #1F1F1F;
}
#breadcrumbs li a i {
  line-height: 26px;
}

/*POD*/
.pod.row {
  margin-left: -8px;
  margin-right: -8px;
}
.pod.row .col-sm-4, .pod.row .col-sm-3 {
  padding-left: 8px;
  padding-right: 8px;
}

/*PRODUCT DETAILS*/
#productDetails #correspondingStyle {
  border-left: 1px solid rgba(128, 130, 131, 0.4);
  border-bottom: 1px solid rgba(128, 130, 131, 0.4);
}
#productDetails #correspondingStyle a {
  color: #3FA9F5;
}
#productDetails #correspondingStyle a:hover {
  text-decoration: none;
  color: #1F1F1F;
}
#productDetails #thumbnails {
  margin-left: -5px;
  margin-right: -5px;
}
#productDetails #thumbnails a {
  border: 1px solid transparent;
  display: block;
}
#productDetails #thumbnails a.active {
  border: 1px solid #3FA9F5;
}
#productDetails #inventory p {
  margin: 5px 0;
}

/*DECORATIONS*/
.playHolder {
  position: relative;
  display: block;
  height: 100%;
}
.playHolder .play {
  height: 125px;
  width: 125px;
  background-color: #ffffff;
  border-radius: 100%;
  margin-top: -62.5px;
  margin-left: -62.5px;
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.75);
}
.playHolder .play .fa {
  color: #3FA9F5;
  font-size: 60px;
  line-height: 126px;
  margin-left: 15px;
}

.noPad.greyBorder {
  border: 1px solid #808283;
  border-left: none;
}

.imgHolder {
  width: 100%;
  height: 85%;
}

.matchHeightDecoration:last-child {
  overflow: hidden;
}
.matchHeightDecoration:last-child a {
  display: block;
  width: 100%;
  height: 100%;
}
.matchHeightDecoration:last-child .flexBottom {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  overflow: hidden;
}
.matchHeightDecoration:last-child .flexBottom .blueLine {
  border-top: 6px solid #3FA9F5;
  background: #3FA9F5;
  height: 100%;
  overflow: hidden;
}
.matchHeightDecoration:last-child .flexBottom .blueLine a img {
  height: 100%;
  position: absolute;
  margin-left: -50%;
}
.matchHeightDecoration:last-child .flexBottom a:hover img {
  opacity: 0.25;
  transition: all 0.1s ease-in-out 0.1s;
}
.matchHeightDecoration:last-child .flexBottom a img {
  opacity: 1;
  transition: all 0.1s ease-in-out 0.1s;
}

/*FAQ*/
.bubble {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#e1e1e3+1,f9fafa+49,f5f5f5+100 */
  background: #e1e1e3;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #e1e1e3 1%, #f9fafa 49%, whitesmoke 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e1e1e3", endColorstr="#f5f5f5",GradientType=0 );
  /* IE6-9 */
  border: 1px solid #DADFE1;
  border-radius: 3px;
  margin: 0 15px 0;
  transition: all 0.1s ease-in-out 0.1s;
}
.bubble a {
  display: block;
  padding-top: 15px;
}
.bubble .greyText {
  transition: none;
}
.bubble:hover {
  background: #3FA9F5;
}
.bubble:hover .greyText {
  color: #ffffff !important;
  transition: none;
}
.bubble:hover .greyText h3 {
  color: #ffffff !important;
  transition: all 0.1s ease-in-out 0.1s;
}
.bubble:hover .borderLeft {
  border-color: #ffffff;
}
.bubble .borderLeft {
  border-left: #DADFE1 1px solid;
  display: inline;
  padding: 10px 0 10px 10px;
}
.bubble .borderLeft .caret {
  border-top: 5px dashed;
  border-top: 5px solid\9 ;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

/*FOOTER*/
#newsLetter {
  background-image: url(../img/redesign/newsletter-bg.jpg);
  background-size: cover;
  color: #ffffff;
}
#newsLetter h3 {
  margin-bottom: 20px;
}
#newsLetter .btn {
  padding: 15px 30px;
  margin-left: 10px;
}
#newsLetter .input-group .form-control {
  box-shadow: none;
  height: 51px;
  border-radius: 0;
  background: transparent;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid white;
  padding-left: 0;
  display: inline-block;
  font-size: 16px;
  color: #ffffff;
}
#newsLetter .social {
  display: inline-block;
  margin-top: 40px;
}
#newsLetter .social li {
  margin-right: 45px;
}
#newsLetter .social li:last-child {
  margin-right: 0;
}
#newsLetter .social li a {
  color: #ffffff;
  font-size: 22px;
  padding: 0;
}
#newsLetter .social li a:hover, #newsLetter .social li a:focus {
  background: transparent;
  color: #3FA9F5;
}

footer {
  padding: 40px 0 0;
}
footer h3.large {
  margin-bottom: 10px;
}
footer h3.small {
  margin-bottom: 20px;
}
footer p {
  line-height: 22px;
}
footer ul.list-unstyled li {
  margin: 0;
}
footer ul.list-unstyled li:last-child a {
  margin-bottom: 0;
}
footer ul.list-unstyled li a {
  margin-bottom: 8px;
  display: block;
  color: #000000;
  text-decoration: none;
}
footer ul.list-unstyled li a:hover {
  color: #3FA9F5;
}
footer #bottomBar {
  background: #3d3d3d;
  background: linear-gradient(180deg, #3d3d3d 0%, #1f1f1f 100%);
  color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  footer #bottomBar {
    height: 50px;
    padding: 0;
  }
}
footer #bottomBar p {
  margin: 0;
}
footer #bottomBar a {
  color: #ffffff;
  text-decoration: underline;
}
footer #bottomBar a:hover {
  color: #3FA9F5;
}

/*RESPONSIVE*/
@media (min-width: 991px) {
  ul.nav li.dropdown:hover > ul.dropdown-menu {
    display: block;
  }
}
@media (min-width: 768px) {
  header .col-sm-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 992px) {
  header .col-md-5ths {
    width: 20%;
    float: left;
  }
}
@media (min-width: 1200px) {
  header .col-lg-5ths {
    width: 20%;
    float: left;
  }
}
@media (max-width: 1199px) {
  .container {
    width: 100%;
  }

  header .header #topBar ul li {
    margin: 11px 15px 0;
  }
  header .header #logoBar .navbar-brand {
    padding-top: 32px;
  }
  header .header #navBar .navbar-nav li.dropdown a {
    font-size: 14px;
  }
  header .header #navBar .navbar-nav li.dropdown a.dropdown-toggle {
    padding-left: 15px;
    padding-right: 15px;
  }
  header.stickyNavbar .header #logoBar .navbar-brand {
    padding-top: 6px;
    padding-bottom: 7px;
  }

  #home #jumbo .container-full .text-center h2 {
    font-size: 65px;
    line-height: 70px;
  }
  #home #jumbo .container-full .text-center h3 {
    font-size: 40px;
  }

  footer .social li a {
    height: 30px;
    width: 30px;
    line-height: 30px;
  }
  footer .social li a i {
    line-height: 30px;
  }
}
@media (max-width: 1124px) {
  header.stickyNavbar .header #logoBar .navbar-brand {
    padding-top: 10px;
  }
}
@media (max-width: 1024px) {
  .color {
    height: 25px;
    width: 25px;
  }

  header .header #navBar .navbar-nav li.dropdown .dropdown-menu.threeCol {
    right: 15px;
  }
  header.stickyNavbar .header #logoBar .navbar-brand {
    padding-top: 9px;
    padding-bottom: 11px;
  }
}
@media (max-width: 991px) {
  #productDetails h2 {
    font-size: 22px !important;
  }

  .color {
    height: 35px;
    width: 35px;
  }

  /*MOBILE NAV*/
  #searchBar {
    display: -webkit-flexbox;
    display: flex;
  }
  #searchBar input {
    border-left: none;
    border-top: none;
    border-right: 0;
    border-bottom: 1px solid #000000;
    border-radius: 0;
    padding-left: 0;
    outline: none;
    background: transparent;
    box-shadow: none;
    font-size: 16px;
    height: 35px;
    width: 100%;
    margin-bottom: 10px;
  }
  #searchBar button {
    padding: 0 10px;
  }

  .navbar-header {
    float: none;
  }

  .navbar-default .navbar-toggle {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-right: 0;
  }
  .navbar-default .navbar-toggle .icon-bar {
    background: #1F1F1F;
  }

  .navbar-default .navbar-toggle {
    border-color: #808283;
  }
  .navbar-default .navbar-toggle:focus, .navbar-default .navbar-toggle:hover {
    border-color: #808283;
    background: #ffffff;
  }
  .navbar-default .navbar-collapse {
    border-top: 1px solid transparent;
    border-bottom: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .navbar-collapse.collapse {
    display: none !important;
  }

  .navbar-nav {
    float: none !important;
    margin: 7.5px -15px;
  }

  .navbar-nav li {
    float: none;
  }
  .navbar-nav li a {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .navbar-collapse.collapse.in {
    display: block !important;
  }

  #navbar .nav, #navbarSticky .nav {
    background: transparent;
  }
  #navbar .navbar-nav, #navbarSticky .navbar-nav {
    margin-left: 0;
    margin-right: 0;
    height: auto;
  }
  #navbar .dropdown-menu, #navbarSticky .dropdown-menu {
    position: relative;
    float: none;
    background: #ffffff;
  }

  header {
    z-index: 9999 !important;
  }
  header .header #logoBar {
    height: auto;
  }
  header .header #logoBar .navbar-brand {
    display: inline-block;
    padding-top: 12px;
    padding-bottom: 10px;
  }
  header .header #logoBar .navbar-default {
    display: inline-block;
    float: right;
  }
  header .header #navBar {
    border: 0;
    height: auto;
  }
  header .header #navBar .navbar-nav {
    margin: 0;
    height: auto;
  }
  header .header #navBar .navbar-nav li.dropdown:last-child .dropdown-menu {
    right: 0;
  }
  header .header #navBar .navbar-nav li.dropdown a.dropdown-toggle {
    border: 0 !important;
  }
  header.stickyNavbar {
    height: auto;
    background: transparent;
    box-shadow: none;
  }
  header.stickyNavbar .container {
    background: #3FA9F5;
    padding-left: 15px;
    padding-right: 15px;
  }
  header.stickyNavbar .navbar-nav {
    max-height: 500px;
  }

  #home #jumbo {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  /*FONT SIZE*/
  .xxxxLarge, .xxxxLarge p {
    font-size: 44px !important;
  }

  .xxxLarge, .xxxLarge p {
    font-size: 34px !important;
  }

  .xxLarge, .xxLarge p {
    font-size: 26px !important;
  }

  .xLarge, .xLarge p {
    font-size: 24px !important;
  }

  .large, .large p {
    font-size: 22px !important;
  }

  #home #jumbo h2 {
    font-size: 45px !important;
    line-height: 50px !important;
  }
  #home #jumbo h3 {
    font-size: 30px !important;
  }
  #home #jumbo h4 {
    font-size: 20px !important;
  }

  footer .text-right {
    text-align: left;
  }

  .text-right-xs {
    text-align: left !important;
  }
}
#imageholder {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.selector {
  padding-left: 0;
  padding-bottom: 15px;
  padding-right: 15px;
  height: 96px;
  margin-bottom: 15px;
  overflow: hidden;
  border-left: 7.5px solid #ffffff;
  border-right: 7.5px solid #ffffff;
}
.selector img {
  width: 140px;
  max-width: 500px;
  position: absolute;
  left: 50%;
  margin-left: -70px;
}

@media (max-width: 991px) {
  .selector {
    height: 78px;
  }
}
@media (max-width: 768px) {
  .selector {
    height: 100px;
  }
}
/* BACK TO TOP BUTTON */
.zopim {
  right: 85px !important;
}

.slider-up-arrow {
  background-color: #3FA9F5;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: inline-block;
  text-align: center;
  position: fixed;
  bottom: 1vh;
  right: 10px;
  z-index: 9999;
  box-shadow: 0px 0px 3px 3px rgba(0, 0, 0, 0.1);
}
.slider-up-arrow i {
  color: #ffffff;
  font-size: 30px;
  line-height: 52px;
}

/* REDESIGN */
/* FW PRODUCTS*/
#fw-products .flex {
  display: -webkit-flexbox;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  #fw-products .flex {
    flex-wrap: nowrap;
  }
}
#fw-products .flex .flex {
  flex-wrap: nowrap;
}
#fw-products .flex a {
  position: relative;
  overflow: hidden;
  padding: 20px;
  height: 525px;
  flex-basis: 100%;
}
@media (min-width: 576px) {
  #fw-products .flex a {
    flex-basis: 50%;
  }
}
@media (min-width: 992px) {
  #fw-products .flex a {
    flex-basis: 25%;
  }
}
@media (min-width: 1365px) {
  #fw-products .flex a {
    padding: 0 20px 20px 40px;
  }
}
@media (min-width: 1910px) {
  #fw-products .flex a {
    height: 650px;
  }
}
#fw-products .flex a:hover, #fw-products .flex a:focus, #fw-products .flex a:visited {
  text-decoration: none;
}
#fw-products .flex a:hover .bg {
  transform: scale(1.1);
}
#fw-products .flex a .bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1);
  transition: all 0.3s ease-in;
}
#fw-products .flex a .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: black;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.25) 80%, black 100%);
}
#fw-products .flex a .content {
  z-index: 2;
}
@media (min-width: 992px) {
  #fw-products .xLarge {
    font-size: 24px !important;
  }
}
@media (min-width: 1365px) {
  #fw-products .xLarge {
    font-size: 32px !important;
  }
}

/* PROMOTIONS */
#promotions .flex {
  display: block;
}
@media (min-width: 992px) {
  #promotions .flex {
    display: -webkit-flexbox;
    display: flex;
  }
}
#promotions .h-100 {
  height: auto;
}
@media (min-width: 992px) {
  #promotions .h-100 {
    height: 100%;
  }
}
@media (min-width: 992px) {
  #promotions .carousel-wrapper {
    max-height: 500px;
  }
}
@media (min-width: 1365px) {
  #promotions .carousel-wrapper {
    max-height: 600px;
  }
}
@media (min-width: 1910px) {
  #promotions .carousel-wrapper {
    max-height: 750px;
  }
}
#promotions .carousel .carousel-inner {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
}
@media (min-width: 992px) {
  #promotions .carousel img {
    height: 100%;
    max-width: none;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
#promotions .catalog, #promotions .showcase {
  padding: 20px 40px;
}
#promotions .catalog {
  background: #3d3d3d;
  background: linear-gradient(180deg, #3d3d3d 0%, #1f1f1f 100%);
}
#promotions .showcase {
  background: #ffffff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.5);
}

.carousel-indicators {
  margin-top: 20px;
  position: relative;
  width: auto;
  left: auto;
  bottom: auto;
  margin-left: auto;
}
.carousel-indicators li {
  width: 12px;
  height: 12px;
  margin: 1px 4px;
  background: #DADFE1;
  border: none;
}
.carousel-indicators li.active {
  width: 15px;
  height: 15px;
  margin: 0 2px;
  background: #3FA9F5;
}

/* SOLUTION */
#solution {
  margin: 80px 0 40px;
  position: relative;
}
@media (min-width: 992px) {
  #solution {
    margin: 140px 0 100px;
  }
}
#solution:before, #solution:after {
  content: "";
  display: block;
  height: 50%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: -1;
  -webkit-backface-visibility: hidden;
}
#solution:before {
  background: #e5e8e9;
  top: 0;
  transform: skewY(-2.8deg);
  transform-origin: 0 0;
}
#solution:after {
  background: #f1f4f5;
  bottom: 0;
  transform: skewY(-2.8deg);
  transform-origin: 100%;
}
#solution img {
  max-width: 200px;
  max-height: 200px;
}
#solution h4 {
  margin-bottom: 10px;
}
#solution h3 {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  #solution h3 {
    margin-bottom: 80px;
  }
}
#solution .pod h3 {
  margin-bottom: 0;
  line-height: 30px;
}
@media (min-width: 992px) {
  #solution .pod h3 {
    line-height: 36px;
  }
}
#solution .pod a {
  padding: 0;
}
#solution .pod a:hover {
  box-shadow: none;
}
#solution .link {
  color: #000000;
  padding-bottom: 5px;
  display: inline-block;
  border-bottom: 3px solid #3FA9F5;
}
#solution .link:hover, #solution .link:focus, #solution .link:active {
  color: #3FA9F5;
  text-decoration: none;
}
#solution .link.red {
  border-bottom-color: #E81F26;
  margin-bottom: 10px;
}
#solution .link.red:hover, #solution .link.red:active, #solution .link.red:focus {
  color: #E81F26;
}
@media (min-width: 576px) {
  #solution p {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  #solution p {
    width: 100%;
    margin: 0;
  }
}

/* NEW COLLECTION */
#newCollection .greyBG {
  overflow: visible;
  display: inline-block;
}
@media (min-width: 576px) {
  #newCollection .greyBG {
    display: block;
  }
}
#newCollection img {
  flex-shrink: 0;
}
@media (min-width: 1365px) {
  #newCollection img {
    transform: scale(1.7);
  }
}
@media (min-width: 992px) {
  #newCollection .offset {
    top: 20px;
  }
}
@media (min-width: 1910px) {
  #newCollection .offset {
    top: 40px;
  }
}
#newCollection h4 {
  margin-bottom: 10px;
}
#newCollection p {
  margin-bottom: 0;
}
#newCollection a {
  position: relative;
  padding: 20px 20px 40px;
  color: #000000;
  text-decoration: none;
  width: 100%;
}
@media (min-width: 992px) {
  #newCollection a {
    width: auto;
  }
}
#newCollection a:hover {
  box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.25);
}
#newCollection .line {
  width: 15px;
  height: 8px;
  background-color: #000000;
  position: absolute;
  bottom: -4px;
  left: 50%;
  margin-left: -7.5px;
}
@media (min-width: 1365px) {
  #newCollection .img {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media (min-width: 576px) {
  #solution p, #newCollection p, #latest p {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  #solution p, #newCollection p, #latest p {
    width: 100%;
    margin: 0;
  }
}
@media (min-width: 576px) {
  #solution .pod.flex, #solution .row.flex, #newCollection .pod.flex, #newCollection .row.flex, #latest .pod.flex, #latest .row.flex {
    display: -webkit-flexbox;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 992px) {
  #solution .pod.flex, #solution .row.flex, #newCollection .pod.flex, #newCollection .row.flex, #latest .pod.flex, #latest .row.flex {
    flex-wrap: nowrap;
  }
}
@media (min-width: 576px) {
  #solution .col, #newCollection .col, #latest .col {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  #solution .col, #newCollection .col, #latest .col {
    margin-bottom: 0;
  }
}

/* LATEST */
#latest .pod {
  background-color: #ffffff;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
}
#latest .pod .content {
  padding: 30px;
}
#latest .pod h4 {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  #latest .pod h4 {
    line-height: 23px;
  }
}
@media (min-width: 1365px) {
  #latest .pod h4 {
    line-height: 27px;
  }
}
#latest .pod ul {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  #latest .large {
    font-size: 18px !important;
  }
}
@media (min-width: 1365px) {
  #latest .large {
    font-size: 22px !important;
  }
}
@media (min-width: 992px) {
  #latest a.link {
    font-size: 14px;
  }
}
@media (min-width: 1365px) {
  #latest a.link {
    font-size: 16px;
  }
}

/* FITMATICS */
/*HEADER*/
#fitmatics {
  background-image: none !important;
}
#fitmatics header {
  top: 0 !important;
}
#fitmatics header #navBar .navbar-nav li.dropdown #fitmatics {
  background-image: none !important;
  color: #a2d56e;
}
#fitmatics header #navBar .navbar-nav li.dropdown.open a {
  color: #a2d56e;
}
#fitmatics header #navBar .navbar-nav li.dropdown.open .fal.fa-angle-down {
  color: #a2d56e !important;
}
#fitmatics header #navBar .navbar-nav li.dropdown:hover > a {
  color: #a2d56e;
}
#fitmatics header #navBar .navbar-nav li.dropdown a.dropdown-toggle:hover {
  color: #a2d56e;
}
#fitmatics header #navBar .navbar-nav li.dropdown a .fal.fa-angle-down {
  color: #a2d56e;
}
#fitmatics header #navBar .navbar-nav li.dropdown .dropdown-menu h5 {
  border-bottom: 3px solid #a2d56e;
}
#fitmatics header #navBar .navbar-nav li.dropdown .dropdown-menu h5 a:hover {
  color: #a2d56e;
}

#fitmatics #menApparel .content p.body, #fitmatics #womenApparel .content p.body {
  font-size: 14px !important;
  line-height: 24px !important;
}

#fitmatics #menApparel p, #fitmatics #womenApparel p {
  font-size: 12px !important;
}

#fitmatics #featuredApparel a p, #fitmatics #headwear a p {
  font-size: 14px !important;
  line-height: 16px !important;
}

#fitmatics #relatedItems .img, #fitmatics .greyBorder .img {
  height: 500px !important;
}

.listing .greyBorder:hover {
  box-shadow: 0px 0px 25px 10px rgba(0, 0, 0, 0.25);
}
.listing .greyBorder a:hover {
  text-decoration: none;
}

/*\
* Restore Bootstrap 3 "hidden" utility classes.
\*/
/* Breakpoint XS */
@media (max-width: 575px) {
  .hidden-xs-down, .hidden-sm-down, .hidden-md-down, .hidden-lg-down, .hidden-xl-down, .hidden-xs-up, .hidden-unless-sm, .hidden-unless-md, .hidden-unless-lg, .hidden-unless-xl {
    display: none !important;
  }
}
/* Breakpoint SM */
@media (min-width: 576px) and (max-width: 767px) {
  .hidden-sm-down, .hidden-md-down, .hidden-lg-down, .hidden-xl-down, .hidden-xs-up, .hidden-sm-up, .hidden-unless-xs, .hidden-unless-md, .hidden-unless-lg, .hidden-unless-xl {
    display: none !important;
  }
}
/* Breakpoint MD */
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md-down, .hidden-lg-down, .hidden-xl-down, .hidden-xs-up, .hidden-sm-up, .hidden-md-up, .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-lg, .hidden-unless-xl {
    display: none !important;
  }
}
/* Breakpoint LG */
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg-down, .hidden-xl-down, .hidden-xs-up, .hidden-sm-up, .hidden-md-up, .hidden-lg-up, .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-md, .hidden-unless-xl {
    display: none !important;
  }
}
/* Breakpoint XL */
@media (min-width: 1200px) {
  .hidden-xl-down, .hidden-xs-up, .hidden-sm-up, .hidden-md-up, .hidden-lg-up, .hidden-xl-up, .hidden-unless-xs, .hidden-unless-sm, .hidden-unless-md, .hidden-unless-lg {
    display: none !important;
  }
}
/* SHOWCASES */
.showcases .link {
  color: #000000;
  padding-bottom: 3px;
  display: inline-block;
  border-bottom: 3px solid #3FA9F5;
}
.showcases .link:hover, .showcases .link:focus, .showcases .link:active {
  color: #3FA9F5;
  text-decoration: none;
}
.showcases ul {
  padding-left: 20px;
  border-left: 6px solid #3FA9F5;
  list-style: none;
  letter-spacing: 1px;
}
.showcases ul li {
  margin-bottom: 10px;
}
.showcases ul a:hover, .showcases ul a:focus, .showcases ul a:active {
  color: #000000;
  text-decoration: none;
}
@media (min-width: 992px) {
  .showcases .col-md-7.left, .showcases .col-md-6.left {
    padding-right: 65px;
  }
}
@media (min-width: 992px) {
  .showcases .col-md-7.right, .showcases .col-md-6.right {
    padding-left: 65px;
  }
}
.showcases p {
  color: rgba(0, 0, 0, 0.8);
}
