
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: nutmeg;
    text-decoration: none; 
    
}

:root{ 
    --text_size-title: 40px;
    --text_tittle-card: 23px;
    --text_title-cardv2: 20px;
    --text_paragrapg: 16px;
    --box_shadow-primary: 0px 6px 50px -20px rgba(0,0,0,0.5);

    --black-color: hsl(210, 12%, 15%);
    --body-color: hsl(210, 16%, 12%);
    --container-color: hsl(210, 24%, 8%);

}
section{
    padding: 2rem 9%;
}

header{
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: 1000;
}

/*HEADER SUPERIOR*/

.header__superior{ /* Cambios espacio de donde se encuentra logo*/
    max-width: 1600px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    
}

.logo img{ 
    width: 200px;
}

/*.search input{ 
    width: 300px;
    padding: 10px;
}*/

/*BARRA MENU------------------------------------------------------------------------------*/

.container__menu{
    width: 100%;
    height: 70px;
    background: #c09fcb;
    padding: 0px 20px;
}

.menu{
    max-width: 1600px; /* */
    margin: auto;
    height: 100%;
}

nav{
    height: 100%;
}

nav > ul{
    height: 100%;
    display: flex;
}

nav ul li{
    height: 100%;
    list-style: none;
    position: relative;
}

nav > ul > li:first-child > a{
    background-image: url(assets/images/home.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 20px 40px;
}

nav > ul > li:first-child:hover > a{
    background-image: url(assets/images/home.png);
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: center center;
}

nav > ul > li > a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 14px;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 300ms ease;
    
}

nav > ul > li > a:hover{
    transform: scale(1.1);
    background: #864383;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    border-radius: 10px;
}

#selected{
    transform: scale(1);
    /*background-color: #864383;*/
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}


/*SUBMENU ---------------------------------------------------------------------------*/

nav ul li ul{
    width: 200px;
    display: flex;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 90px;
    left: -5px;
    padding: 14px 0px; 
    visibility: hidden;
    opacity: 0;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    z-index: 10;
    transition: all 300ms ease;
}

nav ul li:hover ul{
    visibility: visible;
    opacity: 1;
    top: 70px;
}

nav ul li ul:before{
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
    top: -12px;
    left: 20px;
    
}

nav ul li ul li a{
    display: block;
    color: #c09fcb;
    padding: 6px;
    padding-left: 14px;
    margin-top: 10px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 300ms ease;
    border-radius: 15px;
}

nav ul li ul li a:hover{
    background: #c09fcb;
    color: #fff;
    transform: scale(1.2);
    padding-left: 30px;
    font-size: 14px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
/*End SubMenu ----------------------------------------------------------------------------*/

/*ELEMENTOS MEnu hambu RESPONSIVOS________________________________________________________*/

.icon__menu{
    font-size: 26px;
    color: white;
    cursor: pointer;
    width: 26px;
    height: 100%;
    display: none;
    align-items: center;
}

#label__check{
    width: 26px;
    height: 100%;
    display: none;
}

#check__menu{
    display: none;
}
/*End elementos  menu------------------------------------------------------------------*/

/*Section Home -------------------------------------------------------------------------*/
.home {
    display: flex;
    justify-content: center;
    align-items: center;
}

.home_img img{
    width: 30vw; /* */
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0%{
        transform: translateY(0);
    }
    50%{
        transform: translateY(-2.4rem);
    }
    100%{
        transform: translateY(0);
    }
}

.home_contenido h3{
    font-size: 1.5rem; /*  1 rem = 16px */
    font-weight: 500;
}

.home_contenido h3:nth-of-type(2){
    margin-bottom: 2rem;
}

span{
    color: #c09fcb;
}

.home_contenido h1{
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.3;
}

.home_contenido p{
    font-size: 1.3rem;
}

.social_media a{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: .2rem solid #864383;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #c09fcb;
    margin: 3rem 1.5rem 3rem 0;
    transition: .5s ease;
}
.social_media a:hover{
    background: #c09fcb;
    color: #fff;
    box-shadow: 0 0 1rem #864383;
    border: .2rem solid #864383;
}

.text_informacion{
    width: 1200px;
    margin-left: 0px;
    text-align: justify;
}
.text_informacion h1{
    font-size: 40px;
    color: #8347AD;
}


.text_informacion h3{
    font-size: 20px;
    color: #000000;
}
.text_informacion p{
    font-size: 15px;
    margin-top: 20px;
    
}

