@charset "UTF-8";

/*font-family: 'Barlow Condensed', sans-serif;
*/

@font-face {
  font-family: 'MonumentExtended-Regular';
  src: url('../fonts/MonumentExtended-Regular.eot');
  src: url('../fonts/MonumentExtended-Regular.eot?#iefix') format('embedded-opentype'),
       url('../fonts/MonumentExtended-Regular.svg#MonumentExtended-Regular') format('svg'),
       url('../fonts/MonumentExtended-Regular.ttf') format('truetype'),
       url('../fonts/MonumentExtended-Regular.woff') format('woff'),
       url('../fonts/MonumentExtended-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

html, body{
    width: 100%;
    height:100%;
    margin:0;
    padding:0;
    font-weight: 400;
    font-size: 16px;
    font-family: 'Barlow Condensed', sans-serif;
    color: #000;
    overflow: hidden;
}
body.hidden{
    overflow: hidden;
}
a{
    text-decoration: none;
    color: #000;
}

.clear{
    clear: both;
}

::-moz-selection {
    background: rgba(251, 208, 209, 0.6);
}
::selection {
    background: rgba(251, 208, 209, 0.6);
}


.home{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: 'MonumentExtended-Regular';
    cursor: default;
}
.texto_loading{
    width: 1040px;
    margin: auto;
}
.texto_loading p{
    font-size: 110px;
    margin: 0px;
    display: flex;
    justify-content: space-between;
    text-transform: uppercase;
}

.texto_loading span{
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: #fff;
    background-image: url(../upload/fondo_letras.jpg);
    -webkit-background-clip: text;
    background-position-x: 170%;
    background-size: 100vw;
    background-repeat: no-repeat;
    background-position: -100vw 0%;

}

.texto_loading p:last-child{
  justify-content:center;
}
.texto_loading span.act{
    background-position: -100vw 0%;
    animation-name: fondoloading;
}

.texto_loading span#loading_01{
    background-position: -100vw 0%;
}
.texto_loading span#loading_01{
    animation-duration: 1800ms;  
    animation-fill-mode: forwards;
    animation-delay: 1200ms;
}
.texto_loading span#loading_02{
    background-position: -100vw 0%;
}
.texto_loading span#loading_02.act{
    animation-duration: 2000ms;  
    animation-fill-mode: forwards;
    animation-delay: 1200ms; 
}
.texto_loading span#loading_03{
    background-position: -100vw 0%;
}
.texto_loading span#loading_03.act{
    animation-duration: 1200ms;  
    animation-fill-mode: forwards;
    animation-delay: 800ms;
}
.texto_loading span#loading_05{
    background-position: -100vw 0%;
}
.texto_loading span#loading_05.act{
    animation-duration: 800ms;  
    animation-fill-mode: forwards;
    animation-delay: 1800ms;
}
.texto_loading span#loading_06{
    background-position: -100vw 0%;
}
.texto_loading span#loading_06.act{
    animation-duration: 2100ms;  
    animation-fill-mode: forwards;
    animation-delay: 1000ms;
}
.texto_loading span#loading_07{
    background-position: -100vw 0%;
}
.texto_loading span#loading_07.act{
    animation-duration: 1200ms;  
    animation-fill-mode: forwards;
    animation-delay: 1100ms;
}
.texto_loading span#loading_10{
    background-position: -100vw 0%;
}
.texto_loading span#loading_10.act{
    animation-duration: 1600ms;  
    animation-fill-mode: forwards;
    animation-delay: 2000ms;
}
.texto_loading span#loading_11{
    background-position: -100vw 0%;
}
.texto_loading span#loading_11.act{
    animation-duration: 1800ms;  
    animation-fill-mode: forwards;
    animation-delay: 1000ms;
}
.texto_loading span#loading_12{
    background-position: -100vw -20px;
}
.texto_loading span#loading_12.act{
    animation-duration: 2600ms;  
    animation-fill-mode: forwards;
    animation-delay: 1900ms;
}


.texto_loading span#loading_04.act{
    animation-duration: 2600ms;  
    animation-fill-mode: forwards;
}
.texto_loading span#loading_08.act{
    animation-duration: 1800ms;  
    animation-fill-mode: forwards;
    animation-delay: 600ms;
}
.texto_loading span#loading_09.act{
    animation-duration: 2000ms;  
    animation-fill-mode: forwards;
    animation-delay: 300ms;
}

@keyframes fondoloading {
  0%   {
    background-position: -100vw 0%;
  }
  100% {
    background-position: 0vw 0%;
  }
}

