/* IMPORT FONTS */
@import url("https://fonts.googleapis.com/css?family=Cormorant+Garamond:300italic,300,400italic,400,500,500italic,600,600italic,700,700italic");
/* VARIABLE DECLARATIONS */
/* SASS MIXINS */
/******************************************************/
/******************* START OF CSS *********************/
/******************************************************/
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
  margin: 0; }

body {
  color: #999999;
  background-color: #111111;
  font-size: 1vw;
  letter-spacing: 1vw;
  line-height: 1vw; }

.flipbook-viewport {
  opacity: 0;
  -webkit-animation: fadeIn 1s ease-in 0.5s forwards;
  -moz-animation: fadeIn 1s ease-in 0.5s forwards;
  -ms-animation: fadeIn 1s ease-in 0.5s forwards;
  -o-animation: fadeIn 1s ease-in 0.5s forwards;
  animation: fadeIn 1s ease-in 0.5s forwards; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.preload * {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
  transition: none !important;
  -webkit-animation: none !important;
  -moz-animation: none !important;
  -ms-animation: none !important;
  -o-animation: none !important;
  animation: none !important; }

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

a {
  color: #009933;
  text-decoration: none;
  -webkit-transition: color 0.3s ease-in-out, font-size 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out, font-size 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out, font-size 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out, font-size 0.3s ease-in-out;
  transition: color 0.3s ease-in-out, font-size 0.3s ease-in-out; }

a:hover {
  color: #00C943;
  font-size: 102%;
  text-decoration: none; }

.loader {
  position: absolute;
  display: block;
  left: 0px;
  top: 70px;
  width: 100%;
  height: calc(110vw*600/1400);
  background: #111111;
  z-index: 5;
  border: 0px solid red; }

#loading-gif {
  position: absolute;
  height: 40px;
  width: auto;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%); }

/******************************************************/
/********************** HEADER ************************/
/******************************************************/
.header {
  position: absolute;
  width: 100%;
  border: 0px solid red;
  z-index: 10;
  background: white;
  letter-spacing: normal;
  font-family: "Roboto Condensed"; }

.header-spacer {
  position: relative;
  background: transparent;
  height: 70px; }

.nav {
  width: 100%;
  height: 70px; }

