#s-curso-int {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#p-content-curso {
    width: 60%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 30px;
}

#content-1-curso {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

#content-tabs {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom: 1px solid #dee2e6;
}

#content-tabs a{
    padding: 15px;
    border-bottom: 2px solid red;
    font-size: 1rem;
    color: #000;
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

#content-tabs a:hover,
#content-tabs a.active{
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

#content-cards-curso-int {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.card-curso-int h3 {
    margin-bottom: .5rem;
    line-height: 1.2;
    font-size: 1.5rem;
    margin-top: 20px;
    font-family: "OpenSans-Bold";
}

.card-curso-int p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    margin-bottom: 15px;
}

.card-curso-int ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
}
.card-curso-int ul li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    margin-bottom: 15px;
}

#content-info-instructor {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}


#content-info-instructor img{
    width: 40%;
}

#info-instructor {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

#content-2-curso {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

#content-registro-curso {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#content-registro-curso form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 2px solid var(--azul);
    border-radius: 15px;
    padding: 10px;
    gap: 10px;
    background-color: #e2e3e5;
}

#content-registro-curso form button{
    width: 100%;
    text-align: center;
}

#content-registro-curso form input{
    width: 100%;
    padding: 8px 15px;
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 10px;
}

.card-datos-curso {
    width: 100%;
    border-radius: 15px;
    padding: 10px;
    background-color: #e2e3e5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.card-datos-curso span,
.card-datos-curso h3{
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
}
.card-datos-curso h3{
    font-family: "OpenSans-Bold";
}

#content-2-curso p {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    font-family: "OpenSans-Bold";
}

#content-2-curso p b {
    color: red;
}

#carousel-cursos {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    justify-content: center;
    align-items: center;
}


@media screen and (max-width: 1024px) {
    #carousel-cursos {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #p-content-curso {
        width: 100%;
        flex-direction: column;
    }

    #content-1-curso {
        width: 100%;
    }

    #content-2-curso {
        width: 100%;
    }

    #content-tabs a {
        width: 100%;
        text-align: center;
    }

    #content-tabs {
        width: 100%;
        flex-direction: column;
    }

    #s-curso-int {
        padding: 20px;
    }
}