@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

* {
    
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

body{
  
    font-family: sans-serif;
    /*background: url(images/candado2.mp4);*/
    background-size: cover;
    
}

video{
    z-index: -1000;
    position: fixed;
    min-width: 100%;
    min-height: 100%;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}




/***************************
 EL MENU VA AQUI EL HEADER
****************************/

section{
  
  background: red;
  padding-top: 79px;
  margin-bottom: 60px;
  
 
}
.contenedor {
    box-sizing: border-box;
    width: 100%;
    background: #020303;
    display: flex;
    justify-content:space-around;
    align-items: center;
    position: fixed;
    z-index: 1000;
       
}


.logo{  /* abarca la imagen de base de datos y la marca */
    display: flex;
    align-items: center;
}

header .base{
  
  height: 50px;
  width: 50px;
    
}

header .brand{
  color: #fff;
  font-size: 1.5em;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 10px;
  
  
}

header .brand:hover{
  color: #f88ede;
  font-size:1.6em;  
  transition: all 500ms ease-out;
}



.menu{
    margin-top: 30px;
    height: 56px;
    
    
}

.menu a { 
    
    color: white;
    text-decoration: none;
    padding: 9px 7px;
    background-color: grey;
    border-radius: 14px;
    transition: all 500ms ease-out;
    margin: 0 3px;
    

}

.menu a:hover {
    
    font-weight: 300;
    font-size: 18px;
    color: #f88ede;
    transition: all 500ms ease-out;
}


@media (max-width:1024px)  {
    
 
.contenedor {
      padding-top: 30px;
      flex-wrap: wrap;
      width: 100%;
        
        
    }
 
}

/***************************
 EL MENU TERMINA  AQUI
****************************/









.box1
{
    background: red;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 40px;
    background:  rgba(0,0,0,.8);
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0,0,0,.5);
    border-radius: 10px;
    
}


.box1 h2

{
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
}

.box1 .inputBox
{
    position: relative;
}

.box1 .inputBox input
{
    width: 100%;
    padding: 10px; 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
    
}

.box1 .inputBox label
{
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color:#fff;
    pointer-events: none;
    transition: .5s;
    
}
.box1 .inputBox input:focus ~ label,
.box1 .inputBox input:valid ~ label

{
    top:-18px;
    left: 0;
    color: #03a9f4;
    font-size: 12px;
        
}

.box1 input[type="submit"]
{
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    background: #03a9f4;
    padding: 10px 20px;
    cursor:pointer;
    border-radius: 5px;
    
    
}


/****************************
** AAAA Aqui viene el Footer AAA ***

******************************/


.box a{
  color: deeppink;
  *background: #333;
}
.pie-pagina{
    margin-top: 35%;
    width: 100%;
    background-color: #0a141d;
    *background: red;
}
.pie-pagina .grupo-1{
    *background: orange;
    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{
  align-items: center;
}
.pie-pagina .grupo-1 .box figure{
    margin-top: 50px;
    *margin-left: 90px; /*se mueve la imagen conceadu*/
    *width: 40%;
    height: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pie-pagina .grupo-1 .box figure a{
  font-size: 24px;
  color: aqua;
}

.pie-pagina .grupo-1 .box figure img{
    width: 150px;
}
.pie-pagina .grupo-1 .box h2{
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}
.pie-pagina .grupo-1 .box p{
    color: #efefef;
    margin-bottom: 10px;
}
.pie-pagina .grupo-1 .red-social a{
    display: inline-block;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #fff;
    margin-right: 9px;
    background-color: #0d2033;
    text-align: center;
    transition: all 300ms ease;
}
.pie-pagina .grupo-1 .red-social a:hover{
  
    color: aqua;
    transition: 0.2s;
    font-size: 20px;
    filter: drop-shadow(0 0 6px white);
  
  
}
.pie-pagina .grupo-2{
    background-color: #0a1a2a;
    padding: 15px 10px;
    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(1, 1fr);
        grid-gap:30px;
        padding: 35px 0px;
        *display:none;
    }
  
  .pie-pagina{
    margin-top: 500px;
  }
}


/****************************
**AAAAA FINAL Aqui viene el Footer AAAA ***

******************************/

 