.mentor-card {
    display: flex;
    flex-direction: column;
    margin: auto;
    padding: 10px;
    max-width: 80%;
}
@media (max-width:1024px) {
    .mentor-card {
        max-width: 100%;
    }
}

.mentor-card__wrapper {
    display: flex;
    width: 100%;
}
@media (max-width:600px) {
    .mentor-card__wrapper {
        flex-direction: column;
    }
}

.mentor-card__img {
    max-width: 300px;
    border-radius: 10px;
    align-items: center;
}
@media (max-width:600px) {
    .mentor-card__img {
        display: flex;
        margin: auto;
        margin-bottom: 10px;
    }
}

.mentor-card__name {
    padding-left: 25px;
}
@media (max-width:770px) {
    .mentor-card__name {
        padding-left: 5px;
    }
}

.mentor-card__wrapper-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* width: 100%; */
    margin-left: 10px;
    background-color: #F9F9F9;
    border-radius: 10px;
    padding: 10px 10px 0 10px;
}
@media (max-width:600px) {
    .mentor-card__wrapper-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: none;
        margin-left: 0;
        background-color: #F9F9F9;
        border-radius: 10px;
        padding: 10px 10px 0 10px;
    }
}

.mentor-card__wrapper-rigth {
}


.mentor-card__title {
    font-size: 30px;
    color: #444;
}
@media (max-width:880px) {
    .mentor-card__title {
        font-size: 27px;
    }
}
@media (max-width:760px) {
    .mentor-card__title {
        font-size: 24px;
    }
}
@media (max-width:600px) {
    .mentor-card__title {
        text-align: center;
    }
}

.mentor-card__subtitle {
    color: #8B3E3A;
}

@media (max-width:770px) {
    .mentor-card__info-text {
        padding-left: 20px;
    }
}

.mentor-card__info-text li {
    padding: 2px 0;
    color: #444;
}

.quote {
    position: relative;
    padding: 10px;
    margin-top: 10px;
    background-color: #F9F9F9;
    border-radius: 10px;
    font-style: italic;
    color: #444;
}

.quote-img {
    position: absolute;
    left:-10px;
    top:-5px;
    float: left;
}