#cohortsHero2023{
    background-image: url('../img/gsa.jpg');
}

#cohortsContainer2023{
    max-width: 1400px;
    margin: 10vh auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.cohorts_card{
    margin: 20px;
    flex-basis: calc(25% - 42px);
    height: 60vh;
    background-color: white;
    border: 1px solid;
    box-shadow: 5px 5px 10px #dddddd;
}

.cohorts_image{
    height: 50%;
}

.cohorts_text{
    height: 50%;
    padding: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media only screen and (max-width: 991px){
    .cohorts_card{
        flex-basis: 33%;
    }
}

@media only screen and (max-width: 768px){
    .cohorts_card{
        flex-basis: 50%;
    }
}

@media only screen and (max-width: 480px){
    .cohorts_card{
        flex-basis: 100%;
    }
}


