/*ESTUDIANTES*/


/* Font */

@import url('https://fonts.googleapis.com/css?family=Quicksand:400,700');

/* Design */

*,
*::before,
*::after {
    box-sizing: border-box;
}

.estudiantes {
    max-width: 1200px;
    margin: 0 auto;
}

*/ h1 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.btn {
    color: #3f3e3e;
    padding: 1.8rem;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 4px;
    font-weight: 400;
    display: block;
    width: 100%;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
}

.tarjeta_es_content a {
    text-decoration: none;
}

.btn:hover {
    background-color: rgba(255, 255, 255, 0.12);
    color: #042b1a;
}

.tarjeta_es {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.tarjeta_es_item {
    display: flex;
    padding: 1rem;
}

@media (min-width: 40rem) {
    .tarjeta_es_item {
        width: 50%;
    }
}

@media (min-width: 56rem) {
    .tarjeta_es_item {
        width: 33.3333%;
    }
}

.tarjeta_est {
    text-align: center;
    padding: 15px;
    background: linear-gradient(to bottom left, #ececec 40%, #e9e8e8 100%);
    border-radius: 0.25rem;
    box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.tarjeta_est_image img {
    border-radius: 5px;   
    box-shadow: 3px 4px 5px black;
    margin-bottom: 15px;
}

.tarjeta_est_content {
    padding: 1rem;
    /*background: linear-gradient(to bottom left, #25c29b 40%, #347e5f 100%);*/
}

.tarjeta_est_title {
    color: #3b3b3b;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform:uppercase;
    margin: 0px;
}

.tarjeta_est_text {
    color: #474747;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.made_by {
    font-weight: 400;
    font-size: 13px;
    margin-top: 35px;
    text-align: center;
}


/*FIN ESTUDIANTES*/