<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    list-style: none;
}


@keyframes fadeIn {
    0% {
        opacity: 0;
        visibility: hidden;
    }
    100% {
        opacity: 1;
        visibility: visible;
    }
}

@keyframes fadeBackground {
    0% {opacity: 1;}
    50% {opacity: 1;}
    100% {opacity: 0.2;}
}

body::after {
    animation: fadeBackground 4s ease-in-out;
}

body &gt; * {
    animation: fadeIn 2s ease-in-out 2s forwards; /* La animaciÃ³n comenzarÃ¡ despuÃ©s de 2 segundos y mantendrÃ¡ el Ãºltimo keyframe */
    visibility: hidden; /* Los elementos estarÃ¡n ocultos hasta que comience la animaciÃ³n */
    animation-fill-mode: forwards;
}

div {
    animation: fadeIn 2s ease-in-out 2s forwards; /* La animaciÃ³n comenzarÃ¡ despuÃ©s de 2 segundos y mantendrÃ¡ el Ãºltimo keyframe */
    animation-fill-mode: forwards;
}

body {
    display: flex;
    flex-direction: column; /* Esto hace que los elementos hijos se apilen verticalmente */
    min-height: 100vh; /* Esto hace que el cuerpo tenga al menos la altura de la ventana del navegador */
}


body::after {
    content: "";
    background-image: url('https://imposurimgs.s3.us-east-2.amazonaws.com/Logosuniversales/Imposur+Logo.svg');
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: center;
    background-attachment: absolute;
    opacity: 0.2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -2;
}

@media screen and (max-width: 600px) {
    body::after {
        background-image: url('https://imposurimgs.s3.us-east-2.amazonaws.com/Logosuniversales/Imposur+Logo.svg');
        background-repeat: no-repeat;
        background-size: 100%;
        background-position: center;
        background-attachment: fixed;
        opacity: 0.2;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        position: fixed;
        z-index: -2;
        
    }
}

#top_logo{
    height: auto ;
    width: 92%;
}
#top_logo {
    transition: transform 0.5s ease; /* AÃ±ade una transiciÃ³n suave al cambio de tamaÃ±o */
}


#top_logo:hover {
    transform: scale(1.2); /* Aumenta el tamaÃ±o de la imagen al pasar el cursor */
}


#titulo{
    
    color: #91B635;
    font-size: 3em;
}

#subTitulo{
    
    color: #29A4DA;
    font-size: 2.3em;
    padding-top: 0.7em;
}

#subTitulo2{
    
    color: #29A4DA;
}

.grid-container{
    display: grid;
    grid-template-columns: 2fr 4fr 2fr;
    grid-auto-rows: 30vw;
}

.grid-item{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    padding: 0;
    margin: 0;
}

#camion{
    max-width: 100%;
    height: 60vw;
    margin-left: 2%;
    margin-top: -30%;
    padding: 0%;
    object-fit: cover;
    width: auto;
} 

.logos{
    max-width: 14.2em;
    height: auto;
    object-fit: contain;
}

.row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.box{
    margin: 18px;
}

#contacto, #comollegar{
    background-color: #29A4DA;
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-size: 25px;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    width: 8em;
    height: 3em;
}

#inicio{
    background-color: #91B635;
    color: white;
    border: none;
    text-decoration: none;
    display: inline-block;
    font-size: 21px;
    cursor: pointer;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    width: 9em;
    height: 3em;
}

#comollegar:hover, #contacto:hover{
    background-color: #00b3ff;
    color: #f8f9fa;
}

#inicio:hover{
    background-color: #9fd11f;
    color: #f8f9fa;
}


#botones a button {
    transition: transform 0.3s ease-in-out;
}

#botones a:hover button {
    transform: scale(1.2);
}

#owlCarousel2 img {
    object-fit: contain;
    height: 14em;
    width: 100%;
}

@media screen and (min-width: 768px) {
    #owlCarousel2 img {
        object-fit: contain;
        height: 30em;
        width: 100%;
    }
}


#contenidoPrincipal {
    flex-grow: 1;
}

footer {
    background-color: #22b8f0;
    color: #fff;
    text-align: center;
    padding: 8px;
    position: static;
    width: 100%;
    
}

#logo1,#logo2{
    margin-left: 4em;
    margin-top: -8em;
}
</pre></body></html>