.grid-item-color {
    display: grid;
    border-top: 1px solid #999;
    border-bottom: 1px solid #999;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    justify-content: center;
    align-items: center;
    height: 50px;
    background-color: #999;
}
.grid-item-color div {
    cursor: pointer;
    color: white;
}

.containercontacto {
    /* border: 3px solid red; */
    display: grid;
    justify-content: center;
    margin-bottom: 0px;
    background-color: black;
}

.texto-contactanos{
    color: white;
    padding: 10px;
    padding-bottom: 45px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 300;
}

.resaltado-2 {
    font-family: 'Poppins' , sans-serif;
    font-weight: 600;
    font-size: 23px;
}

.containerinput {
    margin: 20px;
    /* padding: 20px; */
    height: auto;
    width: 850px;
    box-shadow: 1px 1px 6px;
    border-radius: 10px;
    background-color: black;
    /* border: 1px solid #ddd; */
}

/* max width estaba en 500 */
@media screen and (max-width: 844px) {
    .containerinput{
        height: auto;
        width: 350px;
    }
  }

.containerbutton {
    margin: 0px;
    padding: 20px;
    height: auto;
    width: 850px;
    box-shadow: 1px 1px 6px;
    border-radius: 10px;
    /* border: 1px solid blue; */
    display: grid;
}

.campos {
    /* border: 1px solid green; */
    height: 25px;
    width: 800px;
    margin: 5px;
    font-family: 'Maven Pro', sans-serif;
    font-size: 20px; 
    padding: 20px;
    border-radius: 15px;  
    border: none; 
    background-color: rgb(59, 59, 59);  
    color: white; 
}

/* max width estaba en 500 */
@media screen and (max-width: 844px) {
    .campos{
        height: 15px;
        width: 300px;
        font-size: 14px;
    }
  }

.campos:nth-child(4) {
    height: 150px;
    width: 800px;
}

/* max width estaba en 500 */
@media screen and (max-width: 844px) {
   .campos:nth-child(4){
        height: 80px;
        width: 300px;
        font-size: 14px;
    }
  }

.button {
    /* border: 1px solid green; */
    height: 60px;
    width: 120px;
    margin: 5px;
    background-color: rgb(180,180,180);
    color: rgb(80,80,80);
    font-size: 25px;
    border-radius: 15px;
    font-style: bold;
    cursor: pointer;
    font-family: 'Maven Pro', sans-serif;
    border: none;   
}

/* max width estaba en 500 */
@media screen and (max-width: 844px) {
    .button{
        height: 40px;
        width: 80px;
        margin: 5px;
        font-size: 16px;
    }
  }

.button:hover{
    color: white;
    background-color: rgb(100,100,100);
  }

.estado-error{
    color: rgb(202, 14, 14);
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

.estado-enviado{
    color: rgb(37, 173, 37);
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
}