.buttons_container{
    display: flex;
    margin-top: 40px;
}
.btn_new_pag{
    padding: 14px 40px;
    background: #8347AD;
    border-radius: 25px;
    color: #fff;
    font-weight: 16px;
    margin-left: 10px;
    transition: .15s ease;
    box-shadow: 10px 5px 5px #696969;
}

.btn_new_pag:hover{
    background: #8347AD;
    box-shadow: 5px 10px 5px #696969;
}


.btn_info_1{
    margin-right: 20px;
    display: inline-block;
    padding: 10px 25px;
    background: #8347AD;
    border-radius: 25px;
    box-shadow: 0 0 1rem #7c858c;
    font-size: 1rem;
    color: #fff;
    letter-spacing: .1rem;
    transition: .5s ease;

}
.btn_info_1:hover{
    box-shadow: none;
    color: #7c858c;
}

.btn_info{
    display: inline-block;
    padding: 10px 25px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 1rem #c09fcb;
    font-size: 1rem;
    color: #8347AD;
    letter-spacing: .1rem;
    transition: 1.5s ease;

}
.btn_info:hover{
    box-shadow: none;
    background: #8347AD;
    color: #fff;
}
/*End Section Home -------------------------------------------------------------------------*/

/*ARTICULO------------------------------------------------------------------------------*/
body{
    background: #f0f0f0;
}
main{
    background: #f0f0f0;
    padding: 10px 20px;
    /*margin-top: 194px;   espacio en blanco superior */ 
}

article{
    max-width: 1600px; /*espaciado de laterales*/
    margin: 60px auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
}

article p{
    margin-top: 20px;
    font-size: 18px;
    font-weight: 300;
}

/*Slider ----------------------------------------------------------------------------*/
.img_slider{
    position: relative;
    max-width: 1600px;
    height: 500px;
    margin: auto;
    background: transparent
    
}

.img_slider .slide{
    z-index: 1;
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
    
}

.img_slider .slide.active{
    clip-path: circle(150% at 0 50%);
    transition: 2s;
    transition-property: clip-path;
}
.img_slider .slide img{
    z-index: 1;
    width: 100%;
    height: 500px;
    border-radius: 20px;
}

.img_slider .slide .info{
    position: absolute;
    top: 0; 
    padding: 15px 30px;
}

.img_slider .slide .info h2{
     color: #c09fcb;
     font-size: 40px;
     text-transform: uppercase;
     font-weight: 800;
     letter-spacing: 2px;
}

.img_slider .slide .info p{
    color: #7c858c;
    background: rgba(0,0,0,0.1);
    font-size: 16px;
    width: 60%;
    padding: 10px;
    border-radius: 4px;
}

