*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Montserrat', sans-serif;
}

.contenedor_superior{
    background-color: #004388;  
    color: #fff;  
    display:flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px;  
    margin: auto;
}

.superior { 
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;       
    max-width: 1000px;
    width: 95%;        
    margin: 0 auto;
    height: 40px;  
}

.superior i{
    background-color: #fff;
    color:#004388;
    font-size: 12px;
    line-height: 12px;
    padding: 4px;
    border-radius: 50px;
    margin-left: 5px;
    width: 19px;
    height: 19px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
}

.superior .icon2{
    color:#fff;
    background-color: transparent;
    font-size: 14px;
    line-height: 14px;
    padding: 4px;    
    margin-left: 5px;
    width: 19px;
    height: 19px;    
}

.superior p{    
    font-size: 12px;
    font-weight: 300;
    margin-left: 15px;
    padding-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.superior p span{    
    font-size: 12px;
    font-weight: 700;     
}
.superior p i{    
    margin-right: 5px;    
}

.superior_right{
    z-index: 1001;
}

.superior_right i{
    z-index: 1001;
    cursor: pointer;
}



@media (max-width: 700px) {

    .contenedor_superior{ 
    margin: 0;
    width: 100%;
    }
    .superior {    
        height: auto; 
        padding: 4px 0px;
        display: flex;        
        margin: 0;    
    }    
    
    .superior i{
        font-size: 12px;
        line-height: 12px;
        padding: 4px;
    }
    
    .superior p{            
        font-size: 11px;
        margin-left: 9px;
        max-width: 400px;    
    }
    
    .superior p span{    
        font-size: 11px;          
    }
}

.img1{
    width: 100%;
    height: auto;
}

.texto_superiorm{
    display: none;
}

/* ========================================== nav */

nav {
    background-color: #ffffff;
    position: relative;
    padding: 15px 0px;
    z-index: 10;
    height: 140px;
    width: 800px;
    margin: auto;
}

nav .logo {
    position: absolute;
    width: 240px;
    height: 150px;
    top:20px;
    left: 32%;
}

nav .logo img {
    width: 260px;
}

nav ul{    
   display: flex; 
   justify-content: center;   
   align-items: center;
   list-style: none;
   height: 100px;   
}

nav ul li:nth-child(3){margin-left: 290px;}

nav ul li a{
    position: relative;
    display: block; 
    padding: 5px;   
    text-decoration: none;
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em; 
    font-weight: 500;  
}

nav ul li{
    margin-right: 20px;
 }

 nav ul .menu_extra{
    display: none;
 }



 #check{
    display: none;
 }

.checkbtn{
    font-size: 30px;
    float: right;
    line-height: 100px;
    margin-right: 20px;
    cursor: pointer;
    display: none;
}

nav ul li a.active{
    background: none;
    color: #FBBA00;
 }

 nav ul li a:hover {
     color: #FBBA00;
     -webkit-transition: all 0.4s 0s ease-out;
     -moz-transition: all 0.4s 0s ease-out;
     transition: all 0.4s 0s ease-out;
 }

 nav ul li a:after{
    content: '';
    position:absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0) ;
    -webkit-transform-origin:50% 50% ;
    -moz-transform-origin:50% 50% ;
    transform-origin:50% 50% ;
    width: 100%;
    height: 2px;
    background-color: #FBBA00;
    transition: transform 250ms;
    -webkit-transition: transform 250ms;
    -moz-transition: transform 250ms;
}

 nav ul li a:hover:after{
    transform: translateX(-50%) scaleX(0.7) ;
    -webkit-transform: translateX(-50%) scaleX(0.7) ;
    -moz-transform: translateX(-50%) scaleX(0.7) ;
}

nav .submenu{ 
    display: none;   
    position: absolute;
    background-color: #fff;
    z-index: 1000;
    margin-left: -32px;
}



nav .desplegable:hover .submenu{
    display: block;
}

.menu_inside_link{ 
    font-size: 16px;
}

nav .menu_inside{    
    background-color: #fff;    
}

nav .desplegable{
    display: block;    
}

nav .desplegable a i{
    font-size: 18px;
    margin-left: 3px;    
}


