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;
	
	-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
html, body {
  margin: 0;
  padding: 0;
  color: #fff;
  font-family: 'Mulish', sans-serif;
  background: #080808;
  letter-spacing: 1.6px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  overflow: hidden;
}
#ball-text .material-symbols-outlined {
  padding-left: 0px;
}
.material-symbols-outlined, b.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 18px !important;
  display: inline-block;
  line-height: 0 !important;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  padding-left: 6px;
  position: relative;
  top: 4px;
  opacity: 0;
  -webkit-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out;
  /* Support for IE. */
  font-feature-settings: 'liga';
}
.material-symbols-outlined.pre-icon, b.material-symbols-outlined.pre-icon {
  padding-left: 0px;
  padding-right: 11px;
}
a, img, h1, p, .client {
  -webkit-tap-highlight-color: transparent; /* for removing the highlight */
  text-decoration: none;
}
body.dark-ui {
  color: #484848;
  background: #fcfcfc;
}
#logo {
  position: fixed;
  z-index: 9999;
  top: 30px;
  left: 50%;
  width: 64%;
  max-width: 280px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
#logo a {
  padding: 20px 0;
}
.dark-ui .menus a, .dark-ui .full-nav ul:before {
  color: #484848;
}
.dark-ui #logo svg {
  fill: rgba(72, 72, 72, 1) !important;
}
.menus {
  position: fixed;
  z-index: 9999;
  top: 38px;
  display: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.full-nav .menus {
  position: static;
  display: block;
  text-align: center;
}
.menus.mobile-menu {
  display: block;
  top: auto;
  left: 50%;
  bottom: 38px;
  width: 200px;
  margin-left: -100px;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.menus a {
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  padding: 20px;
  cursor: pointer;
}
#logo svg {
  width: 100%;
  height: auto;
  fill: rgba(255, 255, 255, 1) !important;
}
.full-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 100px;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2;
  opacity: 0;
  display: none;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.dark-ui .full-nav {
  background: rgba(255, 255, 255, 0.6);
}
.full-nav.opened {
  opacity: 1;
}
.full-nav ul {
  margin: 0 0 8px 0;
  padding: 0;
  list-style-type: none;
  position: relative;
}
.full-nav ul.right-menu.bottom-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.lang-btn{
	right: 4%;
    margin-left: 0px;
    text-align: right !important;
    bottom: 38px;
    position: absolute !important;
    top: auto;
}
.full-nav ul li a {
  display: inline-block;
  line-height: 24px;
  letter-spacing: 3.8px;
  padding: 0 20px;
  opacity: 0.6;
  font-size: 15px;
  -webkit-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}
.full-nav ul li a:hover {
  opacity: 1;
}
#ball {
  fill: rgba(255, 202, 92, 0.8);
  r: 36px;
  -webkit-transition: fill .3s ease-in-out, r .3s ease-in-out;
  transition: fill .3s ease-in-out, r .3s ease-in-out;
  will-change: fill, r, cx, cy;
}
#ball.opened {
  fill: rgba(255, 202, 92, 1);
  r: 4px;
}
#ball.pressed {
  r: 30px;
  fill: rgba(255, 202, 92, 1);
  -webkit-transition: fill .2s ease-in-out, r .2s ease-in-out;
  transition: fill .2s ease-in-out, r .2s ease-in-out;
}
#ball-text.opened {
  opacity: 0;
}
#ball-text.opened span {
  padding: 0px;
  letter-spacing: 0px;
}
#ball-text.pressed span {
  padding: 0 28px;
  letter-spacing: 1.4px;
}
#ball-text {
  position: fixed;
  font-weight: 900;
  font-size: 13px;
  line-height: 34px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  z-index: 9999;
  width: 200px;
  top: -18px;
  left: 0;
  margin-left: -100px;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  will-change: opacity, transform;
}
#ball-text span {
  padding: 0 20px;
  font-weight: 700;
  letter-spacing: 2.6px;
  font-size: 12px;
  line-height: 12px;
  -webkit-transition: padding .16s ease-in-out, letter-spacing .16s ease-in-out;
  transition: padding .16s ease-in-out, letter-spacing .16s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: none;
}
.barba-container {
  position: relative;
}
.full {
  min-height: 100vh;
  min-height: 100svh;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.full.align--bottom {
  align-items: flex-end;
}
.full#virtual-video {
  flex-flow: column;
}
#virtual-video {
  background: #080808;
  color: #fff;
  position: relative;
  padding-top: 100px; 
}
#virtual-video .link-block {
	top:-40px;
}
.video_bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.video_bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
	
	-webkit-tap-highlight-color: transparent;
}
.video_bg:after {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  bottom: -10px;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  background-image: linear-gradient(0deg, rgba(8, 8, 8, 1) 14%, rgba(8, 8, 8, .4) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  z-index: 0;
}
.v_center {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.full-nav .v_center {
  width: 280px;
  padding-top: 12px;
}
.width {
  width: 62%;
}
#smooth-content {
  will-change: transform;
  background-image: url(../img/preload.svg);
  background-repeat: no-repeat;
  background-position: center 49vh;
}
#firma {
  position: absolute;
  opacity: 0.1;
  bottom: 34vh;
  width: 140%;
  margin-left: 10%;
}
.parallax-images {
  position: absolute;
  width: 160vw;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: stretch;
  justify-items: center;
  margin-top: 44vh;
}
.parallax-images img {
  width: 30vw;
  max-height: 100%;
  object-fit: cover;
  opacity: 0.44;
  -webkit-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out;
}
.parallax-images img:hover {
  opacity: 0.64 !important;
}
.pointer-none {
  pointer-events: none;
}
.detail-holder {
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  opacity: 0;
  -webkit-transition: opacity 1.8s;
  transition: opacity 1.8s;
}
.detail-holder.loaded {
  opacity: 1;
}
.impetus {
  overflow: hidden;
  width: 100%;
  position: absolute;
  background: #000;
  background-image: url(../img/preload.svg);
  background-repeat: no-repeat;
  background-position: center;
  -webkit-perspective: 900px;
  -moz-perspective: 900px;
  -ms-perspective: 900px;
  perspective: 900px;
}
.dark-ui .impetus {
  background: #fcfcfc;
  background-image: url(../img/preload-dark.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.impetus .impetus-img {
  position: relative;
  height: 100vh;
  height: 100dvh;
  will-change: transform;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.impetus .impetus-img img.impetus-image {
  position: absolute;
  height: 100%;
  width: auto;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -moz-touch-callout: none;
  -ms-touch-callout: none;
  touch-callout: none;
  -webkit-transition: opacity 1.8s;
  transition: opacity 1.8s;
}
.impetus.loaded .impetus-img img.impetus-image, .impetus.loaded .impetus-img .spot, .impetus.loaded .impetus-img .spot:before, .impetus.loaded .impetus-img .spot:after {
  opacity: 1;
}
.impetus .impetus-img .spot, .impetus .impetus-img .spot:before {
  position: absolute;
  width: 22px;
  height: 22px;
  margin-left: -11px;
  margin-top: -11px;
  border-radius: 50%;
  background: rgba(255, 202, 92, 1);
  z-index: 9999;
  opacity: 0;
  -webkit-transition: opacity 2.4s;
  transition: opacity 2.4s;
}
.impetus .impetus-img .spot:after, .full-nav ul:before {
  position: absolute;
  width: 320px;
  height: 20px;
  margin-left: -160px;
  margin-top: -44px;
  z-index: 9999;
  opacity: 0;
  text-align: center;
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 2.2px;
  color: #fff;
  content: attr(data-label);
  left: 50%;
  top: 50%;
  pointer-events: none;
  -webkit-transition: opacity 1.2s ease-in-out;
  transition: opacity 1.2s ease-in-out;
}
.full-nav ul:before {
  opacity: 0.4;
  color: #fff;
  position: relative;
  left: 0;
  top: -2px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 10px;
}
.impetus.loaded .impetus-img .spot.opened:after {
  opacity: 0;
  -webkit-transition: opacity .4s ease-in-out;
  transition: opacity .4s ease-in-out;
}
.dark-ui .impetus .impetus-img .spot:after {
  color: #7a7a7a;
}
.dark-ui .impetus .impetus-img .spot.white:after {
  color: #fff;
}
.impetus .impetus-img .spot {
  width: 80px;
  height: 80px;
  margin-left: -40px;
  margin-top: -40px;
  background: rgba(0, 0, 0, 0);
  -webkit-perspective: 900px;
  -moz-perspective: 900px;
  -ms-perspective: 900px;
  perspective: 900px;
}
.impetus .impetus-img .spot:before {
  content: '';
  left: 50%;
  top: 50%;
  border: 6px solid #fff;
  animation: pulse-white 3s ease-out infinite;
}
.dark-ui .impetus .impetus-img .spot:before {
  animation: pulse-black 3s ease-out infinite;
}
.impetus .impetus-img .spot:nth-child(even):before {
  animation-delay: 1.5s;
}
.spot .spot-baloon {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 100px) rotateX(-60deg) scale(0.7);
  transform: translate3d(-50%, -50%, 100px) rotateX(-60deg) scale(0.7);
  z-index: 9999;
  will-change: opacity, transform;
  -webkit-transition: opacity .2s ease-in-out, transform .4s ease-in-out;
  transition: opacity .2s ease-in-out, transform .4s ease-in-out;
}
.spot .spot-baloon .spot-baloon--inner {
  background: #000;
  border-radius: 2px;
  color: #000;
  text-align: center;
  position: relative;
  pointer-events: none;
  top: 0;
  left: 0;
	
  -webkit-transform:translateZ(0);
  transform:translateZ(0);
  backface-visibility: hidden;
}
.link-block {
  position: relative;
  z-index: 2;
  /*height: 100px;
	
	top:-40px;*/
}
.link-block a, .parallax-images img{
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
	-webkit-touch-callout: none;
  -moz-touch-callout: none;
  -ms-touch-callout: none;
  touch-callout: none;
}
.holo-btn {
  position: relative;
  z-index: 1;
  top: 44px;
  mix-blend-mode: screen;
}
.holo-btn.fix{
	color: #fff;
	
	text-transform: uppercase;
	  font-family: 'Space Mono', monospace;
	  font-weight: 700;
	  font-size: 14px;
	  line-height: 14px;
	  letter-spacing: 3.6px;
	
	display: block;
	background: rgba(0,0,0,0.6);
	margin: 10px;
	padding: 22px 30px;
	
	width: 280px;
}
.holo-btn .spot--btn {
  width: 280px;
}
.holo-btn.android {
  top: 114px;
}
.holo-btn.windows {
  top: 184px;
}
.spot .spot-baloon .spot-baloon--inner .spot--btn, .holo-btn .spot--btn {
  background: linear-gradient(0deg, rgba(128, 244, 255, 0.5) 0%, rgba(26, 46, 106, 0.7) 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}
.spot-baloon--inner a{
	cursor: pointer;
}
.spot.holo .spot-baloon .spot-baloon--inner, .spot .spot-baloon .spot-baloon--inner .spot--btn.text, .holo-btn .spot--btn.text {
  background: none;
}
.spot .spot-baloon .spot-baloon--inner .spot--btn.red, .holo-btn .spot--btn.red {
  box-shadow: 0 0 60px 0 rgba(128, 244, 255, 0.2);
}
.spot .spot-baloon .spot-baloon--inner .spot--btn.text, .holo-btn .spot--btn.text, .spot.holo .spot-baloon--inner .infos {
  box-shadow: 0 0 40px 0 rgba(128, 244, 255, 0.2);
  -webkit-transition: box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out;
}
 #live-show.spot.holo .spot-baloon--inner .infos {
  /*box-shadow: 0 0 40px 0 rgba(255, 0, 0, 0.2);*/
  -webkit-transition: box-shadow .3s ease-in-out;
  transition: box-shadow .3s ease-in-out;
}
.spot .spot-baloon .spot-baloon--inner .spot--btn.text:hover, .holo-btn:hover .spot--btn.text, .spot.holo .spot-baloon--inner .infos:hover {
  box-shadow: 0 0 60px 0 rgba(128, 244, 255, 0.24);
}
.preview-inner img, .preview-inner video {
  box-shadow: 0 0 120px 0 rgba(128, 244, 255, 0.14);
}
.spot .spot-baloon .spot-baloon--inner .spot--btn.text span, .holo-btn .spot--btn.text span, .spot .spot-baloon .spot-baloon--inner .spot--btn i.mail-text, .spot.holo .spot-baloon--inner .infos a, .spot.holo .spot-baloon--inner .infos h1, .spot.holo .spot-baloon--inner .infos h2, .spot.holo .spot-baloon--inner .infos h3, .spot.holo .spot-baloon--inner .infos p {
  text-shadow: 0px 0px 14px rgba(26, 46, 106, 0.7), 0px 0px 4px rgba(128, 244, 255, 0.5);
}
.spot .spot-baloon .spot-baloon--inner #contact-link .spot--btn span {
  padding-bottom: 0px;
}
.spot-baloon--inner #contact-link .spot--btn i.mail-text {
  padding-bottom: 22px;
}
.spot-baloon--inner .spot--btn i.mail-text #contact-link-gmail {
    margin-top: 8px;
    display: block;
}
.spot .spot-baloon .spot-baloon--inner .spot--btn i.mail-text, .spot.holo .spot-baloon--inner .infos p {
  font-style: normal;
  padding-top: 8px;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 2.8px;
  display: inline-block;
  text-transform: uppercase;
}
.spot .spot-baloon .spot-baloon--inner .spot--btn i.mail-text {
  padding-bottom: 28px;
  color: #fff;
}
.spot .spot-baloon .spot-baloon--inner .spot--btn i.mail-text a {
  color: #fff;
}
.spot-baloon--inner .spot--btn.red span, .spot-baloon--inner .spot--btn.cyan span, .holo-btn .spot--btn.red span, .holo-btn .spot--btn.cyan span, .spot-baloon--inner .spot--btn.red i.mail-text, .spot-baloon--inner .spot--btn.cyan i.mail-text {
  opacity: 0;
}
.spot .spot-baloon h1, .spot .spot-baloon h2, .spot .spot-baloon h3, .spot .spot-baloon h4 {
  font-family: 'Space Mono', monospace;
  font-weight: 700;
}
.spot--btn span, .holo-btn .spot--btn span, .mail-text {
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 3.6px;
  text-align: center;
  white-space: nowrap;
  display: block;
}
.spot--btn span, .holo-btn .spot--btn span {
  padding: 22px 30px;
}
.spot--btn span.contact-title, .holo-btn .spot--btn span.contact-title {
  padding: 22px 54px 0px 54px;
}
.list-title {
  margin: 6px 16px 0 16px;
	cursor: default;
}
.list-title a {
  color: #fff;
}
.spot-baloon--inner ul {
  margin: 8px 16px 12px 16px;
  padding: 0;
}
.spot-baloon--inner ul li {
  list-style-type: none;
  line-height: 20px !important;
}
.spot-baloon--inner ul li a {
  display: block;
  color: #fff !important;
  font-family: 'Mulish', sans-serif !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  line-height: 24px !important;
  letter-spacing: 2.8px !important;
  opacity: 0.8;
  -webkit-transition: opacity .2s ease-in-out;
  transition: opacity .2s ease-in-out;
}
.spot-baloon--inner ul li a:hover {
  opacity: 1;
}
.spot-baloon--inner img {
  width: 160px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  -webkit-transition: width .2s ease-in-out;
  transition: width .2s ease-in-out;
  touch-action: pan-x;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -moz-touch-callout: none;
  -ms-touch-callout: none;
  touch-callout: none;
}
.spot-baloon--inner img.red {
  filter: url(#red);
  mix-blend-mode: overlay;
  opacity: 0.6;
  top: 50.4%;
  left: 50.6%;
}
.spot-baloon--inner img.blur-img {
  -webkit-filter: blur(80px);
  -moz-filter: blur(80px);
  -o-filter: blur(80px);
  -ms-filter: blur(80px);
  filter: blur(80px);
  mix-blend-mode: overlay;
  opacity: 0.8;
}
.spot-baloon--inner img.cyan {
  filter: url(#cyan);
  mix-blend-mode: lighten;
  opacity: 0.7;
  -webkit-transform: translate3d(-51%, -50.4%, 0);
  transform: translate3d(-51%, -50.4%, 0);
  animation: none;
}
.dark-ui .spot-baloon--inner img.blur-img {
  opacity: 0;
}
.dark-ui .spot-baloon--inner img.red {
  opacity: 0.4;
}
.dark-ui .spot-baloon--inner img.cyan {
  opacity: 0.5;
  mix-blend-mode: exclusion;
}
/*
Live red Iliade
.dark-ui #live-show .spot-baloon--inner img.red {
	mix-blend-mode: overlay;
    opacity: 0.7;
}
.dark-ui #live-show .spot-baloon--inner img.cyan {
	mix-blend-mode: lighten;
    opacity: 0.6;
}*/

/* Live Tour 2025/2026 */
.dark-ui #live-show .spot-baloon--inner img.red {
	mix-blend-mode: overlay;	
	opacity: 0.6;
}
.dark-ui #live-show .spot-baloon--inner img.cyan {
    mix-blend-mode: exclusion;
	opacity: 0.7;
}


