main .doble{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr; 
}
main .izq{
    grid-template-areas:  
    'imagen texto'
    ;
}
main .der{
    grid-template-areas:  
    'texto imagen'
    ;
}
main .doble .imagen{
    grid-area: imagen;
}
main .doble .imagen img{
    width: 100%;
}
main .texto{
    grid-area: texto;
    padding: 50px;
    font-family: light;
    display: flex;
    flex-direction: column;
    align-items: center;
}
main .texto h2{
    text-align: center;
}
main .texto h2 span{
    font-family: bold;
}
main .texto p{
    margin: 20px 0px;
    text-align: center;
}
/*TEXTO AVISO DE PRIVACIDAD*/
main .texto-AP {
    grid-area: texto;
    padding: 50px;
    font-family: light;
    display: flex;
    flex-direction: column;
    align-items: left;
}
/*FIN TEXTO AVISO DE PRIVACIDAD*/
/*banner cursos*/
.banner-cursos{
    width: 100%;
    /*border: solid 3px #000;*/
}
.desktop {
    display: block;
}
.responsive {
    display: none;
}
/*fin banner cursos*/
main .texto p span{
    font-family: bold;
}
main .texto a{
    text-align: center;
    font-size: .9em;
    padding: 10px;
    text-decoration: none;
    background: var(--rosa);
    color: #000;
}
main .marcas{
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: light;
}
main .marcas .titulo{
    text-align: center;
    margin-bottom: 50px;
}
@media screen and (max-width: 800px){
    main .doble{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto; 
        grid-template-areas:  
        'texto'
        'imagen'
        ;
    }
    .desktop {
        display: none;
    }
    .responsive {
        display: block;
    }
}


.contactanos {
    position: absolute;
    width: 25%;
    top: 400px;
    left: 85px;
    background: var(--rosa);
    border-radius:4px;
    border:none;
    display:inline-block;
    cursor:pointer;
    color:#000;
    font-family: 'bold';
    font-size:36px;
    text-align: center;
    padding:25px 15px;
    text-decoration:none;
}
.contactanos:hover {
    background-color:#000;
    color: var(--rosa);
}
@media screen and (max-width: 800px){
    .contactanos {
        position: absolute;
        width: 70%;
        top: 180px;
        margin: 0 auto;
        left: 0;
        right: 0;
        background: var(--rosa);
        border-radius:4px;
        border:none;
        display:inline-block;
        cursor:pointer;
        color:#000;
        font-family: 'bold';
        font-size:24px;
        text-align: center;
        padding:15px 15px;
        text-decoration:none;
    }
    .contactanos:hover {
        background-color:#000;
        color: var(--rosa);
    }
}