.home-video {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.home-video video {
  position: absolute;
  width: auto;
  height: 110%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  z-index: 1;
}

.home-video iframe {
  border: 0;
}

.home-video--cover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.home-intro {
  margin: 30px auto 0;
  text-align: center;
  padding: 60px 0 160px 0;
  background-image: url(../images/icons/slash_thin.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 10% 0;
}

.home-intro--text-wrapper {
  background: #fff;
}

.home-intro h1,
.home-intro h2,
.home-intro h4 {
  width: 93%;
  margin: auto;
}

.home-intro h1 {
  color: #fdc62c;
  margin: 30px auto;
  font-size: 60px;
}

.home-intro h2 {
  padding-bottom: 60px;
  border-bottom: 1px solid #fdc62c;
}

.home-content {
  margin: 40px auto;
}

.home-content--image {
  float: left;
  margin-right: 20px;
}

.home-products {
  background-image: url('../images/home/products-section.jpg');
  background-size: cover;
  margin: 60px auto;
  position: relative;
  padding-bottom: 90px;
  background-position-x: center;
}

.home-products--slash {
  background-image: url(../images/icons/slash.svg);
  position: absolute;
  width: 10%;
  height: 20%;
  background-repeat: no-repeat;
  top: 90%;
  left: 15%;
  background-size: contain;
}

.home-products--track {
  margin: auto;
  overflow: hidden;
}

.home-products--track-inner {
  transition: transform 0.2s ease-in-out;
  transform: translateX(0%);
}

.home-products-title {
  color: #fdc62c;
  padding-top: 90px;
  padding-bottom: 60px;
  font-size: 3.9vw;
}

.home-products p {
  color: #fff;
}

.home-products--icon {
  width: 60px;
  height: 60px;
  background-position: center center;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
}

.home-products--large-text {
  font-weight: bold;
  font-size: 20px;
  margin: 40px 0 0 0;
}

.home-products--description {
  margin-bottom: 20px;
  line-height: 24px;
  padding-right: 45px;
}

.home-products--link {
  color: #fdc62c;
  font-weight: bold;
  font-size: 16px;
}

.home-products--link:hover {
  cursor: pointer;
  color: #fdc62c;
}

.home-products--chevron {
  position: absolute;
  z-index: 10;
  height: 320px;
  width: 4%;
  background-position: center center;
  background-repeat: no-repeat;
  left: 2rem;
  cursor: pointer;
  top: 230px;
  background-image: url(../images/icons/chevron-left.svg);
  background-size: contain;
}

.home-products--chevron-right {
  left: calc(96% - 2rem);
  background-image: url('../images/icons/chevron-right.svg');
}

.home-intro--slash {
  position: relative;
  display: none;
}

.home-intro--slash-image {
  position: absolute;
  left: 17%;
  top: -37vw;
  height: 37vw;
}

.home-news {
  margin: 180px auto;
  overflow: hidden;
}

.home-news--entry {
  width: 25%;
  float: left;
  padding-right: 3%;
  margin-bottom: 20px;
}

.home-news--image {
  height: 200px;
  background-size: cover;
  background-position: center center;
}

.home-news h4 {
  color: #0064a8;
}

.home-news h4,
.home-news h5,
.home-news--link {
  font-weight: bold;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.home-down {
  background: url(../images/icons/down-arrow.png) no-repeat;
  background-position: center center;
  background-size: contain;
  display: block;
  height: 28px;
  transition: all 0.3s ease-out;
  animation-name: bounce;
  animation-duration: 1.8s;
  animation-delay: 2s;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  pointer-events: none;
}

@media screen and (max-width: 770px) {
  .home-content--image {
    float: none;
    width: 100%;
  }

  .home-products--description {
    overflow: hidden;
    line-height: 4vw;
    font-size: 2.8vw;
  }

  .home-video {
    background-image: url('../images/home/mobile-fallback.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    max-height: 350px;
  }

  .home-video video,
  .home-video iframe {
    display: none;
  }

  .home-news--entry {
    width: 100%;
  }

  .home-products--slash {
    top: 95%;
  }

  .home-products-title {
    font-size: 6vw;
    font-weight: bold;
    text-align: center;
  }
}