.opened .spot-baloon--inner img.cyan {
  animation: imgGlitch 2s infinite;
  animation-delay: 500ms;
}
.opened .spot-baloon--inner img.red {
  animation: imgGlitch 1.6s infinite;
  animation-delay: 250ms;
}
.dark-ui .spot .spot-baloon .spot-baloon--inner .spot--btn.red {
  filter: url(#red);
  mix-blend-mode: overlay;
  opacity: 0.8;
  animation: none;
  top: 53%;
  left: 53%;
}
.dark-ui .spot .spot-baloon .spot-baloon--inner .spot--btn.cyan {
  filter: url(#cyan);
  mix-blend-mode: lighten;
  opacity: 0.7;
  -webkit-transform: translate3d(-51%, -50.4%, 0);
  transform: translate3d(-51%, -50.4%, 0);
  animation: none;
}
.spot .spot-baloon .spot-baloon--inner .spot--btn.red, .holo-btn .spot--btn.red {
  filter: url(#red);
  mix-blend-mode: overlay;
  opacity: 1;
  animation: none;
  top: 53%;
  left: 53%;
}
.spot .spot-baloon .spot-baloon--inner .spot--btn.cyan, .holo-btn .spot--btn.cyan {
  filter: url(#cyan);
  mix-blend-mode: lighten;
  opacity: 1;
  -webkit-transform: translate3d(-51%, -50.4%, 0);
  transform: translate3d(-51%, -50.4%, 0);
  animation: none;
}
.spot.opened .spot-baloon .spot-baloon--inner .spot--btn.cyan, .holo-btn .spot--btn.cyan {
  animation: imgGlitch 2s infinite;
}
.spot.opened .spot-baloon .spot-baloon--inner .spot--btn.red, .holo-btn .spot--btn.red {
  animation: imgGlitch 2s infinite reverse;
  animation-delay: 250ms;
}
.hover--ramp {
  opacity: 0;
  background: linear-gradient(-190deg, rgba(94, 162, 239, 0.1) 0%, rgba(209, 45, 156, 0.1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  -webkit-transition: opacity .8s ease-in-out;
  transition: opacity .8s ease-in-out;
  -webkit-filter: blur(10px);
  -moz-filter: blur(10px);
  -o-filter: blur(10px);
  -ms-filter: blur(10px);
  filter: blur(10px);
}
.hover--ramp.opened {
  opacity: 0.32;
  -webkit-transition: opacity .6s ease-in-out;
  transition: opacity .6s ease-in-out;
}
.dark-ui .hover--ramp.opened {
  opacity: 0.8;
}
.filters-svg {
  height: 0;
  position: absolute;
}
.dark-ui .spot.holo {
  mix-blend-mode: normal;
}
.dark-ui .spot.holo.opened {
  /*opacity: .9;*/
}
.spot.holo {
  mix-blend-mode: screen;
}
.spot.holo .spot-baloon--inner .infos {
  /*position: absolute;
	
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);*/
  position: relative;
	
  width: 320px;
  height: 0px;
  overflow: hidden;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  -webkit-transition: opacity .4s ease-in-out, height .2s ease-out;
  transition: opacity .4s ease-in-out, height .2s ease-out;
}
.spot.holo .spot-baloon--inner .infos a, .spot.holo .spot-baloon--inner .infos h1, .spot.holo .spot-baloon--inner .infos h2, .spot.holo .spot-baloon--inner .infos h3, .spot.holo .spot-baloon--inner .infos p {
  display: inline-block;
  margin-left: 16px;
  margin-right: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.spot.holo .spot-baloon--inner .infos h1, .spot.holo .spot-baloon--inner .infos h2, .spot.holo .spot-baloon--inner .infos h3, .list-title {
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 3.8px;
  color: #fff;
  margin-bottom: 0px;
  margin-top: 12px;
  text-transform: uppercase;
}
.list-title {
  font-size: 20px;
}
.spot.holo .spot-baloon--inner .infos p {
  color: #fff;
  margin-bottom: 0px;
  margin-top: 6px;
}
.spot.holo .spot-baloon--inner .infos a {
  display: inline-block;
  background: rgba(26, 46, 106, 0.64);
  margin-top: 14px;
  padding: 22px 30px;
  color: #fff;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 14px;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: background .4s ease-in-out;
  transition: background .4s ease-in-out;
}
#books.spot.holo .spot-baloon--inner .infos a, #music.spot.holo .spot-baloon--inner .infos a {
  min-width: 80%;
}
.spot.holo .spot-baloon--inner .infos a:hover {
  background: rgba(26, 46, 106, 0.84);
}
.dark-ui .spot.holo .spot-baloon--inner .infos a {
  background: rgba(26, 46, 106, 0.34);
}
.dark-ui .spot.holo .spot-baloon--inner .infos a:hover {
  background: rgba(26, 46, 106, 0.64);
}
.dark-ui #live-show.spot.holo .spot-baloon--inner .infos a {
  /*background: rgba(0, 0, 0, 0.5);*/
	width: 70%;
}
.dark-ui #live-show.spot.holo .spot-baloon--inner .infos a:hover {
  /*background: rgba(0, 0, 0, 0.7);*/
}
.spot.holo.opened .spot-baloon--inner .infos {
  opacity: 1;
  -webkit-transition: opacity .4s ease-in-out, height .2s ease-in-out;
  transition: opacity .4s ease-in-out, height .2s ease-in-out;
}
.spot.opened .spot-baloon {
  opacity: 1;
  -webkit-transform: translate3d(-50%, -50%, 0) rotateX(0deg) scale(1.0);
  transform: translate3d(-50%, -50%, 0) rotateX(0deg) scale(1.0);
}
.spot.opened {
  z-index: 9999;
}
.spot.opened .spot-baloon--inner img {
  width: 320px;
}
@keyframes slide {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -3px;
  }
}
@keyframes imgGlitch {
  0% {
    -webkit-transform: translate3d(-50.5%, -50.5%, 0);
    transform: translate3d(-50.5%, -50.5%, 0);
  }
  3% {
    -webkit-transform: translate3d(-49.5%, -50%, 0);
    transform: translate3d(-49.5%, -50%, 0);
  }
  6% {
    -webkit-transform: translate3d(-50.5%, -51%, 0);
    transform: translate3d(-50.5%, -51%, 0);
  }
  9% {
    -webkit-transform: translate3d(-49.5%, -50%, 0);
    transform: translate3d(-49.5%, -50%, 0);
  }
  12% {
    -webkit-transform: translate3d(-50.5%, -49%, 0);
    transform: translate3d(-50.5%, -49%, 0);
  }
  15% {
    -webkit-transform: translate3d(-50.5%, -50.5%, 0);
    transform: translate3d(-50.5%, -50.5%, 0);
    -webkit-transition: none;
    transition: none;
  }
  100% {
    -webkit-transform: translate3d(-50.5%, -50.5%, 0);
    transform: translate3d(-50.5%, -50.5%, 0);
    -webkit-transition: none;
    transition: none;
  }
}
@keyframes pulse-white {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  40% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.2);
  }
  90% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    box-shadow: 0 0 0 16px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse-black {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(8, 8, 8, 0.7);
  }
  40% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    box-shadow: 0 0 0 16px rgba(8, 8, 8, 0.2);
  }
  90% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    box-shadow: 0 0 0 16px rgba(8, 8, 8, 0);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(8, 8, 8, 0);
  }
}
svg#custom_cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: none;
}
.text {
  background: #fff;
}
.detail-holder {
  background: #080808;
}
.detail-holder .full {
  padding-left: 8%;
  padding-right: 8%;
}
.scroll-line:after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 16vh;
  height: 16dvh;
  background: rgba(255, 255, 255, 0.3);
  top: 92vh;
  top: 92dvh;
  left: 50%;
  z-index: 1;
  animation: line-grow 2.4s ease-out infinite;
}
.breadcrumb.scroll-line:after {
  content: '';
  display: block;
  position: absolute;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
  top: 30px;
  left: 50%;
  z-index: 1;
  animation: line-grow-breadcrumb 1.4s ease-out infinite;
}
.breadcrumb {
  text-align: center;
  text-transform: uppercase;
  margin-top: 120px;
  font-size: 12px;
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  line-height: 1.1em;
  letter-spacing: 2.2px;
  opacity: 0.64;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.breadcrumb a {
  display: inline-block;
  cursor: pointer;
  padding: 0;
}
.hero .breadcrumb {
  position: absolute;
  width: 100%;
  z-index: 1;
}
.preview {
  position: absolute;
  left: 0;
  top: 0;
}
.preview-inner {
  position: relative;
}
.preview-inner img, .preview-inner video {
  position: absolute;
  max-height: 44vh;
  max-width: 94vw;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#clients-grid {
  display: grid;
  grid-auto-flow: row;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 10px 10px;
  width: 100%;
  padding: 100px 10% 280px 10%;
  position: relative;
  z-index: 1;
  text-align: center;
}
#clients-grid .client {
  cursor: pointer;
}
@keyframes line-grow {
  0% {
    height: 0vh;
    height: 0dvh;
    top: 92vh;
    top: 92dvh;
    opacity: .4;
  }
  20% {
    height: 0vh;
    height: 0dvh;
    opacity: .4;
  }
  70% {
    height: 16vh;
    height: 16dvh;
    top: 92vh;
    top: 92dvh;
    opacity: .8;
  }
  80% {
    height: 16vh;
    height: 16dvh;
    top: 92vh;
    top: 92dvh;
    opacity: .8;
  }
  100% {
    height: 0vh;
    height: 0dvh;
    top: 108vh;
    top: 108dvh;
    opacity: .4;
  }
}
@keyframes line-grow-breadcrumb {
  0% {
    height: 0px;
    top: 30px;
    opacity: .4;
  }
  20% {
    height: 0px;
    opacity: .4;
  }
  70% {
    height: 60px;
    top: 30px;
    opacity: .8;
  }
  80% {
    height: 60px;
    top: 30px;
    opacity: .8;
  }
  100% {
    height: 0px;
    top: 90px;
    opacity: .4;
  }
}
.detail-holder h1, .detail-holder .h1 {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  font-size: 34px;
  font-size: 8.4vw;
  line-height: 1.1em;
  letter-spacing: 0.124em;
  text-transform: uppercase;
  margin: 14px 0 14vh 0;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.split-line {
  overflow: hidden;
}
.detail-holder p {
  overflow: hidden;
}
.detail-holder h1 br, .detail-holder .h1 br {
  display: none;
}
.detail-holder h2, .detail-holder .h2, .detail-holder h2 a, .detail-holder .h2 a, .detail-holder h3, .detail-holder .h3, .detail-holder h3 a, .detail-holder .h3 a, .detail-holder h4, .detail-holder .h4, .detail-holder h4 a, .detail-holder .h4 a, .detail-holder h5, .detail-holder .h5, .detail-holder h5 a, .detail-holder .h5 a, .detail-holder h6, .detail-holder .h6, .detail-holder h6 a, .detail-holder .h6 a, .detail-holder p, .detail-holder p a {
  color: #fff;
  z-index: 1;
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.8em;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.detail-holder p a {
  -webkit-transition: color .3s ease-in-out, opacity .3s ease-in-out;
  transition: color .3s ease-in-out, opacity .3s ease-in-out;
  margin-top: 8px;
  display: block;
  opacity: 0.7;
}
.detail-holder p a:hover {
  color: #fecc65;
  opacity: 1;
}
.hero-subtitle {
  display: block;
  text-align: center;
  font-family: 'Mulish', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4em;
  letter-spacing: 0.29em;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.bio-bg {
  background-image: url('../img/bio-bg-hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.manifesto-bg{
  background-image: url('../img/manifesto-bg-hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.docufilm-bg{
  background-image: url('../img/docufilm-bg-hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.docufilm-outro-bg {
  background-image: url('../img/docufilm-outro-bg.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.featured-bg {
  background-image: url('../img/featured-clients-bg-hero.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  min-height: 100vh;
  min-height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 200vh;
  height: 200dvh;
  background-image: linear-gradient(0deg, rgba(8, 8, 8, 1) 14%, rgba(8, 8, 8, .3) 100%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}
.featured-bg.hero:before {
  height: 100vh;
  height: 100dvh;
  background-image: linear-gradient(0deg, rgba(8, 8, 8, 1) 14%, rgba(8, 8, 8, .6) 100%);
}
/*.manifesto-outro-bg.hero:before {
  top: auto;
	bottom: 0;
  background-image: linear-gradient(0deg, rgba(8, 8, 8, .3) 0%, rgba(8, 8, 8, 1) 74%);
  background-size: cover;
}*/
.full-parallax-holder {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
  opacity: .44;
}
.bio-outro-bg {
  background-image: url('../img/bg-outro-bio.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 14vh;
  flex-flow: column;
}
.flow-column {
  flex-flow: column;
}


.info-overlay{
    z-index: 9999;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.6);
-webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
    display: none;
}

.dark-ui .info-overlay{
    background: rgba(0,0,0,0.9);
}

.info-panel.video{
    position: relative;
    width: 94%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    -ms-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}
.info-panel.video video {
    width: 100%    !important;
    height: auto   !important;
	cursor: pointer;
	-webkit-tap-highlight-color: rgba(0,0,0,0.2);
}
.controls{
	position: absolute;
	z-index: 9999;
	bottom: 0;
	left: 0;
}
.close{
	position: absolute;
	z-index: 9999;
	bottom: 0;
	right: 0;
}
.controls a, .close{
	display: block;
	padding: 16px;
	font-family: 'Space Mono', monospace;
	  font-weight: 400;
	  text-transform: uppercase;
	  font-size: 8px;
	  line-height: 8px;
	  letter-spacing: 2.2px;
	color: #fff !important;
	
	cursor: pointer;
}
#play-trailer-docu{
	cursor: pointer;
}



#turn-device, #tutorial {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
#turn-device {
  color: #fff;
	z-index: 9998;
}
#turn-device .material-symbols-outlined {
  font-size: 36px !important;
  line-height: 36px !important;
  margin-bottom: 8px;
  display: block;
}
#tutorial {
  text-align: center;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  flex-flow: column;
  z-index: 9999;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -moz-touch-callout: none;
  -ms-touch-callout: none;
  touch-callout: none;
}
#tutorial p, #turn-device p {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 2.8px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -moz-touch-callout: none;
  -ms-touch-callout: none;
  touch-callout: none;
  opacity: 0;
  -webkit-transition: opacity .8s ease-in-out;
  transition: opacity .8s ease-in-out;
}
#tutorial.eng_tutorial p {
	padding: 0 30px;
}
#tutorial a {
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 2.8px;
  color: rgba(255, 255, 255, 0.6);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -moz-touch-callout: none;
  -ms-touch-callout: none;
  touch-callout: none;
}
#turn-device p {
  opacity: 1;
}
#tutorial p b {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 2.8px;
  color: rgba(255, 255, 255, 1);
}
#tutorial a.change_lang_tutorial{
	font-size: 9px;
    line-height: 13px;
	letter-spacing: 2.6px;
	color: rgba(255, 255, 255, 0.8);
	text-transform: uppercase;
	-webkit-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
}
#tutorial a.change_lang_tutorial:hover{
	color: rgba(255, 255, 255, 1);
}
.wf-active #tutorial p, .wf-active .material-symbols-outlined, .wf-active b.material-symbols-outlined {
  opacity: 1;
}
.line-break{
	display: block;
}
@media only screen and (max-height: 480px) {
  #turn-device {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
  }
	#logo, .menus a{
		display: none !important;
	}
