
paletcolor {
    color: #FB8828, #144B76, #0A2E56, #001135;

}

fonts {
    font-family: "Poppins", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-size: 20px;
}

body {
    background-color: #ffff;
    margin-left: 5%;
}

/* Titulos en las cartas */
.container {
    width: 90%;
    margin: 0 auto;

}

.cont_text {
    display: flex;
    flex-direction: column;
}

.txt h1 {
    font-weight: 600;
    font-style: normal;
    font-size: 2rem;
    line-height: 70px;
    letter-spacing: -.04em;
}

article {
    margin-left: 1.5%;
}

.txt p {
    font-weight: 500;
    font-style: normal;
    font-size: 1rem;
    text-transform: uppercase;
    line-height: 34px;
    padding: 35px 0px;
}

/* botones */

.btn_cursos {
    padding-bottom: 25px;
}

.btn_cursos button {
    background: #0A2E56;
    color: #ccc;
    border-radius: 4px;
    text-decoration: none;
    color: #ffff;
    font-size: .9rem;
    padding: 10px;
}


button:focus {
    outline: none;
}

button:hover {
    background: #FB8828;
    cursor: pointer;
}

button.active {
    background: #FB8828;
    color: #001135;
}

.cont_cursos {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    color: #ffff;
}

.cursos {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    letter-spacing: -.04em;
    font-weight: 500;
    background-color: #0A2E56;
    min-width: 200px;
    max-width: 260px;
    height: auto;
    animation: SclAnimation 0.2s ease;
    transition: all 0.4s;
}

.cursos:hover {
    transform: scale(1.05);
}



@keyframes SclAnimation {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.cursos h1 {
    color: #ffff;
    padding: 20px 0px;
    width: 350px;
    height: 120px;
    z-index: 1;
    font-size: 30px;
}

.cursos p {
    padding: 10px 40px;
    font-size: 18px;
}

.list_obj {
    width: 100%;
    padding-bottom: 20px;
}

.list_obj li {
    font-size: .8rem;
    text-wrap: wrap;
}

.list_obj h3 {
    font-weight: 500;
    color: #FB8828;
}

.etapa {
    width: auto;
}

.etapa h2 {
    font-weight: 500;
    font-size: .9rem;
    text-wrap: wrap;

}

.etapa img {
    height: 20px;
    width: 20px;
    padding-top: 5px;
}

.cont_text_curso {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    padding: 0px 20px;
}

.btn {
    background: transparent;
    border: 2px solid #fa5a00;
    color: #FB8828;
    border-radius: 5px;
    font-family: "Poppins", sans-serif;
    padding: 15px 60px;
    margin-bottom: 20px;
    text-decoration: none;
    transition: 0.4s all ease-in-out 0s;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
    color: #fff;
    background: transparent;
    background-image: url(https://web.archive.org/web/20160312084124im_/http://splatoon.nintendo.com/assets/img/nav-bg-fill-orange.png?1443460871);
    background-repeat: repeat-x;
    background-position: 0 -100%;
    transition: 1.8s ease;
}

.btn:hover {
    background-position: 500% 100%;
}

.btn:hover {
    color: #001135;
    z-index: 1;
}


.cursos button a {
    color: #ffff;
    text-decoration: none;
    font-weight: 500;
    font-size: .9rem;
}

.cursos.hide {
    display: none;
}

.cont_img_card {
    width: 260px;
    border-bottom: 2px solid #ccc;
    overflow: hidden;
    height: 100px;
    text-align: center;
    align-content: center;
}

.cont_img_card img {
    border-radius: 10px 10px 0px 0px;
    width: 100%;
    height: 100%;
    object-fit: cover;


}

.cont_img_card h2 {
    padding: 0px 10px 0px 10px;
}