@import url('https://fonts.googleapis.com/css?family=Signika+Negative:300,400&display=swap');

html, body, section.horizontal {
  overflow: hidden;
}

.w-screen {
  overflow-x: hidden;
}

#scene5Images{
  width: 100vw;
}

@media (min-width:768px){

  #companyinfo{
    perspective: 900px
  }
}
#soundPlay{
  position: fixed;
  top: 30px;
  right: 20px;
  width: 30px;
  height: 30px;
  z-index: 99;
  /* background-image: url(src/volume-off-solid.svg); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  /* mix-blend-mode: exclusion; */
}
#soundPlay svg{
  height: 30px;
}
#playing{
  display: none;
}
.on #soundPlay #playing{
  display: block;
  /* background-image: url(src/volume-up-solid.svg); */
}
.on #soundPlay #muted{
  display: none;
  /* background-image: url(src/volume-up-solid.svg); */
}

div.scroll {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 99;
  animation: scrollMove 2s linear infinite;
}

@media (min-width:768px){
  div.scroll {
    bottom: 50px;
    right: 80px;
  }
}

@keyframes scrollMove {
  0% {
      transform: translate(0, 0);
  }

  50% {
      transform: translate(0, 20px);
  }

  100% {
      transform: translate(0, 0);
  }
}

body {
  font-family: "Signika Negative", sans-serif;
  font-weight: 300;

  margin: 0;
  padding: 0;
}

body *{
  /* transition:all 50ms linear; */
}

#main-scrollbar{
  width: auto;
  height: 100vh;
  overflow: auto;
  margin: 0;
  perspective: 900px;
}

h1 {
  margin: 0;
  padding: 50px 0 0 50px;
}

p {
  margin: 0;
  padding: 50px 0 50px 50px;
}

section {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
}


section:nth-of-type(odd) {
background-color: #f0f0f0;
}

section:nth-of-type(even) {
background-color: #ffffff;
}








section.horizontal {
  overflow-x: hidden;
}

section.horizontal .pin-wrap,
section.horizontal .animation-wrap {
    display: flex;
    position: relative;
    z-index: 1;
    height: 100vh;
}


section.horizontal .item {
    position: relative;
    padding: 150px 0;
    flex: 0 0 500px;
    /* height: calc(100vh - 300px); */
    display: flex;
    align-items: center;
    line-height: 1.7;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    /* border-right: 1px solid rgba(0, 0, 0, 0.06); */
    background-color: transparent;
}

section.horizontal .item:before {
    position: absolute;
    font-size: 100px;
    opacity: .13;
    font-weight: bold;
    z-index: -1;
    -webkit-transform: translate(-30px, -50px);
    transform: translate(-30px, -50px);
    line-height: 1;
}




section.horizontal .animation-wrap.to-right {
    counter-reset: item;
    float: left;
    overflow-x: hidden;
}

section.horizontal .animation-wrap.to-left {
    counter-reset: item 11;
    float: right;
    overflow-x: hidden;
}

/* section.horizontal .animation-wrap.to-right .item:before {
    counter-increment: item;
    content: counter(item);
}

section.horizontal .animation-wrap.to-left .item:before {
    counter-increment: item -1;
    content: counter(item);
} */



section.horizontal .animation-wrap .item:nth-child(2n+2) {
    align-items: flex-start;
}

section.horizontal .animation-wrap .item:nth-child(4n+4) {
    align-items: flex-end;
}



/* ======================================================= */

#scene1{
  /* display: grid;
  grid-template-rows: 1fr auto 1fr;
  justify-content: space-between; */
}

