/* Who are we section style */
.who-we-section{
    background-image: url("images/who_are_we.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0px;
}
.who-we-description{
    color: white;
    font-size: 20px;
    margin: 0px 2%;
    margin-bottom: 50px;
}
/* Vision, Message and Goal Section */
.vision-message-goal{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 100px 0px;
}
.card{
    display: inline-block;
    width: 300px;
    height: 400px;
    box-shadow: 10px 5px 15px #949097;
    margin: 100px 10px;
    border-radius: 10px;
    transition: 0.7s;
}
.card:hover{
    box-shadow: 10px 5px 15px #868ee5;
    transform: translate(10px, 10px);
}
.card-icon{
    display: block;
    margin: 15px 15px;
    color: #1A237E;
    font-size: 90px;
}
.subtitle{
    color: #1A237E;
    font-size: 25px;
    margin: 10px;
}
.card-description{
    font-size: 18px;
    margin: 10px;
}
/* Tablet */
@media (max-width: 650px){
    .vision-message-goal{
        display: block;
    }
    .card{
        display: block;
        width: 250px;
    }
}
/* Phone */
@media (max-width: 400px){
    /* Minimize the font size */
    .who-we-description{
        font-size: 18px;
        margin: 0px 5px;
    }
}