.navtag {
  position: absolute;
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
  background: #EFEFEF;
  border-bottom: 1px solid #DDD;
  font-size: 24px;
  color: #000; }

.navtag p {
  position: absolute;
  font-family: "Cormorant Garamond";
  font-size: 0.6em;
  font-style: italic;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  visibility: hidden; }

.navtag-active {
  height: 45px;
  border-bottom: 1px solid #DDD; }

.header-logo {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  width: 170px;
  height: 100%;
  border: 0px solid green; }
  @media only screen and (max-width: 575px) {
    .header-logo {
      width: 100%;
      margin: 0; } }

.header-logo-img {
  position: absolute;
  height: 65%;
  top: 50%;
  transform: translateY(-50%);
  border: 0px solid blue; }
  @media only screen and (max-width: 575px) {
    .header-logo-img {
      left: 50%;
      top: 50%;
      transform: translateX(-50%) translateY(-50%); } }

.product-list {
  position: relative;
  font-size: 0;
  display: inline-block;
  vertical-align: top;
  height: 100%;
  border: 0px solid red; }
  @media only screen and (max-width: 575px) {
    .product-list {
      display: none; } }

.product {
  display: inline-block;
  position: relative;
  width: 120px;
  height: 100%;
  line-height: 70px;
  vertical-align: top;
  color: #000000;
  font-size: 16px;
  text-align: center;
  font-weight: 300;
  cursor: pointer;
  border: 0px solid green;
  -webkit-transition: background 0.1s ease-in-out;
  -moz-transition: background 0.1s ease-in-out;
  -ms-transition: background 0.1s ease-in-out;
  -o-transition: background 0.1s ease-in-out;
  transition: background 0.1s ease-in-out; }

.product-active {
  background: #EFEFEF; }

/******************************************************/
/********************** FLIPBOOK **********************/
/******************************************************/
.flipbook-viewport {
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0px solid green; }

.flipbook-viewport .container {
  position: relative;
  margin: 4vw 0;
  border: 0px solid #00FF00; }
  @media only screen and (max-width: 480px) {
    .flipbook-viewport .container {
      margin: 8vw 0; } }

.flipbook {
  display: inline-block;
  position: absolute;
  left: 2.5vw;
  border: 0px solid red;
  -webkit-transition: transform 0.6s ease-in-out;
  -moz-transition: transform 0.6s ease-in-out;
  -ms-transition: transform 0.6s ease-in-out;
  -o-transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out; }

.flipbook-viewport .page {
  width: 100%;
  height: 100%;
  background-color: #363636;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border: 0px solid #00FF00; }

.flipbook .page {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  -o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5); }

.flipbook-viewport .shadow {
  -webkit-transition: -webkit-box-shadow 0.5s;
  -moz-transition: -moz-box-shadow 0.5s;
  -o-transition: -webkit-box-shadow 0.5s;
  -ms-transition: -ms-box-shadow 0.5s;
  -webkit-box-shadow: 0 0 20px #222222;
  -moz-box-shadow: 0 0 20px #222222;
  -o-box-shadow: 0 0 20px #222222;
  -ms-box-shadow: 0 0 20px #222222;
  box-shadow: 0 0 20px #222222; }

.flipbook .even .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, color-stop(0.95, transparent), color-stop(1, rgba(0, 0, 0, 0.2)));
  background-image: -webkit-linear-gradient(left, transparent 90%, rgba(0, 0, 0, 0.3) 100%);
  background-image: -moz-linear-gradient(left, transparent 90%, rgba(0, 0, 0, 0.3) 100%);
  background-image: -ms-linear-gradient(left, transparent 90%, rgba(0, 0, 0, 0.3) 100%);
  background-image: -o-linear-gradient(left, transparent 90%, rgba(0, 0, 0, 0.3) 100%);
  background-image: linear-gradient(left, transparent 90%, rgba(0, 0, 0, 0.3) 100%); }

.flipbook .odd .gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, right top, left top, color-stop(0.95, transparent), color-stop(1, rgba(0, 0, 0, 0.15)));
  background-image: -webkit-linear-gradient(right, transparent 90%, rgba(0, 0, 0, 0.3) 100%);
  background-image: -moz-linear-gradient(right, transparent 90%, rgba(0, 0, 0, 0.3) 100%);
  background-image: -ms-linear-gradient(right, transparent 90%, rgba(0, 0, 0, 0.3) 100%);
  background-image: -o-linear-gradient(right, transparent 90%, rgba(0, 0, 0, 0.3) 100%);
  background-image: linear-gradient(right, transparent 90%, rgba(0, 0, 0, 0.3) 100%); }

/******************************************************/
/********************** CONTENT ***********************/
/******************************************************/
.text-1 {
  position: absolute;
  width: 50%;
  top: 30%;
  left: 15%;
  font-size: 0.8em;
  font-style: italic;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.3em;
  text-align: justify;
  text-justify: inter-word;
  transform: translateY(-50%); }

.text-2 {
  position: absolute;
  width: 70%;
  bottom: 30%;
  right: 12%;
  font-size: 0.8em;
  font-style: italic;
  letter-spacing: 0.05em;
  font-weight: 300;
  text-align: right;
  transform: translateY(-50%); }

#signature {
  position: absolute;
  width: 30%;
  height: auto;
  bottom: 3%;
  right: 20%; }

.quote-cont {
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%); }

.quote {
  position: relative;
  width: 100%;
  font-size: 0.7em;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.5em;
  margin-top: 1em;
  margin-bottom: 1.5em; }

.quote-text {
  padding-bottom: 0.1em; }

.quote-author {
  font-style: italic; }

.left {
  text-align: left; }

.right {
  text-align: right; }

#desc-cont {
  position: absolute;
  width: 90%;
  font-size: 0.85em;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.3em;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  border: #0000FF; }

#desc-cont div {
  margin-bottom: 1em; }

#desc-cont li {
  width: 90%;
  margin-bottom: 1em; }

#itd-cont {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  border: 0px solid #0000FF; }
  #itd-cont p {
    position: absolute;
    width: 100%;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    font-weight: 300;
    line-height: 1.3em;
    text-align: center;
    bottom: 16%;
    border: 0px solid #00FF00; }

#ild-cont {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 0;
  left: 50%;
  border: 0px solid #0000FF; }
  #ild-cont p {
    position: absolute;
    width: 100%;
    font-size: 0.85em;
    letter-spacing: 0.05em;
    font-weight: 300;
    line-height: 1.3em;
    text-align: center;
    bottom: 16%;
    border: 0px solid #00FF00; }

#xtc-cont {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 45%;
  left: 0%;
  border: 0px solid #00FF00; }

#head-tracking-cont {
  position: absolute;
  width: 50%;
  height: 50%;
  top: 45%;
  left: 50%;
  border: 0px solid #00FF00; }

.itd-vid, .ild-vid {
  position: absolute;
  width: 90%;
  height: auto;
  top: 15%;
  left: 50%;
  transform: translateX(-50%); }

