.contenedor-principal {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.container-img_contact {
    width: 100%;
    height: 100px;
    background: url("https://static.vecteezy.com/system/resources/previews/002/370/744/non_2x/technology-background-with-a-mechanical-concept-vector.jpg");
    /* background-size: cover; */
    color: #ffffff;
    font-family: Impact;
    font-size: 15px;
    padding: 20px;
    display: flex;
    align-items: center;
}


.historial-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.card-servicio {
    /* height: 150px; */
    border: 1px solid #ccc;
    padding: 10px;
    background: #fff;
}

.card-header h3 {
    font-size: 15px;
    line-height: 20px;
}

.card-body p {
    font-size: 12px;
    line-height: 20px;
}

.card-image img {
    width: 100%;
    object-fit: cover;
    height: 150px;
    /* border-radius: 8px; */
    margin-top: 10px;
}

.titulo-marcas-seccion {
    font-size: 15px;
    font-weight: 100;
    color: #cecece;
    margin-top: 30px;
    text-align: center;
    text-transform: uppercase;
}

@media (min-width: 1200px) {
    .historial-container {
        width: 70%;
    }

    .card-header h3 {
        font-size: 12px;
        line-height: 20px;
    }

    .card-body p {
        font-size: 10px;
        line-height: 20px;
    }

    .card-image img {
        height: 100px;

    }
}