/*=====================================
Estilos generales
====================================*/
*{
    padding: 0px;
    margin:0px;
}

body{
width: 100%;
height: 100%;
}

/* =================================
Estilos barra de navegación 1
===================================*/

.nav{
    position: fixed;
    width: 100%;
    height: 71px;
    background: linear-gradient(180deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.753), rgba(255, 255, 255, 0.342) );
    display: flex;
    margin-top: 0px;
    z-index: 3;
    -webkit-box-shadow: 0px 1px 11px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 1px 11px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 1px 11px -2px rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);  
    -webkit-backdrop-filter: blur(6px);
    }


.menu{
    width: 100%;
    height: auto;
    text-align: right;
    display: flex;
    align-items: center;
}

.menu button{
    border: 0px solid black;
    text-decoration: none;
    outline: none;
}

.menu button:hover{
    opacity: .5;
    outline: none;
    border: 0px solid black;
}

.menu button:focus{
    outline: none;
    border: 0px solid black;
}

.lista{
 
    width: 100%;
    list-style: none;
    padding: 0px;
    margin: 0px 10px 0px 0px;
    text-align: center;
}

.item{
    font-family: 'Roboto', sans-serif;
    margin-right: 15px;
    margin-left: 15px;
    display: inline-block;
    padding: 0px 5px 0px 5px;
    text-align: center;
    color: #035AA6;
    transition:all .3s ease-in-out;
    border-bottom: 1px solid #038C3E;
}

.sec{
    font-size: 15px;
}

.item:hover{
-webkit-transform:scale(1.2);transform:scale(1.2);
} 

 #item4{
    color: #035AA6; 
    text-decoration-line: none;
}

#item4:hover{
    color: #038C3E; 
}

.item:hover{
    color: #038C3E;
    text-decoration: none;
    cursor:pointer;
    cursor: hand;
}

/* Estilos barra de navegación 2*/

.nav2{
    width: 100%;
    position: fixed;
    height: 71px;
    background: rgba(255, 255, 255, 0.678);
    display: flex;
    visibility:hidden;
    margin-top: 0px;
    z-index: 3;
    -webkit-box-shadow: 0px 1px 11px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 1px 11px -2px rgba(0,0,0,0.75);
    box-shadow: 0px 1px 11px -2px rgba(0,0,0,0.75);    
    backdrop-filter: blur(10px);  
}

.botonMenu{
 background: rgb(0, 160, 235);
}

/*===================================
Estilos de la ventanaLateral
====================================*/

.ventana-lateral{
    position: fixed;
    width: 100%;
    height: 100%;
    margin-top: 0px;
    background: #ffffff;
    left: -100%;
    color: white;
    z-index: 4;
    visibility: hidden;
    backdrop-filter: blur(10px);  
    -webkit-backdrop-filter: blur(6px);
}

/*Tiempo que tarda en desplazarse a la derecha*/
.tiempoTrans{
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out; /** Chrome & Safari **/
    -moz-transition: all .5s ease-in-out; /** Firefox **/
}

/*Accion que mueve la ventanaLateral a la derecha*/
.mover-derecha{
    transform: translate(100%,0);
    -webkit-transform: translate(100%,0); /** Chrome & Safari **/
    -o-transform: translate(100%,0); /** Opera **/
    -moz-transform: translate(100%,0); /** Firefox **/
}


.cabecera-ventana_L{
    text-align: center;
    background-color: rgb(255, 255, 255);

}


