@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700|Roboto+Condensed:400,700);@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: url(/fonts/vendor/material-design-icons/iconMaterialIcons-Regular.eot?e79bfd88537def476913f3ed52f4f4b3); /* For IE6-8 */
  src: local('Material Icons'),
       local('MaterialIcons-Regular'),
       url(/fonts/vendor/material-design-icons/iconMaterialIcons-Regular.woff2?570eb83859dc23dd0eec423a49e147fe) format('woff2'),
       url(/fonts/vendor/material-design-icons/iconMaterialIcons-Regular.woff?012cf6a10129e2275d79d6adac7f3b02) format('woff'),
       url(/fonts/vendor/material-design-icons/iconMaterialIcons-Regular.ttf?a37b0c01c0baf1888ca812cc0508f6e2) format('truetype');
}

/* set the background colors so that footer doesn't look awkward */
html {
    background-color: #212121;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 2;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

body {
  background-color: #FFF;
  font-family: "Lato", sans-serif;
}

/* BACKGROUND COLORS */
.bg-dark-mcy {
  background: #212121;
}

.bg-bluegray {
  background: #263238;
}

.bg-eeeeee {
  background: #EEEEEE;
}

.bg-carousel-home {
  background: #DDDDDD;
}

.bg-eefade {
  background: -webkit-gradient(linear, left top, left bottom, from(#EEEEEE), to(#FFFFFF));
  background: linear-gradient(#EEEEEE, #FFFFFF);
}

.bg-fffade {
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#EEEEEE));
  background: linear-gradient(#FFFFFF, #EEEEEE);
}

.bg-ffffff {
  background: #FFFFFF;
}

/* IMG FILTERS */

.img-blend-multiply {
  mix-blend-mode: multiply;
}

/* LINK BANNERS */
/* USED FOR BANNER LINKS */
/* IMG SPEC: 1600x640 JPG 60% */

.oem-link {
  height: 360px;
  width: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-left: 0;
  padding-right: 0;
  border-radius: 32px;
}

.oem-link-overlay {
  height: 100%;
  background-color: rgba(32, 32, 32, 0.33);
  border-radius: 32px;
  padding: 32px;
}

.oem-link-overlay a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media only screen and (max-width: 1200px) {
  .oem-link {
    width: 100%;
  }
}

/* VIDEO CONTAINER */
.vid-container {
  position: relative;
  background-image: src("./assets/vid/HW001.jpg");
  height: 90vh;
  min-height: 25rem;
  width: 100%;
  overflow: hidden;
}

.vid-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.vid-container .container {
  position: relative;
  z-index: 2;
}

.vid-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(32, 32, 32, 0.33);
  z-index: 1;
}