*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    scroll-behavior: smooth;
}

/* BARRA DE NAVEGACIÓN */

.barra_header{
    width: 100%;
    height: 20px;
    background-color: #025373;
    color: #025373;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.9);
}

.contenedor_logo{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.logo img{
    height: 130px;   
}

.btn__header-register{
    font-weight: 500;
    font-size: 18px;
    background-color: #F27405;
    color: white;
    border: none;
    border-radius: 7px;
    padding: 14px 50px;
    text-decoration: none;
}

.container__header{
    height: 100%;
    margin: auto;
    padding: 40px;
    padding-top: 8px;
    padding-bottom: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #025373;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.9);
}


.nav ul li a:hover{
    color: #F27405;
}

.btn__header-register:hover{
    background: #025373;
    color: #F27405;
}

@media (max-width: 1024px){
    .btn__header-register{
        font-size: 14px;
        background-color: #F27405;
        color: white;
        border: none;
        border-radius: 7px;
        padding: 10px 35px;
        text-decoration: none;  
    }

    .logo img{
        width: 190px;
    }
}

          
/* BARRA DE NAVEGACIÓN 2 */

.nav-list {
    list-style-type: none;
    display: flex;
    gap: 1rem;
    
}

.nav ul li {
    list-style: none;
    padding: 0px 40px;
}

.nav-list li a {
    text-decoration: none;
    color: #fafafa;
    font-size: 20px;
    font-weight: bold;
    color: #f2f2f2;
    transition: opacity 300ms;
}

.abrir-menu,
.cerrar-menu {
    display: none;
}

@media screen and (max-width: 1024px) {
    .abrir-menu,
    .cerrar-menu {
        display: block;
        border: 0;
        font-size: 1.25rem;
        background-color: transparent;
        cursor: pointer;

    }

    .abrir-menu {
        color: #1c1c1c;
    }

    .cerrar-menu {
        color: #ececec;
    }

    .nav {
        opacity: 0;
        visibility: hidden;
        display: flex;
        flex-direction: column;
        align-items: end;
        gap: 1rem;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        background-color: #025373;
        padding: 2rem;
        box-shadow: 0 0 0 20vmax rgba(0, 0, 0, .5);
        z-index: 2;
    }

    .nav.visible {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: end;
        z-index: 1000;
    }

    .nav-list li a {
        color: #ecececec;
    }

    .nav-list li a:hover {
        color: #025373;
    }


}

/* PORTADA IMÁGENES */ 

#container_nosotros{
    z-index: 1;
}


.container__portada img{
    height: 650px;
    padding-top: 3px;
    width: 100%;
    object-fit: cover;
}

.slider-frame {
    width: 100%;
    overflow: hidden;
}

.slider {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 400%;
    transition: transform 0.5s ease;
    
    
}

.slider li {
    width: 25%;
    float: left;
    box-sizing: border-box;
}

.slider img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
    z-index: 1;
}

