@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: 0;
    /* font-family: 'Noto Sans', sans-serif; ---> Cambia los iconos*/
}

body{
    background: #006db2;
    height: 100vh;
    justify-content: center;
    align-items: center;
    font-family: 'Noto Sans', sans-serif;
}
body .contenedor_contactos{
    font-family: 'Quicksand', sans-serif;
}
/*
header {
    text-align: center;
    padding: 10px;
    margin: 1em;
    box-sizing: border-box;
    background-color: lightblue;
}
*/

/*-Estilo al fondo de pagina // js-*/
#particles-js {
    height: 100vh;
    width: 100%;
    position: fixed;    
    z-index: -1;
}

/*-Navegador-*/
.menu {
    background-color: #006db2;
    width: 75%;
    height: 75px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid white;
}

.logo{
    color: #ffff;
    font-size: 40px;
    padding: 0 90px;
    font-weight: bold;
}
.menu_items{
    display: flex;
    list-style: none;
}
.menu_items li{
    margin: 0 20px;
    border-radius: 3px;
}
.menu_items li a{
    padding: 7px 13px;
    text-decoration: none;
    color: #ffff;
    display: block; /*Es block porque asi los li, ocupan todo el espacio disponible*/
    text-transform: uppercase;
}
.menu_items li:hover {
    background-color: rgba(0, 0, 0, .1);
    transition: .4s;
}

/* SLider images */

.slider {
    width: 1140px;
    height: 500px;
    border-radius: 10px;
    justify-content: center;
    overflow: hidden;
    margin: 5px auto;
}
.slides {
    width: 500%;
    height: 750px;
    display: flex;
}
.slides input {
    display: none;
}
.slide {
    width: 20%;
    transition: 2s;
}
.slide img {
    width: 1140px;
    height: 750px;
}

/* css for manual slide navigation */
.navigation-manual{
    position: absolute;
    width: 800px;
    margin: -300px 0 0 170px;
    display: flex;
    justify-content: center;
}
.manual-btn{
    border: 2px solid #0099FF;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}
.manual-btn:not(:last-child){
    margin-right: 50px;
}
.manual-btn:hover{
    background: #0099FF;
}
#radio1:checked ~ .first{
    margin-left: 0%;
}
#radio2:checked ~ .first{
    margin-left: -20%;
}
#radio3:checked ~ .first{
    margin-left: -40%;
}
#radio4:checked ~ .first{
    margin-left: -60%;
}

/* css for automatic navigation */
.navigation-auto{
    position: absolute;
    width: 800px;
    margin: 450px 0 0 170px;
    display: flex;
    justify-content: center;

}
.navigation-auto div{
    border: 2px solid #0099FF;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}
.navigation-auto div:not(:last-child){
    margin-right: 50px;
}
#radio1:checked ~ .navigation-auto .auto-btn1{
    background: #0099FF;
}
#radio2:checked ~ .navigation-auto .auto-btn2{
    background: #0099FF;
}
#radio3:checked ~ .navigation-auto .auto-btn3{
    background: #0099FF;
}
#radio4:checked ~ .navigation-auto .auto-btn4{
    background: #0099FF;
}

/*-Imagen principal-*/
.fondo {
    /* background-image: url(imagenes/1.jpg); */
    background-color: black;
    width: 75%;
    height: 550px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    display: block;
    margin: auto;
}

/*-Info de la empresa-*/
.info_empresas {
    width: 75%;
    margin: auto;
}
.fondo h2 {
    padding-top: 10px;
    padding-left: 20px;
}

/* Servicios */
.contenedor-servicios {
    background: #f8f8f8;
    width: 75%;
    height: 500px;
    margin: 40px auto;
    border: 0.1px solid black;
    border-radius: 10px;
    box-shadow: 0px 15px 25px rgba(0,0,0,0.50);
}
.contenedor-servicios h2 {
    text-align: center;
    padding-top: 2%;
}

