/* * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: roboto;
}

*/
:root {
    --color-primario-daw: #e72264;
    --color-secundario-daw: #f06292;
    --color-terciario-daw: #f8bbd0;

    --color-primario-ing: #f49719;
    --color-secundario-ing: #ef6c00;
    --color-terciario-ing: #ffcc80;

    --color-primario-eje: #5a4394;
    --color-secundario-eje: #9575cd;
    --color-terciario-eje: #b39ddb;
}

/* COLORES DAW */

.primario-daw {
    color: var(--color-primario-daw);
}

.secundario-daw {
    color: var(--color-secundario-daw);
}

.terciario-daw {
    color: var(--color-terciario-daw);
}

/* COLORES INGENIERIAS */

.primario-ing {
    color: var(--color-primario-ing);
}

.secundario-ing {
    color: var(--color-secundario-ing);
}

.terciario-ing {
    color: var(--color-terciario-ing);
}

/* COLORES EJECUTIVAS */


.primario-eje {
    color: var(--color-primario-eje);
}

.secundario-eje {
    color: var(--color-secundario-eje);
}

.terciario-eje {
    color: var(--color-terciario-eje);
}



.quarca {
    font-family: quarca;
    font-weight: 300;
    font-size: 1.3em;
}

.main {
    display: flex;
    flex-direction: column;
}

.container img {
    display: block;
    margin: auto;
    width: 300px;
    padding: 1em;
}

.container p {
    text-align: center;
    margin: 2em 1em;
}

/* DIPLOMADO */

.diplomado {
    display: flex;
    flex-direction: column;
}

/* TITLE */

.title {
    display: flex;
    width: 100%;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.title h2 {
    color: #fff;
    text-align: center;
    padding: 25px;
    font-size: 3em;
    width: 100%;
    font-family: quarca;
    font-weight: 100;
    box-shadow: 0px 0px 20px #000;
}

/* CONTENIDO */

.contenido {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.descripcion {
    width: 100%;
    text-align: justify;
    padding: 1em 2em;
    font-size: 2em;
    margin: auto;
    font-family: quarca;
    box-shadow: 0px 0px 20px #000;
    color: #fff;
}

.datos {
    display: flex;
    flex-wrap: wrap;
    padding: 4em;
    width: 100%;
}

.temas {
    width: 60%;
}

.temas ul li {
    list-style: none;
}

.temas h3 {
    font-size: 4em;
    margin: 10px 10px 10px 0;
}

.temas h4 {
    font-size: 1.3em;
    margin: 5px 5px 5px 0;
}

.extras {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    width: 40%;
}

.fecha {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.fecha img {
    width: 50%;
    display: block;
    float: right;
}

.programas {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 2em;
}

.programas img {
    display: flex;
    height: 100px;
    margin: 1em;
}

.valor {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 2em;
}

.valor img {
    display: flex;
    width: 100px;
    margin-left: 3em;
}

.duracion {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2em;
}

.reloj {
    font-size: 80px;
    margin: 10px;
}

.semanas {
    font-size: 30px;
}



/* MEDIAS */

@media only screen and (max-width: 1024px) {

    .temas {
        width: 50%;
    }

    .fecha {
        width: 50%;
    }

    .fecha img {
        width: 70%;
    }
}

@media only screen and (max-width: 850px) {

    .datos {
        padding: 2em;
    }

    .programas {
        justify-content: space-around;
        padding-left: 0;
    }

    .programas img {
        max-height: 80px;
        margin: .5em;
    }
}

@media only screen and (max-width: 700px) {

    .descripcion {
        font-size: 1.5em;
        padding: 1em;
    }

    .extras {
        flex-direction: column;
        align-items: center;
    }

    .valor {
        justify-content: space-between;
        width: 100%;
        margin-top: 0;
    }

    .duracion {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 600px) {

    .datos {
        flex-direction: column;
    }

    .temas {
        width: 100%;
    }

    .fecha {
        width: 60%;
        margin: auto;
        padding-top: 1em;
    }

    .fecha img {
        margin: auto;
    }

    .programas img {
        height: 70px;
    }

    .extras {
        padding: 0;
    }
}

@media only screen and (max-width: 400px) {

    .descripcion {
        font-size: 1.2em;
    }

    .reloj {
        font-size: 60px;
    }

    .semanas {
        font-size: 20px;
    }

    .fecha {
        width: 80%;
    }

    .fecha img {
        width: 100%;
    }

    .programas {
        overflow: hidden;
    }

}
