* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  /* padding-top: 60px; */
}

.header-bkg {
  /* The image used */
  background-image: url("../images/header_bkg_lens.jpg");
}

.parallax {
  /* Set a specific height */
  height: 100%;
  max-height: 700px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Logo Slideshow */
/* ------------------------------------------------------------------------- */
.tech-slideshow {
  height: 144px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.tech-slideshow > div {
  height: 144px;
  width: 5913px;
  /* background: url(../images/logo_slider.png); */
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transform: translate3d(0, 0, 0);
}
.tech-slideshow .mover-1 {
  animation: moveSlideshow 20s linear infinite;
}

@keyframes moveSlideshow {
  100% {
    transform: translateX(-1478px);
  }
}
/* ------------------------------------------------------------------------- */
/* Announcement */
  .announcement{
    height:60px;
  }


/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .parallax {

    /* Set a specific height */
    height: 100%;
    max-height: 620px;

    background-attachment: scroll;
  }
}