#scene3{
  /* display: grid;
  grid-template-rows: 1fr auto 1fr;
  justify-content: space-between; */
  background-image: linear-gradient(65deg, #44657F 0%, #183C50 100%);
}
#scene6bg{
  /* background-size: cover; */
  /* background-position-y: top;
  background-attachment: fixed; */
}
#scene1 .item{
  position: absolute;
  top: 50vh;
  /* left: 50vw; */
}
#item1{
  margin-left:-92px;
  margin-top:-300px;
}
#item2{
  margin-left:-218px;
  margin-top:-93px;
}
#item3{
  margin-left:-90px;
  margin-top:120px;
}
/* #item4{
  opacity: 0;
  margin-left:-514px;
  margin-top:-276px;
} */
#item4 img{
  max-width: none;
}
#scene5Backdrop{
  position: absolute;
  height: 40vh;
  width: 100vw;
  top: 60vh;
  background-image: linear-gradient(65deg, #44657F 0%, #183C50 100%);
}
.shadow-5xl{
  box-shadow: 0px 20px 100px #555;
}





@import url(https://fonts.googleapis.com/css?family=Playfair+Display:400,400italic,700);
#scene8 {
  background: #edf2f4;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  display: -webkit-box;
  display: flex;
  height: 100vh;
  font-family: "Playfair Display",georgia,serif;
}