@media (max-width: 850px) {

    .checkbtn {
        display: block;
    }   

    nav {
        background-color: #ffffff;        
        padding: 15px 0px;
        z-index: 10;
        height: 100px;
        width: 100%;
        margin: auto;
    }

    nav .logo {
        position: absolute;
        width: 240px;
        height: 150px;
        top: 20px;
        left: 20px;
    }

    nav .logo img {
        width: 190px;
    }

    
    nav ul {
        position: fixed;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: calc(100vh - 140px);
        left: -100%;
        top: 140px;
        background: #004388;
        text-align: center;
        margin-left: 0;
        padding-left: 0;
        opacity: 0;
        -webkit-transition: all 0.5s 0s ease-out;
        -moz-transition: all 0.5s 0s ease-out;
        transition: all 0.5s 0s ease-out;
        
    }

    nav ul li:nth-child(3) {
        margin-left: 0px;
    }

    nav ul li a {
        display: block;
        color: #fff;
    }

    nav ul .menu_extra{
        display: block;
     }    

    nav ul li {
        margin-left: 0px;
        display: block;
        margin: 20px 0;
        line-height: 20px;
        
    }

    nav ul li a:hover,
    nav ul li a.active {
        background: none;
        color: #FBBA00;
    }
    
    #check:checked~ul {
        left: 0;
        opacity: 1;
    }

    .superior p{    
        display: block;
    }    
    .texto_superiord{
        display: none;
    }
    .texto_superiorm{
        display: block;
    }
    
}


.contenedor_carrousel{
    max-width: 1400px;
    margin: auto;
}


.texto_carrousel{
    position: absolute;   
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    
}


.texto_carrousel div{
    font-family: 'Montserrat', sans-serif;
    font-size: 24px; 
    font-weight: 300; 
    color: #fff; 
    margin-bottom: 18px;
}

.texto_carrousel h5{
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 10px;
    margin-bottom: 20px;
    color: #fff; 
}

.contenedor_carrousel p{
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;   
     
}

.contenedor_carrousel h5{
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 10px;
    margin-bottom: 20px;
}

.contendor_titulo{
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 50px 0px;
}

.titulo{
    width: 80%;
    text-align: center;
    margin: auto;    
}
.mapa{
    width: 100%;
    text-align: center;
    margin: auto;    
}

.titulo h1{
    font-weight: 700;
    color: #FBBA00;
    margin-bottom: 20px;
}

.contendor_mantenimiento{
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 30px 0px;
}

.botones_mantenimiento{
    display: flex;
    justify-content: center;
}

.botonm1{
    width: 250px;
    text-align: center;    
}

.botonm1 img{
    width: 160px;
}

.botonm2{
    width: 320px;
    text-align: center;    
}
.botonm2 button{
    border: none;
    background-color: transparent;
}

.botonm1 button{
    border: none;
    background-color: transparent;
}

.botonm2 img{
    width: 130px;
}

.manten1{
    color: #FBBA00;
    margin-top: 15px;   
}

.manten2{
    color: #000;
    margin-top: 15px;   
}

.contenido_mantenimiento{
    display: flex;    
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 30px 0px;    
}

.detalles_mentenimiento{
    color: #fff; 
    width: 90%;  
    padding: 20px 10px 10px 20px; 
    padding-left: 50px;
}

.detalles_mentenimiento_cont{    
    background-color: #004388;
    margin: auto;
    display: flex;
    justify-content: center;
    color: #fff; 
    width: 60%;  
    padding: 15px ;
    height: 400px;
}

.detalles_mentenimiento a{ 
    text-decoration: none;
    color: #fff;            
}  

.detalles_mentenimiento2 a{ 
    text-decoration: none;
    color: #fff;            
}  

.detalles_mentenimiento h2{
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;    
}

.detalles_mentenimiento .botonm2l{
    position: relative;
    font-size: 16px;
    font-weight:400;
    margin-bottom: 10px; 
    padding: 5px;       
}

.detalles_mentenimiento .botonm2l::after{
    content: '';
    position: absolute;
    background-color: #FBBA00;
    height: 2px;
    width: 100px;
    bottom: 0;
    left: 5px;
}

.foto_mantenimiento{
    width: 40%;
    height: 400px;
    overflow: hidden;
}

.foto_mantenimiento img{
    width: 110%;
}

.contenido_mantenimiento2{
    display: none  ;  
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 30px 0px;
}

.detalles_mentenimiento2{
    background-color: #004388;
    color: #fff; 
    width: 100%;  
    padding: 20px 10px 10px 20px; 
    padding-left: 50px;
   
}

.detalles_mentenimiento2 h2{
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;    
}

.detalles_mentenimiento2 .botonm2l{
    position: relative;
    font-size: 16px;
    font-weight:400;
    margin-bottom: 10px; 
    padding: 5px;       
}

.detalles_mentenimiento2 .botonm2l::after{
    content: '';
    position: absolute;
    background-color: #FBBA00;
    height: 2px;
    width: 100px;
    bottom: 0;
    left: 5px;
}

