/* ============================================== */
/* PROOF */
/* ============================================== */

.proof{ /* esto es antes de empezar */
  width: 90%;
  display: block;
  float: left;
  overflow: hidden;
  background: red;
  padding: 20px;
}

.proof.abierto { /* esto es cuando ya empezo */
  width: 100%;
}

.proof.cerrado { /* esto es lo que tarda en regresar */
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.proof p{ /* esto es antes de empezar */
  position: relative;
  left: 10%;
}

.proof.abierto p{ /* esto es cuando ya empezo */
  left: 0%;
}

/* a partir de aqui es cuando se meten */

.proof.abierto p:nth-child(1){
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.proof.abierto p:nth-child(2){
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.proof.abierto p:nth-child(3){
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

/* a partir de aqui es cuando se salen */

.proof p:nth-child(1){
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.proof p:nth-child(2){
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.proof p:nth-child(3){
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}


.proof,
.proof p{
  -webkit-transition:all 350ms ease-in-out;
  -moz-transition:all 350ms ease-in-out;
  -ms-transition:all 350ms ease-in-out;
  transition:all 350ms ease-in-out;
}


/* ============================================== */
/* PRELOADER */
/* ============================================== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:#101215;
  z-index: 9999999999;
  height: 100%;
  width: 100%;
  overflow: hidden !important;
}

.icon{
  width: 100px;
  height: 100px;
  margin:-50px 0 0 -50px;
  top: 45%;
  left: 50%;

  position: absolute;
  background: url("./../../images/body/logo_icon.svg") no-repeat 50% 50%;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;

  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;

}

.icon > div {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;

  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
}

.icon-back {
  background: url("./../../images/body/logo_icon_back.svg");
}

.icon{

    -webkit-animation: cacas 1s infinite;
       -moz-animation: cacas 1s infinite;
         -o-animation: cacas 1s infinite;
            animation: cacas 1s infinite;

}

@keyframes cacas {
    0% {transform: rotate3d(0,1,0,180deg);}
    100% { transform: rotate3d(0,1,0,-180deg);}
}


/* ============================================== */
/* IMG */
/* ============================================== */

.img-set{
  max-width: 960px;
  width: 100%;
  display: block;
  margin:0 auto 30px;
  position: relative;
}

.img-set img{
  z-index: 99;
  position: relative;
}

.img-set:before{
  content: url("./../../images/icons/puntos.svg"); 
  width: 400px;
  height: 400px;
  left: 50%;
  top:50%;
  display: block;
  position: absolute;
  overflow: hidden;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.img-set:after{
  content: url("./../../images/icons/rayas.svg"); 
  width: 600px;
  height: 600px;
  left: 50%;
  top:50%;
  display: block;
  position: absolute;
  overflow: hidden;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.img-olla,
.img-olla .olla-wrapper{
  height: 100vh;
  width: 100%;
  position: relative;
}

.img-olla .olla-wrapper,
.olla-wrapper .olla-wrapper-img{
  position: absolute;
  max-width: 800px;
  width: 100%;
  left:50%;
  top:50%;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.img-olla .olla-wrapper{
  background: transparent;
}

.img-olla .olla-wrapper .olla-wrapper-img{
  background: transparent;
  height: 370px;
}

.olla-wrapper-img img.tapa{
  z-index: 99;
  top:-28%;
  position: absolute;
}

.olla-wrapper-img img.olla{
  z-index: 999;
  top:0%;
  position: absolute;
}

.olla-wrapper-img img.atras{
  z-index: 1;
  top:0%;
  opacity: 0;
  position: absolute;
}

.olla-wrapper-img img.corte{
  z-index: 9;
  position: absolute;
  top:0;
  width: 100%;
}

.olla-wrapper-img img.base{
  z-index: 2;
  top:53%;
  position: absolute;
}

.olla-wrapper-img img.bolas{
  z-index: 1;
  top:58%;
  opacity: 0;
  position: absolute;
}

.img-olla .text-left,
.img-olla .text-right{
  width: 400px;
  position: absolute;
  padding: 20px 30px;
  display: block;
  top:50%;
  left: 50%;
  opacity: 0;
  background: transparent;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.img-olla .text-left{left: -20%;}
.img-olla .text-right{left: 120%;}

.img-olla .text-left .text-pot,
.img-olla .text-right .text-pot{
  margin: 20px 0;
  display: block;
  width: 100%;
  float: left;
  position: relative;

  -webkit-transition:all 350ms ease-in-out;
  -moz-transition:all 350ms ease-in-out;
  -ms-transition:all 350ms ease-in-out;
  transition:all 350ms ease-in-out;
}

.img-olla .text-pot:before{
  content: url("./../../images/icons/icon_check.svg");
  width: 25px;
  height: 25px;
  position: absolute;
  top: 8px;
  left: -35px;
  opacity: 0;

  -webkit-transition:all 350ms ease-in-out;
  -moz-transition:all 350ms ease-in-out;
  -ms-transition:all 350ms ease-in-out;
  transition:all 350ms ease-in-out;
}

.img-olla .text-left .text-pot{left:10px;}
.img-olla .text-right .text-pot{right:10px;}


.img-olla .text-left .text-pot.fade:nth-child(1),
.img-olla .text-left .text-pot.fade:nth-child(2),
.img-olla .text-left .text-pot.fade:nth-child(3){
  left:0;
}

.img-olla .text-right .text-pot.fade:nth-child(1),
.img-olla .text-right .text-pot.fade:nth-child(2),
.img-olla .text-right .text-pot.fade:nth-child(3){
  right:0;
}

.img-olla .text-left .text-pot.fade:nth-child(1),
.img-olla .text-right .text-pot.fade:nth-child(1){
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.img-olla .text-left .text-pot.fade:nth-child(2),
.img-olla .text-right .text-pot.fade:nth-child(2){
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.img-olla .text-left .text-pot.fade:nth-child(3),
.img-olla .text-right .text-pot.fade:nth-child(3){
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}


.img-olla .text-pot.fade:nth-child(1):before {
 -webkit-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.img-olla .text-pot.fade:nth-child(2):before {
 -webkit-transition-delay: 0.8s;
  transition-delay: 0.8s;
}

.img-olla .text-pot.fade:nth-child(3):before {
 -webkit-transition-delay: 1s;
  transition-delay: 1s;
}

.img-olla .text-pot.fade:before{
  opacity: 1;
}

.img-olla .info{
  width: 100%;
  position: absolute;
  left: 50%;
  top:15%;
  text-align: center;
  opacity: 0;
  z-index: 999;

  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);

}

.img-olla .olla-wrapper .olla-wrapper-img,
.img-olla .text-left,
.img-olla .text-right{
  top:60%;
}


@media screen and (max-width: 1780px){
  .img-olla .info h3{
    font-size: 28px;line-height: 40px;
  }

  .img-olla .text-left,
  .img-olla .text-right{
    width: 300px;
  }

  .img-olla .olla-wrapper .olla-wrapper-img{
    height: 230px;
  }

  .img-olla .olla-wrapper,
  .olla-wrapper .olla-wrapper-img{
    max-width: 500px;
  }

}

@media screen and (max-width: 1024px){


  .img-olla,
  .img-olla .olla-wrapper,
  .olla-wrapper .olla-wrapper-img,
  .img-olla .text-left,
  .img-olla .text-right,
  .img-olla .info{
    height: auto;
    position: relative;
    top:0;
    bottom: 0;
    left: 0;
    max-width: 100%;
    width: 100%;
    float: left;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }

  .img-olla .olla-wrapper .olla-wrapper-img{
    width: 400px;
    margin: 50px auto;
    float: none;
  }

  .img-olla .text-left .text-pot,
  .img-olla .text-right .text-pot{
    margin: 10px 0;
  }

  .img-olla .text-left,
  .img-olla .text-right{
    width: 50%;
  }

  .img-olla .info{padding: 40px 20px 30px 20px;}
  .img-olla .text-left{padding: 20px 10px 20px 50px;}
  .img-olla .text-right{padding: 20px 50px 20px 10px;}

  .olla-wrapper-img img.tapa{
    top:-25%;
  }
  .olla-wrapper-img img.olla{
    display:none;
  }
  .olla-wrapper-img img.corte{
    top:10%;
  }

  .olla-wrapper-img img.base{
    top:70%;
  }

  .olla-wrapper-img img.bolas{
    top:80%;
    opacity: 1;
  }

}

@media screen and (max-width: 768px){

  .img-olla,
  .img-olla .olla-wrapper{
    height: auto;
  }

  .img-olla .text-left,
  .img-olla .text-right{width: 100%;}
  .img-olla .text-left,
  .img-olla .text-right{padding: 0 30px 0 60px;}

  .img-olla .text-left .text-pot{left:0;}
  .img-olla .text-right .text-pot{right:0;}

  .img-olla .text-pot:before{
    opacity: 1;
  }
}



/* ============================================== */
/* VIDEO */
/* ============================================== */

.video-wrapper{
  width: 100%; 
  overflow: hidden;
  display: block;
  float: left;
  position: relative;
}

.video{
  position: absolute;
  top:50%;
  left:50%;

  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video{
  min-width: 100%; 
  min-height: 100%;
}


.video-wrapper .info{
  margin: 200px;
  position: relative;
  z-index: 999;
  display: block;
  float: left;
}

@media screen and (max-width: 768px){
  .video-wrapper .info{
    margin: 100px 30px;
  }
}

/* ============================================== */
/* CLOSE */
/* ============================================== */


@media screen and (max-width: 1024px){
  .close-laptop{display:none;overflow: hidden;}
}
@media screen and (max-width: 769px){
  .close-tablet{display:none;overflow: hidden;}
}
@media screen and (max-width: 480px){
  .close-mobile{display:none;overflow: hidden;}
}

@media screen and (min-width: 1024px){
  .open-laptop{display:none;overflow: hidden;}
}
@media screen and (min-width: 769px){
  .open-tablet{display:none;overflow: hidden;}
}
@media screen and (min-width: 480px){
  .open-mobile{display:none;overflow: hidden;}
}


/* ============================================== */
/* WRAPPER PAGE */
/* ============================================== */

.wrapper-page{
  margin:0 auto;
  max-width:90%;
  width:100%;
  position: relative;
}

.wrapper-page:after{
  content: "";
  clear: both;
  display: block;
}

@media screen and (max-width: 768px){
  .wrapper-page{
    max-width:100%;
  }
}

/* ============================================== */
/* CONTENTS */
/* ============================================== */

.content,
.content-center{
  margin:0 auto;
  width:100%;
  position: relative;
  padding: 20px;
}

.content:after,
.content-center:after{
  content: "";
  clear: both;
  display: block;
}

.content{max-width:1440px;}
.content-center{max-width:768px;}


@media screen and (max-width: 1024px){
  .content{width:100%;}
}


/* ============================================== */
/* BLOCKS */
/* ============================================== */

.block.first-block{
  margin-top:68px;
  border-top: 1px solid red;
}

.block{
  width: 100%;
  float: left;
  display: block;
  padding:80px 0;
}

.block:after{
  content: " " !important;
  display: table !important;
  clear: both !important;
}

@media screen and (max-width: 768px){
  .block{padding:40px 0;}
  .block.first-block{margin-top:50px;}
}

/* ============================================================================ */
/* BLOCK-BOX */
/* ============================================================================ */

.block-box.center,
.block-box.right,
.block-box.left,
.block-box-bg.left,
.block-box-bg.center,
.block-box-bg.right{
  float: left;
  position: relative;
  display: block;
  overflow: hidden;
}

.block-box.center,
.block-box.center .text,

.block-box-bg.center,
.block-box-bg.center .text,

.block-box-bg.left,
.block-box-bg.left .wrapper,
.block-box-bg.left .wrapper .text,

.block-box-bg.right,
.block-box-bg.right .wrapper,
.block-box-bg.right .wrapper .text,

.block-box.right,
.block-box.right .wrapper .text,
.block-box.right img,
.block-box.right .wrapper,

.block-box.left,
.block-box.left .wrapper .text,
.block-box.left img,
.block-box.left .wrapper{
  width: 100%;
}

.block-box.right .wrapper,
.block-box.left .wrapper,


.block-box-bg.left .wrapper,
.block-box-bg.right .wrapper,

.block-box-bg.center .text,
.block-box.center .text{
  left: 50%;
}

.block-box-bg.left .wrapper,
.block-box-bg.left .wrapper .text,

.block-box-bg.right .wrapper,
.block-box-bg.right .wrapper .text,

.block-box-bg.center  .text,

.block-box.center .text,

.block-box.right .wrapper .text,
.block-box.right img,
.block-box.right .wrapper,

.block-box.left .wrapper .text,
.block-box.left img,
.block-box.left .wrapper{
  position: absolute;
  top: 50%;
}

.block-box.center .text,
.block-box-bg.center .text,

.block-box.right .wrapper .text,

.block-box-bg.left .wrapper,
.block-box-bg.left .wrapper .text,

.block-box-bg.right .wrapper,
.block-box-bg.right .wrapper .text{
  z-index: 3;
}

.block-box.right .wrapper{
  z-index: 1;
}

.block-box-bg.center .text,
.block-box.center .text{
  text-align: center;
}

.block-box.center,
.block-box-bg.center,

.block-box-bg.right,
.block-box-bg.right .wrapper,

.block-box-bg.left,
.block-box-bg.left .wrapper,

.block-box.right,
.block-box.right .wrapper,

.block-box.left,
.block-box.left .wrapper{
  height: 600px;
}


.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper .text,

.block-box.right .wrapper .text,
.block-box.right img,

.block-box.left .wrapper .text,
.block-box.left img{
  padding: 60px;
}

.block-box.right .wrapper .text,
.block-box.left .wrapper .text{
  max-width: 60%;
}

.block-box.right img,
.block-box.left img{
  max-width: 40%;
  padding: 20px;
}

.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper .text,

.block-box.right .wrapper .text,
.block-box.right img,

.block-box.left .wrapper .text,
.block-box.left img{
  max-width: 50%;
}

.block-box-bg.left .wrapper .text,
.block-box.right img,
.block-box.left .wrapper .text{
  left: 0;
}

.block-box-bg.right .wrapper .text,
.block-box.left img,
.block-box.right .wrapper .text{
  right:0;
}

.block-box-bg.left .wrapper,
.block-box-bg.right .wrapper,
.block-box.right .wrapper,
.block-box.left .wrapper{
  max-width: 1440px;
}


.block-box-bg.right .wrapper,
.block-box-bg.left .wrapper,

.block-box.right .wrapper,
.block-box.left .wrapper,

.block-box-bg.center .text,
.block-box.center .text{
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


.block-box-bg.left .wrapper .text,
.block-box-bg.right .wrapper .text,

.block-box.right .wrapper .text,
.block-box.right img,

.block-box.left .wrapper .text,
.block-box.left img{
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.block-box.center .text,
.block-box-bg.center .text{
  max-width: 960px;
  padding: 20px;
}


.block-box-bg.right .wrapper .text h2,
.block-box-bg.right .wrapper .text p,

.block-box.center h1,
.block-box.center h2,
.block-box.center p,

.block-box-bg.center h1,
.block-box-bg.center h2,
.block-box-bg.center p,

.block-box-bg.left h1,
.block-box-bg.left p,

.block-box-bg.right h1,
.block-box-bg.right p{
  color:white;
}

.block-box-bg.center img,
.block-box-bg.left img,
.block-box-bg.right img,
.block-box.center img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-box.center img {
    -webkit-animation: fadein 2s;
       -moz-animation: fadein 2s;
        -ms-animation: fadein 2s;
         -o-animation: fadein 2s;
            animation: fadein 2s;

}

@keyframes fadein {
    from { opacity: 0;}
    to   { opacity: 1; }
}

@-moz-keyframes fadein {
    from { opacity: 0;}
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0;}
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0;}
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0;}
    to   { opacity: 1;}
}

@media screen and (max-width: 1280px){

  .content-block{
    float: none;
    margin:0 auto;
    max-width:768px;
    width:100%;
    position: relative;
    padding: 20px 30px;
  }

  .content-block:after{
    content: "";
    clear: both;
    display: block;
  }

  .block-box.right,
  .block-box.right .wrapper,

  .block-box.left,
  .block-box.left .wrapper{
    height: auto;
  }

  .block-box.right,
  .block-box.left{
    margin: 20px 0;
  }

  .block-box.right .wrapper .text,
  .block-box.right img,

  .block-box.left .wrapper .text,
  .block-box.left img{
    max-width: 100%;
  }

  .block-box.right .wrapper .text,
  .block-box.left img{right:none;}

  .block-box.right .wrapper .text,
  .block-box.right .wrapper,
  .block-box.right img,

  .block-box.left .wrapper .text,
  .block-box.left .wrapper,
  .block-box.left img{
    max-width: 100%;
    width: 100%;
    position: relative;
    left: 0;
    float: left;
    display: block;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  .block-box.right .wrapper .text,
  .block-box.left .wrapper .text{padding: 20px;}

  .block-box.right img,
  .block-box.left img{padding:0;}

}

@media screen and (max-width: 960px){
  .content-block{
    max-width: 100%;
    padding: 0;
  }
}

@media screen and (max-width: 768px){

  .block-box-bg.center,

  .block-box-bg.left,
  .block-box-bg.left .wrapper,

  .block-box-bg.right,
  .block-box-bg.right .wrapper{
    height: auto;
  }

  .block-box-bg.right .wrapper .text{right:none;}

  .block-box-bg.left .wrapper .text,
  .block-box-bg.left .wrapper,
  .block-box-bg.left img,

  .block-box-bg.center .text,
  .block-box-bg.center,
  .block-box-bg.center img,
  
  .block-box-bg.right .wrapper .text,
  .block-box-bg.right .wrapper,
  .block-box-bg.right img{
    max-width: 100%;
    width: 100%;
    position: relative;
    left: 0;
    float: left;
    display: block;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  .block-box-bg.center .text,

  .block-box-bg.left .wrapper .text,
  .block-box-bg.right .wrapper .text{padding: 20px;}

  .block-box-bg.center img,
  .block-box-bg.left img,
  .block-box-bg.right img{padding:0;}

  .block-box-bg.center .bg-overlay,
  .block-box-bg.left .bg-overlay,
  .block-box-bg.right .bg-overlay{
    display: none;
  }

  .block-box-bg.right .bg-white{
    background: transparent;
  }

  /*-- color font --*/

  .block-box-bg.right .wrapper .text h1,
  .block-box-bg.left .wrapper .text h1,
  .block-box-bg.center h1,
  .block-box-bg.center h2,
  .block-box-bg.left h2,
  .block-box-bg.right h2{
    color:#f1c898;
  }

  .block-box-bg.left .wrapper .text h2,

  .block-box-bg.right .wrapper .text p,
  .block-box-bg.center p,
  .block-box-bg.left p,
  .block-box-bg.right p{color:white;}

}

/* -- block front -- */

.block-box-front.left,
.block-box-front.right{
  width: 1280px;
  margin: 80px auto;
  display: block;
  position: relative;
}

.block-box-front.left .text,
.block-box-front.right .text{left: 50%;}

.block-box-front.left .text{margin-left: -50%;}
.block-box-front.right .text{margin-left: 0;}

.block-box-front.left .text,
.block-box-front.right .text{
  padding: 40px;
  top:50%;
  width: 50%;
  background: white;
  position: absolute;
  
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.block-box-front.right img,
.block-box-front.left img{
  width: 800px;

  -webkit-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  -ms-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);

}

.block-box-front.right img{
  -webkit-transform: translate(-30%, 0);
  -moz-transform: translate(-30%, 0);
  -o-transform: translate(-30%, 0);
  -ms-transform: translate(-30%, 0);
  transform: translate(-30%, 0);
}

.block-box-front.left img{
  -webkit-transform: translate(30%, 0);
  -moz-transform: translate(30%, 0);
  -o-transform: translate(30%, 0);
  -ms-transform: translate(30%, 0);
  transform: translate(30%, 0);
}


@media screen and (max-width: 1280px){

  .block-box-front.left,
  .block-box-front.right{
    width: 960px;
  }

  .block-box-front.right img{
    -webkit-transform: translate(-10%, 0);
    -moz-transform: translate(-10%, 0);
    -o-transform: translate(-10%, 0);
    -ms-transform: translate(-10%, 0);
    transform: translate(-10%, 0);
  }

  .block-box-front.left img{
    -webkit-transform: translate(10%, 0);
    -moz-transform: translate(10%, 0);
    -o-transform: translate(10%, 0);
    -ms-transform: translate(10%, 0);
    transform: translate(10%, 0);
  }

}

@media screen and (max-width: 960px){

  .block-box-front.left .text,
  .block-box-front.right .text{
    margin: 0;
    position: relative;
    left: 0;
    top:0;
    width: 100%;
    display: block;
    padding: 20px;
    float: left;
    background: transparent;
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  .block-box-front.left img,
  .block-box-front.right img{
    width: 100%;
  }

  .block-box-front.left .text,
  .block-box-front.left img,
  .block-box-front.right .text,
  .block-box-front.right img{
    -moz-transform: none;
    -ms-transform: none;
    -webkit-transform: none;
    transform: none;
  }

  .block-box-front.left,
  .block-box-front.right{
    margin: 0;
    width: 100%;
  }

}

/* -- block-box-half -- */

.block-box-half{
  width: 100%;
  position: relative;
  display: block;
}

.block-box-half:after {
  content: " " !important;
  display: table !important;
  clear: both !important;
}

.block-box-half .wrapper{
  position: relative;
  width: 50%;
  float: left;
  display: block;
  overflow: hidden;
}

.block-box-half,
.block-box-half .wrapper{height: 600px;}

.block-box-half.right .wrapper:last-child,
.block-box-half.left .wrapper:last-child{background: transparent;}

.block-box-half .wrapper img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.block-box-half .wrapper .text{
  position: absolute;
  top:50%;
  max-width: 720px;
  width: 100%;
  overflow: hidden;
  display: block;
  padding: 60px;

  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  transform: translate(0%, -50%);

}


.block-box-half.right .wrapper > p{
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: white;
  z-index: 99;
  background: transparent;
  font-weight: bold;
  text-align: left;
}

.block-box-half.right .wrapper span{
  width: 100%;
  display: block;
  float: left;
  font-style: italic;
  font-size: 12px;
}


.block-box-half.right .wrapper:first-child{float: right;}
.block-box-half.right .wrapper:last-child{float: left;}
.block-box-half.right .wrapper:last-child .text{right: 0;}


@media screen and (max-width: 768px){

  .block-box-half a{
    max-width: 200px;
    margin: 20px auto 0;
    float: none;
    width: 100%;
  }

  .block-box-half .wrapper .text{
    position: relative;
    top:0;
    padding: 20px;
    transform: none;
  }

  .block-box-half .wrapper img{
    height: auto;
  }

  .block-box-half.right .wrapper:last-child,
  .block-box-half.left .wrapper:last-child{background: transparent;}

  .block-box-half .wrapper{
    width: 100%;
  }

  .block-box-half,
  .block-box-half .wrapper{height: auto;}

  .block-box-half.right .wrapper:first-child{float: left;}
  .block-box-half.right .wrapper:last-child .text{left: 0;right: none;}
}



/* ============================================== */
/* BG-COLORS */
/* ============================================== */

.bg-black,
.bg-gray{
  display: block;
  width: 100%;
}

.bg-gray:after,
.bg-black:after{
  content: "";
  clear: both;
  display: block;
}

.bg-black{background:#101215;}
.bg-gray{background:#18191C;}

.bg-black.gradient{
  background: -webkit-linear-gradient(bottom, rgba(28,30,34,0.2) 0%, transparent 100%);
  background: -o-linear-gradient(bottom, rgba(28,30,34,0.2) 0%, transparent 100%);
  background: linear-gradient(bottom, rgba(28,30,34,0.2) 0%, transparent 100%);
}

/* ============================================== */
/* BG-OVERLAY */
/* ============================================== */

.bg-overlay{
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  position: absolute;
  z-index:2;
}

.bg-overlay.hard{background-color: rgba(0, 0, 0, 0.7);}
.bg-overlay.soft{background-color: rgba(0, 0, 0, 0.4);}

/* ============================================== */
/* FLEXBOX */
/* ============================================== */

.flex-center{
  width: 100%;
  display: flex;
  margin-top: 20px;
  justify-content:center;
  border-top:1px solid #f1c898;
}

@media screen and (max-width: 1440px){
  .flex-center{
    display: block;
    float: left;
    padding: 20px 0;
    justify-content:none;
  }

  .flex-center .btn-read,
  .flex-center .btn-paypal{
    margin:5px auto;
    float: none;
  }
} 

/* ============================================== */
/* BUTTONS */
/* ============================================== */

.btn-read,
.btn-outline,
input[type=submit]{

  display: block;
  overflow: hidden;
  margin: 20px auto;
  text-align: center;
  color: white;
  position: relative;
  width: 280px;
  float: left;
  text-decoration: none;
  cursor: pointer;
  padding:10px 20px;
  font-size:14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;


  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;

  -webkit-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  -moz-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  -ms-box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);

}

.btn-paypal{
  width: 280px;
  height: 50px;
  float: none;
  margin: 20px auto;

  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;
}

.btn-paypal:hover{
  opacity: 0.5;
  cursor: pointer;
}


/* ------- */

.btn-read{
  width: 280px;
  border:1px solid #f1c898;
  background: transparent;
  text-align: center;
  margin: 20px auto;
  display: block;
  position: relative;
}

.btn-read:hover{
  background:#101215;
  border:1px solid #f1c898;
}

/* ------- */

input[type=submit]{
  border:1px solid #f1c898;
  background: transparent;
  text-align: center;
}

input[type=submit]:hover{
  background:#101215;
  border:1px solid #f1c898;
}


/* ------- */

.btn-outline{
  border:1px solid #f1c898;
  text-align: left;
}

.btn-outline:hover{
  background:#101215;
  border:1px solid #f1c898;
  padding-left: 30px;
}

.btn-outline.cart:after,
.btn-outline.download:after{
  content: " ";
  position: absolute;
  width: 2px;
  top:0;
  height: 100%;
  right: 50px;
  background:#f1c898; 
}

.btn-outline.cart:before,
.btn-outline.download:before{
  width: 50px;
  height: 50px;
  right: 0;
  top:0;
  display: block;
  position: absolute;
}

.btn-outline.cart:before{content: url("./../../images/icons/icon_cart.svg"); }
.btn-outline.download:before{content: url("./../../images/icons/icon_download.svg"); }

/* ============================================== */
/* COLUMNS */
/* ============================================== */

.col-12,
.col-11,
.col-10,
.col-9,
.col-8,
.col-7,
.col-6,
.col-5,
.col-4,
.col-3,
.col-2,
.col-1{
  float:left;
  display: block;
  position: relative;
  padding: 0;
}

.col-12{width:100%;}
.col-11{width:91.67%;}
.col-10{width:83.34%;}
.col-9{width:75%;}
.col-8{width:66.66%;}
.col-7{width:58.34%;}
.col-6{width:50%;}
.col-5{width:41.66%;}
.col-4{width:33.33%;}
.col-3{width:25%;}
.col-2{width:16.66%;}
.col-1{width:8.33%;}


@media screen and (max-width: 768px) {
  .col-3{width:50%;}
  .col-4{width:100%;}
}

@media screen and (max-width: 480px) {
  .col-12,
  .col-11,
  .col-10,
  .col-9,
  .col-8,
  .col-7,
  .col-6,
  .col-5,
  .col-4,
  .col-3,
  .col-2,
  .col-1{
    width:100%;
    padding: 0;
  }
}

/* ============================================== */
/* CLEAR */
/* ============================================== */

.clear{clear: both;}
.clear-navigation{clear: both;position: fixed;height: 0;width: 100%;}
.line{border-bottom:1px solid #cccccc;margin-bottom:20px;padding-top:20px;width: 100%;}

/* ============================================== */
/* MENU LIST */
/* ============================================== */

.menu{
  overflow: hidden;
  width: 100%;
  margin: 0;
  display: block;
  float: left;
}

.menu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
  float: left;
}

.menu.list li,
.menu.list.item li,
.menu.link li a,
.menu.link.item li a {
  padding: 0;
  display: block;
  float: left;
  width: 100%;
  text-decoration: none;
  margin-bottom: 1px;
}

.menu.list.item li,
.menu.link.item li a{
  position: relative;
  padding: 5px 10px 5px 30px;
}

.menu.list.item li:before,
.menu.link.item li a:before{
  width: 20px;
  height: 20px;
  left: 0;
  top:10px;
  display: block;
  position: absolute;
  content: url("./../../images/icons/icon_check.svg");
}

.menu.link li:hover,
.menu.link.item li:hover  {
  cursor: default;
}

.menu.link li a:hover {
  opacity: 0.8;
}

/* Menu columns */

.menu.column-3 {
  -webkit-column-count: 3;
  -moz-column-count: 3;
  column-count: 3;
}

@media screen and (max-width: 768px){
  .menu.column-3 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
}

/* ============================================================================ */
/* MENU-COL */
/* ============================================================================ */

.menu-col{
  padding:0;
  margin: 0;
  width: 100%;
  display: block;
  float: left;
}

.menu-col ul{
  list-style-type: none;
  width: 100%;
  margin:0;
  padding:0;
}

.menu-col ul li{
  padding:15px;
  display: block;
  float: left;
  position: relative;
}

.menu-col.no-pakages ul li{opacity: 0;}
.menu-col.no-pakages ul li.left{left:-100px;}
.menu-col.no-pakages ul li.right{right:-100px;}

.menu-col ul li .wrapper{
  width: 100%;
  display: block;
  float: left;
  text-align: center;
  padding: 0 20px;
}

.menu-col ul li .wrapper p.little{
  font-size: 12px;
  line-height: 18px;
}

.menu-col ul li .wrapper.center{
  text-align: center;
}

.menu-col ul li img{
  display: block;
  width: 80px;
  height: 80px;
  object-fit: cover;
  display: block;
  margin: 0 auto 10px auto;
}

.menu-col.col-4 ul li{
  width: 33.3333%;
}

.menu-col.col-6 ul li{
  width: 50%;
}
.menu-col.col-6 ul li:nth-child(2):after,
.menu-col.col-6 ul li:nth-child(4):after,
.menu-col.col-6 ul li:nth-child(5):after,
.menu-col.col-4 ul li:nth-child(3):after,
.menu-col.col-4 ul li:nth-child(6):after,
.menu-col.col-4 ul li:nth-child(9):after{
  content: "";
  clear: both;
  display: block;
  width: 100%;
}


@media screen and (max-width: 1024px){

  .menu-col.col-4 ul li,
  .menu-col.col-6 ul li{
    width: 100%;
    padding:10px 0;
  }

  .menu-col.no-pakages ul li{opacity: 1;}
  .menu-col.no-pakages ul li.left{left:0;}
  .menu-col.no-pakages ul li.right{right:0;}

}

/* ============================================== */
/* PADDINGS */
/* ============================================== */

.p-5,
.p-10,
.p-20,
.p-30{
    -webkit-box-sizing:border-box;
    -moz-box-sizing:border-box;
    -o-box-sizing:border-box;
    box-sizing:border-box;
    overflow: hidden;
}

.p-5:after,
.p-10:after,
.p-20:after,
.p-30:after{
  content: "";
  clear: both;
  display: block;
}

.p-5{padding:5px;}
.p-10{padding:10px;}
.p-20{padding:20px;}
.p-30{padding:30px;}

@media screen and (max-width: 1024px){
  .p-30{padding:0;}
}

/* ============================================== */
/* SOCIAL-SHARE */
/* ============================================== */

.social-share{
  overflow: hidden;
  display: block;
  width: 100%;
  float: left;
}

.social-share ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content:center;
}

.social-share li{
  display: block;
  float: left;
  position: relative;
  padding:0;
  margin:0 10px;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;
}

.social-share li a{
  display: block;
  color:white;
  font-size: 16px;
  height: 45px;
  width: 45px;
  text-transform: uppercase;
  font-weight: bold;
  border: 1px solid #f1c898;

  opacity: 1;

  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.social-share li:hover{
  opacity: 0.8;
  cursor: pointer;
}

.social-share li.share-fb a:before{content: url("./../../images/icons/facebook.svg");}
.social-share li.share-twitter a:before{content: url("./../../images/icons/twitter.svg");}
.social-share li.share-instagram a:before{content: url("./../../images/icons/instagram.svg");}

.social-share li.share-fb a:before,
.social-share li.share-twitter a:before,
.social-share li.share-instagram a:before{

  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;

  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}


/* ============================================== */
/* FORMS CONTACT */
/* ============================================== */

form#contact{
  width: 100%;
  margin:0 auto;
}

input[name=first_name],
input[name=last_name],
input[name=address_first],
input[name=address_second],
input[name=city],
input[name=zip],
input[name=state],
input[name=phone],
input[name=email],
input[name=confirm_email],
textarea[name=comments]{

  padding: 15px 20px;
  width: 99%;
  margin:0.5%;
  display: block;
  float: left;
  color: #f1c898;
  overflow: hidden;
  border:1px solid #18191C;
  text-align: left;
  background: #18191C;

  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  border-radius: 2px;

}

input[name=first_name],
input[name=last_name],
input[name=email],
input[name=confirm_email]{
  width: 49%;
}

input[name=zip],
input[name=state],
input[name=city]{
  width: 32.3%;
}

textarea[name=comments]{
  min-height: 80px;
  resize: none;
}

input[name=email]:focus,
input[name=confirm_email]:focus,
input[name=first_name]:focus,
input[name=address_first]:focus,
input[name=address_second]:focus,
input[name=zip]:focus,
input[name=state]:focus,
input[name=city]:focus,
input[name=last_name]:focus,
input[name=phone]:focus,
textarea[name=comments]:focus{
  color: #f1c898;
  background: transparent;
  border:1px solid #f1c898;

  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;

}

@media screen and (max-width: 768px){
  input[name=first_name],
  input[name=last_name],
  input[name=address_first],
  input[name=address_second],
  input[name=city],
  input[name=zip],
  input[name=state],
  input[name=phone],
  input[name=email],
  input[name=confirm_email],
  textarea[name=comments]{
    width: 100%;
    margin:0.5% 0;
  }

  input[type=submit]{width: 100%;}
}

/* ============================================== */
/* VER MAS */
/* ============================================== */


.close{
  position: absolute;
  background: #18191C;
  outline: none;
  border:1px solid #f1c898;
  top:0;
  right:0;
  float: right;
  padding: 0;
  z-index: 9999999;
  cursor: pointer;
}

.close:before {
  position: relative;
  content: url("./../../images/icons/icon_close.svg");
  width: 50px;
  height: 50px;
  display: block;
  padding: 10px;

  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.close:hover:before{
  transform: rotate(90deg);
}

@media screen and (max-width: 1780px){
  .close{
    top:96.2%;
  }
}


.ver-mas.abierto{
  background: #f1c898;
  color:black;
}

.ver-mas-cerrado{
  display: none;
  float:left;
  width: 100%;
  position: relative;
}

.ver-mas-cerrado:after{
  content: "";
  clear: both;
  display: block;
}

@media screen and (max-width: 768px){
  .ver-mas-cerrado .block{
    padding: 0 0 20px 0;
  }
}


/* ============================================== */
/* PARALLAX */
/* ============================================== */


.bcg{
  background: url('./../../images/body/parallax.jpg') no-repeat;
  background-size:cover;
  position: absolute;
  width: 100%;
  height: 180%;
  top:0;
  z-index: 1;
}

.content-wrapper{
  width: 90%;
  margin: 0 auto;
  max-width: 1140px;
  position: relative;
  z-index: 99;
}

.bcg-parallax{
  width: 100%;
  padding: 150px 0;
  color: white;
  background: black;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 768px){
  .bcg-parallax{
    padding: 50px 0;
  }
  .bcg{
    height: 200%;
    background: url('./../../images/body/parallax.jpg') no-repeat center center;
  }
}

/* ============================================== */
/* POPUP */
/* ============================================== */

.popup-close{
  position: absolute;
  background: #101215;
  outline: none;
  border:1px solid #f1c898;
  top:-52px !important;
  right:0;
  padding: 0;
  z-index: 999;
  cursor: pointer;
}

.popup-close:before {
  position: relative;
  content: url("./../../images/icons/icon_close.svg");
  width: 50px;
  height: 50px;
  background: transparent;
  display: block;
  padding: 10px;
}

.popup-close:hover:before{
  transform: rotate(90deg);
}

.popup{

  background: rgba(12,12,12,0.8);
  visibility: hidden;
  z-index: 999999999;
  overflow-y: scroll;

  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;

  position: fixed;

  -webkit-transition:all 250ms ease;
  -moz-transition:all 250ms ease;
  -ms-transition:all 250ms ease;
  transition:all 250ms ease;

  -webkit-animation: isShownTransformOut 250ms;
  animation: isShownTransformOut  250ms;

}

.popup > .content{
  overflow: visible !important;
  padding: 0;
  left: 50%;
  max-width: 800px;
  width: 90%;
  position: absolute;
  border:1px solid black;

  top: 50%;
  z-index: 9999;
  background: #111111;
  overflow-y: scroll;

  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;

  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);

  -webkit-box-shadow: 0px 50px 30px -30px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 50px 30px -30px rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0px 50px 30px -30px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 50px 30px -30px rgba(0, 0, 0, 0.3);
}

.popup > .content .wrap{
  overflow: visible !important;
  position: relative;
  overflow-y: scroll;
  display: block;
  float: left;
  height: 100%;
  width: 100%;
}

.popup > .content .wrap a{
  transition:none;
}

.popup > .content .wrap h3{
  position: absolute;
  top:0;
  width: 100%;
  margin: 0;
  padding: 10px 20px;
  color:white;
  left: 0;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  background: #101215;
  z-index: 999;
}

.popup > .content .wrap h2{color:white;}

.popup > .content .wrap{padding-top: 40px;}
.popup > .content{max-width: 480px;}
.popup > .content .popup-close{top:-50px;}

.popup > .content .wrap span{
  position: absolute;
  bottom: 0;
  padding: 20px;
  left: 0;
  background: #101215;
  z-index: 99;
  width: 100%;
  text-align: center;
  border-top:1px solid #f1c898;
}

.popup.is-shown {
  pointer-events: auto;
  visibility: visible;
  -webkit-animation: isShownTransformIn 250ms;
  animation: isShownTransformIn  250ms;
}

@keyframes isShownTransformIn {
  from {transform: scale(1.1);opacity:0;}
  to {transform: scale(1);opacity:1;}
}

@keyframes isShownTransformOut{
  from {transform: scale(1);opacity:1;}
  to {transform: scale(1.1);opacity:0;}
}

@media screen and (max-width: 768px){
  .popup > .content .wrap{
    padding-top: 40px;
  }
}


/* ============================================== */
/* BANNER */
/* ============================================== */

.gallery-horizontal{
  padding:0;
  margin:0;
  max-width: 100%;
  position: relative;
}

.gallery-horizontal ul{
  list-style-type: none;
  display: block;
  width: 250%;
  top:0;
  left: 0%;
  position: absolute;
  padding: 0;
}

.gallery-horizontal ul li{
  display: block;
  float: left;
  width: 400px;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.gallery-horizontal,
.gallery-horizontal ul li{
  height: 200px;
}

.gallery-horizontal ul li img{
  position: absolute;
  width: 400px;
  top:50%;
  left: 50%;

  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}













