.exhibit-profile-wrapper {
    position: relative;
    padding-top: 20px;


    &::after {
        position: absolute;
        width: 1px;
        height: 100%;
        content: '';
        left: 50%;
        top: 0;
        bottom: 0;
        transform: translateX(-50%);
        background: #ff5f00;

    }
}

.profile-wrapper {
    display: flex;
    margin-bottom: 20px;
}

.profile-img-box {
    width: 50%;
    padding-inline: 5%;
}

.profile-wrapper.right {
    justify-content: end;
}

.profile-wrapper.left {
    justify-content: start;

    .profile-box {
        width: 50%;
        position: relative;

        p {
            text-align: right;


        }

        &::after {
            font-family: "Font Awesome 6 Free";
            content: '\f192';
            top: 0;
            position: absolute;
            left: auto;
            right: -10.5px;
            font-weight: bolder;
            color: #ff5f00;
            fill: #ff5f00;
            stroke: #fff;
            font-size: 22px;
        }
    }
}

.profile-box {
    width: 50%;
    position: relative;
    padding: 3px 20px;


    p {
        font-size: 22px;
        font-weight: 400;
        line-height: 1.3em;
        margin-bottom: 15px;


        i {
            color: #ff5f00;
        }

        a {
            color: #ff5f00;
        }
    }

    &::after {
        font-family: "Font Awesome 6 Free";
        content: '\f192';
        top: 0;
        position: absolute;
        left: -10.5px;
        font-weight: bolder;
        color: #ff5f00;
        fill: #ff5f00;
        stroke: #fff;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .exhibit-profile-wrapper {
        padding-left: 30px;

        &::after {

            left: 30px;

        }
    }

    .profile-box {
        width: 100%;

    }

    .profile-wrapper {
        flex-direction: column;
    }

    .profile-img-box {
        width: 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }

    .profile-wrapper.left {
        .profile-box {
            width: 100%;
            position: relative;

            p {
                text-align: left;
            }

            &::after {
                font-family: "Font Awesome 6 Free";
                content: '\f192';
                top: 0;
                position: absolute;
                left: -10.5px;
                right: auto;
                font-weight: bolder;
                color: #ff5f00;
                fill: #ff5f00;
                stroke: #fff;
                font-size: 22px;
            }
        }
    }


}

.general-display-wrapper {
    background: #E0E0E0;
    padding: 50px 0;

    h2 {
        font-size: 22px;
        font-weight: 400;
        line-height: 1.3em;
        margin-bottom: 20px;
    }

    p {
        color: #ff5f00;
        margin-bottom: 30px;
    }


  
}


.exhibitProfilelightbox.Glimpses-light-box div {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    width: 100%;
    .uk-inline

{
    position: relative;
    &::after

{
    font-family: "Font Awesome 6 Free";
    content: '\2b';
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    top: 0;
    color: #fff;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    opacity: 0;
    transition: all ease-in-out .5s
}

&:hover {
    &::after

{
    opacity: 1;
}

}
}
}

.exhibit-profile-lightbox-wrapper {
    background: #E0E0E0;
    padding: 50px 0;
}