.team {
    display: flex;
    flex-direction: column;
    position: relative;
}
.team h2 {
    margin-bottom: 50px;
}
.team__in {
    display: flex;
    flex-direction: row;
    gap: 50px;
}
@media screen and (max-width: 676px) {
    .team {
        padding-top: 0;
    }
    .team__in {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
}
.team__content {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 0;
}
.team__content h3 {
    margin: 10px 0 5px 0;
}
.team__content p {
    text-align: center;
    margin: 0 0;
}
.team__subtxt {
    text-align: center;
    font-size: 10px;
    padding: 0 0 30px 0;
}
.team__content img {
    border-radius: 20px 20px 20px 100px;
}