.contBtnCerrar{
    width: 100%;
    text-align: right;
    background: linear-gradient(90deg, #013766, #035AA6, #0182f3);

}


.BtnCerrar{
    margin: 10px 10px 10px 0px;
    background: transparent;
    border: solid 0px;
    outline:none !important;
}

.imgLogoVentanaLateral{
    width: 60%;
    max-width: 300px;
    margin-top: 0px;
    margin-bottom: 10px;
}

.ImgCerrar{
    width: 25px;
    background: transparent;
}

.lista-ventana{
    text-align: center;
    margin-top: -25px;
    background: linear-gradient(90deg, #013766, #035AA6, #0182f3);
    display: flex;
    flex-wrap: wrap;
    border-radius: 25px;
    height: 100%;
    padding-top: 10px;
    -webkit-box-shadow: 0px 1px 26px -4px rgba(0, 0, 0, 0.918);
    -moz-box-shadow: 0px 1px 26px -4px rgba(0, 0, 0, 0.918);
    box-shadow: 0px 1px 26px -4px rgba(0, 0, 0, 0.918);
}

.interno{
    width: 90%;
    margin-left: 5%;
    height: 70%;
    display: flex;
    flex-wrap: wrap;
}

.btnLista{
    border: 0px solid ;
    height: 150px;
    width: 42.5%;
    display: flex;
    text-align: left;
    background-color: #ffffff56;
    font-size: 17px;
    color: #1A2A39;
    outline:none !important;
    flex-wrap: wrap;
    text-align: center;
    margin-left: 5%;
    margin-bottom: 10px;
    border-radius: 15px;
}

.btnLista:hover{
    background-color: rgb(147, 148, 148);
    border: solid 0px;
}

.btnLista img{
    display: block;
    width: 50%;
    margin-left: 25%;
    margin-top: 5px;;
    max-width: 110px;
    background-color: transparent;  
}

.btnLista p{
    display: block;
    margin-left: 5%;
    width: 90%;
    background: rgba(255, 255, 255, 0.123);
    border-radius: 5px;
}


.fondoObscuro{
    width: 100%;
    height: 110%;
    margin-top: -70px;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.253);
    display: none;
    visibility: hidden;
    z-index: 4;
}

.fondoObscurovisib{
    display: inline;
}


.sin-scroll{
    overflow-y: hidden;
	 overflow-x: hidden;

}

/*===================================
Estilos del Slider
====================================*/

.swiper-container {
    width: 100%;
    height: 800px;
    margin-top: 0px;
    -webkit-box-shadow: 0px 5px 31px -19px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 5px 31px -19px rgba(0,0,0,0.75);
    box-shadow: 0px 5px 31px -19px rgba(0,0,0,0.75);
  }

  .slide1{
    background-image: url(../img/Principal1.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    text-align: left;
}

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    /* 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;
  }


.cajaPadre{
    width: 100%;
    height: 100%;
    display: flex;
}

.caja-centro{
    margin-top: 3%;
    width: 100%;
    max-width: 700px;
    height: 35%;   
    border-radius: 10px;

    }

.caja-centro .img-logo{
    margin-top: 20px;
    width: 65%;
}

.btnConocenosSlider1{
    margin-top: 60px;
    width: 200px;
    background: rgb(255, 255, 255);
    border: solid 0px;
    color: #035AA6;
    border-radius: 5px;
    backdrop-filter: blur(3px);  
    -webkit-backdrop-filter: blur(3px);
    font-weight: bold;
    -webkit-box-shadow: 0px 14px 55px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 14px 55px -4px rgba(0,0,0,0.75);
    box-shadow: 0px 14px 55px -4px rgba(0,0,0,0.75);
    outline:none;
}

.btnConocenosSlider1:hover{
   background: rgba(219, 241, 167, 0.473);
}

.btnConocenosSlider1:FOCUS{
    border: 0px;
    outline:none;
}

.btnConocenosSlider2:hover{
    background: rgba(219, 241, 167, 0.473);
 }
 
 .btnConocenosSlider2:FOCUS{
     border: 0px;
     outline:none;
 }

.caja-centro .lema{
    margin-top: 10px;
    font-size: 25px;
    color: #035AA6;
    font-family: 'Mulish', sans-serif;
    text-align: center;
    padding-left: 55px;
    padding-right: 55px;
    text-shadow: 4px 4px 2px rgba(0, 0, 0, 0);
    font-weight: bold;
    backdrop-filter: blur(3px);  
    -webkit-backdrop-filter: blur(3px);
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0.185), rgb(243, 243, 243), rgba(255, 255, 255, 0.014));
}

.lema strong{
    color: #038C3E;    
}

  .slide2 h1{
    width: 100%;
    font-size: 48px;
    color: #D5E5F2;
    text-shadow: 1px 7px 6px rgba(0, 0, 0, 1);    
}

.LogoSlider1{
    width: 100%;
    border: solid orange;
}

.slide2{
    background-image: url(../img/Principal1.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    text-align: left;
}

.slide2 h2{
    font-family: 'Mulish', sans-serif;
    width: 100%;
    margin-top: 20px;
    font-size: 30px;
    color: #EC652B; 
    text-align: center;
    background-color: #6161615b;
    border-bottom: 4px solid #EC652B;
    padding-bottom: 8px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    font-weight: bold;
}

.slide2 h2 strong{
    color: #1a2a39;
}

.slide2 p{
    font-size: 40px;
    text-align: justify;
    width: 60%;
    max-width: 550px;
    min-width: 300px;
    margin-top: 140px;
    margin-left: 50px;
    color: rgb(0, 130, 182);
    text-align: left;
    padding: 0px;
}

.slide2 p strong{
    color: #038C3E;

}

.slide2 img{
    margin-top: 100px;
    margin-left: 50px;
}

.btnConocenosSlider2{
    width: 15%;
    min-width: 150px;
    margin-left: 50px;
    background: rgb(255, 255, 255);
    border: solid 0px;
    color: #035AA6;
    border-radius: 5px;
    backdrop-filter: blur(3px);  
    -webkit-backdrop-filter: blur(3px);
    font-weight: bold;
    -webkit-box-shadow: 0px 14px 55px -4px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 14px 55px -4px rgba(0,0,0,0.75);
    box-shadow: 0px 14px 55px -4px rgba(0,0,0,0.75);
    outline:none;
}

.contenedorContenido{
    margin-top: 0px;
    width: 100%;
    height: 100%;
}

.img-slider{
   width:75%;
   margin: 40px 10px 20px 10px;
}

.SliderTexto1{
    width: 500px;
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: rgb(226, 241, 6);
    height: auto;
    display: flex;
    align-items: center;
    text-shadow: 1px 7px 6px rgba(0, 0, 0, 1);
    padding-left: 50px;
    text-align: left;
    margin-bottom: 80px;
}

.SliderTexto2{
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    color: rgb(226, 241, 6);
    height: auto;
    display: flex;
    align-items: center;
    text-shadow: 1px 7px 6px rgb(0, 0, 0);
    padding-left: 0px;
    text-align: left;
    margin-bottom: 26px;
}

.btnConocenos{
    cursor:pointer; cursor: hand;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    width: 50%;
    margin-left: 25%;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 19px;
    color: rgb(255, 255, 255);
    border-radius:18px;
    background:linear-gradient(90deg,  rgb(130, 163, 38), rgb(235, 238, 67));
    border:solid 0px;
    padding: 4px 30px 4px 30px ;
    -webkit-box-shadow: 0px 10px 13px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 10px 13px -5px rgba(0,0,0,0.75);
    box-shadow: 0px 10px 13px -5px rgba(0,0,0,0.75);
    display: block;
   
    -webkit-transition:all .6s ease; /* Safari y Chrome */
    -moz-transition:all .6s ease; /* Firefox */
    -o-transition:all .6s ease; /* IE 9 */
    -ms-transition:all .6s ease; /* Opera */
}

.btnConocenos:hover{
    -webkit-transform:scale(1.1);
    transform:scale(1.1);
    text-decoration: none;
    background:linear-gradient(90deg, rgb(235, 238, 67),  rgb(130, 163, 38) );

}



.ContBtnCon{
    text-align: center;
}

.ContenedorEncu{
    text-align: center;
}

.ContenedorEncu img{
    width: 15px;
}

#aEncuen{
    font-family: 'Roboto', sans-serif;
    color: #D2DE38;
    margin-left: 0px;
    text-decoration: none;
}

