body {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
    font-size: 20px;
    font-family: "Roboto Condensed";
}


/*------------------------------------
   ?Estilos curso
------------------------------------*/

/* Banner */

.banner {
    margin: 20px auto;
    border-radius: 8px;
    overflow: hidden;
    z-index: 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    background-color: #e5e3e3;
    background-image: url(../img/pattern.png);
    background-size: auto 90%;
    background-repeat: no-repeat;
    background-position: center left;
}

@media (max-width: 767px) {
    .banner {
        grid-template-columns: 1fr;
        background-size: auto;
        background-repeat: repeat;
        background-position: center left;
    }
}

.banner__content {
    padding: 30px;
}

.banner h2 {
    margin-top: 0;
    margin-bottom: 30px;
    color: #016d38;
}

.banner h4 {
    border-left: 10px solid #ffdc5d;
    padding-left: 10px;
    color: #016d38;
    margin: 0;
}

.banner__img {
    clip-path: polygon(100px 0, 0 100%, 100% 100%, 100% 0);
    position: relative;
    width: 300px;
    max-width: 100%;
    height: 100%;
}

.banner__img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffdc5d;
    clip-path: polygon(0 0, 0 100%, 6px 100%, 106px 0);
    z-index: 1;
}

@media (max-width: 767px) {
    .banner__content {
        order: 10;
    }

    .banner__img {
        order: 9;
        min-height: 150px;
        clip-path: none;
        width: 100%;
        max-width: 100%;
        height: 100%;
    }

    .banner__img::before {
        clip-path: none;
        background-color: transparent;
        border-bottom: 5px solid #ffdc5d;
    }
}

.banner__img img {
    position: absolute;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}



/* Presentación */

.presentationContent__title {
    border-bottom: 3px solid #ffdc5d;
    padding-bottom: 5px;
    font-size: 2rem !important;
    margin-top: 20px;
    margin-bottom: 20px;
    color: #016d38;
    font-weight: normal;
}

ul.presentationContent__list {
    list-style: none !important;
    padding-left: 0;
}

.presentationContent__list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.presentationContent__list li::before {
    position: absolute;
    top: 0.45em;
    left: 0.3rem;
    content: "";
    display: inline-block;
    background-color: #016d38;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
}

.presentationContent__bg {
    background-color: #f2f2f2;
    border: 2px solid #e5e3e3;
    border-radius: 5px;
    padding: 20px;
}

/* Utilidades */

.c-green {
    color: #016d38;
}