.expert-item{
    max-width: 90%;
    margin: auto;
    text-align: center;
}

.expert-item-image-div {
    margin-bottom: 10px;
}

.expert-item-image {
    width: 120px;
    max-width: 100%;
    aspect-ratio: 1/1;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.expert-item-name, .expert-item-name a, .expert-item-name a:hover {
    color: var(--primary);
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.expert-item-position {
    color: var(--black);
    font-size: 16px;
    line-height: 20px;
    font-weight: 400;
}

.expert-item-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.expert-item-icons a i{
    color: #000;
    font-size: 18px;
}

.expert-item-icons a:hover{
    text-decoration: none;
}


.participant-item{
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    border-radius: 0px 30px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #FFF;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 20px;
    margin-bottom: 10px;
}

.participant-item:hover{
    opacity: 0.8;
    text-decoration: none;
}

.participant-item-image-div {
    width: 70px;
}

.participant-item-image {
    width: 140px;
    max-width: 100%;
    aspect-ratio: 1/1;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.participant-item-content {
    width: 100%;
}

.participant-item-name {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}

.participant-item-type {
    color: #333;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    margin-bottom: 10px;
    color: var(--primary);
    text-transform: capitalize;
}

.participant-item-position {
    color: #333;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
}


.expert-line{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.expert-line-image{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #ccc;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.expert-line-content{
    width: 100%;
}

.expert-line-top{
    display: flex;
    gap: 20px;
}

.expert-line-name{
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    width: 100%;
}

.expert-line .expert-item-icons{
    justify-content: right;
    white-space: nowrap;
}

.expert-line-hr{
    height: 3px;
    background: #8B3043;
    filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
    margin-top: 15px;
    margin-bottom: 15px;
}

.expert-line-bottom{
    font-size: 18px;
}

.expert-text{
    border-radius: 0px 20px;
    background: #F5F5F5;
    padding: 20px;
    font-size: 18px;
    line-height: 24px;
}

.expert-side-text{
    margin-bottom: 40px;
}


@media (max-width: 991px){
    .expert-line{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .expert-line-top{
        flex-direction: column;
    }

    .expert-line-hr{
        max-width: 80px;
        margin-left: auto;
        margin-right: auto;
    }

    .expert-line .expert-item-icons{
        justify-content: center;
    }
}
