@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}


body {
    font-family: "Montserrat", sans-serif;
    display: grid;
    grid-template-areas:
        "header header header"
        "nav section aside"
        "footer footer footer";
    grid-template-rows: 100px 1fr 35px;
    grid-template-columns: 3% 1fr 3%;
    grid-gap: 5px;
    min-height: 100vh;
}

header {
    background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/lastoo_landing/recurso/background%20blue%20header.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-area: header;
}

.logo {
    width: 400px;
}


/* -----------------contenido  */
section {
    background: #ababab18;
    grid-area: section;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.padrecard {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}


.seltext{
    text-align: center;
    color: #001A64;
    font-weight: 800;
    font-size: 20px;
    text-transform: uppercase;
    margin: 15px 5px;
}

.card {
    width: 360px;
    /* min-height: 200px; */
    box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
    border-radius: 20px;
    padding: 15px;
    margin: 16px 12px;
    cursor: pointer;
    transition: all .4s ease-in-out;
}

.card:hover {
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background: #2980B9;
    background: -webkit-linear-gradient(to right, #FFFFFF, #6DD5FA, #297fb941);
    background: linear-gradient(to right, #FFFFFF, #6DD5FA, #297fb941);

}

.p1 {
    width: 100%;
    min-height: 50px;
    background-image: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/lastoo_landing/recurso/fondo3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    padding: 10px;
}

.lolastoo {
    width: 270px;
}



footer {
    background: #011659;
    grid-area: footer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
    text-align: center;
}

header,
nav,
section,
aside,
footer {
    padding: 5px;
}

@media screen and (max-width:600px) {
    .logo{
        width: 250px
    }

    .card{
        width: 100%;
    }
}