#inicial {
    width: 100%;
    height: 60vh;
    margin-top: 12vh;
    background-image: url(../imagenes/banner-gracias-nuevo.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#inicial > img{
    display: none;
}
#inicial > div{
    width: 35%;
    margin-right: 15%;
    margin-top: 10vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
#inicial > div > h1{
    font-size: 2.5em;
    font-weight: 700;
    color: #3d4e99;
    line-height: 1.2;
    margin-bottom: 1vh;
    text-align: center;
}
#inicial > div > h2{
    font-size: 1.2em;
    color: var(--negro-cursos);
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
}
#gracias{
    width: 100%;
    padding: 10vh 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#gracias > p{
    font-size: 1.1em;
    color: var(--negro-cursos);
    font-weight: 400;
    width: 50%;
    text-align: center;
    margin-bottom: 5vh;
    line-height: 1.2;
}
#gracias > p > span{
    font-weight: 700;
    font-size: 1.2rem;
}
#gracias > p > a{
    text-decoration: none;
    color: #02afff;
    font-weight: 700;
    font-size: 1.2rem;
}
@media screen and (max-width: 768px){
    #inicial{
        background: none;
        height: fit-content;
        align-items: center;
    }
    #inicial > img{
        display: flex;
    }
    #inicial > div{
        width: 90%;
        margin-right: 0;
        margin-top: 6vh;
        padding-bottom: 7vh;
        border-bottom: 2px solid #ededed;
    }
    #gracias{
        padding-top: 7vh;
    }
    #gracias > p{
        line-height: 1.4;
        width: 90%;
        font-size: 1.2em;
    }
}