.info-panel.video{
    position: relative;
    width: 100%;
    top: 0%;
    left: 0%;
    -webkit-transform: translate3d(-0%, -0%, 0);
    -ms-transform: translate3d(-0%, -0%, 0);
    transform: translate3d(-0%, -0%, 0);
}
.info-panel.video video {
    width: 100%    !important;
    height: auto   !important;
	max-height: 100svh;
}
}
@media only screen and (max-height: 566px) and (max-width: 992px) {
  .full-nav ul:before {
    display: none;
  }
}
.social-menu li.mobile-social{
    display: none !important;
}
@media only screen and (max-height: 694px) and (max-width: 992px) {
  .social-menu li{
    display: none !important;
  }
  .social-menu li.mobile-social{
    display: block !important;
  }
}
@media only screen and (max-width: 768px) {
  .holo-btn .spot--btn.cyan, .holo-btn .spot--btn.red {
    display: none;
    mix-blend-mode: none;
  }
  .holo-btn .spot--btn.text.crt-flicker:after {
    animation: none;
    background: none;
    display: none;
    mix-blend-mode: none;
  }
  .holo-btn {
    mix-blend-mode: none;
  }
  .holo-btn .spot--btn.text span {
    background: rgba(0, 0, 0, 0.4);
    text-shadow: none;
  }
	.holo-btn .spot--btn span, .holo-btn.fix{
		font-size: 12px;
	}
  .holo-btn .spot--btn.text {
    box-shadow: 0 0 40px 0 rgba(128, 244, 255, 0.06);
  }
}
@media only screen and (min-width: 576px) {
  .detail-holder h1 br, .detail-holder .h1 br {
    display: block;
  }
  .holo-btn .spot--btn {
    width: auto;
  }
  .holo-btn.ios {
    left: -160px;
    top: 44px;
  }
  .holo-btn.android {
    left: -10px;
    top: 44px;
  }
  .holo-btn.windows {
    left: 150px;
    top: 44px;
  }
  .link-block {
    /*height: 72px;*/
  }
	
	.holo-btn.fix{
		display: inline-block;
		width: auto;
	}
}
@media only screen and (min-width: 768px) {
	
	.controls a, .close{
		padding: 30px;
		font-size: 10px;
		line-height: 10px;
	}
	
  .detail-holder h1, .detail-holder .h1 {
    font-size: 48px;
    margin: 24px 0 18vh 0;
  }
  #firma {
    width: 96%;
    bottom: 18vh;
    margin-left: auto;
  }
  .detail-holder .full {
    padding-left: 14%;
    padding-right: 14%;
  }
  .detail-holder h2, .detail-holder .h2, .detail-holder h2 a, .detail-holder .h2 a, .detail-holder h3, .detail-holder .h3, .detail-holder h3 a, .detail-holder .h3 a, .detail-holder h4, .detail-holder .h4, .detail-holder h4 a, .detail-holder .h4 a, .detail-holder h5, .detail-holder .h5, .detail-holder h5 a, .detail-holder .h5 a, .detail-holder h6, .detail-holder .h6, .detail-holder h6 a, .detail-holder .h6 a, .detail-holder p, .detail-holder p a {
    font-size: 12px;
  }
  #clients-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 60px;
    padding: 120px 14% 320px 14%;
  }
}
@media only screen and (min-width: 992px) {
  .menus {
    display: block;
  }
  .menus.mobile-menu, .full-nav ul:before {
    display: none;
  }
  .full-nav {
    padding-top: 0px;
  }
  .full-nav .v_center {
    position: relative;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    width: 100%;
    height: 100vh;
    height: 100dvh;
  }
  .full-nav .menus {
    position: absolute;
  }
  .menus {
    top: 8%;
  }
  #logo {
    top: 6%;
    max-width: 318px;
  }
  .breadcrumb {
    margin-top: 160px;
  }
  .menus.left-menu {
    left: 4%;
    text-align: left;
  }
  .menus.right-menu {
    right: 4%;
    text-align: right;
  }
