/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

.team-members-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.team-member-element {
    margin: 32px;
    text-align: center;
    width: 300px;
}

.team-member-element p,
.team-member-element a {
    color: white;
    font-size: 20px;
    font-family: Oswald-Regular;
}

.team-member-element p {
    margin-bottom:16px;

}

.team-member-element a {
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.team-member-element a:hover {
    color: #0099ff;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.team-member-element__picture {
    width: 200px;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 16px;
}

.team-member-element__position {
    line-height: 1.6;
}


.need-more-information-section__text {
    font-family: Oswald-SemiBold;
    font-size: 58px;
    text-align: center;
    color: white;
}

.need-more-information-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 96px;
}

.need-more-information-section .main-cta {
    margin-top: 48px;
}

@media all and (max-width:600px) {
    .need-more-information-section__text {
        font-size: 48px;
    }
}