@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700;800&display=swap");
@import url("../node_modules/nes.css/css/nes.css");
@import url("reset.css");
@import url("fontello/css/fontello.css");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  cursor: default;
}

.retroCursor {
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAABFklEQVRYR9WXURLDIAhE6/0PbSdOtUpcd1Gnpv1KGpTHBpCE1/cXq+vrMph7dGvXZTtpfW10DCA5jrH1H0Jhs5E0hnZdCR+vb5S8Nn8mQCeS9BdSalYJqMBjAGzq59xAESN7VFVUgV8AZB/dZBR7QTFDCqGquvUBVVoEtgIwpQRzmANSFHgWQKExHdIrPeuMvQNDarXe6nC/AutgV3JW+6bgqQLeV8FekRtgV+ToDKEKnACYKsfZjjkam7a0ZpYTytwmgainpC3HvwBocgKOxqRjehoR9DFKNFYtOwCGYCszobeCbl26N6yyQ6g8X/Wex/rBPsNEV6qAMaJPMynIHQCoSqS9JSMmwef51LflTgCRszU7DvAGiV6mHWfsaVUAAAAASUVORK5CYII=), auto !important;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: white;
  z-index: 99;
}

#loader progress {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 60%;
}

.ctrli-container {
  position: relative;
  min-width: 100vw;
  min-height: 100vh;
}

.ctrli-main {
  position: absolute;
  width: auto;
  height: auto;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background-color: white;
}

.ctrli-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 40px;
  height: 40px;
  background-color: black;
  opacity: 0.7;
  border-radius: 50%;
}

header {
  position: absolute;
  top: 2%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  height: 100px;
  z-index: 99;
}

header > div {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
  padding: 15px 0;
  text-align: center;
}

header .logo {
  height: 100px;
  max-height: 16vw;
}

header nav {
  position: absolute;
}

header nav > div {
  display: block;
  position: relative;
  top: 50px;
  left: calc(100vw - 100px);
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
}

@media (max-width: 480px) {
  header nav > div {
    top: 25px;
  }
}

header nav > div input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  /* hide this */
  z-index: 2;
  /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

header nav > div span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #eff2f0;
  border-radius: 3px;
  z-index: 1;
  -webkit-transform-origin: 4px 0px;
          transform-origin: 4px 0px;
  -webkit-transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease, -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

header nav > div span:first-child {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

header nav > div span:first-child:nth-last-child(2) {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

header nav > div input:checked ~ span {
  opacity: 1;
  -webkit-transform: rotate(45deg) translate(0, -1px);
          transform: rotate(45deg) translate(0, -1px);
  background: #232323;
}

header nav > div input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  -webkit-transform: rotate(0deg) scale(0.2, 0.2);
          transform: rotate(0deg) scale(0.2, 0.2);
}

header nav > div input:checked ~ span:nth-last-child(2) {
  -webkit-transform: rotate(-45deg) translate(0, -1px);
          transform: rotate(-45deg) translate(0, -1px);
}

header nav > div ul {
  position: fixed;
  top: 0;
  width: 102vw;
  height: 102vh;
  margin: -2% 0 0;
  padding: 50px;
  padding-top: 2%;
  background: #eff2f0;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
  -webkit-transform: translate(150px, 0);
          transform: translate(150px, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

header nav > div ul li {
  text-align: center;
}

header nav > div ul li:first-child {
  padding: 0 0 40px;
}

header nav > div ul li a {
  display: inline-block;
  font-family: 'Open Sans', sans-serif;
  font-size: 28px;
  padding: 12px 0;
  color: #6e7c7c;
  cursor: pointer;
}

header nav > div ul li a:hover {
  color: #001a70;
  text-decoration: none;
}

header nav > div ul li:last-child {
  padding: 30px 0 0;
}

header nav > div ul li:last-child a {
  font-size: 22px;
  color: #ededed;
  border: 1px solid #001a70;
  background: #001a70;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  margin: 0 8px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

header nav > div ul li:last-child a:hover {
  color: #001a70;
  background: none;
}

header nav > div ul li:last-child a.icon-instagram {
  line-height: 36px;
}

header nav > div input:checked ~ ul {
  -webkit-transform: translate(calc(-100vw - -49px), 0);
          transform: translate(calc(-100vw - -49px), 0);
}

.hidden {
  display: none;
}

.center, .slider button, .slider .button, .form-print > div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.text-center {
  text-align: center;
}

.w100 {
  width: 100%;
}

.red {
  color: #c1282e;
}

.blue {
  color: #001a70;
}

.gray {
  color: #262b2d;
}

.border, .prints3d.prints3d > div > div .video {
  display: inline-block;
  padding: 12px;
  border: 10px double rgba(193, 40, 46, 0.2);
  border-radius: 8px;
}

button, .button {
  display: inline-block;
  margin: 20px auto 0;
  padding: 10px 55px;
  font-size: 16px;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  background: #c1282e;
  border: 1px solid #c1282e;
  border: 0;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  text-align: center;
}

button:hover, .button:hover {
  color: #c1282e;
  border-color: #c1282e;
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.swiper-button-prev.swiper-button-prev, .swiper-button-next.swiper-button-prev {
  left: 5%;
  opacity: .7;
}

.swiper-button-prev.swiper-button-next, .swiper-button-next.swiper-button-next {
  right: 5%;
  opacity: .7;
}

.swiper-button-prev:before, .swiper-button-next:before {
  font-size: 30px;
  color: white;
}

.swiper-button-prev:after, .swiper-button-next:after {
  display: none;
}

/*

$outline-width: 6px;
$shadow-width: 4px;

$button-background: #92CD41;
$sec-button-background: #76c442;
$shadow-color:  #4AA52E;

$alt-button-background: #F7D51D;
$alt-sec-button-background: #F2C409;
$alt-shadow-color:  #E59400;

$reset-button-background: #E76E55;
$reset-sec-button-background: #CE372B;
$reset-shadow-color:  #8C2022;

.eightbit-btn {
    background: $button-background;
    display: inline-block;
    position: relative;
    text-align: center;
    font-size: 30px;
    padding: 20px;
    font-family: 'Press Start 2P', cursive;
    text-decoration: none; 
    color: white;
    box-shadow: inset (-$shadow-width) (-$shadow-width) 0px 0px $shadow-color;

    &:hover,
    &:focus {
        background: $sec-button-background;
        box-shadow: inset (-$shadow-width*1.5) (-$shadow-width*1.5) 0px 0px $shadow-color;
    }

    &:active {
        box-shadow: inset $shadow-width $shadow-width 0px 0px $shadow-color;
    }

    &:before,
    &:after {
    content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        box-sizing: content-box;
    }

    &:before {
        top: -$outline-width;
        left: 0;
        border-top: $outline-width black solid;
        border-bottom: $outline-width black solid;
    }

    &:after {
        left: -$outline-width;
        top: 0;
        border-left: $outline-width black solid;
        border-right: $outline-width black solid;
    }

    &--reset {
        background: $reset-button-background;
        box-shadow: inset (-$shadow-width) (-$shadow-width) 0px 0px $reset-shadow-color;

        &:hover,
        &:focus {
            background: $reset-sec-button-background;
            box-shadow: inset (-$shadow-width*1.5) (-$shadow-width*1.5) 0px 0px $reset-shadow-color;
        }

        &:active {
            box-shadow: inset $shadow-width $shadow-width 0px 0px $reset-shadow-color;
        }

    }

    &--proceed {
        background: $alt-button-background;
        box-shadow: inset (-$shadow-width) (-$shadow-width) 0px 0px $alt-shadow-color;

        &:hover,
        &:focus {
            background: $alt-sec-button-background;
            box-shadow: inset (-$shadow-width*1.5) (-$shadow-width*1.5) 0px 0px $alt-shadow-color;
        }

        &:active {
            box-shadow: inset $shadow-width $shadow-width 0px 0px $alt-shadow-color;
        }

    }
}



////////////////////////////////////////
// GLOBAL SETUP 
////////////////////////////////////////

$wrapper-max-width: 1000px;

*,*:before,*:after {
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    max-width: $wrapper-max-width;
    margin: 0 auto;
    padding: 30px;
    font-family: 'Maven Pro', sans-serif;
    text-align: center;
}

h1 {
    font-size: 2.8rem;
    line-height: 3.4rem;
}

h2 {
    font-size: 2rem;
}

h1,h2 {
    font-family: 'Press Start 2P', cursive;
}

p {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

hr {
    margin: 40px auto;
    max-width: 100px;
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    padding: 0; 
}

.pen-intro {
    text-align: center;
}
*/
.crt {
  position: relative;
  background-color: #001a70;
  height: 100%;
}

.crt:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(18, 16, 16, 0.1);
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  -webkit-animation: flicker 0.15s infinite;
          animation: flicker 0.15s infinite;
}

.crt:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(18, 16, 16, 0)), color-stop(50%, rgba(0, 0, 0, 0.25))), -webkit-gradient(linear, left top, right top, from(rgba(255, 0, 0, 0.06)), color-stop(rgba(0, 255, 0, 0.02)), to(rgba(0, 0, 255, 0.06)));
  background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
  z-index: 2;
  background-size: 100% 2px, 3px 100%;
  pointer-events: none;
}

.crt * {
  -webkit-animation: textShadow 1.6s infinite;
          animation: textShadow 1.6s infinite;
}

@-webkit-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;
  }
}