.card {
  pointer-events: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  padding: 30px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  width: 650px;
  height: 400px;
  margin: auto;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: -webkit-box;
  display: flex;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.);
  position: relative;
  font-family: Arial, Helvetica, sans-serif;
}
.card:after {
  content: " ";
  position: absolute;
  width: 100%;
  height: 10px;
  border-radius: 50%;
  left: 0;
  bottom: -50px;
  box-shadow: 0 30px 20px rgba(0, 0, 0, 0.4);
}
.card .card-content {
  /* margin: auto; */
  text-align: center;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.card h1 {
  -webkit-transform: translateZ(80px);
          transform: translateZ(80px);
}
.card .logo {
  -webkit-transform: translateZ(60px);
          transform: translateZ(60px);
}
.card .contact-info {
  -webkit-transform: translateZ(50px);
          transform: translateZ(50px);
  display: block;
  font-style: italic;
}
.card p.related {
  margin-top: 10vh;
  -webkit-transform: translateZ(150px);
          transform: translateZ(15px);
  font-style: italic;
  padding: 0px;
}
.card a {
  /* color: #69c6b8; */
  pointer-events: auto;
}
.card .social-icons {
  -webkit-transform: translateZ(70px);
  transform: translateZ(70px);
  font-style: italic;
  /* color: #69c6b8; */
  /* pointer-events: auto; */
}

.iklan {
  position: fixed;
  bottom: 0;
  right: 0;
  background: white;
  width: 200px;
  padding: 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.iklan p {
  margin: 0 0 15px;
  line-height: 1.4;
}
.iklan a {
  background-color: #ff4757;
  color: white;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
}





/* ========================================== */

/* /!\ You need to add vendor prefixes in order to render the CSS properly (or simply use http://leaverou.github.io/prefixfree/) /!\ */
#tridiv {
  perspective: 800px;
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: transparent;
  font-size: 112.5%;
}
.face {
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}
.scene, .shape, .face, .face-wrapper, .cr {
  position: absolute;
  transform-style: preserve-3d;
}
.scene {
  width: 80em;
  height: 80em;
  top: 50%;
  left: 50%;
  margin: -40em 0 0 -40em;
}
.shape {
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-origin: 50%;
}
.face, .face-wrapper {
  overflow: hidden;
  transform-origin: 0 0;
  backface-visibility: hidden;
  /* hidden by default, prevent blinking and other weird rendering glitchs */
}
.face {
  background-size: 100% 100%!important;
  background-position: center;
}
.face-wrapper .face {
  left: 100%;
  width: 100%;
  height: 100%
}
.photon-shader {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%
}
.side {
  left: 50%;
}
.cr, .cr .side {
  height: 100%;
}
[class*="cuboid"] .ft, [class*="cuboid"] .bk {
  width: 100%;
  height: 100%;
}
[class*="cuboid"] .bk {
  left: 100%;
}
[class*="cuboid"] .rt {
  transform: rotateY(-90deg) translateX(-50%);
}
[class*="cuboid"] .lt {
  transform: rotateY(90deg) translateX(-50%);
}
[class*="cuboid"] .tp {
  transform: rotateX(90deg) translateY(-50%);
}
[class*="cuboid"] .bm {
  transform: rotateX(-90deg) translateY(-50%);
}
[class*="cuboid"] .lt {
  left: 100%;
}
[class*="cuboid"] .bm {
  top: 100%;
}
/* .cub-1 styles */
.cub-1 {
  transform:translate3D(0.25em, -13.25em, -2.3125em) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  opacity:1;
  width:20.375em;
  height:5.75em;
  margin:-2.875em 0 0 -10.1875em;
}
.cub-1 .ft {
  transform:translateZ(0.75em);
}
.cub-1 .bk {
  transform:translateZ(-0.75em) rotateY(180deg);
}
.cub-1 .rt, .cub-1 .lt {
  width:1.5em;
  height:5.75em;
}
.cub-1 .tp, .cub-1 .bm {
  width:20.375em;
  height:1.5em;
}
.cub-1 .face {
  background-color:#FFFFFF;
}
/* .cub-3 styles */
.cub-3 {
  transform:translate3D(3.4375em, 0em, 0.0625em) rotateX(0deg) rotateY(-164deg) rotateZ(0deg);
  opacity:1;
  width:7.875em;
  height:10.375em;
  margin:-5.1875em 0 0 -3.9375em;
}
.cub-3 .ft {
  transform:translateZ(0.5625em);
}
.cub-3 .bk {
  transform:translateZ(-0.5625em) rotateY(180deg);
}
.cub-3 .rt, .cub-3 .lt {
  width:1.125em;
  height:10.375em;
}
.cub-3 .tp, .cub-3 .bm {
  width:7.875em;
  height:1.125em;
}
.cub-3 .face {
  background-color:#FFFFFF;
}
/* .cub-4 styles */
.cub-4 {
  transform:translate3D(-5.1875em, -0.0625em, -0.3125em) rotateX(0deg) rotateY(-164deg) rotateZ(0deg);
  opacity:1;
  width:7.875em;
  height:10.375em;
  margin:-5.1875em 0 0 -3.9375em;
}
.cub-4 .ft {
  transform:translateZ(0.5625em);
}
.cub-4 .bk {
  transform:translateZ(-0.5625em) rotateY(180deg);
}
.cub-4 .rt, .cub-4 .lt {
  width:1.125em;
  height:10.375em;
}
.cub-4 .tp, .cub-4 .bm {
  width:7.875em;
  height:1.125em;
}
.cub-4 .face {
  background-color:#FFFFFF;
}
/* .cub-5 styles */
.cub-5 {
  transform:translate3D(-15.25em, 0em, 2.625em) rotateX(0deg) rotateY(-164deg) rotateZ(0deg);
  opacity:1;
  width:12.375em;
  height:12.75em;
  margin:-6.375em 0 0 -6.1875em;
}
.cub-5 .ft {
  transform:translateZ(0.5625em);
}
.cub-5 .bk {
  transform:translateZ(-0.5625em) rotateY(180deg);
}
.cub-5 .rt, .cub-5 .lt {
  width:1.125em;
  height:12.75em;
}
.cub-5 .tp, .cub-5 .bm {
  width:12.375em;
  height:1.125em;
}
.cub-5 .face {
  background-color:#FFFFFF;
}
/* .cub-6 styles */
.cub-6 {
  transform:translate3D(13.4375em, 0.0625em, -2.8125em) rotateX(0deg) rotateY(-164deg) rotateZ(0deg);
  opacity:1;
  width:12.375em;
  height:12.75em;
  margin:-6.375em 0 0 -6.1875em;
}
.cub-6 .ft {
  transform:translateZ(0.5625em);
}
.cub-6 .bk {
  transform:translateZ(-0.5625em) rotateY(180deg);
}
.cub-6 .rt, .cub-6 .lt {
  width:1.125em;
  height:12.75em;
}
.cub-6 .tp, .cub-6 .bm {
  width:12.375em;
  height:1.125em;
}
.cub-6 .face {
  background-color:#FFFFFF;
}


/* ===================================================== */

#preload{
  background-color: #555;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99999999;
  display: grid;
  grid-template-rows: auto;
  justify-content: center;
}
#load {
  position:absolute;
  width:600px;
  height:36px;
  left:50%;
  top:40%;
  margin-left:-300px;
  overflow:visible;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  cursor:default;
}