.xtc-vid, .head-tracking-img {
  position: absolute;
  width: 90%;
  height: auto;
  left: 50%;
  transform: translateX(-50%);
  top: 3%; }

.xtc-text {
  position: absolute;
  width: 100%;
  font-size: 0.7em;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.4em;
  text-align: left;
  top: 67%;
  padding-left: 1.5em;
  padding-right: 1.5em;
  text-align: justify;
  text-justify: inter-word;
  border: 0px solid #00FF00; }

.head-tracking-text {
  position: absolute;
  width: 100%;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.2em;
  text-align: left;
  top: 67%;
  padding-left: 1.5em;
  padding-right: 1.5em;
  text-align: justify;
  text-justify: inter-word;
  border: 0px solid #00FF00; }

.app-cont-left {
  position: relative;
  height: 50%;
  width: 55%;
  border: 0px solid #0000FF; }

.app-cont-right {
  position: relative;
  height: 50%;
  width: 55%;
  float: right;
  border: 0px solid #0000FF; }

.app-cont-left img, .app-cont-right img {
  position: absolute;
  width: 85%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%); }

.app-desc-left-1 {
  position: absolute;
  font-size: 0.7em;
  letter-spacing: 0.05vw;
  font-weight: 300;
  line-height: 1.0vw;
  text-align: left;
  left: 55%;
  top: 25%;
  transform: translateY(-50%);
  height: auto;
  width: 40%;
  border: 0px solid #0000FF; }

.app-desc-left-2 {
  position: absolute;
  font-size: 0.7em;
  letter-spacing: 0.05vw;
  font-weight: 300;
  line-height: 1.0vw;
  text-align: left;
  left: 55%;
  top: 75%;
  transform: translateY(-50%);
  height: auto;
  width: 40%;
  border: 0px solid #0000FF; }

.app-desc-right-1 {
  position: absolute;
  font-size: 0.7em;
  letter-spacing: 0.05vw;
  font-weight: 300;
  line-height: 1.0vw;
  text-align: right;
  right: 55%;
  top: 25%;
  transform: translateY(-50%);
  height: auto;
  width: 40%;
  border: 0px solid #0000FF; }

.app-desc-right-2 {
  position: absolute;
  font-size: 0.7em;
  letter-spacing: 0.05vw;
  font-weight: 300;
  line-height: 1.0vw;
  text-align: right;
  right: 55%;
  top: 75%;
  transform: translateY(-50%);
  height: auto;
  width: 40%;
  border: 0px solid #0000FF; }

#ir-cam-cont {
  position: relative;
  width: 100%;
  height: 50%;
  border: 0px solid #FF0000; }

#bm-cont {
  position: relative;
  width: 100%;
  height: 50%;
  border: 0px solid #FF0000; }

#ir-cam-img {
  width: 100%;
  height: 100%; }

#bacch-bm-img {
  width: 100%;
  height: 100%; }

#ir-cam-desc {
  position: absolute;
  font-size: 0.8em;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.0em;
  text-align: right;
  z-index: 10;
  left: 15%;
  top: 50%;
  transform: translateY(-50%); }

#bacch-bm-desc {
  position: absolute;
  font-size: 0.8em;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.0em;
  text-align: right;
  z-index: 10;
  right: 4%;
  top: 50%;
  transform: translateY(-50%); }

#mfg-text {
  position: absolute;
  font-size: 0.6em;
  color: #555555;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.0em;
  text-align: left;
  left: 2%;
  bottom: 2%; }

#specs-cont {
  position: absolute;
  font-size: 0.65em;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.5em;
  text-align: left;
  left: 0;
  top: 81%;
  padding-left: 5%;
  padding-right: 5%;
  height: auto;
  width: 100%;
  border: 0px solid #0000FF; }

.dealers-cont {
  position: absolute;
  width: 85%;
  left: 50%;
  top: 10%;
  transform: translateX(-50%); }

.dealers-cont p {
  margin: 0; }

.dealers-title {
  position: relative;
  width: 100%;
  font-size: 0.85em;
  color: #CCC;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.3em; }

.dealer-country {
  position: relative;
  float: left;
  width: 100%;
  font-size: 0.8em;
  color: #CCC;
  letter-spacing: 0.05em;
  font-weight: 500;
  line-height: 1.3em;
  margin-top: 1.5em;
  margin-bottom: 5px; }

.dealer-address {
  position: relative;
  display: inline-block;
  height: 7vw;
  float: left;
  font-size: 0.65em;
  color: #CCC;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.5em; }
  @media only screen and (max-width: 480px) {
    .dealer-address {
      height: 13vw; } }

.da-l {
  width: 28%; }

.da-c {
  width: 33%; }

.da-r {
  width: 27%; }

#theoretica-info-cont {
  position: absolute;
  width: 85%;
  right: 50%;
  top: 10%;
  text-align: right;
  transform: translateX(50%);
  font-size: 0.8em;
  color: #CCC;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.5em; }
  #theoretica-info-cont div {
    margin-bottom: 0.3vw; }

#theoretica-logo {
  position: absolute;
  width: 4vw;
  height: auto;
  right: 1vw;
  top: 1vw; }

#theoretica-logo:hover {
  -webkit-filter: contrast(75%);
  filter: contrast(75%);
  cursor: pointer; }

#bacch-logo {
  width: 9vw;
  height: auto; }