@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;
  }
}

@-webkit-keyframes textShadow {
  0% {
    text-shadow: 0.43899px 0 1px rgba(0, 30, 255, 0.5), -0.43899px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  5% {
    text-shadow: 2.7929px 0 1px rgba(0, 30, 255, 0.5), -2.7929px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  10% {
    text-shadow: 0.02956px 0 1px rgba(0, 30, 255, 0.5), -0.02956px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  15% {
    text-shadow: 0.40219px 0 1px rgba(0, 30, 255, 0.5), -0.40219px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  20% {
    text-shadow: 3.4794px 0 1px rgba(0, 30, 255, 0.5), -3.4794px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  25% {
    text-shadow: 1.61256px 0 1px rgba(0, 30, 255, 0.5), -1.61256px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  30% {
    text-shadow: 0.70156px 0 1px rgba(0, 30, 255, 0.5), -0.70156px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  35% {
    text-shadow: 3.89691px 0 1px rgba(0, 30, 255, 0.5), -3.89691px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  40% {
    text-shadow: 3.87091px 0 1px rgba(0, 30, 255, 0.5), -3.87091px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  45% {
    text-shadow: 2.23106px 0 1px rgba(0, 30, 255, 0.5), -2.23106px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  50% {
    text-shadow: 0.08084px 0 1px rgba(0, 30, 255, 0.5), -0.08084px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  55% {
    text-shadow: 2.37585px 0 1px rgba(0, 30, 255, 0.5), -2.37585px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  60% {
    text-shadow: 2.20219px 0 1px rgba(0, 30, 255, 0.5), -2.20219px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  65% {
    text-shadow: 2.86388px 0 1px rgba(0, 30, 255, 0.5), -2.86388px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  70% {
    text-shadow: 0.48874px 0 1px rgba(0, 30, 255, 0.5), -0.48874px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  75% {
    text-shadow: 1.89485px 0 1px rgba(0, 30, 255, 0.5), -1.89485px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  80% {
    text-shadow: 0.0833px 0 1px rgba(0, 30, 255, 0.5), -0.0833px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  85% {
    text-shadow: 0.0977px 0 1px rgba(0, 30, 255, 0.5), -0.0977px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  90% {
    text-shadow: 3.44334px 0 1px rgba(0, 30, 255, 0.5), -3.44334px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  95% {
    text-shadow: 2.18418px 0 1px rgba(0, 30, 255, 0.5), -2.18418px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  100% {
    text-shadow: 2.62088px 0 1px rgba(0, 30, 255, 0.5), -2.62088px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
}

@keyframes textShadow {
  0% {
    text-shadow: 0.43899px 0 1px rgba(0, 30, 255, 0.5), -0.43899px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  5% {
    text-shadow: 2.7929px 0 1px rgba(0, 30, 255, 0.5), -2.7929px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  10% {
    text-shadow: 0.02956px 0 1px rgba(0, 30, 255, 0.5), -0.02956px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  15% {
    text-shadow: 0.40219px 0 1px rgba(0, 30, 255, 0.5), -0.40219px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  20% {
    text-shadow: 3.4794px 0 1px rgba(0, 30, 255, 0.5), -3.4794px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  25% {
    text-shadow: 1.61256px 0 1px rgba(0, 30, 255, 0.5), -1.61256px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  30% {
    text-shadow: 0.70156px 0 1px rgba(0, 30, 255, 0.5), -0.70156px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  35% {
    text-shadow: 3.89691px 0 1px rgba(0, 30, 255, 0.5), -3.89691px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  40% {
    text-shadow: 3.87091px 0 1px rgba(0, 30, 255, 0.5), -3.87091px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  45% {
    text-shadow: 2.23106px 0 1px rgba(0, 30, 255, 0.5), -2.23106px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  50% {
    text-shadow: 0.08084px 0 1px rgba(0, 30, 255, 0.5), -0.08084px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  55% {
    text-shadow: 2.37585px 0 1px rgba(0, 30, 255, 0.5), -2.37585px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  60% {
    text-shadow: 2.20219px 0 1px rgba(0, 30, 255, 0.5), -2.20219px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  65% {
    text-shadow: 2.86388px 0 1px rgba(0, 30, 255, 0.5), -2.86388px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  70% {
    text-shadow: 0.48874px 0 1px rgba(0, 30, 255, 0.5), -0.48874px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  75% {
    text-shadow: 1.89485px 0 1px rgba(0, 30, 255, 0.5), -1.89485px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  80% {
    text-shadow: 0.0833px 0 1px rgba(0, 30, 255, 0.5), -0.0833px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  85% {
    text-shadow: 0.0977px 0 1px rgba(0, 30, 255, 0.5), -0.0977px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  90% {
    text-shadow: 3.44334px 0 1px rgba(0, 30, 255, 0.5), -3.44334px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  95% {
    text-shadow: 2.18418px 0 1px rgba(0, 30, 255, 0.5), -2.18418px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
  100% {
    text-shadow: 2.62088px 0 1px rgba(0, 30, 255, 0.5), -2.62088px 0 1px rgba(255, 0, 80, 0.3), 0 0 3px;
  }
}

.slider .swiper-slide {
  height: 100vh;
}

@media (max-width: 480px) {
  .slider .swiper-slide {
    height: 48vh;
  }
}

.slider .center, .slider button, .slider .button, .slider .form-print > div {
  top: 54%;
}

.slider .title {
  display: block;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  font-size: 5vw;
  line-height: 6vw;
  letter-spacing: -1px;
  font-weight: 700;
  color: white;
  margin: 0;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
}

.slider .title span {
  display: block;
  font-size: 8vw;
  line-height: 8vw;
  letter-spacing: -1px;
  font-weight: 800;
}

.slider button, .slider .button {
  top: 73%;
}

.slider .crt {
  background: url(../img/slide1.jpg) no-repeat center bottom/cover #001a70;
  background-size: 78vh;
}

@media (max-width: 480px) {
  .slider .crt {
    background-size: 39vh;
  }
}

.slider .crt button, .slider .crt .button {
  border: 1px solid #c1282e;
  position: relative;
  z-index: 2;
}

.slider .crt button:hover, .slider .crt .button:hover {
  border-color: #c1282e !important;
}

.slider .crt #game {
  position: absolute;
  top: 15px;
  width: 100%;
  height: 100%;
  z-index: 1;
}

@media (max-width: 480px) {
  .slider .crt #game {
    height: 48vh;
  }
}

.slider .crt #game canvas {
  height: 100%;
}

.slider .print3d {
  background: url(../img/slide2.jpg) no-repeat center/cover;
  height: 100%;
}

.slider .print3d:before, .slider .print3d:after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/back-print3d-v.png) repeat;
  z-index: 0;
  opacity: 0;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.slider .print3d:after {
  top: 0;
  left: 100%;
  background: url(../img/back-print3d.png) repeat;
}

.slider .print3d:hover:before, .slider .print3d:hover:after {
  top: 0;
  left: 0;
  opacity: .4;
}

.slider .print3d .center, .slider .print3d button, .slider .print3d .button, .slider .print3d .form-print > div {
  z-index: 1;
}

.slider .print3d button, .slider .print3d .button {
  border: 1px solid #001a70;
  background: #001a70;
}

.slider .print3d button:hover, .slider .print3d .button:hover {
  color: white;
  border-color: white;
  background: transparent;
}

.slider .print3d .border, .slider .print3d .prints3d.prints3d > div > div .video, .prints3d.prints3d > div > div .slider .print3d .video {
  border-color: rgba(255, 255, 255, 0.4);
}

.slogan > div, .arcades > div, .prints3d > div, .videogames > div, .contact > div, .map > div {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.slogan > div > div, .arcades > div > div, .prints3d > div > div, .videogames > div > div, .contact > div > div, .map > div > div {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
}

.slogan > div .title, .arcades > div .title, .prints3d > div .title, .videogames > div .title, .contact > div .title, .map > div .title {
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 20px;
}

.slogan > div p, .arcades > div p, .prints3d > div p, .videogames > div p, .contact > div p, .map > div p {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 20px;
}

@media (max-width: 780px) {
  .slogan > div > div, .arcades > div > div, .prints3d > div > div, .videogames > div > div, .contact > div > div, .map > div > div {
    width: 100%;
  }
}

.slogan.slogan > div, .arcades.slogan > div, .prints3d.slogan > div, .videogames.slogan > div, .contact.slogan > div, .map.slogan > div {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}

.slogan.slogan > div h2, .arcades.slogan > div h2, .prints3d.slogan > div h2, .videogames.slogan > div h2, .contact.slogan > div h2, .map.slogan > div h2 {
  font-size: 28px;
  line-height: 34px;
  font-weight: 800;
  margin: 0 0 10px;
}

.slogan.slogan > div h3, .arcades.slogan > div h3, .prints3d.slogan > div h3, .videogames.slogan > div h3, .contact.slogan > div h3, .map.slogan > div h3 {
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 10px;
}

.slogan.slogan > div p, .arcades.slogan > div p, .prints3d.slogan > div p, .videogames.slogan > div p, .contact.slogan > div p, .map.slogan > div p {
  font-size: 28px;
  line-height: 32px;
  font-weight: 700;
}

.slogan.slogan > div a, .arcades.slogan > div a, .prints3d.slogan > div a, .videogames.slogan > div a, .contact.slogan > div a, .map.slogan > div a {
  font-size: 28px;
  line-height: 32px;
  font-weight: 800;
}

.slogan.arcades, .arcades.arcades, .prints3d.arcades, .videogames.arcades, .contact.arcades, .map.arcades {
  position: relative;
  background: url(../img/fondopartearcades.png) no-repeat center/cover #eff2f0;
  min-height: 560px;
}

.slogan.arcades:before, .arcades.arcades:before, .prints3d.arcades:before, .videogames.arcades:before, .contact.arcades:before, .map.arcades:before {
  content: '';
  position: absolute;
  left: -50%;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-right: 100vw solid transparent;
  border-top: 80px solid white;
}

.slogan.arcades:after, .arcades.arcades:after, .prints3d.arcades:after, .videogames.arcades:after, .contact.arcades:after, .map.arcades:after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -50%;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-right: 100vw solid transparent;
  border-bottom: 80px solid white;
}

.slogan.arcades .title, .arcades.arcades .title, .prints3d.arcades .title, .videogames.arcades .title, .contact.arcades .title, .map.arcades .title {
  margin: 40px 0 20px;
}

.slogan.arcades .arcade, .slogan.arcades .detail, .arcades.arcades .arcade, .arcades.arcades .detail, .prints3d.arcades .arcade, .prints3d.arcades .detail, .videogames.arcades .arcade, .videogames.arcades .detail, .contact.arcades .arcade, .contact.arcades .detail, .map.arcades .arcade, .map.arcades .detail {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
}

.slogan.arcades .arcade.arcade, .slogan.arcades .detail.arcade, .arcades.arcades .arcade.arcade, .arcades.arcades .detail.arcade, .prints3d.arcades .arcade.arcade, .prints3d.arcades .detail.arcade, .videogames.arcades .arcade.arcade, .videogames.arcades .detail.arcade, .contact.arcades .arcade.arcade, .contact.arcades .detail.arcade, .map.arcades .arcade.arcade, .map.arcades .detail.arcade {
  width: auto;
  height: 100%;
  margin: 0 auto 0 50px;
}

@media (max-width: 480px) {
  .slogan.arcades .arcade.arcade, .slogan.arcades .detail.arcade, .arcades.arcades .arcade.arcade, .arcades.arcades .detail.arcade, .prints3d.arcades .arcade.arcade, .prints3d.arcades .detail.arcade, .videogames.arcades .arcade.arcade, .videogames.arcades .detail.arcade, .contact.arcades .arcade.arcade, .contact.arcades .detail.arcade, .map.arcades .arcade.arcade, .map.arcades .detail.arcade {
    margin: 0 auto;
  }
}

.slogan.arcades .arcade.detail, .slogan.arcades .detail.detail, .arcades.arcades .arcade.detail, .arcades.arcades .detail.detail, .prints3d.arcades .arcade.detail, .prints3d.arcades .detail.detail, .videogames.arcades .arcade.detail, .videogames.arcades .detail.detail, .contact.arcades .arcade.detail, .contact.arcades .detail.detail, .map.arcades .arcade.detail, .map.arcades .detail.detail {
  position: absolute;
  top: 100px;
  left: 20px;
  border: 5px solid #c1282e;
  background: #c1282e;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  overflow: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.slogan.arcades .arcade.detail img, .slogan.arcades .detail.detail img, .arcades.arcades .arcade.detail img, .arcades.arcades .detail.detail img, .prints3d.arcades .arcade.detail img, .prints3d.arcades .detail.detail img, .videogames.arcades .arcade.detail img, .videogames.arcades .detail.detail img, .contact.arcades .arcade.detail img, .contact.arcades .detail.detail img, .map.arcades .arcade.detail img, .map.arcades .detail.detail img {
  opacity: 0;
  width: 100%;
}

.slogan.arcades .arcade.detail:hover, .slogan.arcades .arcade.detail.active, .slogan.arcades .detail.detail:hover, .slogan.arcades .detail.detail.active, .arcades.arcades .arcade.detail:hover, .arcades.arcades .arcade.detail.active, .arcades.arcades .detail.detail:hover, .arcades.arcades .detail.detail.active, .prints3d.arcades .arcade.detail:hover, .prints3d.arcades .arcade.detail.active, .prints3d.arcades .detail.detail:hover, .prints3d.arcades .detail.detail.active, .videogames.arcades .arcade.detail:hover, .videogames.arcades .arcade.detail.active, .videogames.arcades .detail.detail:hover, .videogames.arcades .detail.detail.active, .contact.arcades .arcade.detail:hover, .contact.arcades .arcade.detail.active, .contact.arcades .detail.detail:hover, .contact.arcades .detail.detail.active, .map.arcades .arcade.detail:hover, .map.arcades .arcade.detail.active, .map.arcades .detail.detail:hover, .map.arcades .detail.detail.active {
  border: 1px solid #c1282e;
  background: white;
  -webkit-transform: scale(6);
          transform: scale(6);
  z-index: 1;
}

.slogan.arcades .arcade.detail:hover img, .slogan.arcades .arcade.detail.active img, .slogan.arcades .detail.detail:hover img, .slogan.arcades .detail.detail.active img, .arcades.arcades .arcade.detail:hover img, .arcades.arcades .arcade.detail.active img, .arcades.arcades .detail.detail:hover img, .arcades.arcades .detail.detail.active img, .prints3d.arcades .arcade.detail:hover img, .prints3d.arcades .arcade.detail.active img, .prints3d.arcades .detail.detail:hover img, .prints3d.arcades .detail.detail.active img, .videogames.arcades .arcade.detail:hover img, .videogames.arcades .arcade.detail.active img, .videogames.arcades .detail.detail:hover img, .videogames.arcades .detail.detail.active img, .contact.arcades .arcade.detail:hover img, .contact.arcades .arcade.detail.active img, .contact.arcades .detail.detail:hover img, .contact.arcades .detail.detail.active img, .map.arcades .arcade.detail:hover img, .map.arcades .arcade.detail.active img, .map.arcades .detail.detail:hover img, .map.arcades .detail.detail.active img {
  opacity: 1;
}

.slogan.arcades .arcade.detail:nth-of-type(1), .slogan.arcades .detail.detail:nth-of-type(1), .arcades.arcades .arcade.detail:nth-of-type(1), .arcades.arcades .detail.detail:nth-of-type(1), .prints3d.arcades .arcade.detail:nth-of-type(1), .prints3d.arcades .detail.detail:nth-of-type(1), .videogames.arcades .arcade.detail:nth-of-type(1), .videogames.arcades .detail.detail:nth-of-type(1), .contact.arcades .arcade.detail:nth-of-type(1), .contact.arcades .detail.detail:nth-of-type(1), .map.arcades .arcade.detail:nth-of-type(1), .map.arcades .detail.detail:nth-of-type(1) {
  top: 184px;
  left: 133px;
}

@media (max-width: 480px) {
  .slogan.arcades .arcade.detail:nth-of-type(1), .slogan.arcades .detail.detail:nth-of-type(1), .arcades.arcades .arcade.detail:nth-of-type(1), .arcades.arcades .detail.detail:nth-of-type(1), .prints3d.arcades .arcade.detail:nth-of-type(1), .prints3d.arcades .detail.detail:nth-of-type(1), .videogames.arcades .arcade.detail:nth-of-type(1), .videogames.arcades .detail.detail:nth-of-type(1), .contact.arcades .arcade.detail:nth-of-type(1), .contact.arcades .detail.detail:nth-of-type(1), .map.arcades .arcade.detail:nth-of-type(1), .map.arcades .detail.detail:nth-of-type(1) {
    left: 90px;
  }
}

.slogan.arcades .arcade.detail:nth-of-type(2), .slogan.arcades .detail.detail:nth-of-type(2), .arcades.arcades .arcade.detail:nth-of-type(2), .arcades.arcades .detail.detail:nth-of-type(2), .prints3d.arcades .arcade.detail:nth-of-type(2), .prints3d.arcades .detail.detail:nth-of-type(2), .videogames.arcades .arcade.detail:nth-of-type(2), .videogames.arcades .detail.detail:nth-of-type(2), .contact.arcades .arcade.detail:nth-of-type(2), .contact.arcades .detail.detail:nth-of-type(2), .map.arcades .arcade.detail:nth-of-type(2), .map.arcades .detail.detail:nth-of-type(2) {
  top: 270px;
  left: 250px;
}

@media (max-width: 480px) {
  .slogan.arcades .arcade.detail:nth-of-type(2), .slogan.arcades .detail.detail:nth-of-type(2), .arcades.arcades .arcade.detail:nth-of-type(2), .arcades.arcades .detail.detail:nth-of-type(2), .prints3d.arcades .arcade.detail:nth-of-type(2), .prints3d.arcades .detail.detail:nth-of-type(2), .videogames.arcades .arcade.detail:nth-of-type(2), .videogames.arcades .detail.detail:nth-of-type(2), .contact.arcades .arcade.detail:nth-of-type(2), .contact.arcades .detail.detail:nth-of-type(2), .map.arcades .arcade.detail:nth-of-type(2), .map.arcades .detail.detail:nth-of-type(2) {
    left: 210px;
  }
}

.slogan.arcades .arcade.detail:nth-of-type(3), .slogan.arcades .detail.detail:nth-of-type(3), .arcades.arcades .arcade.detail:nth-of-type(3), .arcades.arcades .detail.detail:nth-of-type(3), .prints3d.arcades .arcade.detail:nth-of-type(3), .prints3d.arcades .detail.detail:nth-of-type(3), .videogames.arcades .arcade.detail:nth-of-type(3), .videogames.arcades .detail.detail:nth-of-type(3), .contact.arcades .arcade.detail:nth-of-type(3), .contact.arcades .detail.detail:nth-of-type(3), .map.arcades .arcade.detail:nth-of-type(3), .map.arcades .detail.detail:nth-of-type(3) {
  top: 10px;
  left: 230px;
}

@media (max-width: 480px) {
  .slogan.arcades .arcade.detail:nth-of-type(3), .slogan.arcades .detail.detail:nth-of-type(3), .arcades.arcades .arcade.detail:nth-of-type(3), .arcades.arcades .detail.detail:nth-of-type(3), .prints3d.arcades .arcade.detail:nth-of-type(3), .prints3d.arcades .detail.detail:nth-of-type(3), .videogames.arcades .arcade.detail:nth-of-type(3), .videogames.arcades .detail.detail:nth-of-type(3), .contact.arcades .arcade.detail:nth-of-type(3), .contact.arcades .detail.detail:nth-of-type(3), .map.arcades .arcade.detail:nth-of-type(3), .map.arcades .detail.detail:nth-of-type(3) {
    left: 170px;
  }
}

.slogan.arcades .arcade.detail:nth-of-type(4), .slogan.arcades .detail.detail:nth-of-type(4), .arcades.arcades .arcade.detail:nth-of-type(4), .arcades.arcades .detail.detail:nth-of-type(4), .prints3d.arcades .arcade.detail:nth-of-type(4), .prints3d.arcades .detail.detail:nth-of-type(4), .videogames.arcades .arcade.detail:nth-of-type(4), .videogames.arcades .detail.detail:nth-of-type(4), .contact.arcades .arcade.detail:nth-of-type(4), .contact.arcades .detail.detail:nth-of-type(4), .map.arcades .arcade.detail:nth-of-type(4), .map.arcades .detail.detail:nth-of-type(4) {
  top: 120px;
  left: 50px;
}

@media (max-width: 480px) {
  .slogan.arcades .arcade.detail:nth-of-type(4), .slogan.arcades .detail.detail:nth-of-type(4), .arcades.arcades .arcade.detail:nth-of-type(4), .arcades.arcades .detail.detail:nth-of-type(4), .prints3d.arcades .arcade.detail:nth-of-type(4), .prints3d.arcades .detail.detail:nth-of-type(4), .videogames.arcades .arcade.detail:nth-of-type(4), .videogames.arcades .detail.detail:nth-of-type(4), .contact.arcades .arcade.detail:nth-of-type(4), .contact.arcades .detail.detail:nth-of-type(4), .map.arcades .arcade.detail:nth-of-type(4), .map.arcades .detail.detail:nth-of-type(4) {
    left: 40px;
  }
}

.slogan.arcades .arcade.detail:nth-of-type(5), .slogan.arcades .detail.detail:nth-of-type(5), .arcades.arcades .arcade.detail:nth-of-type(5), .arcades.arcades .detail.detail:nth-of-type(5), .prints3d.arcades .arcade.detail:nth-of-type(5), .prints3d.arcades .detail.detail:nth-of-type(5), .videogames.arcades .arcade.detail:nth-of-type(5), .videogames.arcades .detail.detail:nth-of-type(5), .contact.arcades .arcade.detail:nth-of-type(5), .contact.arcades .detail.detail:nth-of-type(5), .map.arcades .arcade.detail:nth-of-type(5), .map.arcades .detail.detail:nth-of-type(5) {
  top: 420px;
  left: 240px;
}

@media (max-width: 480px) {
  .slogan.arcades .arcade.detail:nth-of-type(5), .slogan.arcades .detail.detail:nth-of-type(5), .arcades.arcades .arcade.detail:nth-of-type(5), .arcades.arcades .detail.detail:nth-of-type(5), .prints3d.arcades .arcade.detail:nth-of-type(5), .prints3d.arcades .detail.detail:nth-of-type(5), .videogames.arcades .arcade.detail:nth-of-type(5), .videogames.arcades .detail.detail:nth-of-type(5), .contact.arcades .arcade.detail:nth-of-type(5), .contact.arcades .detail.detail:nth-of-type(5), .map.arcades .arcade.detail:nth-of-type(5), .map.arcades .detail.detail:nth-of-type(5) {
    left: 40px;
  }
}

.slogan.arcades .arcade.detail:nth-of-type(6), .slogan.arcades .detail.detail:nth-of-type(6), .arcades.arcades .arcade.detail:nth-of-type(6), .arcades.arcades .detail.detail:nth-of-type(6), .prints3d.arcades .arcade.detail:nth-of-type(6), .prints3d.arcades .detail.detail:nth-of-type(6), .videogames.arcades .arcade.detail:nth-of-type(6), .videogames.arcades .detail.detail:nth-of-type(6), .contact.arcades .arcade.detail:nth-of-type(6), .contact.arcades .detail.detail:nth-of-type(6), .map.arcades .arcade.detail:nth-of-type(6), .map.arcades .detail.detail:nth-of-type(6) {
  top: 150px;
  left: 212px;
}

@media (max-width: 480px) {
  .slogan.arcades .arcade.detail:nth-of-type(6), .slogan.arcades .detail.detail:nth-of-type(6), .arcades.arcades .arcade.detail:nth-of-type(6), .arcades.arcades .detail.detail:nth-of-type(6), .prints3d.arcades .arcade.detail:nth-of-type(6), .prints3d.arcades .detail.detail:nth-of-type(6), .videogames.arcades .arcade.detail:nth-of-type(6), .videogames.arcades .detail.detail:nth-of-type(6), .contact.arcades .arcade.detail:nth-of-type(6), .contact.arcades .detail.detail:nth-of-type(6), .map.arcades .arcade.detail:nth-of-type(6), .map.arcades .detail.detail:nth-of-type(6) {
    left: 40px;
  }
}

.slogan.arcades .details, .arcades.arcades .details, .prints3d.arcades .details, .videogames.arcades .details, .contact.arcades .details, .map.arcades .details {
  margin: 0 0 20px;
}

.slogan.arcades .details > div, .arcades.arcades .details > div, .prints3d.arcades .details > div, .videogames.arcades .details > div, .contact.arcades .details > div, .map.arcades .details > div {
  display: inline-block;
  vertical-align: middle;
  width: 50%;
  font-size: 13px;
  padding: 5px 0;
}

.slogan.arcades .details > div:before, .arcades.arcades .details > div:before, .prints3d.arcades .details > div:before, .videogames.arcades .details > div:before, .contact.arcades .details > div:before, .map.arcades .details > div:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 10px;
  height: 10px;
  background: #c1282e;
  border-radius: 50%;
  margin: 0 5px 0 0;
}

.slogan.arcades .details > div:hover, .slogan.arcades .details > div.active, .arcades.arcades .details > div:hover, .arcades.arcades .details > div.active, .prints3d.arcades .details > div:hover, .prints3d.arcades .details > div.active, .videogames.arcades .details > div:hover, .videogames.arcades .details > div.active, .contact.arcades .details > div:hover, .contact.arcades .details > div.active, .map.arcades .details > div:hover, .map.arcades .details > div.active {
  color: #c1282e;
}

.slogan.arcades .details > div:hover:before, .slogan.arcades .details > div.active:before, .arcades.arcades .details > div:hover:before, .arcades.arcades .details > div.active:before, .prints3d.arcades .details > div:hover:before, .prints3d.arcades .details > div.active:before, .videogames.arcades .details > div:hover:before, .videogames.arcades .details > div.active:before, .contact.arcades .details > div:hover:before, .contact.arcades .details > div.active:before, .map.arcades .details > div:hover:before, .map.arcades .details > div.active:before {
  scale: 1.1;
}

.slogan.arcades > div, .arcades.arcades > div, .prints3d.arcades > div, .videogames.arcades > div, .contact.arcades > div, .map.arcades > div {
  position: relative;
}

.slogan.arcades > div > div, .arcades.arcades > div > div, .prints3d.arcades > div > div, .videogames.arcades > div > div, .contact.arcades > div > div, .map.arcades > div > div {
  position: relative;
  z-index: 1;
}

.slogan.arcades > div > div:nth-of-type(1), .arcades.arcades > div > div:nth-of-type(1), .prints3d.arcades > div > div:nth-of-type(1), .videogames.arcades > div > div:nth-of-type(1), .contact.arcades > div > div:nth-of-type(1), .map.arcades > div > div:nth-of-type(1) {
  height: 600px;
}

.slogan.arcades > div > div .title, .arcades.arcades > div > div .title, .prints3d.arcades > div > div .title, .videogames.arcades > div > div .title, .contact.arcades > div > div .title, .map.arcades > div > div .title {
  color: #001a70;
}

.slogan.arcades > div > div button, .slogan.arcades > div > div .button, .arcades.arcades > div > div button, .arcades.arcades > div > div .button, .prints3d.arcades > div > div button, .prints3d.arcades > div > div .button, .videogames.arcades > div > div button, .videogames.arcades > div > div .button, .contact.arcades > div > div button, .contact.arcades > div > div .button, .map.arcades > div > div button, .map.arcades > div > div .button {
  border: 1px solid #001a70;
  background: #001a70;
  margin: 0;
}

.slogan.arcades > div > div button:hover, .slogan.arcades > div > div .button:hover, .arcades.arcades > div > div button:hover, .arcades.arcades > div > div .button:hover, .prints3d.arcades > div > div button:hover, .prints3d.arcades > div > div .button:hover, .videogames.arcades > div > div button:hover, .videogames.arcades > div > div .button:hover, .contact.arcades > div > div button:hover, .contact.arcades > div > div .button:hover, .map.arcades > div > div button:hover, .map.arcades > div > div .button:hover {
  color: #001a70;
  border-color: #001a70;
  background: transparent;
}

.slogan.prints3d, .arcades.prints3d, .prints3d.prints3d, .videogames.prints3d, .contact.prints3d, .map.prints3d {
  position: relative;
  padding: 80px 0 0;
}

.slogan.prints3d > div > div .video, .arcades.prints3d > div > div .video, .prints3d.prints3d > div > div .video, .videogames.prints3d > div > div .video, .contact.prints3d > div > div .video, .map.prints3d > div > div .video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 0 auto;
  max-width: 221px;
  display: block;
  padding: 178px 160px;
}

.slogan.prints3d > div > div .video video, .arcades.prints3d > div > div .video video, .prints3d.prints3d > div > div .video video, .videogames.prints3d > div > div .video video, .contact.prints3d > div > div .video video, .map.prints3d > div > div .video video {
  position: absolute;
  top: -45px;
  left: 0;
  width: 100%;
  height: calc(100% + 90px);
}

.slogan.prints3d > div > div .title, .arcades.prints3d > div > div .title, .prints3d.prints3d > div > div .title, .videogames.prints3d > div > div .title, .contact.prints3d > div > div .title, .map.prints3d > div > div .title {
  color: #c1282e;
}

.slogan.prints3d > div > div button, .slogan.prints3d > div > div .button, .arcades.prints3d > div > div button, .arcades.prints3d > div > div .button, .prints3d.prints3d > div > div button, .prints3d.prints3d > div > div .button, .videogames.prints3d > div > div button, .videogames.prints3d > div > div .button, .contact.prints3d > div > div button, .contact.prints3d > div > div .button, .map.prints3d > div > div button, .map.prints3d > div > div .button {
  border: 1px solid #c1282e;
  margin: 0;
}

.slogan.prints3d > div > div button:hover, .slogan.prints3d > div > div .button:hover, .arcades.prints3d > div > div button:hover, .arcades.prints3d > div > div .button:hover, .prints3d.prints3d > div > div button:hover, .prints3d.prints3d > div > div .button:hover, .videogames.prints3d > div > div button:hover, .videogames.prints3d > div > div .button:hover, .contact.prints3d > div > div button:hover, .contact.prints3d > div > div .button:hover, .map.prints3d > div > div button:hover, .map.prints3d > div > div .button:hover {
  border-color: #c1282e;
}

.slogan.prints3d > div > div a, .arcades.prints3d > div > div a, .prints3d.prints3d > div > div a, .videogames.prints3d > div > div a, .contact.prints3d > div > div a, .map.prints3d > div > div a {
  cursor: pointer !important;
}

.slogan.videogames, .arcades.videogames, .prints3d.videogames, .videogames.videogames, .contact.videogames, .map.videogames {
  position: relative;
  background: url(../img/back-videogames.png) no-repeat center bottom/cover #eff2f0;
  background-size: 1600px;
  height: 790px;
}

@media (max-width: 840px) {
  .slogan.videogames, .arcades.videogames, .prints3d.videogames, .videogames.videogames, .contact.videogames, .map.videogames {
    height: auto;
  }
}

.slogan.videogames:before, .arcades.videogames:before, .prints3d.videogames:before, .videogames.videogames:before, .contact.videogames:before, .map.videogames:before {
  content: '';
  position: absolute;
  left: -50%;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-right: 100vw solid transparent;
  border-top: 80px solid white;
  z-index: 3;
}

.slogan.videogames:after, .arcades.videogames:after, .prints3d.videogames:after, .videogames.videogames:after, .contact.videogames:after, .map.videogames:after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 100%;
  height: 100%;
  background: url(../img/videogames.png) no-repeat center bottom;
  background-size: 65%;
  max-width: 1250px;
  z-index: 2;
}

@media (max-width: 840px) {
  .slogan.videogames:after, .arcades.videogames:after, .prints3d.videogames:after, .videogames.videogames:after, .contact.videogames:after, .map.videogames:after {
    background-image: none;
  }
}

.slogan.videogames > div, .arcades.videogames > div, .prints3d.videogames > div, .videogames.videogames > div, .contact.videogames > div, .map.videogames > div {
  position: relative;
  z-index: 3;
}

@media (max-width: 840px) {
  .slogan.videogames > div, .arcades.videogames > div, .prints3d.videogames > div, .videogames.videogames > div, .contact.videogames > div, .map.videogames > div {
    padding: 100px 0 70px;
  }
}

.slogan.videogames > div > div, .arcades.videogames > div > div, .prints3d.videogames > div > div, .videogames.videogames > div > div, .contact.videogames > div > div, .map.videogames > div > div {
  padding: 130px 0 60px;
}

@media (max-width: 840px) {
  .slogan.videogames > div > div, .arcades.videogames > div > div, .prints3d.videogames > div > div, .videogames.videogames > div > div, .contact.videogames > div > div, .map.videogames > div > div {
    padding: 30px 0;
    width: 100%;
  }
}

.slogan.videogames > div > div .title, .arcades.videogames > div > div .title, .prints3d.videogames > div > div .title, .videogames.videogames > div > div .title, .contact.videogames > div > div .title, .map.videogames > div > div .title {
  color: #001a70;
}

.slogan.videogames > div > div:nth-of-type(1), .arcades.videogames > div > div:nth-of-type(1), .prints3d.videogames > div > div:nth-of-type(1), .videogames.videogames > div > div:nth-of-type(1), .contact.videogames > div > div:nth-of-type(1), .map.videogames > div > div:nth-of-type(1) {
  padding-right: 10%;
}

@media (max-width: 840px) {
  .slogan.videogames > div > div:nth-of-type(1), .arcades.videogames > div > div:nth-of-type(1), .prints3d.videogames > div > div:nth-of-type(1), .videogames.videogames > div > div:nth-of-type(1), .contact.videogames > div > div:nth-of-type(1), .map.videogames > div > div:nth-of-type(1) {
    text-align: center;
    padding-right: 0;
  }
}

.slogan.videogames > div > div:nth-of-type(1) button, .slogan.videogames > div > div:nth-of-type(1) .button, .arcades.videogames > div > div:nth-of-type(1) button, .arcades.videogames > div > div:nth-of-type(1) .button, .prints3d.videogames > div > div:nth-of-type(1) button, .prints3d.videogames > div > div:nth-of-type(1) .button, .videogames.videogames > div > div:nth-of-type(1) button, .videogames.videogames > div > div:nth-of-type(1) .button, .contact.videogames > div > div:nth-of-type(1) button, .contact.videogames > div > div:nth-of-type(1) .button, .map.videogames > div > div:nth-of-type(1) button, .map.videogames > div > div:nth-of-type(1) .button {
  display: inline-block;
  border: 1px solid #001a70;
  background: #001a70;
  margin: 0;
}

.slogan.videogames > div > div:nth-of-type(1) button:hover, .slogan.videogames > div > div:nth-of-type(1) .button:hover, .arcades.videogames > div > div:nth-of-type(1) button:hover, .arcades.videogames > div > div:nth-of-type(1) .button:hover, .prints3d.videogames > div > div:nth-of-type(1) button:hover, .prints3d.videogames > div > div:nth-of-type(1) .button:hover, .videogames.videogames > div > div:nth-of-type(1) button:hover, .videogames.videogames > div > div:nth-of-type(1) .button:hover, .contact.videogames > div > div:nth-of-type(1) button:hover, .contact.videogames > div > div:nth-of-type(1) .button:hover, .map.videogames > div > div:nth-of-type(1) button:hover, .map.videogames > div > div:nth-of-type(1) .button:hover {
  color: #001a70;
  border-color: #001a70;
  background: transparent;
}

.slogan.videogames > div > div:nth-of-type(2), .arcades.videogames > div > div:nth-of-type(2), .prints3d.videogames > div > div:nth-of-type(2), .videogames.videogames > div > div:nth-of-type(2), .contact.videogames > div > div:nth-of-type(2), .map.videogames > div > div:nth-of-type(2) {
  padding-left: 10%;
  font-family: 'Press Start 2P';
  text-align: right;
}

@media (max-width: 840px) {
  .slogan.videogames > div > div:nth-of-type(2), .arcades.videogames > div > div:nth-of-type(2), .prints3d.videogames > div > div:nth-of-type(2), .videogames.videogames > div > div:nth-of-type(2), .contact.videogames > div > div:nth-of-type(2), .map.videogames > div > div:nth-of-type(2) {
    text-align: center;
    padding-left: 0;
  }
}

.slogan.videogames > div > div:nth-of-type(2) .title, .arcades.videogames > div > div:nth-of-type(2) .title, .prints3d.videogames > div > div:nth-of-type(2) .title, .videogames.videogames > div > div:nth-of-type(2) .title, .contact.videogames > div > div:nth-of-type(2) .title, .map.videogames > div > div:nth-of-type(2) .title {
  font-size: 30px;
}

.slogan.videogames > div > div:nth-of-type(2) p, .arcades.videogames > div > div:nth-of-type(2) p, .prints3d.videogames > div > div:nth-of-type(2) p, .videogames.videogames > div > div:nth-of-type(2) p, .contact.videogames > div > div:nth-of-type(2) p, .map.videogames > div > div:nth-of-type(2) p {
  font-size: 13px;
  line-height: 16px;
}

.slogan.contact, .arcades.contact, .prints3d.contact, .videogames.contact, .contact.contact, .map.contact {
  position: relative;
  background: url(../img/fondopartehablamos.png) repeat center 25px/cover #001a70;
  color: white;
  text-align: center;
}

.slogan.contact:before, .arcades.contact:before, .prints3d.contact:before, .videogames.contact:before, .contact.contact:before, .map.contact:before {
  content: '';
  position: absolute;
  top: -40px;
  left: -50%;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-right: 100vw solid transparent;
  border-bottom: 80px solid #001a70;
}

.slogan.contact > div, .arcades.contact > div, .prints3d.contact > div, .videogames.contact > div, .contact.contact > div, .map.contact > div {
  padding: 130px 0 50px;
  max-width: 60%;
}

@media (max-width: 980px) {
  .slogan.contact > div, .arcades.contact > div, .prints3d.contact > div, .videogames.contact > div, .contact.contact > div, .map.contact > div {
    max-width: 70%;
  }
}

@media (max-width: 780px) {
  .slogan.contact > div, .arcades.contact > div, .prints3d.contact > div, .videogames.contact > div, .contact.contact > div, .map.contact > div {
    max-width: 80%;
  }
}

@media (max-width: 480px) {
  .slogan.contact > div, .arcades.contact > div, .prints3d.contact > div, .videogames.contact > div, .contact.contact > div, .map.contact > div {
    max-width: 90%;
  }
}

.slogan.contact > div .title, .arcades.contact > div .title, .prints3d.contact > div .title, .videogames.contact > div .title, .contact.contact > div .title, .map.contact > div .title {
  font-size: 40px;
}

.slogan.contact > div p, .arcades.contact > div p, .prints3d.contact > div p, .videogames.contact > div p, .contact.contact > div p, .map.contact > div p {
  font-size: 22px;
  font-size: 300;
}

.slogan.contact > div a, .arcades.contact > div a, .prints3d.contact > div a, .videogames.contact > div a, .contact.contact > div a, .map.contact > div a {
  color: white;
}

form {
  max-width: 98%;
  margin: 0 auto;
}

form input[type=text], form input[type=email], form input[type=tel], form select, form textarea {
  display: inline-block;
  width: 49%;
  margin: 1% .5%;
  font-size: 16px;
  padding: 2%;
  border: none;
}

@media (max-width: 480px) {
  form input[type=text], form input[type=email], form input[type=tel], form select, form textarea {
    width: 100%;
    padding: 4%;
    margin: 0 auto 10px;
  }
}

form .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

form .inputfile + label {
  width: 100%;
  margin: 0 auto 10px;
}

form .select {
  display: inline-block;
  width: 49%;
  margin: 1% .5%;
}

form select {
  width: 100%;
  margin: 0;
  padding: 4%;
}

form label {
  margin: 0 0 10px;
}

form textarea {
  width: 99%;
  min-height: 200px;
  margin: 0 .5% 20px;
}

@media (max-width: 480px) {
  form textarea {
    width: 100%;
    margin: 0 auto 20px;
  }
}

form button, form .button {
  color: #001a70;
  border: 1px solid white;
  background: white;
}

form button:hover, form .button:hover {
  color: white;
  border-color: white;
  background: transparent;
}

.form-print {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 99;
}

.form-print .close {
  position: absolute;
  top: 15px;
  right: 18px;
  font-size: 18px;
  color: white;
  cursor: pointer !important;
}

.form-print > div {
  position: fixed;
  width: 90%;
  max-width: 600px;
  padding: 20px;
  color: white;
  background: #c1282e;
}

.form-print > div .title {
  font-size: 30px;
  font-weight: 700;
  color: white;
  margin: 0 0 20px;
}

.form-print > div form button, .form-print > div form .button {
  color: #c1282e;
  text-align: center;
}

.form-print > div form button:hover, .form-print > div form .button:hover {
  color: white;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip:after {
  content: '?';
  display: inline-block;
  color: #c1282e;
  background: white;
  border-radius: 50%;
  width: 16px;
  line-height: 16px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  vertical-align: top;
}

.tooltip > span {
  visibility: hidden;
  width: 250px;
  background-color: #262b2d;
  color: white;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.tooltip > span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #262b2d transparent transparent transparent;
}

.tooltip:hover > span {
  visibility: visible;
  opacity: 1;
}

footer {
  position: relative;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  text-align: center;
  color: white;
  background: #262b2d;
  padding: 80px 0;
  overflow: hidden;
}

footer:before {
  content: '';
  position: absolute;
  top: -35px;
  left: -50%;
  width: 0;
  height: 0;
  border-left: 100vw solid transparent;
  border-right: 100vw solid transparent;
  border-top: 80px solid #001a70;
  background: #262b2d;
  z-index: 2;
}

footer img {
  display: block;
  margin: 20px auto;
  height: 80px;
}

footer a {
  color: white;
}

.contacto header {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: none;
          transform: none;
  height: auto;
  z-index: 0;
}

.contacto header > div {
  text-align: left;
}

.contacto footer:before {
  border-top: 80px solid #f7f7f7;
}

.text3d {
  margin: 0;
  position: relative;
  top: 0;
  text-align: center;
  width: 100%;
  -webkit-transition: all 3s;
  transition: all 3s;
}

.text3d:hover {
  top: -15px;
  text-shadow: 0 1px 0 #821b1f, 0 2px 0 #79191d, 0 3px 0 #71171b, 0 4px 0 #681619, 0 5px 0 #601417, 0 6px 0 #571215, 0 7px 0 #4f1013, 0 8px 0 #460f11, 0 9px 0 #3e0d0f, 0 10px 0 #360b0d, 0 11px 0 #2d090b, 0 12px 0 #250809, 0 13px 0 #1c0607, 0 14px 0 #140405, 0 15px 0 #0b0203, 0 0 5px rgba(169, 13, 19, 0.05), 0 -1px 3px rgba(169, 13, 19, 0.2), 0 9px 9px rgba(169, 13, 19, 0.5), 0 12px 12px rgba(169, 13, 19, 0.5), 0 15px 15px rgba(169, 13, 19, 0.5);
}
/*# sourceMappingURL=main.css.map */