@import url(menu.css);
@import url(footer.css);
@import url(botonup.css);


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: #e3e3e3;
  }
  

  header{
    width: 100%;
    height: 550px;
    background: #00B4DB;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, hsla(195, 100%, 35%, 0.151), hsla(191, 100%, 43%, 0.151)), url(../imagenes/principal\ procesoins.jpg);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, hsla(195, 100%, 35%, 0.151), hsla(191, 100%, 43%, 0.151)), url(../imagenes/principal\ procesoins.jpg); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    /*background-size: cover;*/
    background-attachment: fixed;
    position: relative;  
    margin-bottom: 50px;  
} 

/* banner y textos principales*/

header .textos-header{
    display: flex;
    height: 450px;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.textos-header h1{
    font-size: 80px;
    color: #fff;
    font-weight: bolder;
    text-shadow: 2px 2px 2px rgb(73, 73, 73);
}


.wave{
    position: absolute;
    bottom: 0;
    width: 100%;
}

.video-ins{
    position: relative;
}


.inframe{
    width: 50%;
    display: flex;
    margin: auto;
    background: #bebebe;
    padding: 20px 20px;
}


@media (max-width:900px){
    header{
        background-position: center;        
    }
    
    .textos-header h1{                  /*banner principal y textos*/
        font-size: 50px;
    }    

    .inframe{
        width: 80%;
    }
}