@import url("https://fonts.googleapis.com/css?family=Kumbh+Sans:400,700");
@import url("https://fonts.googleapis.com/css?family=Sansita:400,700");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
.outerContainer {
  width: 100%;
  margin: 0;
  text-align: center;
  display: inline-block; }
  .outerContainer .innerContainer {
    width: 95%;
    display: inline-block;
    max-width: 1400px; }

.bgRed {
  background: #ff3643;
  background: -moz-linear-gradient(90deg, red 0%, #ff3643 100%);
  background: -webkit-linear-gradient(90deg, red 0%, #ff3643 100%);
  background: linear-gradient(90deg, red 0%, #ff3643 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0000",endColorstr="#ff3643",GradientType=1); }

.pageCrumbs {
  background-color: #ebebeb; }
  .pageCrumbs p {
    text-align: left;
    margin: 8px 0;
    font-size: 14px; }
    .pageCrumbs p a {
      font-weight: 600;
      color: #333333; }

.footerOuter {
  background-color: #262626;
  margin-top: 50px; }
  .footerOuter .innerContainer {
    padding: 20px 0; }
    .footerOuter .innerContainer img {
      max-width: 30vw;
      max-height: 60px; }

.saleContent img {
  width: 100%;
  margin-bottom: 40px; }

.btn {
  width: 100%;
  padding: 10px 0;
  box-sizing: border-box;
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  display: block;
  font-weight: 600; }

.dh-background-gradient {
  background: #74ca2a;
  background: -moz-linear-gradient(54deg, #74ca2a 0%, #01b7ed 100%);
  background: -webkit-linear-gradient(54deg, #74ca2a 0%, #01b7ed 100%);
  background: linear-gradient(54deg, #74ca2a 0%, #01b7ed 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#74ca2a", endColorstr="#01b7cd", GradientType=1); }

.blue-background {
  background: #01b7ed; }

.headerFix {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #ffffff; }

.headerContainer {
  display: inline-flex !important;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  padding: 20px 0; }
  .headerContainer img {
    height: 70px; }
  .headerContainer .navBox {
    display: inline-flex;
    max-width: 60%;
    justify-content: flex-end;
    align-items: center; }
    .headerContainer .navBox a {
      font-weight: 600;
      color: #333333;
      margin: 0 0 0 20px;
      text-transform: uppercase;
      border-bottom: 3px solid #ffffff;
      margin-top: 1.5px;
      transition: all .3s ease-in-out; }
      .headerContainer .navBox a:hover {
        border-bottom: 3px solid #ff3643; }

.salesHeader {
  display: inline-flex !important;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  padding: 10px;
  box-sizing: border-box;
  background-color: #333333;
  width: 100%; }
  .salesHeader a {
    font-weight: 400;
    font-size: 14px;
    color: #ffffff;
    margin: 0 20px 0 0;
    text-transform: uppercase; }

.filtersBox {
  position: fixed;
  top: 145px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 4px solid #ff3643;
  border-top: 1px solid #333333;
  z-index: 999;
  padding: 10px 0 40px; }
  .filtersBox .innerContainer {
    display: inline-flex;
    justify-content: space-between; }
  .filtersBox .filterRow {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 5px;
    margin-right: 40px; }
    .filtersBox .filterRow h3 {
      margin: 0 0 10px;
      font-family: "Sansita", serif; }
    .filtersBox .filterRow p {
      margin: 6px 0;
      border-bottom: 4px solid #ffffff; }
      .filtersBox .filterRow p:hover {
        border-bottom: 4px solid #ff3643;
        cursor: pointer; }
    .filtersBox .filterRow input {
      border: none;
      border-bottom: 1px solid #99999a;
      padding: 5px 0;
      margin-right: 20px;
      min-width: 40vw;
      font-family: "Kumbh Sans", Verdana, sans-serif;
      font-size: 16px; }
      .filtersBox .filterRow input:focus {
        border-color: #ff3643;
        outline: none; }
    .filtersBox .filterRow .searchSubmit {
      background-color: #ff3643;
      color: #ffffff;
      padding: 5px 10px; }

.productBox {
  display: inline-block;
  width: calc(50% - 20px);
  margin: 0 0 40px;
  padding-top: 25%;
  background-size: cover;
  background-position: 50% -100px;
  position: relative;
  transition: all .3s ease-in-out; }
  .productBox:hover .imageFrame {
    opacity: 1; }
  .productBox.featuredProduct {
    width: 100%;
    margin: 0 auto 40px;
    max-width: 1400px;
    padding-top: 45%; }
  .productBox .imageFrame {
    position: absolute;
    top: 10px;
    left: 10px;
    border: 6px solid #ff3643;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    opacity: 0;
    transition: all .3s ease-in-out;
    box-sizing: border-box; }
  .productBox .productInformation {
    display: inline-flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    background: #ff3643;
    background: -moz-linear-gradient(90deg, red 0%, #ff3643 100%);
    background: -webkit-linear-gradient(90deg, red 0%, #ff3643 100%);
    background: linear-gradient(90deg, red 0%, #ff3643 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ff0000",endColorstr="#ff3643",GradientType=1);
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    transition: all .3s ease-in-out; }
    .productBox .productInformation .textLeft {
      display: inline-flex;
      max-width: 60%;
      text-align: left;
      justify-content: center;
      align-items: flex-start;
      flex-direction: column; }
      .productBox .productInformation .textLeft h3 {
        font-size: 18px;
        margin: 0;
        background-color: #ffffff;
        color: #000000;
        font-family: "Sansita", serif;
        padding: 2px 10px 5px;
        display: inline-block;
        font-weight: 700; }
      .productBox .productInformation .textLeft h1 {
        font-family: "Sansita", serif;
        color: #ffffff;
        margin: 0 0 10px;
        font-size: 3em;
        font-weight: 700; }
      .productBox .productInformation .textLeft h2 {
        font-size: 16px;
        margin: 0;
        color: #ffffff; }
    .productBox .productInformation .textRight p {
      color: #000000;
      margin: 5px 0;
      font-weight: 600;
      text-transform: uppercase; }
      .productBox .productInformation .textRight p i {
        font-size: .9em;
        margin: 0 -1px;
        color: #ffffff; }
    .productBox .productInformation .numberViews {
      position: absolute;
      top: 0;
      right: 0;
      background-color: #ffffff;
      color: #ff3643;
      padding: 5px 10px;
      font-size: 14px;
      font-weight: 600; }

.indexInner {
  display: inline-flex !important;
  flex-direction: row;
  justify-content: space-between; }
  .indexInner .sideNavBlocks {
    display: flex;
    flex-direction: column; }
    .indexInner .sideNavBlocks .homepageLeftCol {
      width: 200px;
      background-color: #000000;
      padding: 10px;
      box-sizing: border-box;
      color: #ffffff;
      height: 45vh; }
      .indexInner .sideNavBlocks .homepageLeftCol.marginTop {
        margin-top: 30px; }
      .indexInner .sideNavBlocks .homepageLeftCol img {
        max-width: 80%;
        margin: 20px auto;
        clear: both;
        display: block; }
  .indexInner .homepageRightCol {
    width: calc(100% - 240px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }

.productHeader {
  width: 100%;
  background-size: cover;
  background-position: center;
  padding-top: calc(90vh - 140px); }

.productIntro {
  padding: 20px 0;
  text-align: left; }
  .productIntro h2 {
    font-family: "Sansita", serif;
    font-size: 60px;
    margin: 0;
    width: 100%;
    border-bottom: 2px solid #ff3643;
    padding-bottom: 8px; }
  .productIntro .introInfo {
    background-color: #ebebeb;
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px auto;
    box-sizing: border-box; }
    .productIntro .introInfo div {
      margin: 0 20px;
      display: inline-flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 20%;
      max-width: 180px; }
      .productIntro .introInfo div i {
        font-size: 30px;
        color: #ff3643;
        margin: 10px 0 0; }
      .productIntro .introInfo div p {
        font-weight: 600; }

.halfPageBlock {
  display: inline-flex !important;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 40px; }
  .halfPageBlock .innerBlock {
    width: calc(50% - 20px); }
    .halfPageBlock .innerBlock.textBlock {
      text-align: left;
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 40px 0; }
      .halfPageBlock .innerBlock.textBlock h3 {
        margin: 0 0 10px;
        font-family: "Sansita", serif;
        font-size: 30px; }
      .halfPageBlock .innerBlock.textBlock p {
        line-height: 1.4; }
    .halfPageBlock .innerBlock.imageBlock {
      background-position: center;
      background-size: cover;
      padding-top: 300px; }

.quarterPageBlock {
  display: inline-flex !important;
  justify-content: space-between;
  align-items: stretch; }
  @media screen and (max-width: 1000px) {
    .quarterPageBlock {
      flex-wrap: wrap; } }
  .quarterPageBlock .innerBlock {
    width: calc(25% - 20px);
    margin-bottom: 40px; }
    @media screen and (max-width: 1000px) {
      .quarterPageBlock .innerBlock {
        width: calc(50% - 20px); } }
    .quarterPageBlock .innerBlock.textBlock {
      text-align: left;
      display: inline-flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 40px 0; }
      .quarterPageBlock .innerBlock.textBlock h3 {
        margin: 0 0 10px;
        font-family: "Sansita", serif;
        font-size: 30px; }
      .quarterPageBlock .innerBlock.textBlock p {
        line-height: 1.4; }
    .quarterPageBlock .innerBlock.imageBlock {
      background-position: center;
      background-size: cover;
      padding-top: 300px; }

.productTilesBlock h2 {
  font-size: 40px;
  font-family: "Sansita", serif;
  color: #ff3643; }
.productTilesBlock .prodTilesGrid {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 40px; }
  .productTilesBlock .prodTilesGrid .prodTile {
    width: 20%;
    margin: 20px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-bottom: 20px; }
    .productTilesBlock .prodTilesGrid .prodTile img {
      max-width: 100%;
      max-height: 140px; }
    .productTilesBlock .prodTilesGrid .prodTile p {
      font-weight: 600;
      margin: 10px auto 0;
      text-transform: uppercase;
      text-align: center; }

.fixedPageCTA {
  position: sticky;
  bottom: 0;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ff3643;
  margin-bottom: -50px; }
  .fixedPageCTA h3 {
    font-family: "Sansita", serif;
    margin: 0;
    font-size: 22px;
    color: #ffffff;
    text-align: left; }
  .fixedPageCTA a {
    background-color: none;
    border: 4px solid #ffffff;
    padding: 10px 20px;
    color: #ffffff;
    display: inline-block;
    font-weight: 600;
    transition: all .3s ease-in-out; }
    .fixedPageCTA a:hover {
      background-color: #ffffff;
      color: #ff3643; }

.subscriptionCta {
  background-color: #ff3643;
  padding: 30px 0; }
  .subscriptionCta h3 {
    font-family: "Sansita", serif;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #ffffff; }
  .subscriptionCta a {
    background-color: none;
    border: 4px solid #ffffff;
    padding: 10px 20px;
    color: #ffffff;
    display: inline-block;
    font-weight: 600;
    transition: all .3s ease-in-out; }
    .subscriptionCta a:hover {
      background-color: #ffffff;
      color: #ff3643; }

body {
  margin: 0;
  font-family: "Kumbh Sans", Verdana, sans-serif; }
  body.stop-scrolling {
    height: 100%;
    overflow: hidden; }
  body a {
    text-decoration: none; }
    body a:hover {
      cursor: pointer; }
  body button {
    cursor: pointer; }

/*# sourceMappingURL=main.css.map */