.servicios {
    display: flex;
    width: 1000px;
    margin: 50px auto;
}
.servicios_blew {
    flex: 1 1 auto; /*flex: grow shrink basis;--->condicionar a flexbox con caracteristicas mas especificas*/
    text-align: center;
}
.servicios_blew img {
    height: 300px;
    width: 300px;
    border-radius: 10px;
    object-fit: cover;
    cursor: pointer;
    transition: all 500ms ease-out;
}   
.capa {
    margin: -300px 0 0 0;
    height: 300px;
    width: 300px;
    padding-left: 10px;
    justify-content: center;
    background: rgba(0, 103, 123, 0.6);
}
.capa h3 {
    text-align: center;
}

/*-Contactos-*/
.contenedor-contactos {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 50px;
    margin-top: 90px;
    margin-bottom: 90px;
}
.contenedor-contacto h2{
    margin-bottom: 15px;
    font-size: 35px;
}
.contenedor-contacto p{
    font-size: 18px;
    line-height: 1.5;
}
.contenedor-contacto form .campo, textarea{
    width: 100%;
    padding: 15px 10px;
    font-size: 15px;
    border: 1px solid #dbdbdb;
    margin-bottom: 20px;
    border-radius: 3px;
    outline: 0px;
}
.contenedor-contacto form textarea{
    max-width: 530px;
    min-width: 530px;
    max-height: 150px;
    min-height: 140px;
}
.contenedor-contacto .btn-enviar{
    padding: 15px;
    font-size: 16px;
    border: none;
    outline: 0px;
    background: rgb(0, 84, 112);
    color: white;
    border-radius: 3px;
    cursor: pointer;
    transition: all 300ms ease;
}

/*PAGINA NOSOTROS
    Imagen principal
*/

.container-somos{
    background-image: url(imagenes/Edificios2.jpg);
    background-size: cover;
    background-position: 100% 75%;
    width: 75%;
    height: 400px;
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    border-radius: 5px;
    background-color: rgb(70,70,70);
    background-blend-mode: soft-light;
    color: white;
}
.container-somos2{
    margin-top: 30px;
    margin-left: 40px;
}
.container-somos2{
    display: flex;
    width: 450px;
    height: 50px;
    color: #fff;
    font-size: 40px;
    line-height: 50px;
    overflow: hidden;
}
.container-somos2 ul{
    list-style: none;
    padding-left: 10px;
    animation: scrollear 12s infinite;
}
.container-somos3{
    margin-left: 40px;
}

@keyframes scrollear{
    0%{margin-top: 0;}
    20%{margin-top: 0;}

    25%{margin-top: -50px;}
    50%{margin-top: -50px;}

    55%{margin-top: -100px;}
    80%{margin-top: -100px;}

    85%{margin-top: -50px;}
    95%{margin-top: -50px;}
    100%{margin-top: 0;}
}

/*-Mision y vision de la empresa-*/
.contenedor-nosotros{
    background: #f8f8f8;
    width: 75%;
    height: 270px;
    margin: 40px auto;
    border: 0.1px solid black;
    border-radius: 10px;
    box-shadow: 0px 15px 25px rgba(0,0,0,0.50);
}
.ajuste-imagen{
    width: 250px;
    height: 250px;
}
.circular-landscape{
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    margin-top: 10px;
    margin-left: 20px;
    float: left;
}
.ajuste-imagen img{
    max-width: 150%;
    max-height: 150%;
    margin-left: -50px;
    transition: transform .5s;
}
.mision-vision h2{
    text-align: center;
    padding-top: 40px;
}
.mision-vision p{
    text-align: justify;
    padding-top: 30px;
    padding-left: 300px;
    padding-right: 50px;
}

.ajuste-imagen img:hover{
    transform: scale(1.3);
}