#aEncuen:hover{
    text-shadow: 6px 0px 18px rgba(218, 224, 53, 1);

}

.ContenedorMiniMenu{
    width: 90%;
    text-align: right;
    margin-right: 0px;
    height: 550px;
    
 
    
}
.ContenedorimgVertical{
    width: 10%;
    height: 100%;
   
}

.ContenedorimgVertical{
    width: auto;
    margin-right: 70px;

}


.ContenedorMiniMenu div{
    margin-top: 60px;
 
}


.ContenedorMiniMenu button{
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    color:  gray;
    padding: 2px 0px 0px 0px;
    border: 0px solid black;
    border-radius: 15px;
    background: transparent;
    margin-right: 10px;
    margin-top: 15px;
    -webkit-transition:all .6s ease; /* Safari y Chrome */
    -moz-transition:all .6s ease; /* Firefox */
    -o-transition:all .6s ease; /* IE 9 */
    -ms-transition:all .6s ease; /* Opera */

    text-shadow: 1px 7px 6px rgba(0, 0, 0, 0.26);
    
}

.ContenedorMiniMenu button strong{
    font-size: 20px;
    color: #087E40;
}

.imgHojas{
    border: 0px solid black;
    width: 25px;
    margin: -15px 3px 0px 0px;
    
}

