
/*** Reset ***/

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}
html {
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}
body {
  font-family:'Helvetica Neue LT W01_55 Roman', Arial, sans-serif;
  font-size: 100%;
  line-height: 1;
  -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, p, 
blockquote, figure,
ol, ul {
  margin: 0;
  padding: 0;
}
h1, h2, h3, h4, h5, {
  font-size: inherit;
  font-weight: inherit;
}
h1, h2 {
  font-weight: normal;
}
h6 {
  font-size: 1em;
  font-weight: bold;
  letter-spacing: .0625em;
  color: #d0112b;
  text-transform: uppercase;
  margin: 15px;
  padding: 5px;
}
a, button {
  color: inherit;
}
a {
  text-decoration: none;
}
button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}
::-moz-focus-inner {
  padding: 0;
  border: 0;
}
:focus,
input,
select {
  outline: 0;
}
input {
  display: inline-block;
  line-height: 1;
  background: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  margin: 0;
  white-space: normal;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select{
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
select::-ms-expand {
  display: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
em, i {
  font-style: italic;
}
strong, b {
  font-family:'Helvetica Neue LT W01_71488914', Arial, sans-serif;
  font-weight: normal;
}
sup { 
  position: relative;
  top: -0.5em;
  font-size: 0.6em;
  vertical-align: baseline;
}
.clear:before,
.clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/*** Reset ***/


/*** Common ***/

.container {
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
main {
  position: relative;
  display: block;
  top: 150px;
}
.anchor {
  position: relative;
  display: block;
  top: -45px;
  visibility: hidden;
}
.a-pad {
  top: 5px;
}

/*** Common ***/


/*** Navigation ***/

header {
  width: 100%;
  top: 0;
  background: #fff;
}
.logo,
.mobile-btn {
  position: fixed;
  z-index: 9999;
}
.logo {
  width: 220px;
  top: 30px;
  left: 0;
}
.logo,
.footer-wrap img,
.home-btn img {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all ease .5s;
          transition: all ease .5s;        
}
.logo:hover,
.home-btn a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.mobile-btn {
  position: fixed;
  width: 45px;
  height: 29px;
  top: 58px;
  right: 58px;
  cursor: pointer;
  -webkit-transition: opacity .25s ease;
          transition: opacity .25s ease;
}
.mobile-btn span {
  position: absolute;
  width: 100%;
  height: 4px;
  top: 0;
  left: 0;
  background: #d0112b;
  border: none;
  cursor: pointer;
  -webkit-transition: all .35s ease;
          transition: all .35s ease;
}
.mobile-btn span:nth-of-type(2) {
  top: 12px;
}
.mobile-btn span:nth-of-type(3) {
  top: 24px;
}
.mobile-btn.active .top {
  -webkit-transform: translateY(12px) translateX(0) rotate(45deg);
          transform: translateY(12px) translateX(0) rotate(45deg);
}
.mobile-btn.active .middle {
  opacity: 0;
}
.mobile-btn.active .bottom {
  -webkit-transform: translateY(-12px) translateX(0) rotate(-45deg);
          transform: translateY(-12px) translateX(0) rotate(-45deg);
}
.mobile-btn:hover {
  opacity: .7;
}

.menu {
  position: fixed;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #fff;
  opacity: 0;
  z-index: 999;
  visibility: hidden;
  overflow: hidden;
  -webkit-transition: opacity .35s, visibility .35s, height .35s;
          transition: opacity .35s, visibility .35s, height .35s;
}
.menu.open {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.menu.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
          animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
          animation-delay: .35s;
}
.menu nav {
  position: relative;
  top: 16%;
  font-size: 2.6em;
  text-align: center;
}
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 100%;
}
.menu li {
  position: relative;
  display: block;
  line-height: 1.3;
  text-align: left;
  margin: 10px 0;
  opacity: 0;
}
.menu a {
  position: relative;
  display: block;
  color: #231f20;
  text-decoration: none;
  border-bottom: 5px solid #fff;
  overflow: hidden;
}
.menu a:hover {
  color: #d0112b;
  border-bottom: 5px solid #d0112b;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

/*** Navigation ***/


/*** Colors + Fonts 

font-family:'Helvetica Neue LT W01_41488878';
font-family:'Helvetica Neue LT W01_55 Roman';
font-family:'Helvetica Neue LT W01_65 Md';
font-family:'Helvetica Neue LT W01_71488914';

Colors + Fonts ***/


/*** Fonts ***/

h1 {
  font-family: 'Helvetica Neue LT W01_41488878', Arial, sans-serif;
  color: #231f20;
}
.subpage h1 {
  font-size: 4em;
}
.homepage h1 {
  font-size: 7em;
}

h2 {
  line-height: 1.3;
}
.homepage h2 {
  font-family: 'Helvetica Neue LT W01_41488878', Arial, sans-serif;
  font-size: 4em;
  color: #231f20;
  text-align: center;
}
.grid-text h2 {
  font-size: 6em;
}
.subpage h2 {
  font-family: 'Helvetica Neue LT W01_65 Md', Arial, sans-serif;
  font-size: 1.45em;
  color: #d0112b;
}

h3 {
  font-family: 'Helvetica Neue LT W01_71488914', Arial, sans-serif;
  font-size: 1.15em;
  font-weight: normal;
  line-height: 1;
  color: #68686a;
}
.subpage h3 {
  font-family: 'Helvetica Neue LT W01_55 Roman', Arial, sans-serif;
  padding: 8px 0 0 2px;
  border-top: 1px solid #cbcbce;
  margin-top: 25px;
}

h4 {
  font-family: 'Helvetica Neue LT W01_71488914', Arial, sans-serif;
  font-size: 2em;
  color: #d0112b;
  margin-bottom: 5px;
}

p, li {
  font-family: 'Helvetica Neue LT W01_55 Roman', Arial, sans-serif;
  font-size: 1.45em;
  line-height: 1.6;
  color: #68686a;
}

ul {
  margin: 0 0 0 20px;
}

/*** Fonts ***/


/*** Subpage ***/

.subpage {
  padding-bottom: 35px;
}
.pro-intro {
  margin-top: 20px;
}
.pro-intro p {
  margin: 30px 0;
}
.pro-list {
  margin-bottom: 60px;
}
.pro-list ul {
  float: left;
  list-style: none;
  margin: 0 10% -12px 0;
}
.pro-list ul:last-of-type {
  margin-right: 0;
}
.pro-list li {
  position: relative;
  line-height: 1.2;
  padding-left: 25px;
  margin: 12px 0;
}
.pro-list li:before {
  position: absolute;
  content: '\2794';
  font-size: 0.8em;
  color: #d0112b;
  top: 2px;
  left: 0;
}
.subpage img {
  width: 100%;
  padding: 30px 0;
  margin: 0 auto;
}
.subpage video {
  display: block;
  width: 100%;
  max-width: 950px;
  padding: 30px 0;
  margin: 0 auto;
}
.img-sml {
  max-width: 500px;
}
.img-med {
  max-width: 700px;
}
.img-lrg {
  max-width: 950px;
}
.img-mod {
  padding: 0 0 30px !important;
}

.home-btn {
  position: fixed;
  display: none;
  top: 50%;
  right: 0;
}
.home-btn img {
  width: 70px;
}

/*** Subpage ***/


/*** Homepage ***/

.intro,
.grid-text {
  text-align: center;
}
.intro {
  margin-top: 20px;
}
.intro h1 span,
.intro p span {
  display: block;
}
.intro p,
.grid-text p {
  margin: 35px auto;
}
.intro p {
  max-width: 900px;
}
.grid-text p {
  max-width: 850px;
}

.grid-block {
  padding: 20px 0;
}
.grid-cta {
  position: relative;
  float: left;
  width: 33.3%;
  padding: 1%;
}
.grid-wrap {
  float: left;
  width: 66.6%;
}
.grid-wrap .grid-cta {
  width: 50%;
  padding: 1.5%;
}
.grid-overlay {
  position: absolute;
  width: 94%;
  height: 94%;
  top: 3%;
  left: 3%;
  text-align: center;
  background: url(../img/common/stripe.png) repeat;
  opacity: 0;
  z-index: 10;
  -webkit-transition: all ease .5s;
          transition: all ease .5s;
}
.grid-overlay span {
  display: inline-block;
  font-family: 'Helvetica Neue LT W01_65 Md', Arial, sans-serif;
  font-size: 1.5em;
  letter-spacing: 1px;
  line-height: 1.1;
  color: #fff;
  margin-top: 44%;
}
.grid-cta:hover .grid-overlay {
  opacity: 1;
}
.hover-mod {
  top: 1.5%;
  height: 97%;
}
.hover-mod span {
  margin-top: 99%;
}

.bg-gray {
  background: #fafafb;
  padding: 70px 0;
}
.info-wrap {
  margin-top: 45px;
}
.info-block h3 {
  font-size: 1.15em;
  line-height: 1.2;
  color: #231f20;
  margin-bottom: 12px;
}
.info-block p {
  font-size: 1.15em;
  line-height: 2;
  margin-bottom: 30px;
}
.info-block li {
  font-size: 1.15em;
  line-height: 1.5;
  color: #68686a;
  margin: 10px 0;
}
.info-block img {
  margin: 10px 0 20px;
}
.info-2-1,
.info-2-2 {
  float: left;
}
.info-2-1 {
  width: 60%;
  padding-right: 2%;
}
.info-2-2 {
  width: 40%;
  padding-left: 2%;
}
.list {
  float: left;
}
.list:first-of-type {
  width: 60%;
  padding-right: 5%;
}
.list:last-of-type {
  width: 40%;
}
.list ul {
  list-style: none;
  margin: 0;
}
.list li {
  position: relative;
  line-height: 1.2;
  padding-left: 24px;
}
.list li:before {
  position: absolute;
  content: '\2794';
  font-size: 0.9em;
  color: #d0112b;
  top: 2px;
  left: 0;
}

.brand-block {
  margin-bottom: 150px;
}
.brand-wrap {
  margin-top: 60px;
}
.brand-cta {
  position: relative;
  float: left;
  width: 32%;
  text-align: center;
  cursor: pointer;
}
.brand-cta:nth-of-type(2) {
  margin: 0 2%;
}
.brand-cta:after {
  display: inline-block;
  width: 80px;
  height: 80px;
  content: '';
  background: url(../img/common/arrow.png) no-repeat 0 0;
  background-size: 100%;
  margin-top: 20px;
}
.brand-cta:hover h3,
.btn-open h3 {
  color: #d0112b;
}
.brand-cta:hover:after,
.btn-open:after,
.brand-wrap .active:after {
  display: inline-block;
  width: 80px;
  height: 80px;
  content: '';
  background: url(../img/common/arrow-red.png) no-repeat 0 0;
  background-size: 100%;
  margin-top: 20px;
}
.brand-box-wrap {
  max-width: 900px;
  margin: 50px auto 0;
}
.brand-wrap .active h3 {
  color: #d0112b;
}
.hide {
  display: none;
}
.open {
  display: block;
}

.headline {
  margin: 70px 0 0;
  padding: 0 20px;
}
.headline h2 span {
  display: block;
}

.parallax {
  position: relative;
  height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  box-shadow: inset 0 0 50px rgba(0,0,0, 0.5);
  margin: 70px 0;
  overflow: hidden;
}
.parallax p {
  display: block;
  font-family: 'Helvetica Neue LT W01_65 Md', Arial, sans-serif;
  font-size: 1.4em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 5px rgba(0,0,0, 0.6);
  padding: 40% 0 25px;
}
.par-img-1 {
  background-image: url(../img/parallax/festo-banner.jpg);
  background-size: 100%;
  margin: 70px 0 0;
}
.par-img-2 {
  background-image: url(../img/parallax/bemax-banner.jpg);
  background-size: 100%;
}
.par-img-3 {
  background-image: url(../img/parallax/trimark-banner.jpg);
  background-size: cover;
}

/*** Homepage ***/


/*** Footer ***/

footer,
.footer-img {
  position: relative;
}
footer {
  height: 700px;
  top: 150px;
  padding-right: 10%;
}
.footer-img {
  width: 100%;
  height: 100%;
  background: url(../img/common/footer.png);
  background-size: 100%;
  background-repeat: no-repeat;
}
.footer-wrap {
  position: absolute;
  max-width: 900px;
  top: 300px;
  left: 10%;
}
.footer-wrap p {
  color: #fff;
}
.footer-2-1,
.footer-2-2 {
  float: left;
  width: 50%;
}
.footer-2-1 {
  padding-right: 50px;
}
.footer-2-1 p {
  font-family: 'Helvetica Neue LT W01_55 Roman', Arial, sans-serif;
  font-size: 1.6em;
  line-height: 1.3;
  margin-bottom: 25px;
}
.footer-2-2 {
  padding-left: 50px;
  border-left: 1px solid #fff;
}
.footer-2-2 p {
  font-family: 'Helvetica Neue LT W01_71488914', Arial, sans-serif;
  line-height: 1.6;
}
.footer-2-2 a:hover {
  text-decoration: underline;
}
.footer-wrap img {
  width: 35px;
  margin: 15px 0 20px;
}
.footer-wrap img {
  display: inline-block;
}
.footer-wrap img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

/*** Footer ***/




@media only screen and (min-width: 2000px) {
  footer {
    height: 900px;
  }
  .footer-wrap {
    top: 400px;
  }
}

@media only screen and (min-width: 2500px) {
  footer {
    height: 1000px;
  }
  .footer-wrap {
    top: 480px;
  }
}

@media only screen and (min-width: 1050px) {
  .parallax {
    background-attachment: fixed;
  }
}

@media only screen and (max-width: 1700px) {
   footer {
    height: 600px;
  }
  .footer-wrap {
    top: 240px;
  }
  .footer-2-1 p {
    font-size: 1.4em;
  }
  .footer-2-2 p {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 1450px) {
  .homepage h1 {
    font-size: 6em;
  }
  .grid-text h2 {
    font-size: 4em;
  }
  .menu nav {
    top: 12%;
    font-size: 2.2em;
  }
  .menu li {
    margin: 8px 0;
  }
  .menu a {
    border-bottom: 4px solid #fff;
  }
  .menu a:hover {
    border-bottom: 4px solid #d0112b;
  }
  footer {
    height: 500px;
    padding-right: 5%;
  }
  .footer-wrap {
    top: 215px;
  }
}

@media only screen and (max-width: 1230px) {
  footer {
    padding-right: 2%;
  }
  .footer-wrap {
    top: 180px;
  }
}

@media only screen and (max-width: 1130px) {
  .homepage h2 {
    font-size: 3em;
  }
  .info-wrap {
    margin-top: 35px;
  }
  .footer-2-1 {
    width: 46%;
    padding-right: 20px;
  }
  .footer-2-2 {
    width: 54%;
    padding-left: 30px;
  }
  .footer-2-1 p {
    margin-bottom: 20px;
  }
  .footer-2-2 img {
    width: 30px;
    margin: 15px 0;
  }
  .brand-block {
    margin-bottom: 100px;
  }
  .brand-block h3 {
    font-size: 1.3em;
  }
  .brand-wrap {
    margin-top: 40px;
  }
  .brand-box-wrap {
    margin: 40px auto 0;
  }
  h4 {
    font-size: 1.6em;
  }
}

@media only screen and (max-width: 1050px) {
  .homepage h1 {
    font-size: 5em;
  }
  .subpage h1 {
    font-size: 3.2em;
  }
  p, li,
  .subpage h2 {
    font-size: 1.3em;
  }
  h3 {
    font-size: 1.15em;
  }
  .subpage h3 {
    margin-top: 10px;
  }
  .subpage p {
    margin: 20px 0 25px;
  }
  .subpage img,
  .subpage video {
    width: 100%;
  }
  .pro-intro {
    margin-top: 10px;
  }
  .pro-list {
    margin-bottom: 40px;
  }
  .pro-list li:before {
    top: 4px;
  }
  .intro {
    margin-top: 10px;
  }
  .intro p,
  .grid-text p {
    margin: 20px auto;
  }
  .bg-gray {
    padding: 50px 0;
  }
  .info-wrap {
    margin-top: 25px;
  }
  .parallax {
    margin: 50px 0;
  }
  .parallax p {
    padding: 35% 0 15px;
  }
  .par-img-3 {
    margin: 50px 0;
  }
  .headline {
    margin: 70px 0;
  }
  footer {
    height: 300px;
    background: #ed1c24;
    padding-top: 60px;
  }
  .footer-img {
    background: none;
  }
  .footer-wrap {
    top: 0;
    left: 8%;
  }
  .footer-2-1 {
    width: 50%;
    padding-right: 5%;
  }
  .footer-2-2 {
    width: 50%;
    padding-left: 5%;
  }
}

@media only screen and (max-width: 950px) {
  .homepage h2 {
    font-size: 2.4em;
  }
  .info-wrap {
    margin-top: 20px;
  }
  .info-2-1,
  .info-2-2 {
    float: none;
    width: 100%;
    padding: 0;
  }
  .info-block p {
    margin-bottom: 15px;
  }
  .info-block img {
    width: 100%;
    max-width: 600px;
    margin: 30px 0 20px;
  }
  .info-2-1 h3 {
    margin-top: 20px;
  }
  .list:first-of-type {
    width: 50%;
    padding-right: 5%;
  }
  .list:last-of-type {
    width: 50%;
  }
  .brand-block {
    margin-bottom: 70px;
  }
  .brand-wrap {
    margin-top: 30px;
  }
  .brand-box-wrap {
    margin: 35px auto 0;
  }
  .brand-block h3 {
    font-size: 1.2em;
  }
  .brand-cta:after,
  .brand-cta:hover:after,
  .btn-open:after,
  .brand-wrap .active:after {
    width: 60px;
    height: 60px;
    margin-top: 15px;
  }
  h4 {
    font-size: 1.4em;
  }
  h6 {
    font-size: .7em;
    padding: 8px;
    margin-left: 18%;
    margin-right: 18%;
  }
  .grid-overlay span {
    font-size: 1.2em;
    margin-top: 40%;
  }
  .hover-mod span {
    margin-top: 70%;
  }
  .headline {
    margin: 50px 0;
  }
  .headline h2 span {
    display: inline;
  }
  .home-btn img {
    width: 60px;
  }
}

@media only screen and (max-width: 800px) {
  .logo {
    width: 180px;
    top: 18px;
  }
  .mobile-btn {
    top: 40px;
    right: 5%;
  }
  main,
  footer {
    top: 110px;
  }
  .homepage h1 {
    font-size: 4em;
  }
  .grid-block {
    padding: 10px 0 0;
  }
  .parallax p {
    font-size: 1.1em;
  }
}

@media only screen and (max-width: 700px) {
  .anchor {
    top: -30px;
  }
  .a-pad {
    top: 10px;
  }
  p, li,
  .info-block p {
    font-size: 1.15em;
    line-height: 1.5;
  }
  h4 {
    font-size: 1.3em;
  }
  .subpage h1 {
    font-size: 2.3em;
  }
  .subpage h2,
  .subpage h3 {
    font-size: 1em;
  }
  .subpage h3 {
    margin-top: 0;
  }
  .subpage p {
    margin: 15px 0 20px;
  }
  .subpage {
    padding-bottom: 100px;
  }
  .subpage img,
  .subpage video {
    padding: 20px 0 25px;
  }
  .img-mod {
    padding: 0 0 25px !important;
  }
  .pro-list {
    margin-bottom: 30px;
  }
  .pro-list ul {
    margin: 0 10% -8px 0;
  }
  .pro-list li {
    padding-left: 20px;
    margin: 8px 0;
  }
  .pro-list li:before {
    top: 3px;
  }
  .homepage h1 {
    font-size: 3em;
    line-height: 1.1;
    padding: 0 5%;
  }
  .homepage h1 span,
  .intro p span {
    display: inline;
  }
  .homepage h2 {
    font-size: 2em;
    line-height: 1.15;
  }
  .homepage li {
    margin: 6px 0;
  }
  .bg-gray {
    padding: 40px 0;
  }
  .info-block img {
    margin: 20px 0;
  }
  .list:first-of-type,
  .list:last-of-type {
    width: 100%;
    padding: 0;
  }
  .list:last-of-type {
    margin-top: 15px;
  }
  .text-mod span {
    max-width: 100px;
  }
  .text-mod span {
    margin-top: 33%;
  }
  .brand-block {
    margin-bottom: 50px;
  }
  .brand-block h3 {
    line-height: 1.2;
  }
  .brand-cta h3 span {
    display: block;
  }
  .brand-cta:after,
  .brand-cta:hover:after,
  .btn-open:after,
  .brand-wrap .active:after {
    width: 50px;
    height: 50px;
    margin-top: 15px;
  }
  .parallax {
    margin: 40px 0;
  }
  .par-img-1 {
    margin: 40px 0 0;
  }
  footer {
    height: 350px;
    padding-top: 40px;
  }
  .footer-wrap {
    left: 0;
  }
  .footer-2-1,
  .footer-2-2 {
    float: none;
    width: 100%;
    padding: 0;
    border: none;
  }
  .footer-2-1 p {
    font-size: 1.3em;
    margin-bottom: 15px;
  }
  .footer-2-2 p {
    margin-top: 25px;
  }
}

@media only screen and (max-width: 600px) {
  .homepage h1 {
    font-size: 2.7em;
    padding: 0 5%;
  }
  .grid-overlay span {
    font-size: 1.1em;
    margin-top: 40%;
  }
  h4 {
    font-size: 1.2em;
  }
  h6 {
    font-size: .7em;
    border-width: 1px;
    padding: 6px;
    margin-left: 10%;
    margin-right: 10%;
  } 
  .hover-mod span {
    margin-top: 70%;
  }
  .brand-box-wrap {
    margin: 25px auto 0;
  }
  .headline {
    margin: 45px 0 40px;
  }
  .home-btn img {
    width: 50px;
  }
}

@media only screen and (max-width: 550px) {
  .logo {
    width: 140px;
    top: 15px;
  }
  .mobile-btn {
    top: 35px;
  }
  main {
    top: 95px;
  }
  .menu nav {
    top: 10%;
    font-size: 1.8em;
  }
  .grid-overlay span {
    font-size: 1em;
    margin-top: 30%;
  }
  h6 {
    font-size: .6em;
    border-width: 1px;
    padding: 6px;
    margin-top: 8px;
    margin-left: 8%;
    margin-right: 8%;
  }  
  .hover-mod span {
    margin-top: 70%;
  }
  .brand-cta h3 {
    font-size: 0.9em;
  }
}
