@charset "UTF-8";
* {
    box-sizing: border-box;
}

body {
    background-color: #76777C;  
    line-height: 1.6;
    padding: 0 1.5em;
}

/********** Contacto ************/

/* Home Contacto */
.contacto {
    box-sizing: border-box;
    width: 99%;
    max-height: 99vh;
    background-color: #76777C;
   /*  background-image: linear-gradient(196deg, #E5E1DC, #76777C);  */
    color: #fff;
    line-height: 1.5;
    font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
    font-weight: bold;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
    padding: 0 1.5em;  
}

.contenedor-contacto {
    width: 80%;
    height: auto;
    margin-top: 1%;
    margin-left: auto;
    margin-right: auto;
    padding: 1em;
}

ul {
    list-style: none;
    padding: 0;
}

.logo_contacto {
   padding-top: 2.8em;
    text-align: center;
    font-size: 2.0rem;
}

.logo_contacto span {
    color: #04bbf3;
}

.contenedor-contacto {
    background-image: linear-gradient(196deg, #E5E1DC, #76777C);
}

.contenedor-contacto {
    display: grid;
    grid-template-columns: 1fr;
}

.contenedor-contacto > * {
    padding: 1em;
}

.contact-form {
    background-image: linear-gradient(196deg, #437baa, #044da0);
}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr;
}

.contact-form form label {
    display: block;
}

.contact-form form p {
    margin: 0;
    padding: auto;
}

.contact-form form .block {
    grid-column: 1fr;
}

.contact-form form button,
.contact-form form input,
.contact-form form textarea {
    width: 99%;
    height: auto;
    padding: .1rem;
    border: none;
    background: none;
    outline: 0;
    color: #fff;
    border-bottom: 2px solid #d63031;
    font-family: "Avant Garde", Avantgarde, "Century Gothic", CenturyGothic, "AppleGothic", sans-serif;
    font-weight: bold;
    font-size: 1.6rem;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

.contact-form form button {
    background: #B70E21;
    border: 0;
    text-transform: uppercase;
    padding: 0.5em;
}

.contact-form form button:hover,
.contact-form form button:focus {
    background: #d63031;
    color: #fff;
    transition: background-color 1s ease-out;
    outline: 0;
}

/* CONTACT INFO */
.contact-info {
    background: rgb(3, 21, 65);
}

.contact-info h4, .contact-info ul, .contact-info p {
    text-align: center;
    margin: 0 0 1rem 0;
}

/*****************************    ******************************/

/* Small devices (landcape, phones, 576px and up  */

@media screen and (max-width:576px) {

    .logo_contacto {
         padding-top: 6rem;
         text-align: center;
         font-size: 1.4rem;
     }

    .contenedor-contacto {
        width: 99%; 
        margin-top: 1rem;
        margin-left: 0;
        margin-right: 0;
        padding: 0.2rem;
    }
    
    
}