/*img 1*/

:root{
    --naranja: #EF714F;
    --lavanda: #A37CE8;
}
.img1_destacadas{
    position: relative;
    width: 400px;
    font-size: 18px;
}
.img1_destacadas *{
    transition: all .4s linear;
}
.img1_destacadas img{
    width: 100%;
}
.img1_decoracion{
    position: absolute;
    right: 0px;
    top: 40px;
    z-index: 0 !important;
    width: 120px;
}
.img1_tel{
    width: 270px;
    background: url('https://graphica.pe/wp-content/uploads/tel.webp');
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 12px 13px 12px 13px;
    border-radius: 47px;
    margin: 30px auto 0 35px;
    z-index: 1 !important;
    position: relative;
    height: 552px;
}
.img1_names{
    position: relative;
    overflow: hidden;
    z-index: 3 !important;
    text-align: center;
    width: 270px;
    height: 22px;
    display: block;
    border-radius: 0;
    padding: 10px 0px 0px 0px;
    margin: 0 auto 0 35px;
}
.img1_name{
    position:absolute;
    width: 100%;
    text-align:center;
}
.img1_name:before{
    content: '';
    display: inline-block;
    top: -6px;
    left: -20px;
    width: 12px;
    height: 12px;
    border-radius: 50px;
    margin: 0 5px 0 0;
}
.img1_pantalla{
    position: relative;
    z-index: 2;
    height: 525px;
    overflow: hidden;
}
.img1_phone_slide{
    top: 0 !important;
    left: 0 !important;
}
.img1_dominio_box{
    position: relative;
    overflow: hidden;
    z-index: 3;
    background: #E6EAED;
    border: 2px solid white;
    padding: 0px 26px;
    border-radius: 50px;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 330px;
    height: 35px;
    display: block;
    text-align: center !important;
    font-size: 15px;
    line-height: 30px;
}
.img1_dominio{
    width: calc(100% - 52px);
    text-align: center;
}
.img1_dominio_box:before,
.img1_dominio_box:after{
    content: '';
    width: 18px;
    height: 18px;
    background: url(https://graphica.pe/wp-content/uploads/tabler_camera-cancel.svg);
    position: absolute !important;
    top: 7px;
    background-size: 100%;
    display: block;
    left: 5px !important;
    right: inherit !important;
}
.img1_dominio_box:after{
    left: calc(100% - 24px) !important;
    background: url(https://graphica.pe/wp-content/uploads/mi_share.svg);
}
.img1_colors_tab{
    position: absolute;
    bottom: 70px;
    left: -10px;
    z-index: 3;
}
.img1_color_nav{
    width: 44px;
    height: 44px;
    display: block;
    box-shadow: 0 0 0 6px rgba(186,186,186,.2);
    animation: pulse-animationn 1s infinite;
    border-radius: 50px;
    margin: 0 auto 18px auto;
    cursor: pointer;
    transform: scale(1);
    transition: all .3s;
}
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,.5)
    }

    100% {
        box-shadow: 0 0 0 4px rgba(0,0,0,.2)
    }
}
.img1_color_nav.active{
    transform: scale(1.1);
    box-shadow: 0 0 0 6px rgba(186,186,186,.5);
}
.img1_color_nav:hover{
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(186,186,186,.5);
}
/*ESTADOS ACTIVOS*/
.img1_color_nav[data-color="naranja"],
.img1_name[data-color="naranja"]:before{
    background: var(--naranja);
}
.img1_color_nav[data-color="lavanda"],
.img1_name[data-color="lavanda"]:before{
    background: var(--lavanda);
}
.img1_dominio,
.img1_deco_slide,
.img1_phone_slide,
.img1_name{
    position: absolute;
    opacity: 0;
}
.img1_dominio.active,
.img1_deco_slide.active,
.img1_phone_slide.active,
.img1_name.active{
    position: absolute;
    opacity: 1;
}

@media(max-width: 767px){
    .img1_destacadas{
        width: 280px;
        margin: auto;
    }
    .img1_tel{
        width: 240px;
        margin: 40px auto 0 auto !important;
    }
    .img1_decoracion{
        width: 60px;
        left: inherit;
        right: 0;
        top: inherit;
        bottom: 40px;
        transform: rotate(90deg);
    }
    .img1_dominio_box{
        top: -110px !important;
    }
    .img1_colors_tab{
        bottom: 120px;
    }
}

