.Mail-list {
    font-style: italic;
    list-style: disc inside;
}

.Mail-list li {
    margin-top: 0.5em;
}

.Main-descripcion {
    margin-top: 0.5em;
}

#newsletterForm {
    margin-top: 1em;
    display:grid;
}

#email {
    width:300px;
    height:30px;
    padding-left:5px;
    grid-row: 1;
}

#Form-btn {
    margin: 0.4em auto 1em auto;
    height:35px;
    width:100px;
    background-color: #08437f;
    color:#fff;
    font-weight: bold;
    border-radius: 4px;
    grid-row: 2;
}

.Redes-list {
    list-style: none;
    margin-top: 1em;
}

.Redes-list a {
    display: grid;
    grid-template-columns: 74px auto;
    margin-top: 0.5em;
}

.Redes-list img {
    grid-column: 1;
}

.Redes-list p {
    grid-column: 2;
    text-decoration:none;
    text-align: left;
    color:#000;
    line-height: 65px;
    font-size: 24px;
    margin:0px;
}


/* -------------- TABLET VERTICAL -------------- */
@media (min-width: 600px) { 
    
    #newsletterForm {
        grid-template-columns: 310px 1fr;
    }

    #email {
        grid-row: 1;
    }

    #Form-btn {
        grid-row: 1;
        grid-column: 2;
        margin: 0px 0px 0px 0.5em;
    }
}