*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    scroll-behavior: smooth;
}

body{
    font-family: 'Open Sans', sans-serif;
}
.contenedor{
    width: 90%;
    max-width: 1200px;
    overflow: hidden;
    margin: auto;
    padding: 60px 0;
}
.header{
    height: 100vh;
    background-image: linear-gradient(to top, #09203f96 0%, #53789580 100%), url(../img/header.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    margin-bottom: 90px;
}
.head{
    text-align: center;
    padding: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
}
.menu{
    position: fixed;
    top: 30px;
    right: 30px;
    background: #fff;
    width: 40px;
    height: 40px;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 0 6px rgba(0, 0,0, .5);
}
.menu-navegacion{
    position: fixed;
    top: 0;
    right: 0;
    width: 30vw;
    height: 100%;
    background-image: linear-gradient(to top, #00c5fbbb 0%, #005bea 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    /*transition: transform .3s ease-in-out;*/
    transform: translate(110%);
    box-shadow: 0 0 6px rgba(0, 0, 0, .5) ;

}
.spread{
    transform: translate(0);
}
.menu-navegacion a {
    color: #fff;
    text-decoration: none;
}
.titulo{
    font-size: 60px;
    margin-bottom: 15px;   
}
.copy{
    font-weight: 300;
    font-size: 25px;
}
/*Nuestros Servicios*/
.subtitulo{
    text-align: center;
    font-weight: 650;
    color: #3193e4;
    margin-bottom: 90px;
    font-size: 40px;
}
.contenedor-servicio{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: left;
    margin-bottom: 90px;
    
}
.contenedor-servicio img{
    width: 45%;
}

.checklis-servicio{
    width: 45%;
}
.service{
    margin-bottom: 20px;
}
.service p {
    font-weight: 650;
    margin-bottom: 5px;
    
}
.contenedor-servicio-derecha{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: right;
    margin-bottom: 90px;
    
}
.contenedor-servicio-derecha img{
     width: 45%;
}
.n-service{
    margin-bottom: 20px;
    color: #3193e4;
}
.number{
    display: inline-block;
    background-image: linear-gradient(120deg, rgba(93, 200, 250, 0.801) 0%, #66a6ffe7 100%);
    width: 30px;
    height: 30px;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    line-height: 30px;
    margin-right: 5px;
}
.gallery{
    background: #f2f2f2; 
}
.contenedor-galeria{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 90px;
}
.img-galeria{
    object-fit: cover;
    width: 50%;
    display: block;
    margin-bottom: 15px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 05);
    
}
.experts{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
.cont-expert-logo{
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    width: 30%;
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
    
}
.cont-expert-logo img{
    width: 75%;
    margin: auto;
}
.cont-expert{
    width: 30%;
    text-align: center;
    margin-bottom: 20px;
    
}
.cont-expert img{
    width: 80%;
    display: block;
    margin: auto;
}
.cont-expert h3{
    font-size: 28px;
    color: rgb(1, 17, 61);
    font-weight: 300;
}

.n-expert{
    display: inline-block;
    margin-top: 50px;
    width: 100%;
    font-weight: 400;
}

/*Footer */
footer{
    background: #3193e4;
    padding-bottom: 0.1px;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 60px;
    padding-bottom: 40px;
}
.contac-us{
    width: 40%;
    color: #fff;
}
.brand+p{
    font-weight: 500;
    font-size: 40px;
}
.social-media{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}
.social-media-icon{
    display: inline-block;
    margin-left: 20px;
    width: 60px;
    height: 60px;
    border: 1px solid #fff;
    border-radius: 50%;
    text-align: center;
    color: #fff;
}
.social-media-icons:hover{
    background: #fff;
    color: #3193e4;
}
.social-media-icon i{
    font-size: 30px;
    line-height: 60px;
}
.line{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    height:  2px;
    background: #fff;
    margin-bottom: 60px;
}


form {

    /* Centrar el formulario en la página */
   
    /* Esquema del formulario */
    padding: 1em;
    border: 1px solid #CCC;
    border-radius: 1em;
    margin-bottom: 30px;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  form li + li {
    margin-top: 1em;
  }
  
  label {
    /* Tamaño y alineación uniforme */
    display: flex;
    width: 90px;
    text-align: right;
  }
  
  input,
  textarea {
    /* Para asegurarse de que todos los campos de texto tienen la misma configuración de letra
       Por defecto, las áreas de texto tienen un tipo de letra monoespaciada */
    font: 1em sans-serif;
  
    /* Tamaño uniforme del campo de texto */
    width: 300px;
    box-sizing: border-box;
  
    /* Hacer coincidir los bordes del campo del formulario */
    border: 1px solid #999;
  }
  
  input:focus,
  textarea:focus {
    /* Destacado adicional para elementos que tienen el cursor */
    border-color: #000;
  }
  
  textarea {
    /* Alinear los campos de texto multilínea con sus etiquetas */
    vertical-align: top;
  
    /* Proporcionar espacio para escribir texto */
    height: 5em;
  }
  
  .button {
    /* Alinear los botones con los campos de texto */
    padding-left: 90px; /* mismo tamaño que los elementos de la etiqueta */
    
  }
  
  button {
    /* Este margen adicional representa aproximadamente el mismo espacio que el espacio
       entre las etiquetas y sus campos de texto */
    margin-left: .5em;
  }





@media screen and (max-width:800px){
    .header{
        height: 100vh;
        background-image: linear-gradient(to top, #09203f96 0%, #53789580 100%), url(../img/header.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        margin-bottom: 90px;
    }
    .menu-navegacion{
        width: 50vw;
    }
    .titulo{
        font-size: 40px;
    }
    .contenedor-servicio img{
        width: 45%;
        margin-bottom: 40px;
    }
    .checklis-servicio{
        width: 50%;
    }
    .service{
        margin-bottom: 30px;
    }
    .img-galeria{
        width: 45%;
    }
    .cont-expert{
        width: 80%;
    }
    .footer-content{
        justify-content: center;
    }
    .social-media{
        width: 80%;
        justify-content: space-evenly;
    }
    .social-media-icon{
        margin-left: 0;
    }
    .social-media i{
        margin-left: 0;
    }
    .contac-us{
        text-align: center;
        width: 80%;
        margin-bottom: 40px;

    }
    
}
@media screen and (max-width:500px){
    .header{
        height: 100vh;
        background-image: linear-gradient(to top, #09203f96 0%, #53789580 100%), url(../img/header.jpg);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
        background-position: center;
        margin-bottom: 90px;
    }
    .menu-navegacion{
        width: 65vw;        
    }
    .menu{
        top: 20px;
        right: 20px;        
    }   
    .titulo{
        font-size: 30px;
    }
    .subtitulo{
        font-size: 30px;
    }
    .img-galeria{
        width: 95%;
    }
    .social-media{
        width: 100%;
    }
    .contac-us{
        width: 90%;
    }    
}