.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;
}

.containernosotros{
    /* border: 3px solid red; */
    margin: 20px;
    display: grid;
    justify-content: center;
}

.textonosotros{
    /* border: 3px solid green; */
    margin: 5px;
    font-family: 'Poppins' , sans-serif;
    font-size: 20px;
    height: 300px;
    width: 700px;
    font-weight: 300;
    text-align: center;
}

/* el max width estaba en 500 */
@media screen and (max-width: 670px) {
    .textonosotros{
        font-size: 18px;
        height: auto;
        width: auto;
        text-align: center;
    }
}

@media screen and (max-width: 300px) {
    .textonosotros{
        font-size: 13px;
        height: auto;
        width: auto;
        text-align: center;
    }
}

.resaltado-2 {
    font-family: 'Poppins' , sans-serif;
    font-weight: 500;
    font-size: 23px;
}

@media screen and (max-width: 500px) {
    .resaltado-2{
        font-size: 20px;
        height: auto;
        width: auto;
    }
}

@media screen and (max-width: 300px) {
    .resaltado-2{
        font-size: 13px;
        height: auto;
        width: auto;
    }
}
  
.titulo2 {
    font-size: 60px;
    text-align: center;
}

@media screen and (max-width: 300px) {
    .titulo2{
        font-size: 40px;
        height: auto;
        width: auto;
    }
}

/* 
.containergeneral {
    margin: 20px;
    padding: 20px;
    box-shadow: 1px 1px 6px;
    border-radius: 10px;
    background-color: #ddd;
} */

.containerservicios{
    /* border: 3px solid red; */
    margin: 8px 20px 8px 20px;
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
}

@media screen and (max-width: 500px) {
    .containerservicios{
        display: grid;
        grid-template-columns: repeat(1, auto);
        grid-template-rows: repeat(4, auto);
    }
}

.cajaservicios{
    /* border: 3px solid green; */
    margin: 5px 9px 5px 9px;
    text-align: center;
    padding: 20px;
    /* background-color: rgb(5, 0, 31); */
    /* box-shadow: 1px 1px 6px; */
    border-radius: 10px;
    /* background-color: #ddd; */
    /* box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5); */
}


.cajaservicios img{
    width: 30%;
    /* border: 3px solid blue; */
    margin: 5px;
    text-align: center;
}

.servicios{
    /* border: 3px solid blue; */
    margin: 5px;
    text-align: center;
    font-family: 'Chivo' , sans-serif;
    font-size: 20px;
    color: black;
}

@media screen and (width: 500px) {
    .servicios{
        font-size: 15px;
    }
}

@media screen and (width: 300px) {
    .servicios{
        font-size: 12px;
    }
}