.container__portada{
    position: absolute;
    top: 59%;
    left: 50%;
    transform: translate(-50%,-57%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    flex-direction: column;
    height: auto;
    width: 100%;
    color: white;
    z-index: 2;
    padding-left: 45px;
    z-index: 1;

} 

.container__portada h2{
    font-size: 70px;
    -webkit-text-stroke: 0.8px black;
    position: relative;
    width: 100%;
}

.container__portada a{
    margin-top: 60px;
    padding: 14px 50px;
    border: none;
    background: #F2BB13;
    color: black;
    font-weight: 500;
    font-size: 22px;
    cursor: pointer;
    transition:  color, 300ms;
    text-decoration: none;
    border-radius: 10px;
}

.container__portada a:hover{
    background: #335c7f;
    color: white;
}

/* PORTADA -MOBILE */

@media (max-width: 1024px){
    .container__portada{
        height: 400px;
    }

    .container__portada h2{
        font-size: 45px;
    }

    .container__portada a{
        margin-top: 45px;
    }
}

@media (max-width: 500px){
    .container__portada{
        height: 200px;
    }

    .container__portada h2{
        font-size: 25px;
    }

    .container__portada a{
        margin-top: 35px;
    }

    .container__portada a{
        width: 200px;
        align-items: center;
        font-size: 17px;
    }
}



/* DESCRIPCIÓN */ 

.nosotros_jml{
    display: flex;
    align-items: center;
    text-align: center;
    width: 90%;
    justify-content: space-around;
    margin: auto;
    padding-bottom: 55px;
}

.nosotros h2{
    font-size: 36px;
    padding: 35px;
}

.nosotros_d p{
    font-size: 20px;
    text-align: center;
    width: 90%;
    color: #000000;
}


.cotiza{
    background-color: #025373;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    justify-content: space-around;
    margin: auto;
    height: 100%;
}

.cotiza_p{
    color: #f2f2f2;
    font-size: 33px;
    width: 800px;
    padding: 20px;
    text-align: center;
}

.cotiza_a{
    font-weight: 500;
    font-size: 18px;
    background-color: #F27405;
    color: white;
    border: none;
    border-radius: 7px;
    padding: 14px 50px;
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    width: 150px;
}

.cotiza_a:hover{
    background: #025373;
    color: #f2f2f2;
    border: solid white;
}

@media (max-width: 1024px){
    .nosotros_jml img{
        display: none;
    }

    .nosotros_d{
        font-size: 15px;
    }

    .nosotros h2{
        font-size: 27px;
    }

    .cotiza{
       display: flex;
       flex-direction: column; 
    }

    .cotiza_p{
        font-size: 27px;
        text-align: center;
        width: 100%;
    }

    .cotiza_a{
        padding: 10px 35px;
        font-size: 14px;
        margin: 25px;
        text-align: center;
    }
}

@media (max-width: 500px){
    .nosotros_jml img{
        display: none;
    }

    .nosotros_d{
        font-size: 12px;
    }

    .nosotros h2{
        font-size: 23px;
    }

    .cotiza_p{
        font-size: 22px;
    }
}


/* SERVICIOS */

.titulo_servicios{
    text-align: center;
    font-size: 35px;
    font-family: sans-serif;
    padding: 35px;
}

.galeria-port{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;
}

.imagen-port{
    width: 35%;
    margin-bottom: 60px;
    margin-left: 5px;
    margin-right: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, .9);
}   

.imagen-port > img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hover-galeria{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transform: scale(0);
    background: #025373;
    transition: transform .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hover-galeria img{
    width: 50px;
}


.hover-galeria p a{
    color: #fff;
    font-size: medium;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
}

.hover-galeria p a:hover{
    color: #F27405f6;
    
}

.imagen-port:hover .hover-galeria{
    transform: scale(1);
}

@media (max-width: 1024px){
    .galeria-port{
        min-height: 100vh;
        width: 90%;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
        gap: 50px;
    }

    .galeria-port .imagen-port{
        width: 100%;
        height: 250px;
        object-fit: cover;
        align-items: center;
        border-radius: 10px;
    }

    .titulo_servicios{
        font-size: 27px;
    }
  
}

@media (max-width: 500px){
    .titulo_servicios{
        font-size: 22px;
    }
  
}



/* DISEÑO E INGENIERÍA */

#Servicios-sp2{
    background-color: #025373;
}

.titulo_ingeniería{
    text-align: center;
    font-size: 35px;
    font-family: sans-serif;
    padding: 35px;
    color: #F0F0F0;
}

.hover-galeria2{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    transform: scale(0);
    background: #F27405;
    transition: transform .5s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.hover-galeria2 img{
    width: 50px;
}


.hover-galeria2 p a{
    color: #fff;
    font-size: medium;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}

.hover-galeria2 p a:hover{
    color: #025373;
    
}

.imagen-port:hover .hover-galeria2{
    transform: scale(1);
}

@media (max-width: 1024px){
    .titulo_ingeniería{
        font-size: 27px;
    }
}

@media (max-width: 500px){
    .titulo_ingeniería{
        font-size: 22px;
    }
}

/* FORMULARIO */

#form-content{
    background: url(PORTADA_FORMULARIO.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px;
    width: 100%;
}

#form-content h2{
    color: white;
    font-size: 40px;
    margin-bottom: 25px;
    text-align: center;
}

form{
    display: flex;
    flex-direction: column;
    width: 50%;
    align-self: flex-end;
}

