@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+HK:wght@100;300;400;500;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

@font-face {
    font-family: "crete";
    src: url("../fonts/CreteRound-Italic.eot");
    src: url("../fonts/CreteRound-Italic.eot?#iefix") format("embedded-opentype"),
    url("../fonts/CreteRound-Italic.woff") format("woff"),
    url("../fonts/CreteRound-Italic.woff2") format("woff2"),
    url("../fonts/CreteRound-Italic.ttf") format("truetype"),
    url("../fonts/CreteRound-Italic.svg#CreteRound-Italic") format("svg");
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
 
@font-face {
    font-family: "regular";
    src: url("../fonts/Product-Sans.eot");
    src: url("../fonts/Product-Sans.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Product-Sans.woff") format("woff"),
    url("../fonts/Product-Sans.woff2") format("woff2"),
    url("../fonts/Product-Sans.ttf") format("truetype"),
    url("../fonts/Product-Sans.svg#Product-Sans") format("svg");
    font-weight: normal;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

video::-internal-media-controls-overlay-cast-button {
    display: none;
}

html {
    scroll-behavior: smooth;
}

* {
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
	font-family: 'regular', sans-serif;
	font-size:16px;
    font-weight: 500;
	margin:0;
    padding:0;
}
*:focus {
    outline: 0;
}
body{
    color: #4e4b4c;
    background-color: #000000;
}
.clearfix:after {
	content:"";
	display: block;
	clear: both;
}
ul{
	list-style-type:none;
}
li{
	float:left;
}
/*Remove tap highlight on iOS*/
input,
textarea,
button,
select,
div,
ul,
li,
span,
img,
a {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
input:-webkit-autofill {
    box-shadow: 0 0 0 62.5rem #ffffff inset!important;
    -webkit-box-shadow: 0 0 0 62.5rem #ffffff inset!important;
    font-family: 'regular', sans-serif;
}
textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
     -webkit-appearance: none;
     border-radius: 0;
}
select{ 
   -webkit-appearance: none !important;
   -moz-appearance:    none !important;
   appearance:         none !important;  /* Safari 3-4, iOS 1-3.2, Android 1.6- */  /* Firefox 1-3.6 */     
   border-radius: 0 !important;  /* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
}

.inicio{
	opacity: 0;
}
.queda{
	opacity: 1;
}
.come-in {
  transform: translateY(150px);
  animation: come-in 0.8s ease forwards;
  -webkit-transform: translateY(150px);
  -webkit-animation: come-in 0.8s ease forwards;
  -moz-transform: translateY(150px);
  -moz-animation: come-in 0.8s ease forwards;
}
.come-in:nth-child(odd) {
  animation-duration: 0.6s;
  -webkit-animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
}
.already-visible {
  transform: translateY(0);
  animation: none;
  -webkit-transform: translateY(0);
  -webkit-animation: none;
  -moz-transform: translateY(0);
  -moz-animation: none;
}

@keyframes come-in {
    to {  -webkit-transform: translateY(0);    
    }
  }
@-webkit-keyframes come-in {
  to {  -webkit-transform: translateY(0);    
  }
}
@-moz-keyframes come-in {
  to {  -moz-transform: translateY(0);    
  }
}

/*------ menu mobile -----*/

/* Overlay style */
.overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255,255,255,0.9);
    z-index: 9999999999999999999999999999999999999;
}

/* Overlay closing cross */
.overlay > .overlay-close {
	width: 30px;
	height: 30px;
	position: absolute;
	right: 20px;
	top: 10px;
	overflow: hidden;
	border: none;
	background: url(../img/cross.png) no-repeat center center;
	text-indent: 200%;
	color: transparent;
	outline: none;
	z-index: 100;
}

/* Menu style */
.overlay > nav {
	text-align: center;
	position: relative;
	top: 50%;
	height: 60%;
	font-size: 54px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.overlay > nav > ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	display: inline-block;
	height: 100%;
	position: relative;
}

.overlay > nav > ul > li {
	display: block;
	height: 20%;
	height: calc(100% / 8);
	min-height: 34px;
    width: 100%;
}

.overlay > nav > ul > li > a {
	font-weight: 300;
	display: block;
	color: #999999;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
}

.overlay > nav > ul > li > a:hover,
.overlay > nav > ul > li > a:focus {
	color: #e80014!important;
}
@media screen and (max-height: 30.5em) {
	.overlay > nav {
		height: 70%;
		font-size: 34px;
	}
	.overlay > ul > li {
		min-height: 34px;
	}
}

/*--------------------------------------------*/

img{
    width: 100%;
    height: auto;
    display: block;
}
h3{
    font-family: 'regular', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    color: #00a2f7;
    margin: 0 0 18px 0;
}
p{
    font-size: 16px;
    line-height: 24px;
    margin: 0;
}
.contenedor{
    width: 100%;
    height: auto;
    display: block;
    background-color: #ffffff;
}
.grilla{
    max-width: 90%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    text-align: left;
}
.bx-wrapper .bx-controls-direction a {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
}
.bx-wrapper .bx-prev {
    left: 0px!important;
}
.bx-wrapper .bx-next {
    right: 0px!important;
}
.digit {
    opacity: 0;
    -webkit-transform: translateY(40px);
                    transform: translateY(40px);
    -webkit-transition: all 0.6s ease-out;
                    transition: all 0.6s ease-out;
}
.digit.visible {
    opacity: 1;
    -webkit-transform: none;
                    transform: none;
}

@media screen and (min-width:768px){
    .grilla{
        max-width: 768px;
        width: 90%;
        height: auto;
        display: block;
        margin: 0 auto;
        position: relative;
    }
    .bx-wrapper .bx-controls-direction a {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    .bx-wrapper .bx-prev {
        left: 10px!important;
    }
    .bx-wrapper .bx-next {
        right: 10px!important;
    }
}
@media screen and (min-width:767px){
    .grilla{
        max-width: 1200px;
        width: 90%;
        height: auto;
        display: block;
        margin: 0 auto;
        position: relative;
    }
}
