@font-face {
  font-family: "Gotham";
  src: url("./font/Gotham-Book.otf") format("opentype");
}
@font-face {
  font-family: "KenneyFuture";
  src: url("./font/Kenney-Future.ttf") format("truetype");
}
@font-face {
  font-family: "Industry-Demi";
  src: url("./font/Industry-Demi.ttf") format("truetype");
}
* {
  box-sizing: border-box;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

body {
  font-family: "Gotham";
  overflow: hidden;
  margin: 0;
  padding: 0;
  --main-header-height: 160px;
}
body::before {
  background-image: url("/assets/img/hof-background.png");
  background-position-x: 50vw;
  background-position-y: -40vh;
  background-repeat: no-repeat;
  background-size: 175vh;
  bottom: 0%;
  content: "";
  height: 100%;
  opacity: 0.35;
  position: fixed;
  right: 0%;
  transform: rotate(0deg);
  width: 100%;
  z-index: -1;
}
body.loading {
  overflow: hidden;
}
body.loading #bgsequence > #mountain, body.loading #bgsequence > #mountainVid {
  margin-left: -15vh;
}
body.loading > #header {
  z-index: 1;
}
body.loading > #header > .navigator {
  margin-top: 80px;
}
body.loading > #content {
  opacity: 0;
  z-index: 1;
}
body.loading > #content .section.hof .container > .slide {
  --main-img-pos-x: 8%;
}
body.loading > #content .section.hof .container > .slide .text .highlighted {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
body.loading > #loadingscreen {
  align-items: center;
  background: #fff;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}
body.loading > #loadingscreen .logo {
  animation: breathing 2s linear infinite;
  background-image: url("/assets/img/header/logo.png");
  background-size: 100%;
  height: 80px;
  width: 80px;
}
@keyframes breathing {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  60% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
  }
}
body.snapto #content {
  scroll-snap-type: y mandatory;
}
body.snapto #content .section {
  scroll-snap-align: start end;
}
body .loaded > #header, body .loaded #content {
  display: block;
}
body .loaded > #loadingscreen {
  display: none;
}

#bgsequence {
  bottom: 0;
  left: 0;
  right: 0;
  position: fixed;
  top: 0;
}
#bgsequence > #mountain, #bgsequence > #mountainVid {
  height: 80vh;
  margin-left: 0;
  opacity: 0.7;
  transition: margin-left 1s;
}
#bgsequence > #mountainVid {
  -webkit-clip-path: polygon(0 0, 20% 0, 20% 100%, 0 100%);
          clip-path: polygon(0 0, 20% 0, 20% 100%, 0 100%);
}
#bgsequence > .bgmsg {
  bottom: 50%;
  position: absolute;
  top: 50%;
}
#bgsequence > .bgmsg > .text {
  color: #212121;
  font-family: Industry;
  font-size: 2vh;
  font-weight: 100;
  letter-spacing: 1.2vh;
  text-transform: uppercase;
  transform: translateX(-44%) translateY(-50%) rotate(-90deg);
}

#header {
  align-items: center;
  display: flex;
  height: var(--main-header-height);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 3;
}
#header > div {
  align-items: baseline;
}
#header .logo {
  background-image: url("/assets/img/header/logo.png");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  height: 80px;
  left: 8%;
  position: absolute;
  top: 25%;
  width: 80px;
}
#header .navigator {
  font-weight: 100;
  border-top: 1px solid #707070;
  margin: 24px auto 0;
  max-width: 1000px;
  min-width: 450px;
  transition: margin 1s;
  width: 50%;
}
#header .navigator > .progressbar {
  height: 3px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
