main {
  margin-top: 8rem;
}
@media screen and (max-width: 999px) {
  main {
    margin-top: 6rem;
  }
}

.hero {
  background-image: url(/images/template/hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
          background-size: cover;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 100vw;
}
.hero:before {
  content: "";
  display: block;
  padding-top: 33.33333%;
}
.hero > * {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
}
.hero_holder {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
}
.hero_heading {
  color: white;
  display: inline-block;
  font-size: 3.6rem;
}
@media screen and (max-width: 999px) {
  .hero_heading {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 479px) {
  .hero_heading {
    font-size: 1.8rem;
  }
}

.products {
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .products {
    padding-top: 4rem;
  }
}
@media screen and (max-width: 479px) {
  .products {
    padding: 3.2rem 0;
  }
}
.products_heading {
  margin-bottom: 3rem;
}
.products_lead {
  margin-bottom: 3rem;
}
.products_tab {
  margin-bottom: 4rem;
}
.products_cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  .products_cards {
    margin-bottom: 2.4rem;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.products_cards_item {
  -webkit-animation: fadein .8s;
          animation: fadein .8s;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-bottom: 4rem;
  margin-right: 3.5rem;
  width: 31rem;
}
@media screen and (max-width: 999px) {
  .products_cards_item {
    margin-right: 0;
    margin-bottom: 2%;
    width: 49%;
  }
}
@media screen and (max-width: 479px) {
  .products_cards_item {
    margin-bottom: 4%;
    width: 100%;
  }
  .products_cards_item:last-of-type {
    margin-bottom: 0;
  }
}
.products_cards_item:nth-of-type(3n), .products_cards_item:last-of-type {
  margin-right: 0;
}
.products_cards_item_img {
  border: 0.1rem solid #c2c2c2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 19.4rem;
  margin-bottom: 2rem;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}
.products_cards_item_desc {
  font-size: 1.4rem;
  line-height: 3rem;
  margin-bottom: 1.6rem;
}
.products_cards_item_colors {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.products_cards_item_colors_icon {
  border-radius: 100%;
  border: 0.2rem solid #c2c2c2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 2.4rem;
  margin-right: 1.2rem;
  width: 2.4rem;
}
.products_btn {
  display: none;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin: 0 auto;
  width: 50%;
}
@media screen and (max-width: 479px) {
  .products_btn {
    width: 100%;
  }
}
.products_btn.is-active {
  display: block;
}
.products_btn a {
  width: 100%;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