.img_slider .navigation{
    z-index: 2;
    position: absolute;
    display: flex;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.img_slider .navigation .btn{
    background: rgba(255, 255, 255, 0.5);
    width: 12px;
    height: 12px;
    margin: 10px;
    border-radius: 50%;
    cursor: pointer;
}

.img_slider .navigation .btn.active{
    background: #864383;
    box-shadow: 0 0 2px rgba(0,0,0,0.5);
}
/* end Slider------------------------------------*/

/*Container cover de video y texto lateral --------------------------------------------*/
.container_informacion{
    max-width: 1400px;
    height: calc(100vh+800px);
    padding: 40px;
    margin: auto;
    
}
.cover_container{
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 60px;
}
.text_informacion{
    width: 50%;
}
.text_informacion h1{
    font-size: 30px;
    color: #864383;
}
.text_informacion p{
    font-size: 15px;
    margin-top: 40px;
}

.buttons_container{
    display: flex;
    margin-top: 40px;
}
.btn_new_pag{
    padding: 14px 40px;
    border-radius: 10px;
    color: black;
    font-weight: 16px;
    cursor: pointer;
    margin-left: 10px;
    transition: background 300ms ease;
    
}

.btn_new_pag:hover{
    background: #c09fcb;
    color: #fff;
    
    
}

.media_container{
    width: 50%;
    
}
.media_container video{
    width: 100%; 
    margin-top: -40px;
    
}

/*end Container cover de video y texto lateral --------------------------------------------*/
/*Nuevo bloque card publicaciones  _____________________________________________________________________*/
.container_card{    
    padding-top: 100px;
    padding: 40px;
}
.card{
    max-width: 1600px;
    margin: auto;
    text-align: center;
    padding: 0px 20px;
}
.text_card{
    max-width: 800px;
    margin: auto;
    margin-bottom: 40px;
}
.text_card p{
    color: #c09fcb;
    letter-spacing: 4px;
    font-size: 16px;
    font-weight: 500;
}

.text_card h1{
    font-size: 40px;
    font-weight: 400;
    color: #8347AD;
}

.container_box_card{
    display: flex;
    /*flex-wrap: wrap;
    justify-content: center;*/
    
    
}

.box_card{
    width: 1600px; /*max-width:350px*/
    padding: 20px 20px;
    border: 3px solid #e3e3e3;
    border-radius: 20px;
    margin: 14px;
    transition: all 400ms;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box_card:hover{
    border: 1px solid transparent;
    box-shadow: var(--box_shadow-primary);
}
.box_card h2{
    font-size: var(--text_tittle-card);
    margin-top: 10px;
    font-weight: 400;
    padding-left: 20px;
    color: #5f5f5f;
    text-align: justify;
}
.box_card a{
   /* color: black;
    text-decoration: none;
    font-size: 25px;
    padding-right: 30px; */

    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    /*border: 2px solid #c09fcb;*/
    border-radius: 50%;
    font-size: 1.5rem;
    color: #c09fcb;
    margin: 8px 15px 8px 0;
    transition: .3s ease;
    padding: 20px;
}
.box_card a:hover{
    background: #fff;
    color: #c09fcb;
    /*box-shadow: 0 0 5px #7c858c;*/
    /*border: 2px solid #c09fcb;*/
    font-size: 1.8rem;
}

.box_card p{
    margin-top: 20px;
    padding-right: 1200px;
    display: flex;  
}

/*end Nuevo bloque card _____________________________________________________________________*/

/*Contenedor card 3d-----------------------------------------------------------------------*/
.container_card3d{
    max-width: 1200px;
    margin: auto;
    margin-top: 30px;
    background: #5f5f5f;
    perspective: 1000px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    
}
.card3d_inicio{
    margin: 20px;
    perspective: 1000px;
}
.card3d_inicio:hover .card3d{
    transform: rotateY(180deg)
}
.card3d{
    width: 350px;
    height: 400px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 600ms;
    
}
.card3d_front{
    background-size: cover;
    background-position: center;
}

.card3d_front,
.card3d_back{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    border-radius: 20px;
}

.card3d_back{
    transform: rotateY(180deg);
    background: #fff;
}

.body_card3d_front{
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transform: translateZ(60px);
}
.body_card3d_front h1{
    font-size: 25px;
}

.bg{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
}

.body_card3d_back{
    padding: 40px;
    text-align: center;
    transform: translateZ(60px);
}
.body_card3d_back p{
    margin-top: 30px;
    font-size: 14px;
}
.body_card3d_back input{
    padding: 10px 40px;
    margin-top: 30px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    color: #fff;
    background: #c09fcb;
    box-shadow: 1px 1px 30px -5px #c09fcb;
    border-radius: 10px;
    transition: box-shadow 600ms;
}

.body_card3d_back input:hover{
    box-shadow: 1px 1px 30px 0px #c09fcb;
}

.body_card3d_back button{
    padding: 10px 40px;
    margin-top: 30px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    color: #fff;
    background: #c09fcb;
    box-shadow: 1px 1px 30px -5px #c09fcb;
    border-radius: 10px;
    transition: box-shadow 600ms;
}

.body_card3d_back input:button{
    box-shadow: 1px 1px 30px 0px #c09fcb;
}
/*end Contenedor card 3d-----------------------------------------------------------------------*/
/*Card_img-------------------------------------------------------------------------------- */

.container_cardimg{
    position: relative;
    max-width: 1800px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px;
}
.container_cardimg .card_img{
    
    position: relative;
    margin: 30px 10px;
    width: 350px;
    height: 190px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.15);
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease-in-out;
}

.card_img:hover{
    height: 450px;
}
.imgbx{
    position: absolute;
    left: 50%;
    top: -50px;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.35);
    overflow: hidden;
    transition: 0.5s;
}
.card_img:hover .imgbx{
    position: relative;
    width: 250px;
    height: 250px;
}
.imgbx img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card_img .content_img{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}
.card_img .content_img .details_img{
    padding: 40px;
    text-align: center;
    width: 100%;
    transition: 0.5s;
    transform: translateY(150px);
}
.card_img:hover .content_img .details_img{
    transform: translateY(0px);
}
.card_img .content_img .details_img h2{
    font-size: 1.25em;
    font-weight: 600;
    color: #050505;
    line-height: 1.2em;
}
.card_img .content_img .details_img h2 span{
    font-size: 0.85em;
    font-weight: 500;
    opacity: 0.5;
}