#header .navigator > .progressbar > .progress {
  background: #707070;
  height: 100%;
  left: 0%;
  position: absolute;
  top: 0%;
  width: 20%;
}
#header .navigator > .menu {
  display: flex;
  margin: 0 auto;
}
#header .navigator > .menu > div {
  cursor: pointer;
  flex: 1;
  font-family: Industry;
  padding-top: 12px;
  text-align: center;
}
#header .navigator > .menu > div.on {
  font-weight: 700;
}
#header .language-switcher {
  position: absolute;
  top: 50%;
  right: 2%;
  padding-left: 20px;
  padding-right: 20px;
  width: 80px;
  text-align: center;
}
#header .language-switcher:hover .dropdown-menu {
  display: block;
}
#header .language-switcher a {
  display: block;
  text-decoration: none;
  color: #000;
  text-transform: capitalize;
  margin: 2px 0;
  font-weight: 600;
}
#header .language-switcher .dropdown-menu {
  animation: rotateMenu 400ms ease-in-out forwards;
  transform-origin: top center;
  display: none;
}
@keyframes rotateMenu {
  0% {
    transform: rotateX(-90deg);
  }
  70% {
    transform: rotateX(20deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

#content {
  height: calc(100% - var(--main-header-height));
  margin-top: var(--main-header-height);
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  transition: opacity 1.5s;
  width: 100%;
  z-index: 2;
}
#content .section {
  height: 100%;
  margin: 0 auto;
  padding: 0 6% 0;
  position: relative;
  width: 100%;
}
#content .section .container {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2%;
  position: relative;
  width: 100%;
}
#content .section > .trigger {
  position: absolute;
  bottom: calc(50vh - var(--main-header-height) / 2 - 1px);
}
#content .section.hof {
  overflow: hidden;
}
#content .section.hof .container > .slide {
  height: 100%;
  position: absolute;
  top: 0;
  transition: opacity 1s ease;
  width: 100%;
  --main-img-pos-x: 0%;
}
#content .section.hof .container > .slide.hidden {
  opacity: 0;
}
#content .section.hof .container > .slide .image {
  background-repeat: no-repeat;
  background-position: center 0;
  background-size: cover;
  height: 100%;
  left: var(--main-img-pos-x);
  position: absolute;
  top: 0%;
  transition: left 1.5s linear;
  transition-timing-function: ease-out;
  width: 90%;
  z-index: 2;
}
#content .section.hof .container > .slide .video {
  height: 100%;
  left: var(--main-img-pos-x);
  overflow: hidden;
  position: absolute;
  top: 0%;
  transition: all 1.5s;
  transition-timing-function: ease-out;
  width: 100%;
  z-index: 2;
}
#content .section.hof .container > .slide .video .videowrapper {
  width: 100%;
  height: 100%;
}
#content .section.hof .container > .slide .video .videowrapper .wrappera {
  height: 100%;
  position: relative;
}
#content .section.hof .container > .slide .video .videowrapper .wrappera .wrapperb {
  height: 100%;
  width: 100%;
}
#content .section.hof .container > .slide .video .videowrapper .wrappera .wrapperb .wrapperc {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
#content .section.hof .container > .slide .video .videowrapper .wrappera .wrapperb .wrapperc .wrapperd {
  align-items: center;
  aspect-ratio: 16/9 !important;
  display: flex;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