/* FLECHAS INDICADORAS DE TEXTO*/
.hasArrow:before{
    content: '';
    position: absolute;
    z-index: 5;
    left: calc(100% + 15px);
    top: 0px;
    height: 69px;
    background-size: 100%;
    background-repeat: no-repeat;
    width: 129px;
    background-image: url('https://graphica.pe/wp-content/uploads/arrow-1-1.png');
	pointer-events: none;
}
.arrowL:before{
    right: calc(100% + 15px) ;
    left: inherit;
}
@media(max-width: 767px){
    .hasArrow:before{
        display: none;
    }
}
/* BARRA DE PROGRESO DE ANIMACION*/
.progress{
    width: 100px;
    margin: 0 auto;
    position: relative;
    z-index: 5555;
    height: 5px;
    border-radius: 5px;
    background: #e2e2ff;
}
.progress-bar{
    height: 5px;
    border-radius: 5px;
    background: #AA9AD6;
    width: 0%;
}
/*IMG 1*/
.img1_destacadas .progress{
    margin: 0 auto 0 112px;
}
.progress-bar.animando {
  animation-name: progreso;
  animation-timing-function: linear;
}
@keyframes progreso {
  from { width: 0%; }
  to   { width: 100%; }
}

@media(max-width: 767px){
    .img1_destacadas .progress{
        margin: 0 auto;
    }
}

    

/*img 2*/
.img2_video{
    border-radius: 35px;
}
.img2_destacadas{
    position: relative;
    width: 400px;
    font-size: 18px;
    background-image: url('https://graphica.pe/wp-content/uploads/IMG2_DECO.webp');
    background-size: 100% 100%;
    background-position: -10px -10px;
    background-repeat: no-repeat;
}

.img2_tel{
    width: 270px;
    background: url('https://graphica.pe/wp-content/uploads/tel.webp');
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 10px 13px 12px 13px;
    margin: 30px auto 0 auto;
    z-index: 1 !important;
    position: relative;
    height: 552px;
    overflow: hidden !important;
}
.img2_pantalla{
    position: relative;
    z-index: 2;
    height: 525px;
    overflow: hidden;
    border-radius: 35px;
}

@media(max-width: 767px){
    .img2_destacadas{
        width: 280px;
        margin: auto;
    }
    .img2_tel{
        width: 240px;
        margin: 40px auto 0 auto !important;
        padding: 8px 13px 12px 13px;
    }
    .img2_pantalla,
    .img2_video{
        border-radius: 28px;
    }
}

/*img 3*/
.img3_video{
}
.img3_destacadas{
    position: relative;
    width: 400px;
    font-size: 18px;
    background-size: 100% 100%;
    background-position: -10px -10px;
    background-repeat: no-repeat;
}

@media(max-width: 767px){
    .img3_destacadas{
        width: 280px;
        margin: auto;
    }
}

/*img 4*/

.img4_destacadas{
    position: relative;
    width: 400px;
    font-size: 18px;
    background-size: 100% 100%;
    background-position: -10px -10px;
    background-repeat: no-repeat;
}
.img4_deco{
    position: absolute;
    top: -40px;
    left: 0px;
}
.img4_tel{
    width: 270px;
    background: url('https://graphica.pe/wp-content/uploads/tel.webp');
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 10px 13px 12px 13px;
    margin: 30px auto 0 auto;
    z-index: 1 !important;
    position: relative;
    height: 552px;
}
.img4_pantalla{
    position: relative;
    z-index: 2;
    height: 525px;
    overflow: hidden;
    border-radius: 35px;
}
.img4_pantalla img{
    position: absolute;
    top: 0px;
    left:0px;
    width: 100%;
    opacity: 0;
    transition: all .2s linear;
	border-radius: 35px;
}
.img4_pantalla img{
    opacity: 0;
}
.img4_pantalla img.active{
    opacity: 1;
}
.img4_slide_arrows{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 6;
}
.img4_slide_arrows img{
    width: 70px;
    margin-left: -25px;
    transform: scale(1);
    transition: all .2s linear;
    cursor: pointer;
}
.img4_slide_arrows img:hover{
    width: 70px;
    margin-left: -25px;
    transform: scale(1.2);
}
.arrow_2{
    position: absolute;
    margin-left: 0 !important;
    left: calc(100% - 35px) !important;
}
.img4_sello{
    position: absolute;
    top: -30px;
    right: 10px;
    z-index: 5;
    background: #2A4A75;
    border: 5px solid #2A4A75;
    border-radius: 50%;
}
.img4_sello{
    width: 100%;
    max-width: 120px;
}
.img4_sello_box{
    position: relative;
    padding: 10px;
}
.img4_sello .sello_animado{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 90%;
    left: 0px;
    right: 0px;
    margin: 5% auto;
    animation: giro 20s linear infinite;
}
@keyframes giro{
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(360deg);
    }
}
.img4_music{
    position: absolute;
    bottom: 70px;
    right: 60px;
    z-index: 5;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 40px;
    box-shadow: 0 0 0 5px rgba(0,0,0,.2);
}
.img4_music img{
    transform: scale(1.5);
}

@media(max-width: 767px){
    .img4_destacadas{
        width: 280px;
        margin: auto;
    }
    .img4_tel{
        width: 240px;
        margin: 40px auto 0 auto !important;
        padding: 9px 12px 8px 11px  !important;
    }
	.img4_pantalla img,
    .img4_pantalla{
        border-radius: 28px  !important;
    }
}
