.accordion {
    background-color: #F4F5F6;
    color: #29414C;
    cursor: pointer;
    padding: 0.7rem 3rem 0.7rem 1.1rem;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 12px;
    font-family: "Montserrat Bold", sans-serif;
    -webkit-font-smoothing: antialiased;
    transition: background-color .5s ease, color .4s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion .seeMore {
    font-size: 9px;
    font-family: 'Montserrat Regular', sans-serif;
    position: relative;
}

.accordion .seeMore::after {
    content: '';
    position: absolute;
    left: 118%;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background: url("../images/arrowDown.svg") center no-repeat;
    background-size: contain;
    transition: transform .5s ease;
}

.accordion:hover {
    background-color: #e3e3e3;
}

.accordion.active {
    background-color: #29414C;
    color: white;
}

.accordion.active .seeMore::after {
    transform: translateY(-50%) rotateX(180deg);
}

.panel {
    background-color: #F4F5F6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    will-change: max-height;
    margin-bottom: 1.375rem;
}

.panel .position {
    background-color: #7A8990;
    padding: 0.7rem 1.1rem;
    font-size: 11px;
    color: white;
    margin-bottom: 1rem;
}

.panel .panelBody {
    padding: 0.7rem 1.1rem;
}

.panel .mainInformation {
    display: flex;
}

.panel .mainInformation .textContent{
    font-size: 13px;
}

.panel .panelBody .label {
    font-family: "Montserrat Bold", sans-serif;
    -webkit-font-smoothing: antialiased;
    margin-bottom: .5rem;
}

.panel .panelBody .faculty, .panel .panelBody .workHistory .years {
    margin-bottom: .5rem;
}

.panel .panelBody .label, .panel .panelBody .faculty, .panel .panelBody .years {
    font-size: 9px;
}

.panel .panelBody .years, .panel .panelBody .label {
    color: #83A1AF;
}

.panel .panelBody .value {
    color: #29414C;
    font-size: 11px;
    font-family: "Montserrat Bold", sans-serif;
    -webkit-font-smoothing: antialiased;
}

.panel .mainInformation .personal {
    width: 30%;
    margin-right: 5%;
}

.panel .mainInformation .education {
    width: 65%;
}

.panel .mainInformation .education .educationList {
    display: flex;
    flex-wrap: wrap;
}

.panel .mainInformation .education .educationList .item {
    width: 46%;
    margin-right: 8%;
}

.panel .mainInformation .education .educationList .item:nth-of-type(2n) {
    margin-right: 0;
}

.panel .panelBody .workHistory {
    border-top: 1px solid #83A1AF;
    padding-top: 1rem;
}

.panel .panelBody .workHistory .label {
    margin-bottom: 1.5rem;
}

.panel .panelBody .workHistory .value {
    margin-bottom: .7rem;
}


.panel .panelBody .workHistory .value span {
    font-family: 'Montserrat Regular', sans-serif;
}


.panel .panelBody .workHistory .workList {
    display: flex;
    flex-wrap: wrap;
}

.panel .panelBody .workHistory .workItem {
    width: 30%;
    margin-right: 5%;
    margin-bottom: .7rem;
}

.panel .panelBody .workHistory .workItem:nth-of-type(3n) {
    margin-right: 0;
}