* {
  position: relative;
  box-sizing: border-box;  
  margin: 0;
  padding: 0;  
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-weight: 400;
}

body,
html {
  width: 100%;
  height: 100%;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -webkit-text-size-adjust: none;
}

*:focus {
  outline: none !important;
}

::placeholder {
  color: #bcbcbc;
  opacity: 1;
  font-weight: 400;
}

::-ms-input-placeholder {
  color: #bcbcbc;
  opacity: 1;
  font-weight: 400;
}

.flex {
  display: flex;
}

.col {
  flex-direction: column;
}

.hc {
  justify-content: center;
}

.vc {
  align-items: center;
}

.ve {
  align-items: flex-end;
}

.transition {
  transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;    
}

.ease:hover {
  opacity: 0.5;
}  

/* -------------------------------------------------------------------------- */

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  overflow: hidden;
  background: #fdeb04 url(../images/background.jpg) center center no-repeat;
  background-size: cover;
}

section#brand {
  width: 100%;
  height: 260px;
  flex-grow: 0;
  flex-shrink: 0;
}

section#brand img {
  width: 60%;
  opacity: 0.3;
}

section#publication {
  width: 100%;
  flex-grow: 0;
  flex-shrink: 0;
}

section#publication #exguide {
  margin-top: -80px;
}

section#publication #exguide img.page {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  box-shadow: 0 0 40px rgba(0,0,0,0.5);
  position: absolute;
  opacity: 0;
}

section#publication #exguide img.page.display {
  opacity: 1;
}

section#publication #exguide a.navigation {
  position: absolute;
  font-size: 100px;
  z-index: 500;
  cursor: pointer;
}

section#publication #exguide a.navigation.hidden {
  opacity: 0;
  cursor: default;
}

section#publication #exguide a.navigation.prev {
  left: -80px;
}

section#publication #exguide a.navigation.next {
  right: -80px;
}

body.portrait section#publication #exguide a.navigation.prev {
  left: 80px;
  bottom: -150px;
}

body.portrait section#publication #exguide a.navigation.next {
  right: 80px;
  bottom: -150px;
}
  
section#download {
  background: #000000;
  width: 100%;
  height: 60px;
  flex-grow: 0;
  flex-shrink: 0;
}

section#download a {
  font-size: 18px;
  text-transform: uppercase;
  color: #fdeb04;
  text-decoration: none;
  font-weight: 600;
}

section#download a i {
  font-size: 28px;
  margin-right: 15px;
}

@media screen and (max-height: 700px) {
  body.landscape section#brand {
    height: 40px;
  }
  body.landscape section#brand img {
    display: none;
  }
  body.landscape section#publication #exguide {
    margin-top: -20px;
  }  
}

.ui-loader {
  display: none !important;
}