@import url(menu.css);
@import url(banner.css);
@import url(Nosotros.css);
@import url(Servicios.css);
@import url(Delivery.css);

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}

header{
    width: 100%;
    height: 50px;
    background: #333;
     background: /*#095E8E*/;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.contenedor {
    width: 98%;
    margin: auto;
}

h1{
    float: left;
    font-size: 25px;
    display: none;
    /*en pantalla celular se esconde este texto luego cuando este en pantallas mas grandes se muestra*/
}

header .contenedor{
    display: table;
}

section {
    width: 100%;
    margin-bottom: 25px;
    
}

#Bienvenidos{
    text-align: center;
    
}
.ImgLog1 {
    
}


.ImgLog2 {
    padding-left: 20px;
    padding-top: 4px;
    /*cuando se muestre en pantallas mas grandes se debe acomodar para que se muestre texto y cada imagen a cada lado*/
}
body {
    /*margin: 0;
    display: flex;
    justify-content: flex-end;*/
    background: #FCF3EC;
    /*background: url('../Imagenes/fondo3.jpg');*/
    /*background-size: 100% 100%;*/
}

video {
    position: relative;
    
    min-width: 50%;
    min-height: 50%;
    top: 50%;
    left: 60%;
    margin-top: 200px;
    transform: translateX(-50%) translateY(-50%);
    
    z-index: -1;
    
    /*filter es para qe el video este en blanco y negro*/
    /*filter: sepia(100%);*/
    /*para que funcione en Chrome se agrega -webkit-*/
    /*-webkit-filter: grayscale(100%);*/
    /*sepia pone el video medio amarillo*/
    /*-webkit-filter: sepia(100%);*/
}

footer .contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 25px;
}

.copy {
    font-size: 20px;
}

.sociales {
    width: 100%;
    text-align: center;
    font-size: 20px;
}

.sociales a {
    color: #333;
    text-decoration: none;
}


@media (min-width:768px){
    .sociales{
        width: auto;
    }
    
    footer .contenedor{
        justify-content: space-between;
    }
}


@media (min-width:1024px){
    .contenedor {
        width:1000px;
    }
    
    video {
    position: relative;
    
    min-width: 100%;
    min-height: 50%;
    top: 50%;
    left: 50%;
    margin-top: 180px;
    transform: translateX(-50%) translateY(-50%);
    
    z-index: -1;
    }
    
}



/*
main {
    width: 40%;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 30px;
    margin: 5%;
}
*/