.ContenedorMiniMenu button:hover{
    -webkit-transform:scale(1.3);transform:scale(1.3);
    color: #B2C343;
}



.ContenedorBtnConocenos1{
    width: 100%;
    text-align: center;
    display: block;
  
}

.ContenedorBtnConocenos2{
    width: 100%;
    display: none;
    text-align: center;

}


/*===================================
CONÓCENOS
====================================*/
.conocenos{
    width: 100%;
    margin-top: 0px;
    padding-top: 90px;
    background: rgb(235, 249, 255);
    min-height: 500px;
}

.ContTitulo1{
    width: 80%;
    margin-left: 10%;
    margin-bottom: 50px;
    border-radius: 5px;
    height: 60px;
    margin-top: 0px;
    border-right: 10px solid rgb(126, 126, 126);
    background-color: rgb(219, 219, 219);
}

.ContTitulo1 h3{
    width: 82%;
    height: 100%;
    padding-top: 20px;
    margin-left: 9%;
    text-align: left;
    font-family: 'Public Sans', sans-serif;
    font-size: 25px;
    border: 0px solid #087E40;
    color: #035AA6;
}

.ContenidoCuerpo{
    width: 80%;
    margin-left: 10%;
    height: auto;
    margin-top: 0px;
    border: 0px solid rgb(0, 130, 252);
    text-align: center;
    display: flex;
    flex-wrap: wrap;
}

.btnsIdentidad{
width: 40%;
border: 0px solid yellow;

}

.ContenerdorRow{
    margin: 0px;
    width: 100%;
    border: 0px solid rgb(0, 0, 0);
}

.detalle{
    width: 60%;
    margin-bottom: 20px;
   text-align: justify;
}

.detalle h4{
    font-weight: bold;
    color:#035AA6 ;

}

.detalle p strong{
 color: #038C3E;

}

.mis{
    width: 100%;
}

.vis{
    width: 100%;
}

.val{
    width: 100%;
}


.no-mostrar{
    display: none;
}

.si-mostrar{
    display: inline-block;
}

.columnas{
    margin-bottom: 20px;
    padding: 2px;
}

.ContTitulo2{
    width: 80%;
    margin-left: 10%;
    margin-bottom: 50px;
    border-radius: 5px;
    height: 60px;
    margin-top: 0px;
    border-right: 10px solid rgb(126, 126, 126);
    background-color: rgb(219, 219, 219);
}

.ContTitulo2 h3{
    width: 82%;
    height: 100%;
    padding-top: 20px;
    margin-left: 9%;
    text-align: left;
    font-family: 'Public Sans', sans-serif;
    font-size: 25px;
    border: 0px solid #087E40;
    color: #035AA6;
   
}

