@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body {
    font-family: "Poppins", sans-serif;

}



.con {
    max-width: 1200px;
    margin: 0 auto;
    font-size: large;
}

.cosmo {
    background-image: linear-gradient(rgb(0, 0, 0, 0.6), rgb(0, 0, 0, 0.6)), url(imagenes/principal.jpg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.cosmo h1 {
    color: white;
}

.cosmo p {
    color: white;
}

.menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #FFFDFC;
    font-size: 25px;
    font-weight: 500;

}

.menu .barra ul li {
    position: relative;
    float: left;
}

.menu .barra ul li a {
    font-size: 18px;
    padding: 20px;
    color: #FFFDFC;
    display: block;
    font-weight: 600;
}

.menu .barra ul li a:hover {
    color: #ce967b;
}

#menu {
    display: none;
}

.icono img {
    width: 100px;

}

.menu label {
    cursor: pointer;
    display: none;
}

.cosmo-content {
    text-align: center;
}

.cosmo-content h1 {
    font-size: 75px;
    line-height: 80px;
    color: #F9FAFC;
    text-transform: uppercase;
    margin-bottom: 35px;
    text-align: center;
}

.cosmo-content p {
    font-size: 16px;
    color: #C5C5C5;
    padding: 0 250px;
    margin-bottom: 25px;

}

.conteiner__cards {
    max-width: 1200px;
    margin: auto;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.card {
    width: 300px;
    margin: 10px;
    transition: 300ms;
}

.card:hover{
    width: 350px;
}
.card .cover {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card .cover img {
    width: 250px;
    display: block;
    margin: auto;
    top: 40px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(5px 5px 4px rgb(0,0,0,0.5));
    transition: all 400ms;
}

.card:hover .cover img{
    top: 0;
    filter: none;
}

.card .img__back {
    width: 100%;
    height: 200px;
    position: absolute;
    background-size: cover;
    bottom: -80px;
    left: 0;
    border-radius: 20px;
}

.card:nth-of-type(1) .img__back {
    background-image: url(imagenes/hojas.jfif);
}

.card:nth-of-type(2) .img__back {
    background-image: url(imagenes/mision.jpg);
}



.card:hover .img__back{
    bottom: -40px;
    transition: all 300ms;
}

.card .descripcion{
    background: white;
    margin-top: -10px;
    padding: 20px;
    border-radius: 0px 0px 20px 20px;
}

.card:hover{
    padding: 40px;
}

.card .descripcion h2{
    margin-top: 10px;
}

.card .descripcion p{
    margin-top: 10px;
}

.card .descripcion a{
   padding: 10px 40px;
   margin-top: 20px;
   border: none;
   background: black;
   color: white;
   font-size: 14px;
   cursor: pointer;
   border-radius: 8px;
   transition: all 300ms;
}

.card .descripcion a:hover{
    background: #ce967b;
}

.iformacion {
    text-align: center;
}

.crema {
    padding: 100px 0;
    background-color: #E1E2E6;
    position: relative;
}

.crema h2 {
    text-align: center;
}

.iformacion {
    text-align: center;
}

.iformacion h2 {
    font-size: 55px;
    line-height: 70px;
    color: #323337;
    text-transform: uppercase;
    padding: 0 250px;
    margin-bottom: 15px;
}

.parrafo {
    font-size: 16px;
    color: #414247;
    padding: 0 250px;
    margin-bottom: 25px;
    text-align: center;
}

.footer {
    padding: 100px;
    background-color: #201e1e;
    display: flex;
}

.footer-1 {
    display: flex;
    justify-content: space-between;
}

.link h3 {
    font-size: 16px;
    color: #C5C5C5;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.link a {
    font-size: 16px;
    color: #F9FAFC;
    display: block;
    margin-bottom: 15px;
}

.datos {
    background-image: linear-gradient(rgb(0, 0, 0, 0.7), rgb(0, 0, 0, 0.7)), url(imagenes/intituciones.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
}

.datos1 {
    text-align: center;
}

.datos1 h2 {
    font-size: 55px;
    line-height: 70px;
    color: #FFFDFC;
    text-transform: uppercase;
    margin-bottom: 50px;
}

.datos1 p {
    font-size: 16px;
    color: #F9FAFC;
    margin-bottom: 50px;
    padding: 0 100px;
}