body {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f0f0;
}

.image-container {
    background: url("../img/slider-bg.jpg") no-repeat;
    opacity: 0.5;
    background-size: cover;
    background-attachment: fixed;
    background-position: 10% 0%;
    padding: 200px 0 280px 0;
    position: relative;
}

.logo {
    display: inline;
    width: 70px;
    height: auto;
    object-fit: cover; /* Recorta la imagen para llenar el espacio */
}

.logos {
    display: inline;
    width: 250px;
    height: 70px;
    object-fit: contain; /*Recorta la imagen para llenar el espacio */
}

.catalogo {
    display: block;
    width: 150px;
    height: 200px;
    /*object-fit: cover; /* Recorta la imagen para llenar el espacio */
}

#slider {
    background: url("../img/slider-bg.jpg") no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: 10% 0%;
    padding: 200px 0 280px 0;
    position: relative;
}

#slider:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #8b86a3, #322e40);
    opacity: 0.8;
}

#slider .block {
    color: #E3E3E4;
}

#slider .block h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 45px;
    line-height: 60px;
    letter-spacing: 10px;
    padding-bottom: 45px;
}

#slider .block p {
    font-size: 23px;
    line-height: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    /*position: fixed;*/
    bottom: 0;
    width: 100%;
}