#content .section.hof .container > .slide .video .videowrapper .wrappera .wrapperb .wrapperc .wrapperd video {
  display: block;
  height: 100%;
}
#content .section.hof .container > .slide .video .videowrapper .wrappera .wrapperb .wrapperc .wrapperd video::-webkit-media-controls-panel {
  display: none !important;
  opacity: 1 !important;
}
#content .section.hof .container > .slide .video .volumncontrol {
  background-image: url("/assets/img/section-hof/volume.png");
  background-size: 100%;
  bottom: 10px;
  cursor: pointer;
  filter: invert(1);
  height: 50px;
  mix-blend-mode: difference;
  position: absolute;
  right: 10px;
  width: 50px;
}
#content .section.hof .container > .slide .video .volumncontrol.muted {
  background-image: url("/assets/img/section-hof/volume-mute.png");
}
#content .section.hof .container > .slide .video > video {
  display: block;
  height: 100%;
  margin: 0 auto;
  -o-object-position: center;
     object-position: center;
}
#content .section.hof .container > .slide .text {
  font-family: KenneyFuture;
  font-size: 80px;
  letter-spacing: 2vw;
  line-height: 10vh;
  right: var(--main-img-pos-x);
  position: absolute;
  text-align: right;
  top: 15%;
  transition: right 1.5s;
  transition-timing-function: ease-out;
  width: 100%;
}
#content .section.hof .container > .slide .text .normal {
  color: #fff;
  position: absolute;
  right: 0;
  top: 0;
  width: 90%;
}
#content .section.hof .container > .slide .text .highlighted {
  color: #fff;
  mix-blend-mode: difference;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transition: right 1.5s ease-out, -webkit-clip-path 1.5s ease-out;
  transition: clip-path 1.5s ease-out, right 1.5s ease-out;
  transition: clip-path 1.5s ease-out, right 1.5s ease-out, -webkit-clip-path 1.5s ease-out;
  width: 90%;
  z-index: 4;
}
#content .section.news .container {
  padding-bottom: 0;
}
#content .section.news .container > .detail {
  bottom: 0;
  display: flex;
  height: 35.2vw;
  left: 0;
  margin: auto;
  min-height: 35vh;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.5s ease;
  width: 90%;
  z-index: 2;
}
#content .section.news .container > .detail.hidden {
  opacity: 0;
  z-index: 1;
}
#content .section.news .container > .detail.hidden .text .description .slideswitch {
  display: none;
}
#content .section.news .container > .detail > div {
  flex: 1;
}
#content .section.news .container > .detail .text {
  display: flex;
  flex-direction: column;
  margin-right: 15px;
  padding: 50px;
}
#content .section.news .container > .detail .text .title {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  text-transform: uppercase;
}
#content .section.news .container > .detail .text .title .date {
  font-family: "Industry";
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 2px;
  text-indent: 2px;
}
#content .section.news .container > .detail .text .title .maintitle {
  font-family: "Industry";
  font-size: 55px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
  text-indent: -1px;
}
#content .section.news .container > .detail .text .title .category {
  font-family: "Industry";
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  text-indent: 2px;
}
#content .section.news .container > .detail .text .description {
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  padding-top: 25px;
  flex: 1;
}
#content .section.news .container > .detail .text .description::before {
  border-top: 1px solid #000;
  content: " ";
  display: block;
  padding-top: 0;
  margin: 0 auto 35px;
  width: 100%;
}
#content .section.news .container > .detail .text .description p {
  padding-bottom: 30px;
}
#content .section.news .container > .detail .text .description .slideswitch {
  bottom: 0;
  display: block;
  font-size: 20px;
  height: 30px;
  left: 0;
  position: absolute;
  right: 0;
  font-family: "Industry";
  font-weight: 300;
  letter-spacing: 2px;
  text-indent: 2px;
}
#content .section.news .container > .detail .text .description .slideswitch > .prev, #content .section.news .container > .detail .text .description .slideswitch > .next {
  cursor: pointer;
  position: absolute;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#content .section.news .container > .detail .text .description .slideswitch > .prev::before, #content .section.news .container > .detail .text .description .slideswitch > .next::before {
  transition: padding-right 0.5s;
}
#content .section.news .container > .detail .text .description .slideswitch > .prev::after, #content .section.news .container > .detail .text .description .slideswitch > .next::after {
  transition: padding-left 0.5s;
}
#content .section.news .container > .detail .text .description .slideswitch > .prev:hover::before, #content .section.news .container > .detail .text .description .slideswitch > .next:hover::before {
  padding-right: 20px;
}
#content .section.news .container > .detail .text .description .slideswitch > .prev:hover::after, #content .section.news .container > .detail .text .description .slideswitch > .next:hover::after {
  padding-left: 20px;
}
#content .section.news .container > .detail .text .description .slideswitch > .prev {
  left: 20px;
}
#content .section.news .container > .detail .text .description .slideswitch > .prev::after {
  content: "";
  width: 22px;
  height: 18px;
  margin-top: -2px;
  display: inline-block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24px' height='24px' viewBox='0 0 384 512'%3E%3Cpath d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 278.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z'/%3E%3C/svg%3E");
}
#content .section.news .container > .detail .text .description .slideswitch > .prev::before {
  content: "PREV";
}
#content .section.news .container > .detail .text .description .slideswitch > .next {
  left: 50%;
}
#content .section.news .container > .detail .text .description .slideswitch > .next::after {
  content: "NEXT";
}
#content .section.news .container > .detail .text .description .slideswitch > .next::before {
  content: "";
  width: 22px;
  height: 18px;
  margin-top: -2px;
  display: inline-block;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24px' height='24px' viewBox='0 0 384 512'%3E%3Cpath d='M342.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L274.7 256 105.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
}
#content .section.news .container > .detail .image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  margin-left: 15px;
}
#content .section.history {
  padding: 6vh 3vw;
  overflow: hidden;
  width: 80%;
}
#content .section.history .container .showcase {
  background: #ccc;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 95%, 69.67% 95%, 61.67% 100%, 39.34% 100%, 31.34% 95%, 9% 95%, 0 90%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 92% 95%, 69.67% 95%, 61.67% 100%, 39.34% 100%, 31.34% 95%, 9% 95%, 0 90%);
  height: 95%;
  margin: 0 15px;
  overflow: hidden;
  position: relative;
  width: 33.3333333333%;
  transition: height 0.2s ease, transform 0.2s ease-in-out, opacity 0.2s;
  transform-origin: top;
}
#content .section.history .container .showcase:not(.slick-active) {
  opacity: 0.5;
}
#content .section.history .container .showcase:hover {
  height: 95% !important;
}
#content .section.history .container .showcase > .imgcontainer {
  height: 100%;
  width: 100%;
}
#content .section.history .container .showcase > .imgcontainer > .img {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 90%;
  height: 150%;
  left: -25%;
  overflow: hidden;
  position: absolute;
  transform: rotate(90deg);
  top: -25%;
  transition: all 0.25s;
  width: 150%;
  z-index: 5;
}
#content .section.history .container .showcase .name {
  bottom: 12%;
  font-family: Industry;
  font-size: 2.4vh;
  font-weight: 100;
  position: absolute;
  right: 10px;
  writing-mode: vertical-lr;
  z-index: 1;
}
#content .section.history .container .showcase .year {
  font-family: Industry;
  font-size: 10vh;
  font-weight: 700;
  left: 10px;
  position: absolute;
  top: 10px;
  transform: rotate(180deg);
  writing-mode: vertical-lr;
  z-index: 3;
}
#content .section.product {
  height: auto;
  min-height: 100%;
  padding-bottom: 20vh;
}
#content .section.product .product-container {
  gap: 10px;
  margin: 0 auto;
  width: 70%;
}
#content .section.product .product-container > .left h3 {
  font-family: Industry;
  font-weight: 700;
  font-size: 40px;
  margin: 0 15px;
  line-height: 1;
  width: calc(50% - 50px);
}
#content .section.product .product-container > .left, #content .section.product .product-container > .right {
  width: 100%;
  list-style: none;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 0;
}
#content .section.product .product-container > .left > .product, #content .section.product .product-container > .right > .product {
  cursor: pointer;
  margin: 30px 15px 0;
  position: relative;
  width: calc(50% - 50px);
}
#content .section.product .product-container > .left > .product :first-child, #content .section.product .product-container > .right > .product :first-child {
  margin: 0;
}
#content .section.product .product-container > .left > .product img, #content .section.product .product-container > .right > .product img {
  width: 100%;
}
#content .section.product .product-container > .left > .product:hover > .mainimg, #content .section.product .product-container > .right > .product:hover > .mainimg {
  opacity: 0;
}
#content .section.product .product-container > .left > .product.horizontal, #content .section.product .product-container > .right > .product.horizontal {
  margin-left: 5%;
}
#content .section.product .product-container > .left > .product.horizontal > .mainimg, #content .section.product .product-container > .left > .product.horizontal > .hoverimg, #content .section.product .product-container > .right > .product.horizontal > .mainimg, #content .section.product .product-container > .right > .product.horizontal > .hoverimg {
  width: 65%;
}
#content .section.product .product-container > .left > .product > .mainimg, #content .section.product .product-container > .right > .product > .mainimg {
  position: relative;
  transition: opacity 0.5s;
  width: 100%;
  z-index: 2;
}
#content .section.product .product-container > .left > .product > .hoverimg, #content .section.product .product-container > .right > .product > .hoverimg {
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}
#content .section.hofai {
  text-align: center;
}
#content .section.hofai .container {
  width: 80%;
}
#content .section.hofai .container .mainui {
  aspect-ratio: 22/9 !important;
  margin: 0 auto;
  max-width: 1500px;
  position: relative;
  width: 85%;
  padding-top: 3vw;
}
#content .section.hofai .container .mainui .center {
  margin: -4% 0 -8%;
  max-height: 65vh;
  max-width: 88%;
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
}
#content .section.hofai .container .mainui .left, #content .section.hofai .container .mainui .right {
  max-height: 55vh;
  max-width: 88%;
  opacity: 0.8;
  position: absolute;
  z-index: 1;
  width: auto;
  height: auto;
}
#content .section.hofai .container .mainui .left {
  left: 15%;
}
#content .section.hofai .container .mainui .right {
  right: 15%;
}
#content .section.hofai .container .title {
  font-family: KenneyFuture;
  font-weight: 700;
  font-size: 60px;
  margin: 0 40px 0;
}
#content .section.hofai .container .info {
  cursor: pointer;
  height: 82px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 250px;
  max-width: 100%;
}
#content .section.hofai .container .info:hover .text {
  transition: opacity 0.25s;
}
#content .section.hofai .container .info:hover .plusicon::after {
  transition: opacity 0.25s 0.25s, transform 0.25s 0.25s;
}
#content .section.hofai .container .info .text {
  font-size: 20px;
  padding: 20px;
  transition: opacity 0.25s 0.25s;
  text-transform: uppercase;
}
#content .section.hofai .container .info .plusicon::after {
  border: 2px solid #000;
  border-radius: 100%;
  content: "+";
  color: #000;
  font-size: 30px;
  height: 45px;
  left: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  opacity: 0;
  right: 0;
  top: 8px;
  transform: scale(0);
  transition: opacity 0.25s, transform 0.25s;
  width: 45px;
}
#content .section.hofai .container .info:hover .text {
  opacity: 0;
}
#content .section.hofai .container .info:hover .plusicon::after {
  opacity: 1;
  transform: scale(1) rotate(180deg);
}