#load div {
  position:absolute;
  width:20px;
  height:36px;
  opacity:0;
  font-family:Helvetica, Arial, sans-serif;
  animation:move 2s linear infinite;
  -o-animation:move 2s linear infinite;
  -moz-animation:move 2s linear infinite;
  -webkit-animation:move 2s linear infinite;
  transform:rotate(180deg);
  -o-transform:rotate(180deg);
  -moz-transform:rotate(180deg);
  -webkit-transform:rotate(180deg);
  color:white;
  font-size: 25px;
}

#load div:nth-child(2) {
  animation-delay:0.2s;
  -o-animation-delay:0.2s;
  -moz-animation-delay:0.2s;
  -webkit-animation-delay:0.2s;
}
#load div:nth-child(3) {
  animation-delay:0.4s;
  -o-animation-delay:0.4s;
  -webkit-animation-delay:0.4s;
  -webkit-animation-delay:0.4s;
}
#load div:nth-child(4) {
  animation-delay:0.6s;
  -o-animation-delay:0.6s;
  -moz-animation-delay:0.6s;
  -webkit-animation-delay:0.6s;
}
#load div:nth-child(5) {
  animation-delay:0.8s;
  -o-animation-delay:0.8s;
  -moz-animation-delay:0.8s;
  -webkit-animation-delay:0.8s;
}
#load div:nth-child(6) {
  animation-delay:1s;
  -o-animation-delay:1s;
  -moz-animation-delay:1s;
  -webkit-animation-delay:1s;
}
#load div:nth-child(7) {
  animation-delay:1.2s;
  -o-animation-delay:1.2s;
  -moz-animation-delay:1.2s;
  -webkit-animation-delay:1.2s;
}

@keyframes move {
  0% {
    left:0;
    opacity:0;
  }
	35% {
		left: 41%;
		-moz-transform:rotate(0deg);
		-webkit-transform:rotate(0deg);
		-o-transform:rotate(0deg);
		transform:rotate(0deg);
		opacity:1;
	}
	65% {
		left:59%;
		-moz-transform:rotate(0deg);
		-webkit-transform:rotate(0deg);
		-o-transform:rotate(0deg);
		transform:rotate(0deg);
		opacity:1;
	}
	100% {
		left:100%;
		-moz-transform:rotate(-180deg);
		-webkit-transform:rotate(-180deg);
		-o-transform:rotate(-180deg);
		transform:rotate(-180deg);
		opacity:0;
	}
}

@-moz-keyframes move {
	0% {
		left:0;
		opacity:0;
	}
	35% {
		left:41%;
		-moz-transform:rotate(0deg);
		transform:rotate(0deg);
		opacity:1;
	}
	65% {
		left:59%;
		-moz-transform:rotate(0deg);
		transform:rotate(0deg);
		opacity:1;
	}
	100% {
		left:100%;
		-moz-transform:rotate(-180deg);
		transform:rotate(-180deg);
		opacity:0;
	}
}

@-webkit-keyframes move {
	0% {
		left:0;
		opacity:0;
	}
	35% {
		left:41%;
		-webkit-transform:rotate(0deg);
		transform:rotate(0deg);
		opacity:1;
	}
	65% {
		left:59%;
		-webkit-transform:rotate(0deg);
		transform:rotate(0deg);
		opacity:1;
	}
	100% {
		left:100%;
		-webkit-transform:rotate(-180deg);
		transform:rotate(-180deg);
		opacity:0;
	}
}