label{
    font-size: 23px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

input , textarea{
    padding: 17px 14px;
    background-color: white;
    border: solid 0.5px black;
    font-size: 15px;
    color: black;
    margin-bottom: 20px;
   
}

:focus {
    outline: 1px solid #1e92e9;
}

.btn {
    background-color: #025373;
    width: 150px;
    align-self: flex-start;
    cursor: pointer;
    color: white;
}

.btn:hover{
    background-color: #2198f9;
}

.Nombre_asunto{
    display: flex;
    justify-content: space-between;
}

.nombre{
    display: flex;
    flex-direction: column;
    width: 47%;
}

.asunto{
    display: flex;
    flex-direction: column;
    width: 47%;

}

@media (max-width: 1024px){


    .form-content{
        align-items: center;
        text-align: center;
        justify-content: center;
    }
    
    form{
        width: 100%;
    }
    
    .btn{
        align-self: center;
    }
    
    }

/* CLIENTES */

.contenedor {
	max-width: 1200px;
	width: 90%;
	margin: auto;
    padding-bottom: 50px;
    font-family: "Roboto", sans-serif;
  font-style: normal;
}

/* --- --- CONTENEDOR PRINCIPAL --- --- */

.contenedor h2{
    text-align: center;
    padding-top: 55px;
    padding-bottom: 35px;
    font-size: 40px;
    
}

.contenido-principal {
	margin-bottom: 50px;
	display: flex;
	align-items: center;
}

.contenido-principal__imagen {
	vertical-align: top;
	margin-right: 20px;
	width: 50%;
	max-width: 550px;
}

.contenido-principal__contenedor {
	width: 50%;
}

.contenido-principal__titulo {
	font-weight: normal;
	font-size: 28px;
}

.contenido-principal__resumen {
	font-family: 'Open Sans', sans-serif;
	line-height: 30px;
	color: #CFCFCF;
}

/*Bureau - veritas */

.bureau{
    background-color: #025373;
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    justify-content: space-around;
    margin: auto;
    height: 100%;
}

.bureau p{
    color: #f2f2f2;
    font-size: 33px;
    width: 800px;
    padding: 20px;
}

.bureau img{
    width: 250px;
}

@media (max-width: 1024px){
    .bureau{
        display: flex;
        flex-direction: column;
    }

    .bureau p{
        font-size: 27px;
        width: 100%;
    }

    .bureau img{
        display: none;
    }
}

@media (max-width: 500px){
    
    .bureau p{
        font-size: 22px;
    }
}




/* --- --- CAROUSEL --- --- */


.carousel__contenedor {
	position: relative;
}

.carousel__anterior,
.carousel__siguiente {
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	top: calc(50% - 35px);
	cursor: pointer;
	line-height: 30px;
	text-align: center;
	background: none;
	color: #000000;
	opacity: 20%;
}

.carousel__anterior:hover,
.carousel__siguiente:hover {
	opacity: 100%;
}

.carousel__anterior {
	left: -19px;
}

.carousel__siguiente {
	right: -19px;
}

.carousel__lista {
    padding-top: 35px 35px;
	overflow: hidden;
	display: flex;
	align-items: center;
    
}

.carousel__elemento {
	text-align: center;
}

.carousel__elemento img{
    height: 100px;
}

.carousel__indicadores .glider-dot {
	display: block;
	width: 30px;
	height: 4px;
	background: #070707;
	opacity: .2;
	border-radius: 0;
}

.carousel__indicadores .glider-dot:hover {
	opacity: .5;
}

.carousel__indicadores .glider-dot.active {
	opacity: 1;
}


/* FOOTER */

footer{
    background-color: #025373;
    color: white;
    padding: 30px;
}

footer h2{
    font-size: 35px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    font-family: "Roboto", sans-serif;
  font-style: normal;
}

.f_general{
    display: flex;
    justify-content: space-around;
    padding-top: 15px;
    padding-bottom: 30px;
    font-family: sans-serif;
}

.f_general h3{
    font-size: 25px;
}

.f_navegacion ul{
    display: flex;
    padding: 15px;
    list-style: none;
}

.f_navegacion ul li{
    padding: 5px;
}

.f_navegacion ul li a{
    color: white;
    font-size: 20px;
    list-style: none;
    text-decoration: none;
}


.f_description{
    width: 400px;
}

.llamada{
    width: 50px;
    color: white;
}

.correo{
    width: 25px;
}

.ubicacion{
    width: 25px;
}

.facebook{
    width: 25px;
}

.f_navegacion p a{
    padding-left: 15px;
    font-size: 25px;
    vertical-align: middle;
    display: flex;
    align-items: center;
    text-decoration: none;
}


@media (max-width: 1024px){

    .f_navegacion p a{
        font-size: 16px;
        text-align: center;
        text-decoration: none;
    }

    .f_navegacion p{
        text-align: center;
        margin-left: 30%;
    }

    .f_navegacion{
        padding-bottom: 15px;
    }

    .llamada{
        width: 25px;
    }

    .f_general{
        display: flex;
        justify-content: center;
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 40px;
        align-items: center;
        text-align: center;
    }

    .f_datos{
        padding-bottom: 25px;
    }

    .f_description p{
        width: 100%;
        text-align: center;
    }

    
.f_description{
    width: 100%;
}
}

#email_jml{
    color: #F0F0F0;
    list-style: none;
    text-decoration: none;
}

