@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&display=swap');
@import url(menu.css);
@import url(banner.css);
@import url(blog.css);
@import url(info.css);
@import url(card.css);
@import url(contacto.css);
@import url(history.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Monserrat', sans-serif;
    background-image: url(../images/beige_paper.png);
}

header {
    width: 100%;
    height: 50px;
    background: rgba(6,120,250,0.8);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}

.container {
    width: 90%;
    margin: auto;
}

h1{
    float: left;
}

h3 {
   text-align: center;
}

header .container {
    display: table;
}

/*empuja lo que este hacia abajo*/
section {
    width: 100%;
    margin-bottom: 25px;
}

#Bienvenidos {
    text-align: center;
}

.servicios ul li {
    padding: 5px;
}

footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.copy {
    font-size: 16px;
    text-align: center;
}

.textcopy {
    font-size: 16px;
    text-align: center;
    padding-bottom: 10px;
}

.sociales {
    width: 100%;
    text-align: center;
    font-size: 32px;
    padding: 14px;
}

.sociales a {
    color: #FCFAF8;
    text-decoration: none;
    border-radius: 55%;
    background: rgba(121,125,127,0.8);
    padding: 5px;
}

.clientes {
   text-align: center;
}

.clientes img {
   width: 70%;
}

@media (min-width:1024px){
    .container {
        width: 1000px;
    }