.ficha{
    cursor: pointer;
    text-align: center;
    width: 100%;
    -webkit-box-shadow: -7px 12px 26px -19px rgba(0,0,0,0.75);
    -moz-box-shadow: -7px 12px 26px -19px rgba(0,0,0,0.75);
    box-shadow: -7px 12px 26px -19px rgba(0,0,0,0.75);
    -webkit-transition:all .6s ease; /* Safari y Chrome */
}

.ficha:hover{
    -webkit-transform:scale(1.1);
    transform:scale(1.1);
}

.TituloFicha{
    font-size: 20px;
    margin-left: 20%;
    width: 60%;
    height: 30px;
    background-color: #035AA6;
    border: 0px;
    outline: none;
    border-radius: 5px;
    -webkit-box-shadow: 6px 7px 9px -3px rgba(0,0,0,0.75);
    -moz-box-shadow: 6px 7px 9px -3px rgba(0,0,0,0.75);
    box-shadow: 6px 7px 9px -3px rgba(0,0,0,0.75);
}

.TituloFicha:focus{
    background: green;
}

.TituloFicha:hover{
    background:green;
}

.TituloFicha button{
    width: 100%;
    background: transparent;
    border: 0px;
    outline: none;
    height: 30px;
    border-radius: 5px;
    color: white;
}

.TituloFicha button:focus{
    outline: none;
    border: 0px;
    background:green;
}

.TituloFicha button:hover{
    outline: none;
    border: 0px;
}



/*===================================
PRODUCTOS
====================================*/

.producto{
    background: rgb(210, 240, 253);
    padding-top: 90px;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    padding-bottom: 50px;
}

.ContTitulo3{
    width: 80%;
    margin-left: 10%;
    margin-bottom: 0px;
    padding: 10px;
    border-radius: 5px;
    min-height: 60px;
    margin-top: 0px;
    border-right: 10px solid rgb(126, 126, 126);
    background-color: rgb(219, 219, 219);   
}

.ContTitulo3 h3{
    width: 82%;
    padding-top: 20px;
    margin-left: 9%;
    margin-bottom: 0px;
    text-align: left;
    font-family: 'Public Sans', sans-serif;
    font-size: 25px;
    color: #035AA6;
}

.lema-sec-prod{
    margin-top: 20px;
    font-size: 20px;
    width: 66%;
    margin-left: 17%;
    color: #035AA6;
    margin-bottom: 10px;
}

.lema-sec-prod strong{
    color: #038C3E;
}


.contenidoProducto{
    width: 80%;
    margin-left: 10%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding:10px;
    display: flex;
}