/*
    PAGINA SERVICIOS
    Portada Servicios
*/
.container-portada-servicio{
    background-image: url(imagenes/Portada_Servicios.jpg);
    background-size: 1550px;
    background-position: 0% 37%;
    width: 75%;
    height: 550px;
    overflow: hidden;
    position: relative;
    margin: 10px auto;
    border-radius: 5px;
    background-color: rgb(75,75,75);
    background-blend-mode: soft-light;
    color: white;
}
.container-portada{
    margin-top: 150px;
    margin-left: 40px;
    width: 43%;
    color: #fff;
}
/* button .boton_servicio{
    background: none;
    color: #000;
}
button .boton_servicio svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    fill: none;
}
button .boton_servicio rect {
    width: 100%;
    height: 100%;
    stroke: yellow;
    stroke-width: 100px;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
} */
.container-galeria{
    display: block;
    justify-content: center;
    align-items: center;
    width: 75%;
    margin: 50px auto;
    border-radius: 5px;
}
.separacion{
    background-color: #fff;
    margin-top: 50px;
    padding-top: 30px;
    border-radius: 10px;
}
.container-galeria h3{
    font-size: 30px;
    text-align: center;
}
.container-galeria-orden{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
}
.orden{
    margin: 20px;
    width: 300px;
    height: 400px;
    border-radius: 5px;
    background-size: cover;
    box-shadow: 3px 5px 5px rgba(3, 32, 51, .8);
}
.contenido{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .4);
    opacity: 0;
    transition: .5s;
}
.contenido h2, a{
    color: rgba(255, 255, 255, .8);
    margin: 10px 0;
    text-align: center;
    margin: 10px 5px;
}
.orden:hover .contenido{
    opacity: 1;
}

/*
    PAGINA CONTACTOS
*/
.contenedor_contactos{
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
    padding: 1.5em;
    margin-bottom: 90px;
}
.logo_Contacto{
    text-align: center;
    font-size: 3em;
    margin: 3rem;
}
.logo_Contacto span{
    color: #fff;
}
.contact_wrapper{
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, .5);
}
.contact_wrapper > *{
    padding: 1em;
}
.contact_form{
    background: #007cc8;
}
.contact_form form{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.contact_form form .block{
    grid-column: 1 / 3;
}
.contact_form form p,
.contact_form h3{
    margin: 0;
    padding: 1em;
}
.contact_form form button,
.contact_form form input,
.contact_form form textarea{
    width: 100%;
    padding: .7em;
    border: none;
    background: none;
    outline: none;
    color:#fff;
    border-bottom: 1px solid #fff;
}
.contact_form form button{
    background: #00385b;
    border: none;
    text-transform: uppercase;
    padding: 1em;
}
.contact_form form button:hover,
.contact_form form button:focus{
    background: #fff;
    color: #00385b;
    transition: background-color 1s ease-out;
    outline: 0;
    cursor: pointer;
}
.contactar_info{
    background: #00609b;
}
.contactar_info p,
.contactar_info h4,
.contactar_info ul{
    text-align: center;
    margin-bottom: 1rem;
}
.contactar_info ul{
    list-style: none;
    padding: 0;
}
.contactar_info ul li{
    padding: .5em;
}

/*Responsive de Contactos*/
@media (min-width: 700px){
    body .contenedor_contactos{
        padding: 0 4rem;
    }
    .contact_wrapper{
        display: grid;
        grid-template-columns: 2fr 1fr;
    }
    .contact_wrapper > *{
        padding: 2em;
    }
    .contactar_info h4,
    .contactar_info ul,
    .contactar_info p{
        padding: 1em;
    }
}

/*-Footer-*/
.pie-pagina {
    color: white;
    background-color: black;
    width: 100%;
}
.pie-pagina .grupo-1{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}
.pie-pagina .grupo-1 .box figure{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center; /* mueve de manera horizontal en flexbox */
    align-items: center; /* mueve de manera vertical en flexbox */
}
.pie-pagina .grupo-1 .box figure img{
    width: 250px;
}
.pie-pagina .grupo-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 30px;
}
.pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
}
.pie-pagina .grupo-1 .red-social i{
    display: inline block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background-color: #0d2033;
    text-align: center;
    transition: all 300ms ease; 
}
.pie-pagina .grupo-1 .red-social i:hover{
    color:aqua;
}
.pie-pagina .grupo-2{
    background-color: #0a1a2a;
    padding: 15px 0px;
    text-align: center;
    color: #fff;
}
.pie-pagina .grupo-2 small{
    font-size: 15px;
}
/* @media screen and (max-width : 800px){ 
    .pie-pagina .grupo-1{
        width: 90%;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 30px;
        padding: 35px 0px;
    }
} 
Revisar el responsive
*/ 