#back-cover-cont {
  position: absolute;
  width: 100%;
  top: 26.5%;
  text-align: center;
  font-size: 0.74em;
  color: #CCC;
  letter-spacing: 0.05em;
  font-weight: 300;
  line-height: 1.4em; }

#eyc-cont {
  position: absolute;
  width: 85%;
  text-align: left;
  font-size: 0.75em;
  color: #CCC;
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 1.3em;
  text-align: justify;
  text-justify: inter-word;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%); }
  #eyc-cont div {
    margin: 0.75em 0; }
  #eyc-cont a {
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out; }
  #eyc-cont a:hover {
    font-size: 100%; }

#eyc-name {
  font-size: 1.5em;
  margin-bottom: 1em !important; }

#eyc-3d3a {
  position: absolute;
  top: 1%;
  right: 5%;
  width: 30%; }

#eyc-3d3a-caption {
  position: absolute;
  text-align: right;
  font-size: 0.8em;
  top: 36%;
  right: 5%;
  width: 30%; }

/******************************************************/
/********************** FOOTER ************************/
/******************************************************/
.footer-wrapper {
  background: #FFF;
  letter-spacing: normal;
  font-size: 24px;
  color: #000;
  font-family: "Roboto Condensed";
  line-height: 16px; }
  .footer-wrapper a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: color 0.3s ease-in-out;
    -moz-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
    -o-transition: color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out; }
  .footer-wrapper a:hover {
    color: #00C943;
    text-decoration: none;
    font-size: 100%; }

.footer-top {
  font-size: 60%;
  padding-top: 40px;
  border-top: 1px solid #DDD; }
  @media only screen and (max-width: 600px) {
    .footer-top {
      padding-top: 0; } }

.footer-row {
  text-align: center;
  opacity: 0.5; }

.footer-col {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin-right: 60px; }
  @media only screen and (max-width: 600px) {
    .footer-col {
      text-align: center;
      margin: 0;
      padding: 10px 0;
      width: 100%;
      border-bottom: 1px solid #DDD; } }
  .footer-col ul {
    list-style: none;
    margin: 0;
    padding-top: 10px;
    padding-left: 1px; }
  .footer-col li {
    margin-bottom: 5px; }

.footer-last-col {
  margin-right: 0; }
  @media only screen and (max-width: 600px) {
    .footer-last-col {
      border: none; } }

.footer-logo {
  height: 150px;
  margin-top: -10px; }
  @media only screen and (max-width: 600px) {
    .footer-logo {
      padding-top: 25px;
      padding-bottom: 15px;
      display: block;
      width: 100%;
      text-align: center; } }

.full-logo {
  height: 100%;
  cursor: pointer; }

/******************************************************/
/**************** COPYRIGHT & SOCIAL ******************/
/******************************************************/
.footer-bottom {
  position: relative;
  height: 50px;
  width: 90%;
  font-size: 60%;
  padding-top: 10px;
  border-top: 1px solid #CCC;
  margin-top: 30px;
  padding-bottom: 49px;
  left: 50%;
  transform: translateX(-50%); }
  @media only screen and (max-width: 600px) {
    .footer-bottom {
      margin-top: 0;
      padding-bottom: 70px; } }

.footer-copyright {
  display: inline-block;
  opacity: 0.3;
  border: 0px solid green; }
  @media only screen and (max-width: 575px) {
    .footer-copyright {
      display: block;
      width: 100%;
      text-align: center; } }

.footer-social {
  display: inline-block;
  float: right;
  border: 0px solid green; }
  @media only screen and (max-width: 575px) {
    .footer-social {
      display: block;
      width: 100%;
      text-align: center;
      margin-top: 10px; } }

.social-icon {
  opacity: 0.3;
  height: 25px;
  padding-right: 3px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out; }

.social-icon:hover {
  opacity: 1.0; }
