/* Development server */
/* Production server */
#home-jumbotron {
  width: 100%;
  padding-bottom: calc(100% * 2 / 5);
  overflow: hidden;
  background: #01557f url("../../images/home-jumbotron.jpg") center/contain no-repeat;
  border-bottom: 10px solid #cccccc;
  -webkit-border-image: -webkit-linear-gradient(left, #cccccc 0%, white 50%, #cccccc 100%) 100% 1;
       -o-border-image: linear-gradient(to right, #cccccc 0%, white 50%, #cccccc 100%) 100% 1;
          border-image: linear-gradient(to right, #cccccc 0%, white 50%, #cccccc 100%) 100% 1;
}
@media only screen and (min-width: 1200px) {
  #home-jumbotron {
    padding-bottom: 0px;
    height: 480px;
  }
}

#home-jumbotron-slogan {
  position: absolute;
  right: 10%;
  bottom: 10%;
  padding: 20px;
  background-color: white;
  border-radius: 5px;
  box-shadow: 0px 0px 40px 20px rgba(0, 0, 0, 0.25);
}
#home-jumbotron-slogan #home-jumbotron-slogan-line1 {
  font-size: 1.4rem;
}
#home-jumbotron-slogan #home-jumbotron-slogan-line2 {
  margin-top: 5px;
  font-size: 3.5rem;
}

#home-products {
  padding: 40px;
  text-align: center;
}
#home-products h1 {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
#home-products ul {
  display: inline-block;
}
#home-products li {
  margin-bottom: 40px;
}
@media only screen and (max-width: 899px) {
  #home-products li:last-child {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 900px) {
  #home-products li {
    float: left;
    margin: 0px 30px 15px 30px;
  }
}
#home-products a {
  display: block;
  height: 95px;
}
#home-products a .product-icon {
  margin-bottom: 15px;
}
#home-products a .product-description {
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
#home-products a:hover .product-description, #home-products a:active .product-description {
  color: #3398ff;
}