#detailcontainer {
  background: #fff;
  bottom: 0;
  display: flex;
  position: fixed;
  right: -75%;
  transition: right 0.8s ease-in-out;
  top: 0;
  width: 75vw;
  z-index: 10;
}
#detailcontainer.on {
  right: 0;
}
#detailcontainer > .control {
  background-color: #fff;
  border-left: 1px solid #cecece;
  border-right: 1px solid #dfdfdf;
  max-width: 75px;
  width: 8%;
  z-index: 2;
}
#detailcontainer > .control > .button {
  background-repeat: no-repeat;
  background-size: 100%;
  color: #222;
  cursor: pointer;
  height: 20px;
  margin: 50px auto;
  text-align: center;
  transition: background-image 0.1s;
  width: 20px;
}
#detailcontainer > .control > .button.close {
  background-image: url("/assets/img/button/btn_close.svg");
  background-position: center;
  background-size: 20px;
  height: 25.43px;
  width: 25.43px;
}
#detailcontainer > .control > .button.close:hover {
  background-image: url("/assets/img/button/btn_close-hover.svg");
  background-size: 100%;
}
#detailcontainer > .control > .button.totop {
  background-image: url("/assets/img/button/btn_top.svg");
  background-position: top center;
  height: 36.37px;
  margin: 50px auto 36px;
}
#detailcontainer > .control > .button.totop:hover {
  background-image: url("/assets/img/button/btn_top-hover.svg");
}
#detailcontainer > .control > .button.toSpec {
  background-image: url("/assets/img/button/btn_spec.svg");
  background-position: center;
  background-size: 24px 24px;
  width: 34px;
  height: 34px;
  position: relative;
  margin: 36px auto 50px;
}
#detailcontainer > .control > .button.toSpec::before, #detailcontainer > .control > .button.toSpec::after {
  transition: all 0.2s;
  content: "";
  width: 0px;
  height: 0px;
  border: 0;
  position: absolute;
  top: 50%;
  left: 50%;
}
#detailcontainer > .control > .button.toSpec:hover::before {
  width: 22px;
  height: 22px;
  border: 5px solid #fff;
  border-radius: 50%;
  display: block;
  top: 1px;
  left: 1px;
}
#detailcontainer > .control > .button.toSpec:hover::after {
  width: 32px;
  height: 32px;
  border: 1px solid #707070;
  border-radius: 50%;
  display: block;
  top: 0;
  left: 0;
}
#detailcontainer > .content {
  flex: 1;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#detailcontainer > .content > .page {
  height: 100%;
  overflow-y: scroll;
  position: relative;
  width: 100%;
}
#detailcontainer > .content > .page .ck.ck-reset_all {
  display: none;
}
#detailcontainer > .content > .page figure {
  margin: 0;
}
#detailcontainer > .content > .page img {
  width: 100%;
  height: auto;
}
#detailcontainer > .content > .page .product-specifications {
  height: 100%;
  overflow: hidden;
}
#detailcontainer > .content > .page .product-specifications #product-specifications {
  padding-right: 75px;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}