.contenidoProducto .descrip{
    background:linear-gradient(90deg, #069b9b, #028686, #019797);
    width: 50%;
    min-height: 200px;
    padding: 50px;
    text-align: justify;
}

.contenidoProducto .descrip h5{
    color: #02ffff;
    border-radius: 10px;
    background-color: #028888;
    padding: 2px;
    width: auto;
    max-width: 180px;
    text-align: center;
    -webkit-box-shadow: inset 0px 0px 14px -11px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 14px -11px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 14px -11px rgba(0,0,0,0.75);
    margin-bottom: 20px;
}

.contenidoProducto .descrip p{
    color: rgb(205, 255, 247);
}

.contenidoProducto .Proces{
    background: #038C3E;
    background:linear-gradient(90deg, #02833a, #038C3E, #029743);
    width: 50%;
    min-height: 200px;
    padding: 50px;
}

.contenidoProducto .Proces h5{
    color: #00ff6e;
    border-radius: 10px;
    background-color:  #037936;
    padding: 2px;
    width: auto;
    max-width: 260px;
    text-align: center;
    -webkit-box-shadow: inset 0px 0px 14px -11px rgba(0,0,0,0.75);
    -moz-box-shadow: inset 0px 0px 14px -11px rgba(0,0,0,0.75);
    box-shadow: inset 0px 0px 14px -11px rgba(0,0,0,0.75);
    margin-bottom: 20px;
}

.contenidoProducto .Proces p{
    color: #e0faeb;
}



/*===================================
GALERIA
====================================*/

.galeria{
    background: linear-gradient(180deg, rgb(210, 240, 253), rgb(210, 240, 253), rgb(210, 240, 253),rgb(210, 240, 253), rgb(94, 109, 116));
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #000;
    padding-bottom: 60px;
    padding-top: 80px;
    height: auto;
    
}

.ContTitulo4{
    width: 80%;
    margin-left: 10%;
    margin-bottom: 0px;
    padding: 10px;
    border-radius: 5px;
    min-height: 60px;
    margin-top: 0px;
    border-right: 10px solid rgb(126, 126, 126);
    background-color: rgb(219, 219, 219);
    margin-bottom: 20px;
}

.ContTitulo4 h3{
    width: 82%;
    padding-top: 20px;
    margin-left: 9%;
    margin-bottom: 0px;
    text-align: center;
    font-family: 'Public Sans', sans-serif;
    font-size: 25px;
    color: #035AA6;
}
#base0{
    width: 100%;
    height: 400px;
    background: transparent;
    padding-top: 40px;
    padding-bottom: 40px;
    -webkit-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.75);
}

#base1{
    width: 500px;
    height: 400px;
    height: 100%;
    
}

