@import url('https://fonts.googleapis.com/css2 family=Cabin&family=Open+Sans:ital,wght@0,300;0,700;1,300&display=swap');
@import url(menu.css);
@import url(date-time.css);

/*----- Generales -----*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Cabin', sans-serif;
    font-family: 'Open Sans', sans-serif;
    background: url(../img/background.jpeg);
    background-size: 100vw 100vh;
    background-attachment: fixed;
}
.contenedor {
    width: 98%;
    margin: auto;
}
section {
    width: 100%;
    margin-bottom: 25px;
}





/*----- Ads Banner Principal -----*/
.header #ads-top {
    margin: 0px 0px;
    padding: 10px;
}

/*----- Banners -----*/
#banner-top img {
    width: 100%;
    height: 100%;
}
#banner-top {
    position: relative;
    margin: 0;
}
#banner-top .contenedor {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

/*----- Generales Menu -----*/
#menu-top {
    width: 100%;
    height: 50px;
    background: #fff;
    color: #000;
}
#menu-top .contenedor {
    display: table;
}


/*----- Banner Principal -----*/
#banner-top .contenedor {
    align-content: center;
    justify-content: center;
}
#banner-top .contenedor img {
    text-align: center;
    justify-content: center;
    width: 50%;
    margin-top: 0px;
    margin-left: 80px;
}

/*----- Slogan -----*/
.header #slogan {
    background: #1A5AD9;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}
.header #slogan .tex-slogan {
    text-align: center;
}

/*--------------- MAIN ---------------*/
.main {
    background-image: url(img/background.jpeg);
}
.sector {
    background: #fff;
    padding: 100px 20px;
}
.sector .contenedor .contenido h2 {
    margin: 10px 0px 50px;
}
.sector .contenedor .contenido p {
    font-size: 16pt;
    text-align: justify;
    margin: 20px 0px;
}


















































/*----- Pie de página / Footer -----*/
.footer {
    background: #333;
    padding: 20px 10px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}
.footer .contenedor img {
    width: 100px;
    margin: 10px;
}
.footer .contenedor a {
    text-decoration: none;
    color: #fff;
}

/*----- Estilos de 1024px en escritorio -----*/

@media (min-width:768px) {
    .contenedor {
        width: 1000px;
    }
    /*----- Banner Principal -----*/
    #banner-top {
        height: 500px;
        overflow: hidden;
    }
    #banner-top img {
        height: auto;
        margin-top: -70px;
    }
    #banner-top .contenedor img {
        width: 370px;
        margin: 0;
        text-align: center;
        transform: translateX(80%) translateY(0%);
    }
    
    
    
}