#detailcontainer > .content > .page .product-specifications #product-specifications .title {
  font-family: Industry;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 26px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-height: 75vh;
  height: 100%;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 1;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0.1) 100%);
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  z-index: 1;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 255, 255, 0.1) 100%);
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-specifications-scrollable {
  overflow-y: hidden;
  height: inherit;
  padding-top: 50px;
  padding-bottom: 50px;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-specifications-scrollable.scrollable {
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-specifications-scrollable.scrollable::-webkit-scrollbar {
  display: none;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-section {
  display: flex;
  flex-flow: column;
  align-items: center;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-section .section-head .item {
  color: #ccc;
  font-weight: 700;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-section .section-item {
  display: flex;
  justify-content: center;
  width: 100%;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-section .section-item:first-child .item, #detailcontainer > .content > .page .product-specifications .product-specifications-table .product-section .section-item:first-child .content {
  padding-top: 15px;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-section .section-item:last-child .item, #detailcontainer > .content > .page .product-specifications .product-specifications-table .product-section .section-item:last-child .content {
  padding-bottom: 15px;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-section .section-item .item {
  width: 50%;
  text-align: right;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-right: 20px;
  border-right: 1px solid #808080;
  font-family: "industry";
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: end;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-section .section-item .content {
  width: 50%;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 20px;
  white-space: pre-wrap;
  font-family: "industry";
  font-weight: 300;
  align-self: center;
}
#detailcontainer > .content > .page .product-specifications .product-specifications-table .product-section .section-item .content a {
  color: #00E;
}
@media (max-width: 767px) {
  #detailcontainer > .content > .page .product-specifications #product-specifications {
    padding-right: 15px;
    padding-left: 15px;
  }
  #detailcontainer > .content > .page .product-specifications #product-specifications .title {
    font-size: 5.5vw;
  }
  #detailcontainer > .content > .page .product-specifications .section-item {
    font-size: 3.5vw;
    line-height: 1.25;
  }
  #detailcontainer > .content > .page .product-specifications .section .section-item:first-child .item, #detailcontainer > .content > .page .product-specifications .section .section-item:first-child .content {
    padding-top: 10px;
  }
  #detailcontainer > .content > .page .product-specifications .section .section-item:last-child .item, #detailcontainer > .content > .page .product-specifications .section .section-item:last-child .content {
    padding-bottom: 10px;
  }
  #detailcontainer > .content > .page .product-specifications .section-item .item {
    padding-top: 4px;
    padding-bottom: 4px;
  }
  #detailcontainer > .content > .page .product-specifications .section-item .content {
    padding-top: 4px;
    padding-bottom: 4px;
  }
}