@-o-keyframes move {
	0% {
		left:0;
		opacity:0;
	}
	35% {
		left:41%;
		-o-transform:rotate(0deg);
		transform:rotate(0deg);
		opacity:1;
	}
	65% {
		left:59%;
		-o-transform:rotate(0deg);
		transform:rotate(0deg);
		opacity:1;
	}
	100% {
		left:100%;
		-o-transform:rotate(-180deg);
		transform:rotate(-180deg);
		opacity:0;
	}
}


/* =================Follow */

#cursor-follow{
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  /* background-color: #FF4066; */
  background-color: #555;
  z-index: 9999999;
  mix-blend-mode: exclusion;
  pointer-events: none;
  /* transform: translate(-15px, -15px); */
  /* transition:all 100ms linear; */
  animation: pointerAni 1s linear infinite;
}

@keyframes pointerAni{
  0%{transform: scale(1);}
  50%{transform: scale(1.2);}
  100%{transform: scale(1);}
}

#cursor-follow.linkEnter{
  transform-origin: center;
  transform: scale(1.5);
  background-color: #fff;
  /* transition:all 100ms linear; */
}


#pinThis-3{
  background-size: 110% 110%;
  background-position: 50% 50%;
  animation: bgshsift 10s linear infinite;
}
@keyframes bgshsift{
  0%{background-position: 50% 50%;}
  25%{background-position: 55% 50%;}
  50%{background-position: 50% 50%;}
  75%{background-position: 45% 50%;}
  100%{background-position: 50% 50%;}
}

.screen8Bg img{
  transform-origin: center;
  animation: screen8Bg 25s linear;
}

@keyframes screen8Bg{
  0%{transform: scale(1.1) translateX(0%)}
  25%{transform: scale(1.1) translateX(5%)}
  75%{transform: scale(1.1) translateX(-5%)}
  100%{transform: scale(1.1) translateX(0)}
}

#screen9Bg,
#screen7Bg{
  /* background-size: 110% 110%; */
  /* background-position: 50% 50%; */
  animation: screen7Bg 5s linear infinite;
}
@keyframes screen7Bg{
  0%{transform:scale(1)}
  50%{transform:scale(1.05)}
  100%{transform:scale(1)}
}
.mobileView{
  display: none;
}
@media (max-width:991px){
  main{
    display: none !important;
  }
  .mobileView {
    display: block;
  }
  .mobileView div{
    position: relative;
  }
  .mobileView .playBtn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobileView video{
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
  }
  .mobileView img{
    width: 100%;
  }

  .mobileView .section10{
    background-image: url(src/img/bgArtboard.png);
    background-size: cover;
  }
  .mobileView .section10 .card-content{
    width: 90vw;
    margin: 5vw;
    padding: 5vw;
    color: black;
    background: rgba(255,255,255,0.8);
  }
  .mobileView .section10 img{
    width: auto;
  }
  .mobileView .section10 .logo img{
    max-width: 90%;
  }
  .mobileView .section10 a img{
    width: 31px;
  }
  .mobileView .culink{
    position: absolute;
    width: 63.5vw;
    height: 36vw;
    top: 68vw;
    left: 17.8vw;
  }

  .mobileView .mercommawards{
    position: absolute;
    width: 30vw;
    height: 3vw;
    top: 106vw;
    left: 35vw;
  }
}

@media (max-width:542px){
  .mobileView .section10 a b{
    display: block;
  }
}




.mainlogo{
  position: fixed;
  top: 40px;
  left: 20px;
}

.mainlogo img{
  height: 100px;
  /* filter: drop-shadow(7px 0px 5px rgba(255, 255, 255, 0.85)); */
}