/* PÁGINA NOSOTROS */

.misión_visión{
    background-color: #025373;
}

.misión{
    display: flex;
    justify-content: space-around;
    width: 90%;
    align-items: center;
    text-align: center;
    margin: auto;
    padding: 30px 0 30px 0;
}

.misión img{
    width: 500px;
    border-radius: 15px;
}

.misión p{
    width: 450px;
    font-size: 20px;
    font-family: sans-serif;
    color: #f0f0f0;
}

.misión h3{
    font-size: 30px;
    color: #F0F0F0;
}

.visión{
    display: flex;
    justify-content: space-around;
    width: 90%;
    align-items: center;
    text-align: center;
    margin: auto;
    padding: 30px 0 30px 0;
}

.visión img{
    width: 500px;
    border-radius: 15px;
}

.visión p{
    width: 450px;
    font-size: 20px;
    font-family: sans-serif;
    color: #f0f0f0;
}

.visión h3{
    font-size: 30px;
    color: #F0F0F0;
}

.valores div{
    display: flex;
    align-items: center;
    text-align: center;
    width: 90%;
    justify-content: space-around;
    margin: auto;
    padding-bottom: 55px;
}

.valores h2{
    font-size: 36px;
    padding: 35px;
    text-align: center;
}

.valores ul li{
    font-size: 20px;
    width: 550px;
    text-align: start;
    padding: 10px;
}

@media (max-width: 1024px){

   .misión img{
    display: none;
   }

   .visión img{
    display: none;
   }

   .valores img{
    display: none;
   }

   .valores div ul li{
    list-style: none;
    width: 100%;
   }

   h2{
    font-size: 27px;
   }

   .m_v-descripcion p{
    width: 100%;
    font-size: 15px;
   }

   .misión, .visión{
    width: 90%;
   }

   .valores div li{
    font-size: 15px;
   }

   .nosotros_d p{
    font-size: 17px;
   }
}

@media (max-width: 500px){
    h2{
        font-size: 22px;
       }
    
    .m_v-descripcion p{
        width: 100%;
        font-size: 12px;
    }

    .valores div li{
        font-size: 12px;
    }
}


/* PÁGINA DE SERVICIOS */

.section_servicio h2{
    font-size: 36px;
    padding: 35px;
    text-align: center;

}

.section_s1{
    display: flex;
    justify-content: space-around;
    width: 100%;
    align-items: center;
    text-align: center;
    margin: auto;
    padding: 30px 0 30px 0;
    
}

.section_s1 img{
    width: 450px;
    border-radius: 15px;

}

.section_s1 p{
    text-align: start;
    width: 400px;
    color: #000000;
}

.section_s1 h3{
    color: #000000;
    text-align: start;

}

.section_s1 ul li{
    text-align: start;
    list-style: none;
    color: #000000;
    font-weight: bold;
}

.section_s1 ul{
    padding-top: 10px;
}


.section_s2{
    display: flex;
    justify-content: space-around;
    width: 100%;
    background-color: #F27405;
    align-items: center;
    text-align: center;
    margin: auto;
    padding: 30px 0 30px 0;
}

.section_s2 img{
    width: 450px;
    border-radius: 15px;

}

.section_s2 h3{
    text-align: start;
    width: 400px;
    color: #F0F0F0;
}

.section_s2 p{
    text-align: start;
    width: 400px;
    color: #F0F0F0;
}

.section_s2 ul li{
    text-align: start;
    list-style: none;
    color: #f0f0f0;
    font-weight: bold;
}

.section_s2 ul{
    padding-top: 10px;
}

@media (max-width: 1024px){
    .section_s1{
        justify-content: center;
        flex-direction: column;
    }

    .section_s1 h3, ul{
        padding: 10px;
    }

    .section_s2{
        justify-content: center;
        flex-direction: column-reverse;
    }

    h3{
        align-items: center;
    }

   
}

@media (max-width: 500px){
    .section_s2 img{
        width: 100%;
        border-radius: 15px;
    
    }

    .section_s1 img{
        width: 100%;
        border-radius: 15px;
    
    }

    .section_s2 h3{
        text-align: center;
        width: 90%;
        padding-left: 10px;
        color: #F0F0F0;
    }

    .section_s1 h3{
        text-align: center;
        width: 90%;
        padding-left: 10px;
        color: #000000;
    }

    .section_s1 p{
        text-align: start;
        width: 90%;
        padding-left: 10px;
        color: #000000;
    }

    .section_s2 p{
        text-align: start;
        width: 90%;
        padding-left: 10px;
        color: #F0F0F0;
    }
}