.img1{
    background-image: url(../img/espacioimg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;

  }

  .img2{
    background-image: url(../img/espacioimg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 80%;

    
  }
 
  .img3{
    background-image: url(../img/espacioimg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 80%;

  }
  .img4{
    background-image: url(../img/espacioimg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 80%;

  }
  .img5{
    background-image: url(../img/espacioimg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 80%;

  }
  .img6{
    background-image: url(../img/espacioimg.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 80%;

  }


/*===================================
CONTACTO
====================================*/
.Contacto{
    width: 100%;
    padding-top: 90px;
    background: rgb(230, 248, 255);
}

.ContactoCaja1{
    width: 80%;
    margin-left: 10%; 
    display: flex;
}

.formularioCaja{
    width: 50%;
    padding: 0%;    
}

.HorariosMapa{
    width: 50%;
}
 
.columnasContacto{
    text-align: right;
    padding: 0px;
    margin-top: 20px;
}

.ColumnaUnoFormularioEImagen{
    width: 100%;
    margin-bottom: 20px;
    padding: 0px;
    display: flex;
    -webkit-box-shadow: -2px 12px 26px -15px rgba(0,0,0,0.75);
    -moz-box-shadow: -2px 12px 26px -15px rgba(0,0,0,0.75);
    box-shadow: -2px 12px 26px -15px rgba(0,0,0,0.75);
    -webkit-transition:all .6s ease; /* Safari y Chrome */
}

.Contenedorformulario{
    width: 100%;
    margin: 0px;
    padding: 25px 20px 20px 20px;
    text-align: left;
    background: white;
    border-radius: 5px;
}

.headTitulo{
    text-align: left;
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 0px;
}

.headTitulo h3{
    font-size: 18px;
    margin-left: 15px;
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 0px;
    color: #1A2A39;
}

label, input{
    width: 100%;
}

label{
    color: #087E40;
    margin: 30px 0px 0px 0px;
    font-size: 14px;
}

input{
    outline: none;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid rgba(5, 83, 155, 0.678);
    margin-top: -15px;
}

.contenedorBtnEnviar{
    text-align: center;
}

.BtnEnviar{
    width: 30%;
    max-width: 100px;
    background-color: white;
    color: #087E40;
    border-radius: 0px;
    font-size: 16px;
    font-weight: bold;
    border: solid 1px rgba(5, 83, 155, 0.678);
}



.HorariosColumnas{
    padding: 15px 18px 15px 18px;
    width: 100%;
    text-align: left;
    margin-bottom: 15px;
    background: white;
    -webkit-box-shadow: -1px 3px 14px -5px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 3px 14px -5px rgba(0,0,0,0.75);
    box-shadow: -1px 3px 14px -5px rgba(0,0,0,0.75);
    border-radius: 5px;
    
}

.HorariosColumnas h4{
    font-size: 18px;
    color: #087E40;
    text-align: center;
}

.HorariosColumnas h5{
    color: #087E40;
    font-size: 16px;
    margin-bottom: 0px;
    background-color: rgb(231, 230, 230);
    text-align: center;
    margin-top: 15px;
    border-radius: 5px;
    padding:5px;
}

.HorariosColumnas p{
    text-align: center;
}

.Contenedormapa{
    margin-bottom: 10px;
}

.Pie{
    height: auto;
    background: #1a2a3927;
    padding-bottom: 15px;
    padding-top: 15px;
}

.Pie p{
    text-align: center;
    color: rgb(46, 46, 46);
    font-size: 14px;
    padding-top: 10px;
    margin: 0px;
    padding: 0px;
}

.Pie strong{
    color: #087E40;
}

.Pie a{
    color: rgb(12, 137, 196);

}
.Pie a:hover{
    color: rgb(0, 225, 255);
}

/*===================================
MEDIA QUERIES
====================================*/

@media (max-width: 1700px){

    .swiper-container {
        height: 800px;
      }
      .sec{
        font-size: 14px;
    }   

    .caja-centro .img-logo{
        margin-top: 30px;
        }  
}

@media(max-width: 1100px){
  
   
}

@media (max-width: 900px) {

 

    .ContactoCaja1{
        display: inline-block;
    }

    .formularioCaja{
        width: 100%;
    }

    .HorariosMapa{
        width: 100%;
    }

    .contenidoProducto{
        display: inline-block;
    }

    .contenidoProducto .descrip{
        width: 100%;
        padding: 20px;
    }
    
    .contenidoProducto .Proces{
        width: 100%;
        padding: 20px;
    }

    .btnConocenosSlider2{
        width: 40%;
        margin-left: 30%;
        background: rgb(255, 255, 255);
        border: solid 0px;
        color: #035AA6;
        border-radius: 5px;
        backdrop-filter: blur(3px);  
        -webkit-backdrop-filter: blur(3px);
        font-weight: bold;
        -webkit-box-shadow: 0px 14px 55px -4px rgba(0,0,0,0.75);
        -moz-box-shadow: 0px 14px 55px -4px rgba(0,0,0,0.75);
        box-shadow: 0px 14px 55px -4px rgba(0,0,0,0.75);
        outline:none;
    }

    .slide2 p{
        width: 80%;
        height: 40%;
        margin-left: 10%;
        max-width: 900px;
        min-width: 300px;
        margin-top: 70px;
        text-align: center;
        padding: 40px 10px 10px 10px;
        font-size: 25px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.034), white, rgba(255, 255, 255, 0.007));
        transition:all .9s ease-in-out;
    }

    .caja-centro{
        margin-top: 100px;
        
    }

    .caja-centro .img-logo{
        margin-top: 30px;
        width: 50%;
       
    }

    .logo{
        width: 60%;
        
        }

    .logo img{
        margin-top: 5px;
        width: 100%;
        max-width: 150px;
        height: 90%;
        margin-left: 5px;
       
        }

   

    .imgTitulo1{
        width: 50%;
    }

    .imgTitulo2{
        width: 50%;
    }

    .imgTitulo3{ 
        width: 50%;
    }
    
    .fondoObscuro{
        visibility: visible;
    }
    .menu{
        
        width: 100%;
        height: auto;
        text-align: center;
    }
    
    .menu div{
     
        width: 100%;
        text-align: right;

    }
    .menu div button{
        background: transparent;
        margin-right: 10px;
    }

    .menu div button img{
        background-color: transparent;
        width: 40px;
    }

    .ContenedorimgVertical{
        margin-right: 20px;
    }

    .ContenedorMiniMenu button strong{
        font-size: 14px;
        color: #087E40;
    }

    .SliderTexto1{
        width: auto;
    }

    .img-slider{
        width:100%;
    }
     /*cuando la pantalla es pequeña la barra de navegacion para escritorio se esconde*/
     .nav{
        width: 80%; /*Este width es muy importatante por que si no el contenido se vuelve mas ancho que la pantalla y comienza a utilizar el escroll*/
        visibility: hidden;
        display: none;
        }

     /*cuando la pantalla es pequeña la barra de navegacion de movil aparece*/
     .nav2{  
        visibility: visible;
        }
    .ventana-lateral{
        visibility: visible;
        }
           
    .invisib{
        display: block;
        }
}

@media(max-width: 800px){
   #base0{
       height: 300px;
   }
   #base1{
        width:300px ;
        height: 190px;
   }

}

@media (max-width: 767px){
    .ContTitulo1{
    width: 95%;
    margin-left: 2.5%;

    }

    .ContTitulo1 h3{
        width: 95%;
        margin-left: 5%;
    }

     .ContenidoCuerpo{
         width: 100%;
         margin-left: 0%;
    }

    .btnsIdentidad{
        width: 100%;
    }

     .TituloFicha{
        width: 100%;
        margin-left: 0%;
        font-size: 15px;
        height: 30px;
    }

    .detalle{
        width: 100%;
        padding: 20px;
    }
}




@media (max-width: 700px) {
  
    .slide2 img{
        display: none;
    }

    .slide2 h2{
        font-family: 'Mulish', sans-serif;
        width: 100%;
        font-size: 25px;
    }

    .ColumnaUnoFormularioEImagen{
        display: block;
     }

     .Contenedorformulario{
         width: 100%;
     }

     .ContenedorimgContacto{
         width: 100%;
     }


    .imgTitulo1{
        width: 80%;
    }
    
    .imgTitulo2{
        width: 80%;
    }

    .imgTitulo3{ 
        width: 80%;
    }
    
    .swiper-container {
        height: 700px;
      }

    .ContenedorMiniMenu button strong{
        font-size: 10px;
        color: #087E40;
    }

    .ContenedorMiniMenu div{
        margin-top: 150px;
    }

    .SliderTexto1{
        margin-bottom: 30px;
        
    }

    .ContenedorMiniMenu button{
        font-size: 10px;
    }
        
    .menu{
        width: 100%;
        text-align: right;
        }
    }


@media (max-width: 575px){

    .caja-centro{
        margin-top: 50px;
        height: 45%;
    }

.caja-centro .lema{
    font-size: 20px;   
    background: linear-gradient( 90deg, rgba(255, 255, 255, 0.185), rgb(243, 243, 243), rgba(255, 255, 255, 0.014)); 
}

    .caja-centro .img-logo{
        margin-top: 60px;
        width: 80%;
        border: 0px solid orange;
    }

    .producto{
        background-position: left top;
        background-size: cover;
        background-repeat: no-repeat;
    }
    
    .Escritorio{
        display: none;
    }
  
  
    .ContactoCaja1{
        width: 90%;
        margin-left: 5%; 
    }
    .imgTitulo1{
        width: 100%;
    }
    .imgTitulo2{
        width: 100%;
    }    
    .imgTitulo3{ 
        width: 100%;
    }
    .ContenedorimgVertical{
      display: none; 
    }
    .ContenedorMiniMenu{
        display: none;
    }
    .btnConocenos{
        width: 70%;
        margin-left: 15%;
    }

    .SliderTexto2{
        display: none;
    }    
    
    .ContenedorBtnConocenos1{
        display: none;
    }

    .ContenedorBtnConocenos2{
        display: inline;
    
    }


    .img-slider{
        width:50%;
        margin-top: 0px;
    margin-bottom: 0px;
    }

    .SliderTexto1{
        text-align: center;
        margin: 0px;
        padding:0px;
    }

    .SliderTexto2{
        text-align: center;

    }
}




  