.texto_loading p:last-child span:first-child{
    margin-right: 100px;
}
.texto_loading span.act{
    background-position: 0vw 0%;
}


.loading{
    position: absolute;
    width: 100%;
    height: 100vh;
    z-index: 1;
    top: 0;
    left: 0;
    cursor: pointer;
    display: none;
}
.loading_int{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.circulo{
    width: 230px;
    height: 230px;
    border-radius: 50%;
    overflow: hidden;
    transform: scale(1);
    position: relative;
}

.circulo_int{
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #0848F2, #22A6E0, #2FB699, #091F95);
    background-size: 400% 400%;
    -webkit-animation: gradient 15s ease infinite;
    animation: gradient 15s ease infinite;
    position: absolute;
    top: 0;
    left: 0;
}

@-webkit-keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.loading.act .circulo{
animation-name: circulo_t;
    animation-duration: 1200ms;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);

    animation-fill-mode: forwards;
}

@keyframes circulo_t {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(10);
    }
}

.textos_centrados{
        position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.textos_centrados .pt_01{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: 400ms;
}
.textos_centrados .pt_01 p{
    text-decoration: underline;
    color: #fff;
    text-transform: uppercase;
    font-size: 46px;
    margin: 0;
    position: relative;
    cursor: pointer;
    font-weight: 900;
    font-style: italic;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
}
.textos_centrados .pt_02{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 600ms;
    transition-delay: 600ms;
}
.textos_centrados .pt_02 img{
    max-width: 520px;
    height: auto;
}

.loading.act .textos_centrados .pt_01{
    opacity: 0;

}
.loading.act .textos_centrados .pt_02{
    opacity: 1;
}

body.inicio{
    overflow: scroll;
}

.pantalla{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.pantalla.pantalla_01{}
.pantalla_int{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.contenido{
    display: none;
    min-height: 100vh;
    color: #fff;
}
.contenido a{
    color:#fff;
}
.fondo_video{
    background-color: #17173c;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-image: url(../upload/fondo_falso.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(10px);
    background-size: 400% 400%;
    -webkit-animation: gradient 15s ease infinite;
    animation: gradient 15s ease infinite;*/
    overflow: hidden;

}
.fondo_video iframe{
    width: 100vw;
    height: 100vh;
    filter: blur(30px);
}
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 5;
}
.header_int{
    width: calc(100% - 46px);
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 20px;
}
.part_01{}
.part_01 img{
    max-width: 198px;
    height: auto;
    position: relative;
    z-index: 5;
    cursor: pointer;
}
.part_01 .c_n_p{
    border-radius: 8px;
    display: block;
    padding: 4px 5px;
    border: 2px solid #fff;
    color: #fff;
    text-transform: uppercase;
    margin-top: 9px;
    letter-spacing: 0.03em;
    cursor: pointer;
    position: relative;
    z-index: 5;
}
.part_02{}
.btn_menu{
    position: relative;
    z-index: 3;
}
.btn_menu_int{
    border-radius: 50%;
    background-color: #fff;
    padding: 11px 9px;
    cursor: pointer;
}
.linea{
    width: 18px;
    height: 1px;
    background-color: #000;
    margin-bottom: 5px;
}
.linea:nth-child(1){
    transition: 300ms;
}
.linea:nth-child(2){}
.linea:nth-child(3){
    margin-bottom: 0px;
    transition: 300ms;
}

.header_desplegado{
    position: absolute;
    right: 0;
    top: 0;
    width: 300px;
    background-color: rgba(0, 0, 0, 0.8);
    height: 100vh;
    overflow: hidden;
    height: 0;
    transition: 300ms;
    transition-timing-function: ease;
}
.header_d_int{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}
.hdi_menu{}
.hdi_menu a,
.hdi_menu span{
    display: block;
    width: fit-content;
    display: flex;
    margin: 0px auto 40px;
    font-family: 'MonumentExtended-Regular';
    font-size: 26px;
    text-decoration: underline;
    text-transform: uppercase;
    cursor: pointer;
    opacity: 0;
    transition: 600ms;
    transition-timing-function: ease;
}
.activeHeader .hdi_menu span{
    opacity: 1;
}

.boton_footer{
    cursor: pointer;
}
.linea_vertical{
    width: 1px;
    height: 120px;
    height: 0px;
    background-color: #fff;
    margin: 10px auto 40px;
    transition: 600ms;
}
.activeHeader .linea_vertical{
    height: 120px;
}
.header_d_int .redes{
    display: block;
}
.header_d_int .redes a{
    margin: 0px 0px 10px;
    opacity: 0;
    transition: 600ms;
}
.header_d_int .redes a img{
    max-width: 30px;
}
.activeHeader .header_d_int .redes a{
    opacity: 1;
}
.activeHeader .header_desplegado{
    height: 100vh;
}
.activeHeader .btn_menu_int{
    background-color: rgba(255,255,255,0.0);
}
.activeHeader .linea{
    background-color: #fff;
}
.activeHeader .linea:nth-child(1){
    transform: translate(1px,6px) rotate(45deg);
    width: 19px;
}
.activeHeader .linea:nth-child(2){
    opacity: 0;
}
.activeHeader .linea:nth-child(3){
    transform: translate(1px, -6px) rotate(-45deg);
    width: 19px;
}

.pantalla_int{}
.pantalla_int.pantalla_01{
    overflow:hidden;
}
.centrar{text-align: center;}
.centrar_txt{}
.parrafo{
    color: #FBD000;
    font-size: 40px;
    font-weight: 300;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}
.parrafo p{
    margin: 0px;
    text-shadow: 0px 0px 8px #CECC95;
    animation: luminoso 1200ms ease infinite;
}
@keyframes luminoso {
    0% {
        text-shadow: 0px 0px 8px #CECC95;
    }
    20% {
        text-shadow: 0px 0px 10px #CECC95;
    }
    40% {
        text-shadow: 0px 0px 8px #CECC95;
    }
    60% {
        text-shadow: 0px 0px 10px #CECC95;
    }
    80% {
        text-shadow: 0px 0px 8px #CECC95;
    }
    100% {
        text-shadow: 0px 0px 10px #CECC95;
    }
}

.menu_centrado{
    font-family: 'MonumentExtended-Regular';
}
.mc_a{
    display: block;
        position: relative;
    margin: 0 auto 70px;
    width: fit-content;
}
.mc_a > span{
    display: block;
    width: fit-content;
    font-size: 42px;
    text-decoration: underline;
    margin: auto;
    text-transform: uppercase;
    cursor: pointer;
}
.mc_a > img{
    /* display: none; */
    position: absolute;
    transform-origin: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    max-width: 480px;
    visibility: hidden;
}
footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 4;
}
.footer_int{
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 46px);
    margin: 0px auto 17px;
}
.linea_f{
    width: 30%;
    height: 1px;
    background-color: #fff;
}
.centrar_footer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1040px;
    margin: 0px 20px;
}
.centrar_footer span,
.centrar_footer a{
    display: block;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.centrar_footer .linea_f{
    width: 30%;
    margin: 0 20px;
}
.redes{
    display: flex;
    align-items: center;
    justify-content: center;
}
.redes a{
    display: block;
    margin: 0px 5px;
}
.redes a img{
    max-width: 20px;
    height: auto;
}

.pantalla_transition{
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: none;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(-45deg, #0848F2, #22A6E0, #2FB699, #091F95);
    background-size: 400% 400%;
    -webkit-animation: gradient 15s ease infinite;
    animation: gradient 15s ease infinite;
}

.pt_int{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pt_int img{
    max-width: 520px;
    height: auto;
    display: block;
}
.pantalla_03 .centrar{
    position:absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.pantalla_03 .centrar_escoger{
    position:absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    }

.columna{
    width: 250px;
}
.content_img{}
.content_img_int{
    width: 100%;
    position: relative;
}
.content_img_int::before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    display: block;
    top: 10px;
    left: 10px;
    border:1px solid #000;
}
.content_img_int img{
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
}
.content_img_int.content_img_video video{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.btn_elegir{
    background-color: #fff;
    border-radius: 7px;
    padding: 5px 0px;
    margin-top: 40px;
    cursor: pointer;
}
.btn_elegir p{
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-size: 18px;
    color: transparent;
}
.icono_giratorio{
    width: 200px;
    position: relative;
}
.icono_giratorio img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    z-index: 2;
    max-width: 280px;
    transform-origin: center;
    animation: girar 15s linear infinite;
}
@keyframes girar {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg);
    }
}
.opcion_01 .btn_elegir{}
.opcion_01 .btn_elegir p{
    background: linear-gradient(-45deg, #FCA102, #FA5E00, #F90F01, #F800E0);
    background-size: 200% 200%;
    -webkit-animation: gradientUno 15s ease infinite;
    animation: gradientUno 15s ease infinite;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
@keyframes gradientUno {
    0% {
        background-position: 0% 25%;
    }
    50% {
        background-position: 50% 25%;
    }
    100% {
        background-position: 0% 25%;
    }
}
.opcion_02 .btn_elegir{}
.opcion_02 .btn_elegir p{
        background: linear-gradient(-45deg, #00DB04, #00D36F, #00C8F9);
    background-size: 200% 200%;
    -webkit-animation: gradientDos 15s ease infinite;
    animation: gradientDos 15s ease infinite;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
@keyframes gradientDos {
    0% {
        background-position: 0% 25%;
    }
    50% {
        background-position: 50% 25%;
    }
    100% {
        background-position: 0% 25%;
    }

}


.opcion_01 .btn_elegir:hover{
    transition: 300ms;
    background: linear-gradient(-45deg, #FCA102, #FA5E00, #F90F01, #F800E0);
    background-size: 200% 200%;
    -webkit-animation: gradientUno 15s ease infinite;
    animation: gradientUno 15s ease infinite;
}
.opcion_01 .btn_elegir:hover p{
    color: #fff;
    -webkit-text-fill-color: #fff;
}


.opcion_02 .btn_elegir:hover{
    transition: 300ms;
    background: linear-gradient(-45deg, #00DB04, #00D36F, #00C8F9);
    background-size: 200% 200%;
    -webkit-animation: gradientDos 15s ease infinite;
    animation: gradientDos 15s ease infinite;
}
.opcion_02 .btn_elegir:hover p{
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.centrar_eleccion{}
.centrar_eleccion .titulo{
    margin-bottom: 30px;
}
.centrar_eleccion .titulo h2{
    color: #FBD000;
    font-weight: normal;
    font-family: 'MonumentExtended-Regular';
    font-size: 38px;
    text-transform: uppercase;
    margin: 0px;
}
.centrar_eleccion_int{
    width: 570px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.centrar_eleccion_int .columna{}

.instrucciones{
    width: 220px;
}
.instrucciones_int{}
.pregunta{
    margin-bottom: 20px;
}
.pregunta p{
    font-size: 26px;
    font-weight: 300;
    margin: 0px;
}
.respuestas{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: calc(100% - 10px);
}
.respuesta{
    width: calc(50% - 1px);
    padding: 5px 0px;
    background-color: #fff;
    margin-bottom: 40px;
    cursor: pointer;
}
.respuesta p{
    margin: 0px;
    text-transform: uppercase;
    font-size: 22px;
}
.respuesta.op_01{
    border-top-left-radius: 9px;
    border-bottom-left-radius: 9px;
}
.respuesta.op_02{
    border-top-right-radius: 9px;
    border-bottom-right-radius: 9px;
}
.respuesta.op_01 p{
    background: linear-gradient(-45deg, #FCA102, #FA5E00, #F90F01, #F800E0);
    background-size: 200%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.respuesta.op_02 p{
    background: linear-gradient(-45deg, #00DB04, #00D36F, #00C8F9);
    background-size: 200%;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.respuesta.op_01:hover{
    background: linear-gradient(-45deg, #FCA102, #FA5E00, #F90F01, #F800E0);
}
.respuesta.op_01:hover p{
    -webkit-text-fill-color: #fff;
}

.respuesta.op_02:hover{
    background: linear-gradient(-45deg, #00DB04, #00D36F, #00C8F9);
}
.respuesta.op_02:hover p{
    -webkit-text-fill-color: #fff;
}

.menu_opciones{
  font-family: 'MonumentExtended-Regular';
  font-weight: normal;
  text-transform: uppercase;
  font-size: 18px;
  width: 300px;
}
.m_o{
    text-decoration: underline;
    display: block;
    margin-bottom: 20px;
    text-align: left;
    cursor: pointer;
    width: fit-content;
}

.pantalla_producto{
    background-color: rgba(255, 0, 0, 0.2);
}
.centrar_productos{}
.centrar_productos .titulo{
    margin-bottom:10px;
}
.centrar_productos .titulo h2{
    font-weight: normal;
    font-family: 'MonumentExtended-Regular';
    font-size: 38px;
    text-transform: uppercase;
    margin: 0px;
}
.centrar_productos .centrar_int{}
.centrar_productos .columna{}
.centrar_productos .columna img{}
.centrar_productos .columna .flechita{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: relative;
    background-color: #fff;
    margin: 10px auto;
}
.centrar_productos .columna .flechita::after{
    content: '';
    width: 12px;
    height: 2px;
    display: block;
    position: absolute;
    background-color: #000;
    transform: translate(13px, 15px) rotate(-45deg);
}
.centrar_productos .columna .flechita::before{
    content: '';
    width: 12px;
    height: 2px;
    display: block;
    position: absolute;
    background-color: #000;
    transform: translate(5px, 15px) rotate(45deg);
}
.centrar_productos .columna p{}
.centrar_productos .centrar_int{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 560px;
    margin: auto;
}
.centrar_productos .centrar_int .columna{
    display: block;
    width: 200px;
}
.centrar_productos .centrar_int .columna img{
    max-width: 100%;
    height: auto;
    display: block;
}
.centrar_productos .centrar_int .columna p{
    font-size: 18px;
}


.over_page{
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: scroll;
    bottom: 0;
    left: 0;
    z-index: 10;
    height: 0vh;
    overflow: hidden;
    transition: 600ms;
    transition-timing-function: ease;
}
.over_act .over_page{
    height: 100vh;
}
.over_page_int{
    position: absolute;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
}

.o_page{
    margin: 10px;
    background-color: rgba(0, 0, 0, 0.95);
    width: calc(100% - 60px);
    min-height: calc(100vh - 60px);
    padding: 20px;
    color: #fff;
}
.o_page .cerrar{
    float: right;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: sticky;
    top: 20px;
}
.o_page .cerrar::after{
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg) translate(25px, 11px);
}
.o_page .cerrar::before{
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transform: rotate(-45deg) translate(-11px, 25px);
}
.o_page .texto{
    clear: both;
    width: 600px;
    margin: auto;
    font-size: 18px;
}
.o_page .texto p{}
.o_page .texto .titulo{
    margin-left: -200px;
}
.o_page .texto .titulo h2{
    font-weight: normal;
    font-size: 26px;
    text-transform: uppercase;
    font-family: 'MonumentExtended-Regular';
}
.cerrar_video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.centrar_video{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.8);
}
.centrar_video .cerrar_video_icono{
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
.centrar_video .cerrar_video_icono::after{
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transform: rotate(45deg) translate(25px, 11px);
}
.centrar_video .cerrar_video_icono::before{
    content: '';
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transform: rotate(-45deg) translate(-11px, 25px);
}
.centrar_video .video{width: calc(100vw - 80px);position: relative;}
.centrar_video .video_int{
    position: relative;
    width: 100%;
    padding-bottom: 52.6%;
    height: 0;
}
.centrar_video .video_int iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.mc_a:hover img{
    visibility:visible;
}
.mc_a::after{
    content: attr(data-glitch); 
    display: block;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    color: #FFBE00;
    font-size: 42px;
}

.mc_a::before{
    content: attr(data-glitch); 
    display: block;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    color: #00FF00;
    font-size: 42px;
    z-index: 1;
}
.mc_a span{
    position: relative;
    z-index: 1;
}
.mc_a:hover::after{
    animation: glitch .3s cubic-bezier(.25, .46, .45, .94)  infinite;
}
.mc_a:hover::before{
    animation: glitch_dos .3s cubic-bezier(.25, .46, .45, .94)  infinite;
}




@keyframes glitch {
    0% {
        transform: translate(0)
    }
    20% {
        transform: translate(-5px, 5px)
    }
    40% {
        transform: translate(-5px, -5px)
    }
    60% {
        transform: translate(5px, 5px)
    }
    80% {
        transform: translate(5px, -5px)
    }
    to {
        transform: translate(0)
    }
}

@keyframes glitch_dos {
    0% {
        transform: translate(0)
    }
    20% {
        transform: translate(4px, -4px)
    }
    40% {
        transform: translate(4px, 4px)
    }
    60% {
        transform: translate(-4px, -4px)
    }
    80% {
        transform: translate(-4px, 4px)
    }
    to {
        transform: translate(0)
    }
}





.m_o{
    position: relative;
}
.m_o::after{
    content: attr(data-glitch); 
    display: block;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    color: #FFBE00;
    font-size: 18px;
}

.m_o::before{
    content: attr(data-glitch); 
    display: block;
    text-transform: uppercase;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
    color: #00FF00;
    font-size: 18px;
}
.m_o span{
    position: relative;
    z-index: 1;
}
.m_o:hover::after{
    animation: glitch .3s cubic-bezier(.25, .46, .45, .94) infinite;
}
.m_o:hover::before{
    animation: glitch_dos .3s cubic-bezier(.94, .45, .46, .25) infinite;
}

.contenedor_producto{
    width: 200px;
    height: 340px;
    overflow: hidden;
    position: relative;
}
.cp_img{
    z-index: -1;
}
.cp_img img{
    position: absolute;
    opacity: 0.45;
    margin: auto;
    width: 150%;
    top: -25%;
    right: -25%;
    bottom: -25%;
    left: -25%;
}

.content_img_int.content_img_video{
        width: 100%;
    position: relative;
    padding-bottom: 177%;
    height: 0;
}