.foto_mantenimiento2{
    width: 40%;
    height: 400px;
    overflow: hidden;
}

.foto_mantenimiento2 img{
    width: 110%;
}


.botonm2f{
    display: inline-block;
    background-color: #FBBA00;
    padding: 5px 10px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    margin-top: 10px;
}

.contendor_galeria{
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 50px 0px;
}

.galeria{
    width: 80%;
    text-align: center;
    margin: auto;    
}

.galeria h2{
    color: #FBBA00;    
}

.fotos_galeria{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.fotos_galeria a {
    width: 30%;
}
.fotos_galeria a img{
    width: 100%;
}

.contendor_clientes{
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 50px 0px;
}

.clientes{
    width: 80%;
    text-align: center;
    margin: auto;      
}

.clientes h2{
    color: #FBBA00;    
}

.fotos_clientes{
    display: flex;
    justify-content:center; 
    background-color: red;   
}



.contendor_preguntas{
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 50px 0px;
    background-color: #FBBA00;
    display: flex;
    justify-content: center;
}

.preguntas{
    display: flex;
    justify-content: center;    
    width: 560px;
}

.preguntas_texto {
    text-align: center;
    width: 80%;
}

.preguntas_texto div{
    font-size: 20px;
}

.preguntas_texto h2{
    font-size: 26px;
    font-weight: 800;
}

.preguntas_boton {
    width: 20%;
    padding-left: 50px;
    text-align: center;
    display: flex;
    align-items: center;
}

.preguntas_boton a{
    text-decoration: none;
    color: #000;
}



.preguntas_boton div{
    background-color:#FBBA00;
    display: inline-block;
    padding: 7px 12px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    margin-top: 10px;
    border: 2px solid #000;
    transition: background-color .5s ;
    -webkit-transition: background-color .5s ;
    -moz-transition: background-color .5s ;
}

.preguntas_boton div:hover{
    background-color:#fdbf16;
    
}

footer{
    max-width: 1400px;
    margin: auto;
    width: 100%;
    background-color:#004388;
}

.footer_contenido{
    display: flex;
    width: 80%;
    justify-content: space-around;
    align-items: center;
    margin: auto;
    padding: 30px 0px;
}

.footer_contenido .logo{
   width: 30%;
   display: flex;
   justify-content: end;
}

.footer_contenido .logo img{
    width: 180px;
}
.footer_contenido .textos{
    width: 30%;
    text-align: center;
    color: #fff;
    font-size: 0.9em;
}

.footer_contenido .textos span{
    color:#FBBA00;
}
.footer_contenido .calidad{
    width: 30%;
}

.footer_contenido .calidad img{
    width: 220px;
}

footer .copyright {
    background-color: #00244E;
    height: 30px;
    color: #fff;
    text-align: center;
    padding: 10px 0px;
    line-height: 18px;
    padding-bottom: 28px;
    font-size: 0.8em;
}

/* =========================================== titulo2 */

.cabezote {    
    width: 100%;
    margin: auto;
    max-width: 1400px;
    height: 300px;
    background-image: url("../img/omg_nos.jpg");
    background-color: #cccccc;
    background-position:center center;
    background-size: cover;
}

.cabezote2 {
    max-width: 1400px;
    margin: auto;
    width: 100%;
    height: 300px;
    background-image: url("../img/img_ser.jpg");
    background-color: #cccccc;
    background-position:center center;
    background-size: cover;
}

.cabezote3 {
    max-width: 1400px;
    margin: auto;
    width: 100%;
    height: 300px;
    background-image: url("../img/img_pre.jpg");
    background-color: #cccccc;
    background-position:center center;
    background-size: cover;
}

.cabezote4 {
    max-width: 1400px;
    margin: auto;
    width: 100%;
    height: 300px;
    background-image: url("../img/img_con.jpg");
    background-color: #cccccc;
    background-position:center center;
    background-size: cover;
}

.contenido_cabezote {
    width: 100%;
    display: flex;
    color: #fff;
    height: 300px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;     
}

.contenido_cabezote img{
    width: 100%;
}

.contenido_cabezote h2{
    font-size: 30px;
    font-weight: 700;
    margin-bottom: -3px; 
    letter-spacing: 2px;
    text-align: center;   
}

.contenido_cabezote div{
    font-size: 16px;
    font-weight: 400;
  }

  .contendor_titulo2{
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 50px 0px;
}

.titulo2{
    width: 90%;    
    margin: auto;    
}

.dos_columnas{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.dos_columnas img{
    width: 50%;
}

.dos_columnas p{
    width: 50%;
    font-size: 14px;
    text-align: justify;
}

.titulo2 h1{
    font-weight: 500;
    color: #FBBA00;
    margin-bottom: 20px;
    text-align: center;
}

.parte1 {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.parte1 img{
    width: 100%;
}

.parte1 h3{
    width: 100%;     
    color: #FBBA00;
}

.parte1 p{
    width: 100%;
    text-align: justify;
        line-height: 20px;
    font-size: 18px;
}

.parte2 {
    width: 100%;
    display: flex;
    flex-direction: column;    
    padding-left: 20px;
}

.parte2 h3{
    width: 100%;     
    color: #FBBA00;
}

.parte2 p{
    width: 100%;
    text-align: justify;
    line-height: 20px;
    font-size: 18px;
}
.parte2 img{
    width: 100%;    
}

.parte6 {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.parte6 h4{
    padding-top: 30px;
    width: 90%; 
    margin-bottom: -2px;    
    color:#004388;

}

.parte6 p{
    width: 90%;
    text-align: justify;
    font-size: 18px;

}

.parte6 img{
    width: 80%;
    text-align: center ;
    margin: auto;   
}

.parte7 {
    width: 100%;
    display: flex;
    flex-direction: column;    
    padding-left: 20px;
}


.parte_contacto1 {    
    width: 100%;    
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-direction: column;  
        
}

.parte_contacto1 div{
    height: 70px;
    position: relative;
    text-align: right; 
    display: inline; 
    padding-right: 42px;   
}

.parte_contacto1 .linea{
    height: 2px;
    width: 150px;
    background-color: rgb(166, 166, 166);
    text-align: right;
     padding-right: 42px;
     margin-top: -10px;
     margin-bottom: 18px; 
     right: 42px;  
}

.parte_contacto1 h3{
     color: #FBBA00;
     padding-bottom: 30px;
}

.parte_contacto1 span{
    font-weight: 700;
}




.parte_contacto1 img{
    width: 35px ;
    position: absolute;   
    right: 0;  
    top: 0;
}


.parte_contacto2 {    
    width: 100%;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items:space-between;
    flex-direction: column;              
}

.parte_contacto2 div {    
    width: 100%;
    padding: 10px 0px;
          
}

.parte_contacto2 .cont_enviar button{
    padding: 8px 25px;
    background-color: #004388;
    color: #e8e8e8;
    font-weight: 500;
    border-radius:50px ;
    -webkit-border-radius:50px ;
    -moz-border-radius:50px ;
    border: none;
}


.cont_nombre{
    display: flex;
    justify-content: space-between;
    gap:14px;
}

.cont_nombre_tit{
    margin-bottom: -25px;
}

.cont_nombre_tit span{
    color: #c10404;
}

.input-block span{
    color: #c10404;
}


.form-control{   
    background: #fff;
    color:#706e6e;
    font-size: 1rem;
    padding: .5em .3em;
    border: none;
    outline: none;
    border-radius:5px ;
    -webkit-border-radius:5px ;
    -moz-border-radius:5px ;
}
.parte7 h3{
    padding-top: 0px;
    width: 100%;     
    color: #FBBA00;
}

.parte7 p{
    width: 100%;
    text-align: justify;
    line-height: 20px;
    font-size: 18px;
}

.parte7 img{
    width: 100%;    
}

.dos_columnas li{
    padding-bottom: 10px;
    font-size: 16px;
    list-style-image: url('../img/check1.png');    
}

.dos_columnas3 li{
    padding-bottom: 10px;
    font-size: 16px;
    list-style-image: url('../img/check1.png');    
}

.titulo h2{
    font-weight: 500;
    color: #FBBA00;
    margin-bottom: 0px;
}

.titulo p{    
    text-align: justify;
    font-size: 18px;
}

.titulo img{
    width: 400px;
    
}

.dos_columnas3{
    width:100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.parte4 {
    width: 100%;
    display: flex;
    flex-direction: column;    
    padding-left: 20px;
    text-align: right;
}

.parte5 {
    width: 100%;
    display: flex;
    flex-direction: column;    
    padding-left: 20px;
}

.parte4 h3{
    color: #FBBA00;
}

.parte5 i{
    color: #FBBA00;
    margin-right: 4px;
}

.contendor_img{
    width: 80%;
    margin: auto;
}

.contendor_titulopv{
    max-width: 1400px;
    margin: auto;
    width: 100%;
    padding: 15px 0px;
} 

.titulo_preventivo{
    width: 90%;    
    margin: auto;
    text-align: center;      
}

.titulo_preventivo li{    
    margin-bottom: 10px; 
    font-size: 20px;
    color: #004388;
}

.imagenes_preventivo{
display: flex;
justify-content: center;
width: 70%;
margin: auto;
gap: 20px;
}

.imagenes_preventivo img{
    width: 400px;
    }

.color2{
    background-color: #f8f2ec;
}

.color3{
    background-color: #e8e8e8;
}

.swiper {
    width: 100%;
    height: 100%;
}

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }



.clientes_cont{
    position: relative;
    width: 95%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel_anterior,
.carousel_siguiente {
    position: absolute;
    display: block;
    width: 28px;
    height: 28px;
    top: calc(50% - 15px);
    cursor: pointer;
    line-height: 30px;
    text-align: center;
    background: none;
    color: #FBBA00; 
    border: none;
}

.carousel_anterior{
    left: -40px;
}

.carousel_siguiente{
    right: -40px;
}

.items img {
    width: 190px;
}

.imagere {
    display: block;
}
.imagerm {
    display: none;
}

#button-up{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background:#FBBA00;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 50%;
    border: 2px solid #fff;
    font-size: 20px;     
    cursor: pointer;
    transition: all 300ms ease;
    transform: scale(0);

}

#button-up:hover{
    background:#c28e01;
    border: 2px solid rgb(249, 205, 205);
}



@media (max-width: 850px) { 

    .imagere {
        display: none;
    }
    .imagerm {
        display: block;
    }
    
    .titulo img{
        width: 250px;
        margin-top: 20px;
    }
    

    .texto_carrousel div{
        font-size: 11px; 
        margin-bottom: 4px;
    }
    
    .texto_carrousel h5{
        font-size: 13px;
        margin-bottom: 4px;
    }
    .contenido_mantenimiento{
        flex-direction: column;    
    }

    .detalles_mentenimiento{ 
        width: 100%; 
        padding-bottom: 40px;
        padding-left: 20px; 
        
    }     
    
           
    .foto_mantenimiento{
        width: 80%;
        overflow:visible;
        height: auto; 
        display: flex;
        justify-content: center; 
        align-items: center;
        margin: auto;
        
    }

    .contenido_mantenimiento2{
        flex-direction: column; 
        justify-content: center;
        align-items: center;
        margin: auto; 
    }

    .detalles_mentenimiento2{ 
        width: 100%; 
        padding-bottom: 40px;
        padding-left: 20px;     
    }    
    
    .detalles_mentenimiento_cont{    
        background-color: #004388;
        margin: auto;
        display: flex;
        justify-content: center;
        color: #fff; 
        width: 80%;  
        padding: 15px ;
        height: 400px;
    }
    
    .foto_mantenimiento2{
        width: 80%;
        overflow:visible;
        height: auto; 
        display: flex;
        justify-content: center;       
    }

    .fotos_galeria a {
        width: 42%;
    }

    .preguntas{
        display: flex;
        flex-direction: column;
        justify-content: center;    
    }    
    
    .preguntas_texto {
        width: 100%;   
    }

    .preguntas_boton {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-left: 0px;
    }

    .footer_contenido{
        display: flex;
        width: 90%;
        flex-direction: column;
        justify-content: center;
    }
        
    .footer_contenido .logo {
        width: 100%;
        justify-content: center;
    }
    
    .footer_contenido .logo img {
        width: 150px;
    }
    
    .footer_contenido .textos {
        width: 100%;
        padding-top: 30px;    
    }    
    
    .footer_contenido .calidad {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 20px;
    }

    .dos_columnas{
        width: 95%;
        flex-direction: column;
        margin: auto;
        justify-content: center;
        align-items: center;
    }

    .imagenes_preventivo img{
        width: 200px;
        }

        .parte2 {
                
            padding-left: 0px;
        }

        .parte_contacto1 div{
            height: 110px;               
        }

        .parte6 {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            
        }

        .dos_columnas3{
            flex-direction: column;
        }

        .parte4 {
              
            padding-left: 0px;
            text-align: center;
        }
        
        


        
  }

  @media (max-width: 1050px) {  
        
        
    .footer_contenido .logo {
        width: 100%;
        justify-content: center;
    }
    
    .footer_contenido .logo img {
        width: 150px;
    }
    
    .footer_contenido .textos {
        width: 100%;
        padding-top: 30px;    
    }    
    
    .footer_contenido .calidad {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 20px;
    }

    .footer_contenido .calidad img{
        width: 200px;
        margin-left: 20px;
    }

  }










