.full-cursos{
    display: flex;
    /*border: salmon solid;*/
    align-items: center;
    justify-content: center;
    height: min-content;
}
.full-cursosf{
    width: 80%;
    font-family: 'Saira Condensed', sans-serif;
    display: flex;
    height: 100%;
    margin: 5vh 0 10vh;
    font-size: 1.1vw;
    
}
.full-cursosf .pi{
    /*border: solid gray;*/
    width: 100%;
    display: flex;
    align-items: center;
    padding: 1vh 0;
    flex-direction: column;
    
}
.pi .title{
    /*border: solid pink;*/
    display: flex;
    width: 100%;
    height: 8vh;
    align-items: center;
    margin-bottom: 1.5vh;
}
.pi .title h1{
    border-bottom: solid black;
}
.pi .pif{
    /*border: solid steelblue;*/
    width: 100%;
    display: grid;
    align-items: center;
    grid-template-columns: 30% 30% 30% ;
    column-gap: 5%;
}
.pi .pif a{
    text-decoration: none;
    color: black;
    height: 55vh;
    margin-bottom: 4.5vh;
}
.pi .pif a .tar{
    /*border: solid rebeccapurple;*/
    height: 100%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .7);
    transition: .3s ease-in-out;
    position: relative;
    

}
.tar .tlogo{
    width: 5vw;
    height: 5vw;
    position: absolute;
    top: 47%;
    left: 35%;
    
}
.tar .tlogo img{
    width: 100%;
}
.pi .pif a .tar:hover{
    transform: translateY(-.6vw);
    transition: .3s ease-in-out;
}
.tar .img{
    height: 60%;
    /*border: solid red;*/
}
.tar .img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.tar .desc{
    height: 25%;
    /*border: solid green;*/
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4%;
    text-align: center;
    text-transform: uppercase;
}
.tar .co{
    display: flex;
    justify-content: center;
    align-items: center;
}
.tar .co .cost{
    width: 80%;
    height: 15%;
    border-top: solid orange 2px;
    display: flex;
    align-items: center;
    font-size: 1.2vw;
}
.tar .co .cost div{
    height: 100%;
    padding: 2.5%;
}
.tar .co .cost .fecha{
    width: 50%;
    /*border: solid red;*/
    display: flex;
    align-items: center;
    justify-content: start;

    
}
.tar .co .cost .precio{
    /*border: blue solid;*/
    width: 50%;
    color: orange;
    display: flex;
    align-items: center;
    justify-content: end;
}

.full-cursos .der{
    width: 30%;
    /*border: saddlebrown solid;  */
    display: flex;
    justify-content: end; 
}
.full-cursos .der .derf{
    /*border: solid red;*/
    width: 80%;
    height: 90%;
    display: flex;
    flex-direction: column;
    
}
.full-cursos .der .derf .category{
    flex-direction: column;
    padding: 2vw 0;
    /*border: solid green;*/
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: start;
}
.full-cursos .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;
}
.full-cursos .der .derf .category .item{
    /*border: solid red;*/
    height: 5%;
    width: 100%;
    margin: .7vw 0;
    
}
.full-cursos .der .derf .category .item a{
    text-decoration: none;
    color: black;
    transition: ease-in .2s;
    font-size: 1.2vw;
}
.full-cursos .der .derf .category .item a:hover{
    text-decoration: underline;
    color: orange;
    transition: ease-in .2s;
}
@media(max-width:1024px)
{
    .full-cursosf{
        /*border: solid red;*/
        margin-top: 15vh;
        width: 85%;
        flex-direction: column-reverse;
    }
    .full-cursosf .pi .title h1{
        font-size: 8vw;
    }
    .full-cursosf .der{
       display: none
    }

    .pi .pif{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .pi .pif a{
        width: 100%;
        height: 70vh;
    }
    .tar .desc h2{
        font-size: 6.6vw;
    }
    .tar .co .cost{
        font-size: 5.5vw;
    }
    .tar .tlogo{
        width: 30%;
        height: 30%;
    }
}