.lang-btn{
	right: 50%;
	width: 80px;
	margin-left: 40px;
}
  .menus.bottom-menu {
    top: auto;
    bottom: 8%;
  }
  .full-nav ul {
    margin: 44px 0 0 0;
  }
  .full-nav ul.right-menu.bottom-menu, .full-nav ul.left-menu.bottom-menu {
    margin: 0 0 44px 0;
  }
  .full-nav ul li a {
    line-height: 25px;
    font-size: 15px;
  }
  .detail-holder h2, .detail-holder .h2, .detail-holder h2 a, .detail-holder .h2 a, .detail-holder h3, .detail-holder .h3, .detail-holder h3 a, .detail-holder .h3 a, .detail-holder h4, .detail-holder .h4, .detail-holder h4 a, .detail-holder .h4 a, .detail-holder h5, .detail-holder .h5, .detail-holder h5 a, .detail-holder .h5 a, .detail-holder h6, .detail-holder .h6, .detail-holder h6 a, .detail-holder .h6 a, .detail-holder p, .detail-holder p a {
    font-size: 15px;
    margin-left: 10%;
    margin-right: 10%;
  }
  .detail-holder p a {
    margin-left: 0%;
    margin-right: 0%;
    margin-top: 10px;
  }
  .parallax-images {
    width: 120vw;
    margin-top: 84vh;
  }
  .parallax-images img {
    width: 22vw;
  }
}
@media only screen and (min-width: 1024px) {
	.info-panel.video{
        width: 88%;
    }
	.controls a, .close{
		padding: 40px;
		font-size: 12px;
		line-height: 12px;
	}
}
@media only screen and (min-width: 1200px) {
	
  .detail-holder h1, .detail-holder .h1 {
    font-size: 4.378vw;
  }
  .detail-holder h2, .detail-holder .h2, .detail-holder h2 a, .detail-holder .h2 a, .detail-holder h3, .detail-holder .h3, .detail-holder h3 a, .detail-holder .h3 a, .detail-holder h4, .detail-holder .h4, .detail-holder h4 a, .detail-holder .h4 a, .detail-holder h5, .detail-holder .h5, .detail-holder h5 a, .detail-holder .h5 a, .detail-holder h6, .detail-holder .h6, .detail-holder h6 a, .detail-holder .h6 a, .detail-holder p, .detail-holder p a {
    font-size: 16px;
    margin-left: 14%;
    margin-right: 14%;
  }
  .detail-holder p a {
    margin-left: 0%;
    margin-right: 0%;
    margin-top: 12px;
  }
}
@media only screen and (min-width: 1400px) {
	
	.info-panel.video{
        width: 74%;
    }
	
  .detail-holder h1, .detail-holder .h1 {
    font-size: 84px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .detail-holder h2, .detail-holder .h2, .detail-holder h2 a, .detail-holder .h2 a, .detail-holder h3, .detail-holder .h3, .detail-holder h3 a, .detail-holder .h3 a, .detail-holder h4, .detail-holder .h4, .detail-holder h4 a, .detail-holder .h4 a, .detail-holder h5, .detail-holder .h5, .detail-holder h5 a, .detail-holder .h5 a, .detail-holder h6, .detail-holder .h6, .detail-holder h6 a, .detail-holder .h6 a, .detail-holder p, .detail-holder p a {
    font-size: 17px;
    margin-left: 18%;
    margin-right: 18%;
  }
  .detail-holder p a {
    margin-left: 0;
    margin-right: 0;
    margin-top: 14px;
  }
  #clients-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 34px 100px;
    padding: 14vh 14% 380px 14%;
  }
  .preview-inner img, .preview-inner video {
    max-height: 50vh;
    max-width: 25vw;
  }
  .preview-inner video {
    max-height: 50vh;
    max-width: 28vw;
  }
}
@media only screen and (min-width: 1680px) {
  #logo {
    max-width: 356px;
  }
  .breadcrumb {
    margin-top: 180px;
  }
  .detail-holder h2, .detail-holder .h2, .detail-holder h2 a, .detail-holder .h2 a, .detail-holder h3, .detail-holder .h3, .detail-holder h3 a, .detail-holder .h3 a, .detail-holder h4, .detail-holder .h4, .detail-holder h4 a, .detail-holder .h4 a, .detail-holder h5, .detail-holder .h5, .detail-holder h5 a, .detail-holder .h5 a, .detail-holder h6, .detail-holder .h6, .detail-holder h6 a, .detail-holder .h6 a, .detail-holder p, .detail-holder p a {
    font-size: 18px;
  }
  .detail-holder p a {
    margin-left: 0;
    margin-right: 0;
    margin-top: 16px;
  }
}
.crt-scanlines:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 50%);
  z-index: 1;
  background-size: 100% 2px;
  pointer-events: none;
  opacity: 0.3;
  -webkit-animation: slide 0.22s linear infinite;
  animation: slide 0.22s linear infinite;
}
.dark-ui .crt-scanlines:before {
  background: linear-gradient(rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 50%);
  background-size: 100% 2px;
  opacity: 0.2;
}
.dark-ui #live-show .crt-scanlines:before {
  background: linear-gradient(rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 1) 50%);
  background-size: 100% 2px;
  opacity: 0.1;
}
.crt-scanlines span {
  position: relative;
  z-index: 2;
}
.crt-flicker:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  animation: flicker 0.3s infinite;
}
.dark-ui .crt-flicker:after, .holo-btn.crt-flicker:after {
  background: rgba(255, 255, 255, 0.08);
}
@keyframes flicker {
  0% {
    opacity: 0.27861;
  }
  5% {
    opacity: 0.34769;
  }
  10% {
    opacity: 0.23604;
  }
  15% {
    opacity: 0.90626;
  }
  20% {
    opacity: 0.18128;
  }
  25% {
    opacity: 0.83891;
  }
  30% {
    opacity: 0.65583;
  }
  35% {
    opacity: 0.67807;
  }
  40% {
    opacity: 0.26559;
  }
  45% {
    opacity: 0.84693;
  }
  50% {
    opacity: 0.96019;
  }
  55% {
    opacity: 0.08594;
  }
  60% {
    opacity: 0.20313;
  }
  65% {
    opacity: 0.71988;
  }
  70% {
    opacity: 0.53455;
  }
  75% {
    opacity: 0.37288;
  }
  80% {
    opacity: 0.71428;
  }
  85% {
    opacity: 0.70419;
  }
  90% {
    opacity: 0.7003;
  }
  95% {
    opacity: 0.36108;
  }
  100% {
    opacity: 0.24387;
  }
}