/* ABOUT SECTION */
.about-section {
    padding: 2em;
    max-width: 68em;
    text-align: center;
}

.about-section h1 {
    margin: 1em 0em;
}

.about-logo {
    width: 14em;
    height: auto;
}

.team-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 2em 0em;
    padding: 1em 0em 0em 0em;
}

.team-card {
    margin: 0em 2em;
    background-color: #fff;
    text-align: center;
}

.team-name {
    text-transform: unset;
}

.team-image {
    background-size: cover;
    background-position: center;
    width: 10em;
    height: 10em;
    border-radius: 50%;
    margin: auto;
}

.team-name {
    margin: .5em 0em .0em 0em;
}
.team-title {
    text-transform: unset;
    margin:0em;
}
.team-experience {
    font-weight: 300;
}

@media screen and (max-width: 64em) {
    .team-container {
        justify-content: center;
    }
    .team-card {
        margin-top: 2em;
    }
}