.principal-detalle{
    display: flex;
    align-items: center;
    justify-content: center;
}
.principal-detallef{
    width: 80%;
    /*border: solid red;*/
    min-height: 82.5vh;
    font-family: 'Saira Condensed', sans-serif;
    display: flex;
    margin: 5vh 0 10vh;
}
.detalle-iz{
    border-top: solid orange;
    width: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.detalle-iz .title{
    border-bottom: solid black 2px;
    font-size: 1.05vw;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2vw;
}
.detalle-iz .register{
    /*border: saddlebrown solid;*/
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1vw 0;
}
.title h2{
    color: green;
    font-size: 2vw;
}
.register form{
    width: 100%;
    justify-content: center;
    display: flex;
}
.register input{
    background-color: orange;
    border: none;
    color: white;
    font-family: 'Saira Condensed', sans-serif;
    width: 40%;
    font-size: 1.2vw;
    height: 3vw;
}
.register input:hover{
    background-color: white;
    border: solid orange;
    color: orange;
    cursor: pointer;
}

.detalle-iz .image-detalle{
    /*border: solid salmon;*/
    width: 100%;
    display: flex;
    justify-content: center;
}
.detalle-iz .image-detalle img{
    width: 45%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .7);
}

.detalle-iz .descrip{
    /*border: solid red;*/
    width: 100%;
}
.descrip .subtitle{
    font-size: 1.2vw;
    border-top: solid;
    padding-top: 1vw;
    margin-top: 1vw;
    text-transform: uppercase;
}
.descrip .subtitle h2{
    color: orange;
}
.descrip .subtitle ul li{
    margin-left: 1.5vw;
}
.descrip .subtitle ul li span{
    color: red;
}

.principal-detallef .der{
    width: 25%;
    /*border: saddlebrown solid;  */
    display: flex;
    justify-content: end; 
}
.der .derf{
    /*border: solid red;*/
    width: 80%;
    height: 90%;
    display: flex;
    flex-direction: column;
    
}
.der .derf .category{
    flex-direction: column;
    padding: 2vw 0;
    /*border: solid green;*/
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: start;
}
.der .derf .category .subtitle{
    border-left: orange solid;
    border-right: orange solid;
    height: 5%;
    width: 100%;
    margin-bottom: 1vw;
} 
.derf .category .subtitle h2{
    text-decoration: none;
    color: black;
    font-size: 1.25vw;
    width: 80%;
    text-align: center;
}
.der .derf .category .item{
    /*border: solid red;*/
    height: 5%;
    width: 100%;
    margin: .7vw 0;
    
}
.der .derf .category .item a{
    text-decoration: none;
    color: black;
    transition: ease-in .2s;
    font-size: 1.2vw;
}
.der .derf .category .item a:hover{
    text-decoration: underline;
    color: orange;
    transition: ease-in .2s;
}
.idP{
    display: none;
}

@media(max-width:1024px){
    .principal-detallef{
        width: 90%;
        margin-top: 15vh;
        /*border: solid red;*/
        justify-content: center;
    }
    .principal-detallef .detalle-iz{
        /*border: solid green;*/
        width: 100%;
        justify-content: flex-start;
    }
    .detalle-iz .title{
        width: 90%;
        justify-content: center;
    }
    .detalle-iz .title h1{
        font-size: 6vw;
        text-align: center;
        
    }
    .detalle-iz .title h2{
        display: none;
    }
    .detalle-iz .image-detalle img{
        width: 95%;
        
    }
    .descrip .subtitle{
        font-size: 4.5vw;
    }
    .descrip .subtitle ul li{
        margin-left: 5vw;
    }
    .register input{
        font-size: 5vw;
        width: 100%;
        height: 8vh;
        margin-top: 3vw;
    }



    .principal-detallef .der{
        display: none;
    }
}