.section-content.advisory-board {
    padding:20px 30px;
}

.section-content.advisory-board .section-inside-header {
    margin: 0 7%;
    font-size: 1em;
}

.section-content.advisory-board .section-inside-header p {
    font-size: 18px;
    line-height: 2em;
}

.section-content.advisory-board .section-inside-header p.title {
    /*
    color:#00AFD4;
    font-style:italic;
    text-align: center;
    font-size:1.5em;
    */
}

.section-content.advisory-board .section-inside-body {
    margin: 40px 0;
    font-size: 1em;
}

.section-content.advisory-board .section-inside-body .list-item {
    display: flex;
    margin: 40px 0;
}

.list-item .img-wrapper {
    padding: 16px;
}

.list-item .img-wrapper img {
    width: 200px;
}

.list-item .desc-wrapper {
    position: relative;
    width: 70%;
    padding-bottom: 40px;
}

.list-item .desc-wrapper .desc {
    /* height: 190px; */
    
    overflow: hidden;

    // transition: all 1s ease;
}

.list-item .desc-wrapper p {
    line-height: 24px;
}

.list-item .desc-wrapper .desc p:first-child {
    margin-top: 0;
}

.list-item .desc-wrapper .desc.opened {
    height: auto;
}

.list-item .show-more-bio,
.list-item .show-less-bio {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    cursor: pointer;
}

.list-item .show-less-bio {
    display: none;
}

.list-item .show-more-bio:hover,
.list-item .show-less-bio:hover {
    color: #00AFD4;

    transition: all 0.3s ease;
}

.list-item .show-more-bio.opened {
    display: none;
}

.list-item .show-less-bio.opened {
    display: flex;
}

.list-item .show-more-bio svg,
.list-item .show-less-bio svg {
    position: relative;

    margin-left: 4px;

    transition: all 0.3s ease;
}

.list-item .show-more-bio:hover svg,
.list-item .show-less-bio:hover svg {
    fill: #00AFD4;
}

.list-item .desc-wrapper .title {
    margin-top: 16px;
    margin-bottom: 8px;
}

.list-item .desc-wrapper .sub-title {
    margin-top: 0;

    color: #00AFD4;
    font-size: 14px;
    font-style: italic;
}

@media (max-width: 768px) {
    .section-content.advisory-board .section-inside-body .list-item {
        flex-wrap: wrap;
    }

    .list-item .img-wrapper,
    .list-item .desc-wrapper {
        width: 100%;
    }
}