.card_img .content_img .details_img .datos_img{
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.card_img .content_img .details_img .datos_img h3{
    font-size: 1em;
    line-height: 1.2em;
    font-weight: 600;
}
.card_img .content_img .details_img .datos_img h3 span{
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.5;
}
.card_img .content_img .details_img .actionBtn{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.card_img .content_img .details_img .actionBtn button{
    padding: 10px 30px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 1em;
    font-weight: 500;
    background: #c09fcb;
    color: #fff;
    cursor: pointer;
}
.card_img .content_img .details_img .actionBtn button:nth-child(2){
    border: 1px solid #999;
    color: #999;
    background: #fff;
}


/*end Card_img-------------------------------------------------------------------------------- */
/*seccion Ani 3d-------------------------------------------------------------------------*/
.container_ani{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 2000px;
    transform-style: preserve-3d;
}
.container_ani .box_ani{
    position: relative;
    width: 300px;
    height: 400px;
    margin: 40px;
    background: #373a3d;
    border-radius: 20px;
    transform-style: preserve-3d;
}
.container_ani .box_ani::before{
    content: 'Info'; /*Cambiar informacion */
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 6em;
    font-weight: 900;
    color: #000;
    font-style: italic;
    opacity: 0;
    transition: 0.5s;
}
.container_ani .box_ani::after{
    content: 'CJM'; /*Cambiar informacion */
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 5em;
    font-weight: 900;
    color: #000;
    font-style: italic;
    opacity: 0;
    transition: 0.5s;
}
.container_ani .box_ani:hover::before,
.container_ani .box_ani:hover::after{
    opacity: 0.2;
}
.container_ani .box_ani .name_ani{
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    color: #000;
    width: 100%;
    transform-style: preserve-3d;
    transform: translate3d(0,0,75px);
    transition: 0.5s;
    opacity: 0;
    z-index: 10;
}
.container_ani .box_ani:hover .name_ani{
    top: 40px;
    opacity: 1;
}
.container_ani .box_ani .buy_ani{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-style: preserve-3d;
    transform: translate3d(-50%,0,75px);
    color: #fff;
    background: #333;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.5s;
    opacity: 0;
    z-index: 10;
}
.container_ani .box_ani:hover .buy_ani{
    bottom: 30px;
    opacity: 1;
}
.container_ani .box_ani .circle_ani{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    transition: 0.5s;
    background: #fff;
    transform-style: preserve-3d;
    z-index: 10;
    opacity: 1;
    transform: translate3d(-50%,-50%,50px);
}

.container_ani .box_ani .ele_ani{
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 300px;
    transition: 0.5s;
    z-index: 11;
    transition: 0.5s;
    transform-style: preserve-3d;
    transform: translate3d(-50%,-50%,50px) rotate(-15deg);
}
.container_ani .box_ani:hover .ele_ani{
    transform: translate3d(-50%,-50%,100px) rotate(-15deg);
}
.container_ani .box_ani:nth-child(1) .circle_ani,
.container_ani .box_ani:nth-child(1) .buy_ani{
    background: #864383;
}
.container_ani .box_ani:nth-child(2) .circle_ani,
.container_ani .box_ani:nth-child(2) .buy_ani{
    background: #c09fcb;
}
.container_ani .box_ani:nth-child(3) .circle_ani,
.container_ani .box_ani:nth-child(3) .buy_ani{
    background: #9bdc28;
}
.container_ani .box_ani:nth-child(4) .circle_ani,
.container_ani .box_ani:nth-child(4) .buy_ani{
    background: #0e85ca;
}
.container_ani .box_ani:nth-child(5) .circle_ani,
.container_ani .box_ani:nth-child(5) .buy_ani{
    background: #2acfa6;
}


/*End contenido Ani 3d-------------------------------------------------------------------------*/
/*portafolio--------------------------------------------------------------------------------------------*/

.portafolio .box_container_portafolio{
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem;
    margin-bottom: 60px;
}

.heading{
    text-align: center;
    padding-top: 80px;
    padding-bottom: 3rem;
    font-size: 3rem;
    color: #c09fcb;
}

.heading span{
    color: #fff;
    border-radius: .5rem;
    background: #c09fcb;
    padding: 0.1rem;
}

.portafolio .box_container_portafolio .box{
    height: 28rem;
    border-radius: .5rem;
    overflow: hidden;
    position: relative;
    box-shadow: var(--box_shadow-primary);
}

.portafolio .box_container_portafolio .box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.portafolio .box_container_portafolio .box span{
    position: absolute;
    top: .5rem; right: 2rem;
    font-weight: bolder;
    font-size: 4rem;
    color: #c09fcb;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.portafolio .box_container_portafolio .box .content{
    height: 100%;
    width: 100%;
    position: absolute;
    top: 6rem; left: 0;
    transition: .3s;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.portafolio .box_container_portafolio .box:hover .content{
    top: 0;
    opacity: 1;
}

.portafolio .box_container_portafolio .box .content h3{
    font-size: 2.5rem;
    padding-bottom: .5rem;
    color: #c09fcb;
}

.portafolio .box_container_portafolio .box .content p{
    font-size: 1.5rem;
    color: #c09fcb;
}

.portafolio .box_container_portafolio .box:hover::before{
    clip-path: circle(100%);
}
/*End portafolio______________________________________________________________________*/
/*container era ________________________________________________________________________*/
.container_era{
   /* max-width: 1200px;
    margin: auto;
    display: flex;
    padding-bottom: 100px; */

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 2000px;
}
.card_era{
    position: relative;
    width: 320px;
    height: 450px;
    margin: 30px;
    background: #864383;
    border-radius: 20px;
    border-bottom-left-radius: 160px;
    border-bottom-right-radius: 160px;
    box-shadow: 0 15px 0 #fff,
    inset 0 -15px 0 rgba(255,255,255,0.25), 0 40px 0 rgba(0,0,0,0.15);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    
}

.card_era::before{
    content: '';
    position: absolute;
    top: -140px;
    left: -40%;
    width: 100%;
    height: 120%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,0.2));
    transform: rotate(35deg);
    pointer-events: none;
    filter: blur(5px);
}

.card_era:nth-child(1){
    background: linear-gradient(to bottom, #ff2ae0, #645bf6);
}
.card_era:nth-child(2){
    background: linear-gradient(to bottom, #0fa5ca, #f3c221);
}
.card_era:nth-child(3){
    background: linear-gradient(to bottom, #24ff72, #9a4eff);
}

.icon_era{
    position: relative;
    width: 140px;
    height: 120px;
    background: #5f5f5f;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    box-shadow: 0 10px 0 rgba(0,0,0,0.1),
    inset 0 -8px 0 #fff;
    z-index: 10;
}
.icon_era::before{
    content: '';
    position: absolute;
    top: 0;
    left: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-top-right-radius: 50px;
    box-shadow: 15px -15px 0 15px #5f5f5f;
}
.icon_era::after{
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 50px;
    background: transparent;
    border-top-left-radius: 50px;
    box-shadow: -15px -15px 0 15px #5f5f5f;
}

.icon_era i{
    color: #fff;
    position: absolute;
    font-size: 50px;
    z-index: 11;
    padding-top: 20px;
    padding-left: 45px;
}

.content_era{
    position: absolute;
    width: 100%;
    height: 30px;
    padding-top: 140px;
    text-align: center;
}
.content_era h2{    
    font-size: 20px; 
    color: #fff;
    margin-bottom: 10px;
}
.container_era p{
    color: #fff;
    line-height: 1.5em;
} 

/*END container era ________________________________________________________________________*/
/*Container Agua______________________________________________________________________________*/
.container_agua{
   /* max-width: 1200px;
    margin: auto;
    display: flex;
    padding-bottom: 100px;*/

    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 2000px;
    gap: 40px 60px; 
}

.container_agua .drop{
    position: relative;
    width: 350px;
    height: 350px;
    box-shadow: inset 20px 20px 20px rgba(0,0,0,0.05),
    25px 35px 20px rgba(0,0,0,0.05),
    25px 30px 30px rgba(0,0,0,0.05),
    inset -20px -20px 25px rgba(255, 255, 255, 0.9);
    transition: 0.5s ease-in-out;
}

.container_agua .drop:nth-child(1){
    border-radius: 44% 56% 51% 49% / 62% 35% 65% 38%;
}
.container_agua .drop:nth-child(2){
    border-radius: 59% 41% 39% 61% / 26% 82% 18% 74% ;
}
.container_agua .drop:nth-child(3){
    border-radius: 59% 41% 39% 61% / 26% 14% 86% 74% ;
}

.container_agua .drop:hover{
    border-radius: 50%;
}

.container_agua .drop::before{
    content: '';
    position: absolute;
    top: 50px;
    left: 85px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.9;
}

.container_agua .drop::after{
    content: '';
    position: absolute;
    top: 90px;
    left: 110px;
    width: 15px;
    height: 15px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.9;
}
.container_agua .drop .content_agua{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    gap: 15px;
}

.container_agua .drop .content_agua h2{
    position: relative;
    width: 80px;
    height: 80px;
    background: #eff0f4;
    border-radius: 50%;
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.1),
    inset -2px -5px 10px rgba(255,255,255,1),
    15px 15px 10px rgba(0,0,0,0.05),
    15px 10px 15px rgba(0,0,0,0.025);
    display: flex;
    justify-content: center;
    align-items: center;
    font: 1.5em;
    color: var(--clr);
}

.container_agua .drop .content_agua a{
    position: relative;
    padding: 10px 25px;
    background: var(--clr);
    text-decoration: none;
    color: #fff;
    border-radius: 25px;
    font-weight: 500;
    text-shadow: 0 2px 2px rgba(0,0,0,0.25);
    opacity: 0.75;
    transition: 0.5s;
}

.container_agua .drop .content_agua a:hover{
    opacity: 1;
}

.container_agua .drop .content_agua a::before{
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 4px;
    border-radius: 5px;
    /*background: rgba(255, 255, 255, 0.5);*/ 
}
 
/*ENdContainer Agua______________________________________________________________________________*/

/*Container soporte______________________________________________________________________________*/
.container_soporte{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 2000px;
    gap: 80px;
}

.container_soporte .card_soporte{
    position: relative;
    width: 300px;
    height: 400px;
    background: var(--clr1);
    border-radius: 20px;
    border-top-left-radius: 70px;
    overflow: hidden;
}

.container_soporte .card_soporte .box_soporte{
    position: absolute;
    inset: 10px;
    background: #282828;
    border-radius: 10px;
}

.container_soporte .card_soporte .box_soporte .icon_soporte{
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--clr1);
    border-bottom-right-radius: 50%;
    transition: 0.5s;
}

.container_soporte .card_soporte:hover .box_soporte .icon_soporte{
    width: 70%;
}

.container_soporte .card_soporte .box_soporte .icon_soporte::before{
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -5px -5px 0 5px var(--clr1);
}

.container_soporte .card_soporte .box_soporte .icon_soporte::after{
    content: '';
    position: absolute;
    top: 0px;
    right: -30px;
    width: 30px;
    height: 30px;
    background: transparent;
    border-top-left-radius: 30px;
    box-shadow: -5px -5px 0 5px var(--clr1);
}

.container_soporte .card_soporte .box_soporte .icon_soporte .iconbox_soporte{
    position: absolute;
    inset: 10px;
    background-color: #282828;
    border-radius: 50%;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
}

.container_soporte .card_soporte .box_soporte .icon_soporte .iconbox_soporte i{
    font-size: 3em;
    color: #fff;
}

.container_soporte .card_soporte .box_soporte .content_soporte{
    position: absolute;
    top: 150px;
    padding: 20px;
    text-align: center;
    
}

.container_soporte .card_soporte .box_soporte .content_soporte h3{
    color: #fff;
    font-size: 1.35em;
    font-weight: 700;
    text-transform:uppercase;
    letter-spacing: 0.12em;
}

.container_soporte .card_soporte .box_soporte .content_soporte p{
    color: #fff;
    font-size: 0.95em;
    opacity: 0.75;
    margin: 0 0 10px;
}
.container_soporte .card_soporte .box_soporte .content_soporte a{
    background: var(--clr1);
    display: inline-block;
    padding: 10px 25px;
    text-decoration: none;
    color: #333;
    text-transform: uppercase;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.5s;
}

.container_soporte .card_soporte .box_soporte .content_soporte a:hover{
    letter-spacing: 0.2em;
}


/*ENdContainer soporte______________________________________________________________________________*/

/*Container Border Gradient______________________________________________________________________________________ */


.container_bordergrd{
    display: grid;
    place-items: center;
    margin-inline: 1rem;
    
}

.card_bordergrd_container,
.card_bordergrd_article{
    display: grid;
    gap: 2rem;
}

.card_bordergrd_container{
    padding-block: 2.5rem;
}

.card_bordergrd_article{
    --hue-1: 210;
    --hue-2: 238;
    position: relative;
    justify-items: center;
    color: #fff;
    text-align: center;
    padding: 4rem 2rem 3rem;
    border: 4px solid transparent;
    background: linear-gradient(var(--container-color), var(--container-color)) padding-box,
                 linear-gradient(135deg, hsl(var(--hue-1), 85%, 70%) 0%,
                  var(--container-color), var(--container-color), 
                  hsl(var(--hue-2), 70%, 55%) 100%) border-box;
 
    border-radius: 1.25rem;
    overflow: hidden;
}

.card_shape-1{
    position: relative;
    width: 148px;
    height: 148px;
    background: linear-gradient(140deg,
                hsl(var(--hue-1), 75%, 25%) 3%,
                hsl(var(--hue-2), 65%, 45%) 100%);
    border-radius: 2rem;
    z-index: 15;
}

.card_shape-2{
    width: 116px;
    height: 116px;
    background: linear-gradient(140deg,
                hsl(var(--hue-1), 70%, 50%) 3%,
                hsl(var(--hue-2), 95%, 45%) 100%);
    border-radius: 1.5rem;
    
}

.card_shape-3{
    width: 76px;
    height: 76px;
    background: linear-gradient(140deg,
                hsl(var(--hue-1), 85%, 60%) 3%,
                hsl(var(--hue-2), 85%, 60%) 100%);
    border-radius: 1rem;
    display: grid;
    place-items: center;   
}

.card_shape-2,
.card_shape-3{
    position: absolute;
    inset: 0;
    margin: auto;
}

.card_bordergrd_icon{
    font-size: 3rem;
}

.card_bordergrd_data{
    z-index: 3;
}

.card_bordergrd_title{
    font-size: 1.5rem;
    margin-bottom: .25rem;
    font-weight: 600;
}

.card_bordergrd_descp{
    margin-bottom: 1.5rem;
}

.card_bordergrd_data a{
    display: inline-block;
    background-color: #f0f0f0;
    padding: 1rem 1.5rem;
    border-radius: .5rem;
    color: #091215;
    font-weight: 500;
}

.card_orange{
    --hue-1: 300;
    --hue-2: 30;
}

.card_green{
    --hue-1: 180;
    --hue-2: 50;
}

.card_new{
    --hue-1: 650;
    --hue-2: 458;
}

.card_scale-1{
    width: 148px;
    height: 148px;
    background: linear-gradient(140deg,
                hsl(var(--hue-1), 75%, 25%) 3%,
                hsl(var(--hue-2), 65%, 45%) 100%);
    border-radius: 2rem;
    top: 4rem;
}

.card_scale-2{
    width: 116px;
    height: 116px;
    background: var(--container-color);
    border-radius: 1.5rem;
    top: 5rem;
}

.card_scale-1,
.card_scale-2{
    position: absolute;
    
    filter: blur(24px);
    transition: transform .3s ease-in;
}

.card_bordergrd_article:hover .card_scale-1{
    transform: scale(6);
}
.card_bordergrd_article:hover .card_scale-2{
    transform: scale(6);
    transition-delay: 0.1s;
}
/*END Container Border Gradient______________________________________________________________________________________ */


/*CJM contactos --------------------------------------------------*/
.contacto .row{
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;  
    padding-bottom: 80px; 
} 

.contacto .row .map{
    flex: 1 1 42rem;
    width: 100%;
    border-radius: 20px;
}

.contacto .row form{
    flex: 1 1 42rem;
    padding: 2rem;
    text-align: center;
    background: #5f5f5f;
    border-radius: 20px;
}

.contacto .row form h3{
    font-size: 3rem;
    padding-bottom: 1rem;
    color: #fff;
}

.contacto .row form .box{
    width: 100%;
    padding: 1rem 1.2rem;
    background: #7c858c;
    color: #fff;
    font-size: 1rem;
    text-transform: none;
    margin: .7rem 0;
    border-radius: 20px;
}

.contacto .row form textarea{
    height: 15rem;
    resize: none;
}
/*--------------------------------------------------------------*/

/*Banner*/

.pie-pagina{
    width: 100%;
    background: #5f5f5f;
}
.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1600px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 50px;
    padding: 60px 0px;

}

.pie-pagina .grupo-1 .box figure{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-pagina .grupo-1 .box figure img{
    width: 250px;
}

.pie-pagina .grupo-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}

.pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
}