#loadingscreen {
  transition: all 0.5s;
}

#overlay {
  background: black;
  bottom: 0;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.4s linear, visibility 0.4s linear;
  visibility: hidden;
  z-index: 8;
}

@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (max-width: 1440px) {
  #content .section.news .container > .detail .text {
    padding: 30px;
  }
  #content .section.news .container > .detail .text .title .maintitle {
    font-size: 50px;
    margin-top: 20px;
    margin-bottom: 15px;
  }
  #content .section.news .container > .detail .text .title .category {
    font-size: 18px;
  }
  #content .section.news .container > .detail .text .description {
    font-size: 13px;
    padding-top: 20px;
  }
  #content .section.news .container > .detail .text .description::before {
    margin: 0 auto 30px;
  }
  #content .section.news .container > .detail .text .description .slideswitch {
    font-size: 18px;
  }
}
@media (max-width: 1200px) {
  #content .section.news .container > .detail .text {
    padding: 20px;
  }
  #content .section.news .container > .detail .text .title .maintitle {
    font-size: 40px;
    margin-top: 10px;
    margin-bottom: 5px;
  }
  #content .section.news .container > .detail .text .title .category {
    font-size: 16px;
  }
  #content .section.news .container > .detail .text .description {
    padding-top: 10px;
  }
  #content .section.news .container > .detail .text .description::before {
    margin: 0 auto 20px;
  }
}
@media (max-width: 991px) {
  #content .section.news .container > .detail .text {
    padding: 5px;
  }
  #content .section.news .container > .detail .text .title .date {
    font-size: 15px;
  }
  #content .section.news .container > .detail .text .title .maintitle {
    margin-top: 5px;
    font-size: 30px;
  }
  #content .section.news .container > .detail .text .title .category {
    font-size: 15px;
  }
  #content .section.news .container > .detail .text .description {
    font-size: 12px;
    padding-top: 0;
  }
  #content .section.news .container > .detail .text .description::before {
    margin: 0 auto 10px;
  }
  #content .section.news .container > .detail .text .description .slideswitch > .prev, #content .section.news .container > .detail .text .description .slideswitch > .next {
    width: 120px;
  }
}
@media (max-width: 767.98px) {
  body {
    --main-header-height: 200px;
  }
  body.loading #header .logo {
    height: 60px;
    width: 60px;
  }
  body::before {
    background-image: url("/assets/img/mobile_bg.jpg");
    background-position-y: bottom;
    background-position-x: center;
    background-size: 110vh;
    opacity: 0.8;
  }
  #bgsequence {
    display: none;
  }
  #header {
    display: block;
  }
  #header .logo {
    height: 70px;
    left: initial;
    margin: 20px auto;
    position: relative;
    transition: height 0.75s, width 0.75s;
    top: initial;
    width: 70px;
  }
  #header .navigator {
    border-top: 0;
    max-width: initial;
    min-width: initial;
    width: 100%;
  }
  #header .navigator > .progressbar {
    display: none;
  }
  #header .navigator > .menu {
    margin: 24px 5px 0;
  }
  #header .navigator > .menu > div {
    font-size: 12px;
  }
  #header .navigator > .menu > div::before {
    background-size: 100%;
    content: " ";
    display: block;
    filter: contrast(0);
    height: 36px;
    margin: 0 auto;
    width: 36px;
  }
  #header .navigator > .menu > div.hof::before {
    background-image: url("/assets/img/header/navigation_logo_HOF.png");
  }
  #header .navigator > .menu > div.news::before {
    background-image: url("/assets/img/header/navigation_logo_news.png");
  }
  #header .navigator > .menu > div.history::before {
    background-image: url("/assets/img/header/navigation_logo_history.png");
  }
  #header .navigator > .menu > div.product::before {
    background-image: url("/assets/img/header/navigation_logo_products.png");
  }
  #header .navigator > .menu > div.hofai::before {
    background-image: url("/assets/img/header/navigation_logo_AI.png");
  }
  #header .navigator > .menu > div.on::before {
    filter: contrast(1);
  }
  #header .language-switcher {
    top: 10px;
    right: 2%;
    background-color: #fff;
  }
  #content .section {
    padding: 0;
  }
  #content .section.hof .container > .slide {
    height: 100%;
    position: absolute;
    top: 0;
    transition: opacity 1s ease;
    width: 100%;
    --main-img-pos-x: 0%;
  }
  #content .section.hof .container > .slide.hidden {
    opacity: 0;
  }
  #content .section.hof .container > .slide .image {
    background-position: 70% 0;
    background-size: cover;
    height: 100%;
    left: var(--main-img-pos-x);
    position: absolute;
    top: 0%;
    transition: all 1.5s;
    transition-timing-function: ease-out;
    width: 100%;
    z-index: 2;
  }
  #content .section.hof .container > .slide .video .volumncontrol {
    height: 30px;
    width: 30px;
  }
  #content .section.hof .container > .slide .text {
    font-size: 40px;
    left: 2vw;
    line-height: 6.5vh;
    top: 2vh;
  }
  #content .section.hof .container > .slide .text .highlighted {
    mix-blend-mode: normal;
    text-align: center;
    width: 100%;
  }
  #content .section.news .container > .detail {
    flex-direction: column-reverse;
    height: 100%;
    padding-top: 10%;
  }
  #content .section.news .container > .detail .text {
    margin-right: 0;
    padding: 0;
  }
  #content .section.news .container > .detail .text > div {
    padding: 0 4px;
  }
  #content .section.news .container > .detail .text .title {
    flex: none;
    padding-bottom: 0;
  }
  #content .section.news .container > .detail .text .title .date, #content .section.news .container > .detail .text .title .category {
    display: none;
  }
  #content .section.news .container > .detail .text .title .maintitle {
    font-size: 34px;
    margin-top: 10px;
    letter-spacing: 0 !important;
    text-indent: 0 !important;
  }
  #content .section.news .container > .detail .text .description {
    font-size: 12px;
    line-height: 1.25;
  }
  #content .section.news .container > .detail .text .description .slideswitch {
    bottom: 0;
    font-size: 14px;
    margin: 10px 0 0;
    position: relative;
  }
  #content .section.news .container > .detail .text .description .slideswitch > .prev, #content .section.news .container > .detail .text .description .slideswitch > .next {
    letter-spacing: 10px;
    text-indent: 10px;
    padding: 5px 0;
    line-height: 1;
    width: 180px;
  }
  #content .section.news .container > .detail .text .description .slideswitch > .prev {
    left: 0;
  }
  #content .section.news .container > .detail .text .description .slideswitch > .next {
    left: initial;
    right: 0;
  }
  #content .section.news .container > .detail .image {
    margin-left: 0;
  }
  #content .section.history {
    padding: 10vh 0;
    width: 100%;
  }
  #content .section.history .container .showcase {
    margin: 0 20px;
  }
  #content .section.history .container .showcase > .imgcontainer > .img {
    background-position: 50% 50%;
    background-size: 70%;
    transform: rotate(0deg);
  }
  #content .section.history .container .showcase .name {
    left: 10px;
    right: 10px;
    text-align: center;
    writing-mode: lr;
  }
  #content .section.history .container .showcase .year {
    font-size: 6vh;
  }
  #content .section.product .product-container {
    display: block;
    width: 85%;
  }
  #content .section.product .product-container > .left {
    padding-top: 10px;
  }
  #content .section.product .product-container > .left h3 {
    font-size: 5vw;
    margin: 0 10px 5px;
    width: calc(50% - 30px);
  }
  #content .section.product .product-container > .left > .product, #content .section.product .product-container > .right > .product {
    margin: 20px 10px 0;
    width: calc(50% - 30px);
  }
  #content .section.product .product-container > .left > .product.horizontal, #content .section.product .product-container > .right > .product.horizontal {
    margin-left: 0;
  }
  #content .section.product .product-container > .left > .product.horizontal > .mainimg, #content .section.product .product-container > .left > .product.horizontal > .hoverimg, #content .section.product .product-container > .right > .product.horizontal > .mainimg, #content .section.product .product-container > .right > .product.horizontal > .hoverimg {
    width: 100%;
  }
  #content .section.product .product-container > .left > .product > .mainimg, #content .section.product .product-container > .right > .product > .mainimg {
    opacity: 0;
  }
  #content .section.hofai .container .mainui {
    height: 70%;
  }
  #content .section.hofai .container .mainui .center {
    bottom: -7vw;
    height: auto;
    left: 50%;
    margin: 0;
    max-height: initial;
    max-width: initial;
    position: absolute;
    right: 50%;
    top: 50%;
    bottom: 50%;
    width: 120vw;
    max-width: 600px;
    transform-origin: center;
    transform: translate(-50%, calc(-50% + 8vw));
  }
  #content .section.hofai .container .mainui .left, #content .section.hofai .container .mainui .right {
    display: none;
    height: auto;
    left: 50% !important;
    right: 50% !important;
    top: 50%;
    bottom: 50%;
    margin: 0;
    transform-origin: center;
    width: 120vw;
    max-width: 600px;
  }
  #content .section.hofai .container .mainui .left {
    opacity: 0.8;
    transform: translate(-50%, calc(-50% + 2vw));
    z-index: 1;
  }
  #content .section.hofai .container .mainui .right {
    opacity: 0.6;
    transform: translate(-50%, calc(-50% - 4vw));
    z-index: 0;
  }
  #content .section.hofai .container .title {
    font-size: 12vw;
    text-indent: 3vw;
  }
  #content .section.hofai .container .info .text {
    font-size: 4vw;
  }
  #content .section.hofai .container .info:hover .text {
    opacity: 1;
    transform: none;
  }
  #content .section.hofai .container .info:hover .plusicon::after {
    opacity: 0;
    transform: none;
  }
  #detailcontainer.on {
    width: 100vw;
  }
  #detailcontainer > .control {
    border-left: 1px solid #cecece;
    border-right: 1px solid #dfdfdf;
    min-width: 75px;
    width: 8%;
  }
  #detailcontainer > .control > .button {
    background-size: 100%;
    color: #222;
    cursor: pointer;
    margin: 50px auto;
    text-align: center;
  }
}
@media screen and (min-width: 1024px) {
  #content .section.history .container .showcase:not(.slick-current) {
    height: 90%;
  }
  #content .section.history .container .showcase:not(.slick-current) > .imgcontainer {
    width: 70%;
  }
}
html.locked {
  overflow: hidden;
}
html.locked > body {
  overflow: hidden;
}
html.locked > body > #overlay {
  opacity: 0.8;
  visibility: visible;
}

@-moz-document url-prefix() {
  #content {
    height: calc(100vh - var(--main-header-height));
  }
}
/* android pin fix */
.pincontainer {
  z-index: 1;
}

.pinscroller {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
}

/*.scrollmagic-pin-spacer:after{
    content: ' ';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}*//*# sourceMappingURL=main.css.map */