*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
	background: white;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
	font-size: 13px;
	margin:0;
	color: #323232;
  position: relative;
  line-height: 1.5;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

.u-wc{
	width:100%;
	max-width: 1300px;
  padding: 0 60px;
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

.u-center{
  text-align: center;
}

.u-full-col {
  width: 100%;
}

p, h1, h2, h3, h4, h5, h6, ul{
	margin:0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: #4C4C4E;
}

b, strong {
  font-weight: 600;
}

h1 {
  font-size: 20px;
  margin: 0 0 20px;
}

h2 {
  font-size: 18px;
  margin: 0 0 20px;
}

h3 {
  font-size: 15px;
  margin: 0 0 10px;
}

a, a:focus{
   outline: 0;
}

a{
  color: #1F4667;
  text-decoration: none;
	transition:.3s color, .3s background;
	-webkit-transition:.3s color, .3s background;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent; /* For some Androids */
}

a:hover {
  color: #306C9F;
}

img, svg{
	max-width:100%;
	height:auto;
}

input{
  outline:none;
}


.u-blockSpacing {
  padding: 100px 0;
}

.c-btnWrapper {
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-btnWrap:first-child {
  margin-top: 0;
}

.c-btnWrap:last-child {
  margin-bottom: 0;
}

.c-btn {
  display: inline-block;
  color: white;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: .1em;
  padding: 15px 25px;
  background: #A9BCD0;
  font-weight: 600;
  border: 1px solid #A9BCD0;
  border-radius: 5px;
  transition: .3s background, .3s border;
}

.c-btn:hover {
  color: white;
  background: #90A3B7;
  border: 1px solid #90A3B7;
}

.c-btn--secondary {
  background: transparent;
  border: 1px solid #A9BCD0;
}

.c-btn--secondary:hover {
  background: #A9BCD0;
}

.c-btn + .c-btn {
  margin-left: 10px;
}

.c-hero {
  background: url('imgs/hero-bg.jpg') center center / cover;
  padding: 200px 0;
  text-align: center;
  position: relative;
}

.c-hero:after {
  content: '';
  background: #1F4667;
  position: absolute;
  top: 0;
  right: 0;
  bottom : 0;
  left: 0;
  opacity: .79;
  z-index: 2;
}

.c-hero .u-wc{
  position: relative;
  z-index: 3;
}

.c-hero .u-wc {
  max-width: 850px;
}

.c-hero__logo {
  display: block;
  margin-bottom: 30px;
}

.c-hero__logo img {
  display: block;
  margin: 0 auto;
}

.c-hero h1 {
  color: white;
  margin-bottom: 50px;
}


.l-gearGrid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.l-gearGrid:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 900px) {

  .l-gearGrid .c-gearItem {
    width: calc((99.99% - 60px) / 3);
    margin-right: 30px;
    margin-bottom: 25px;
  }

  .l-gearGrid .c-gearItem:nth-of-type(3n) {
    margin-right: 0;
  }

}

@media screen and (max-width: 899px) and (min-width: 601px) {

  .l-gearGrid .c-gearItem {
    width: calc((99.99% - 30px) / 2);
    margin-right: 30px;
    margin-bottom: 25px;
  }

  .l-gearGrid .c-gearItem:nth-of-type(2n) {
    margin-right: 0;
  }

}

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


  .l-gearGrid .c-gearItem {
    width: 100%;
    margin-bottom: 20px;
  }
}

.c-gearItem {
  border: 1px solid #E6E6E6;
  box-shadow: 0 2px 9px rgba(0,0,0,.07);
  border-radius: 3px;
  display: flex;
  position: relative;
}

.c-gearItem h3 {
  color: #2E6898;
  margin-bottom: 2px;
  line-height: 1.3;
}

.c-gearItem p {
  color: #656565;
}

.c-gearItem__img {
  width: 76px;
  height: 75px;
  flex-shrink: 0;
  border-right: 1px solid #E6E6E6;
}

.c-gearItem__img img { 
  display: block;
  margin: 0;
  padding: 0;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.c-gearItem__body {
  padding: 8px 20px 8px 15px;
  /* position: relative; */
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
  min-width: 0;
}

.c-gearItem__qty {
  background: #CACACA;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 11px;
  margin-right: 6px;
  border-radius: 3px;
  flex-shrink: 0;
  position: relative;
  top: 2px;
}

.c-gearItem__body h3 {
  display: flex;
}

.c-gearItem__body p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-gearItem__trigger {
  display: block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: -7px;
  background: #A9BCD0;
  border-radius: 50%;
}

.c-gearItem__trigger:after {
  content: '';
  position: absolute;
  background: white;
  width: 1px;
  top: 4px;
  bottom: 4px;
  left: 7px;
  transition: .3s opacity;
}

.c-gearItem--active .c-gearItem__trigger:after {
  opacity: 0;
}

.c-gearItem__trigger:before {
  content: '';
  position: absolute;
  background: white;
  height: 1px;
  left: 4px;
  right: 4px;
  top: 7px;
}


.c-gearItem__more { 
  position: absolute;
  top: calc(100% - 3px);
  left: -1px;
  right: -1px;
  background: white;
  padding: 15px 20px 10px 15px;
  border: 1px solid #E6E6E6;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  box-shadow: 0px 4px 2px -2px rgba(0,0,0,.07);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: .3s opacity, 0s z-index .3s, 0s visibility .3s;
}

.c-gearItem--active .c-gearItem__more {
  opacity: 1;
  z-index: 99;
  visibility: visible;
  transition-delay: 0s;
} 

.c-gearItem h5 { 
  color: #656565;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .2em;
  margin-bottom: 5px;
}

.c-cta {
  position: fixed;
  z-index: 100;
  right: 50px;
  bottom: 0;
  transform: translateY(100%);
  transition: .3s transform;
}

.is-scrolled .c-cta {
  transform: none;
}

.c-cta .c-btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}


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

  .u-wc {
    padding: 0 20px;
  }

  h1 {
    font-size: 18px;
  }

  .u-blockSpacing {
    padding: 50px 0;
  }

  .c-btnwrap {
    display: block;
  }

  .c-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 14px;
  }

  .c-btn + .c-btn {
    margin-top: 5px;
    margin-left: 0;
  }
  
  .c-hero {
    padding: 70px 0;
  }
  
  .c-hero__logo {
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
  }

  .c-hero h1 {
    margin-bottom: 30px;
  }

  .c-cta { 
    right: 0;
    left: 0;
  }

}

.c-equipmentNav {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ececec;
  margin-bottom: 40px;
}

.c-equipmentNav__item {
  font-weight: 700;
  font-size: 14px;
  padding: 0 12px 8px 12px;
  border-bottom: 4px solid transparent;
  color: #656565;
  transition: .3s color, .3s border;
}

.c-equipmentNav__item--active {
  border-bottom: 4px solid #2E6898;
  font-weight: 700;
  color: #2E6898;
  pointer-events: none;
} 

.c-equipmentNav__item:hover {
  border-bottom: 4px solid #2E6898;
  color: #2E6898;
}