.pie-pagina .grupo-1 .red-social a{
    display: inline-block;
    text-decoration: none; 
    width: 60px;
    height: 60px;
    line-height: 60px;
    color: #fff;
    margin-right: 10px;
    background-color: #7c858c;
    text-align: center;
    border-radius: 10px;
    transition: all 300ms ease;
    font-size: 22px;
    margin-left: 10px;
    
}



.pie-pagina .grupo-1 .red-social a:hover{
    color: #c09fcb;
}

.pie-pagina .grupo-2{
    background-color: #373a3d;
    padding: 15px 10px;
    text-align: center;
    color: #fff;   
}

.pie-pagina .grupo-2 small{
    font-size: 15px;
}


@media screen and (max-width: 750px){

    section{
        padding: 2rem;
    }

    .search input{
        display: none;
    }
    
    .header__superior{
        padding: 10px;
    }

    .logo img{
        width: 200px;
    }

    nav > ul{
        flex-direction: column;
        background-color: #7c858c;
        position: fixed;
        left: 0;
        top: 158px;
        width: 100%;
        height: 0px;
        transition: all 300ms ease;
        z-index: 100;
        opacity: 0;
        visibility: hidden;
    }

    nav > ul > li > a:hover{
        transform: scale(1);
    }

    nav ul li ul{
        left: 90px;
    }

    nav > ul > li:hover ul{
        top: 50px;
    }

    nav > ul > li:first-child a{
        background-position: 20px;
    }

    #selected{
        transform: scale(1);
    }

    #label__check{
        display: block;
    }

    .icon__menu{
        display: flex;
    }

    #check__menu:checked ~ nav > ul{
        height: 300px;
        visibility: visible;
        opacity: 1;
    }

    main{
        margin-top: 158px;
    }
    .media_container{
        display: none;
    }
    /*Contacto footer---------------------*/
    .contacto .row form h3{
        font-size: 1.2rem;
    }
    /*Contacto footer---------------------*/
    .contacto .row form .box{
        width: 60%;
    }   

    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 35px 0px;
    
    }
    /*Slider*/
    .img_slider{
        display: none;
    }
    .img_slider .slide .info{
        padding: 10px 25px;
    }

    .img_slider .slide .info h2{
        font-size: 35px;
    }
    .img_slider .slide .info p{
        width: 70%;
        font-size: 15px;
    }
    .img_slider .navigation{
        bottom: 25px;
    }

    .img_slider .navigation .btn{
        width: 10px;
        height: 10px;
        margin: 8px;
    }
    /*home*/
    .home{
        flex-direction: column;
    }
    .home_img img{
        width: 70vw; /* */
        margin-top: 4rem;
    }
    .home_contenido h1{
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.3;
    }
    .home_contenido h3{
        font-size: 1rem; /*  1 rem = 16px */
        font-weight: 700;
    }
    /*.container_cardimg*/
    .card_img .content_img .details_img .actionBtn button{
    padding: 10px 20px;
    font-size: .6em;
    font-weight: 300;
    }
    /*-------*/
    /* portafolio*/
    .heading{ 
        font-size: 1.5rem;
    }

    .portafolio .box_container_portafolio{
        grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
    }
    /*---*/

    /*Card 3d*/
    .card3d{
        width: 250px;
        height: 300px;
    }
    .body_card3d_back p{
        font-size: 10px;
    }
    .body_card3d_back input{
    
        margin-top: 20px;
        font-size: 12px;
    }
    .body_card3d_back p{
        
        font-size: 10px;
    }
    .body_card3d_back button{
        font-size: 10px;
    }
    
    /*------*/

    
}

@media screen and (min-width: 1170px){
    /*card_bordergrb*/
    

   
   
    .card_bordergrd_container{
        grid-template-columns: repeat(3, 345px);
    }
    .card_bordergrd_article{
        padding: 4.5rem 2rem 3.5rem;
    }
     /*___________________*/
}