*:before,
*,
*:after {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  font-family: 'Montserrat',Helvetica, Arial, sans-serif;
  font-size: 16px;
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
}
.landing-wrapper {
  overflow: hidden;
}
.landing-bg {
  position: fixed;
  margin: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg-blue.jpg);
  background-size: cover;
  box-shadow: 0;
  overflow: hidden;
}
.logo-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 500px;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.bottom {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1024px;
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}
.logo {
  margin: 0;
  padding: 0;
  max-width: 180px;
}
h1 {
  font-size: 3em;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 1.65em;
  line-height: 1.75em;
}
h2 {
  font-size: .75em;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.70em;
  line-height: 1.75em;
}
h3 {
  font-size: .75em;
  color: #B1B1B1;
  font-weight: 300;
  letter-spacing: 0.70em;
  line-height: 1.75em;
}

 @media screen and (min-width: 760px) {
   .landing-bg {
     margin: 1.75em;
     width: calc(100% - 3.5em);
     height: calc(100% - 3.5em);
     box-shadow: 5px 5px 15px 0px rgba(0,0,0,0.50);
   }
   .logo-box {
     padding-left: 1.8em;
     padding-right: 1.8em;
   }
   .bottom {
     padding-left: 1.8em;
     padding-right: 1.8em;
   }
   .logo {
     max-width: 250px;
   }
  h1 {
    font-size: 3em;
    letter-spacing: 1.65em;
    line-height: 1.75em;
  }
  h2 {
    font-size: 1.25em;
    letter-spacing: 0.70em;
    line-height: 1.75em;
  }
  h3 {
    font-size: 1.25em;
    letter-spacing: 0.70em;
    line-height: 1.75em;
  }
}
