.view__bio-link {
    font-size: 17px !important;
    line-height: 24px !important;
    text-decoration: underline;
    margin-top: 10px;
	color: #363F64;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.view__bio-link:hover {
    text-decoration: underline;
}

.mobile__bio-heading {
    display: none;
}

.bio__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transform: scale(1.1);
    transition: visibility 0s linear 0.25s, opacity 0.25s 0s, transform 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
}

.show-modal {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.bio__box {
    max-width: 60%;
    width: 100%;
    background: #fff;
}

.bio__modal-content {
    display: flex;
    position: relative;
    padding: 30px;
}

.close__bio {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: transparent;
    border: 0;
    background: #d3d3d3;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.close__bio img {
    width: 13px;
    height: 13px;
}

.bio__modal-image {
    width: 180px;
    height: 180px;
    margin-right: 30px;
}

.bio__modal-info {
    flex: 1;
}

.bio__modal-info h4 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 5px;
}

.bio__modal-info h5 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 15px;
}

.bio__modal-info p {
    font-size: 16px;
	padding-bottom:15px;
    line-height: 28px;
    color: #4e5152;
}

/* Responsive Code */

@media (max-width: 1199.98px) {
    .bio__modal {
        padding: 30px;
    }

    .bio__box {
        max-width: 90%;
    }
}

@media (max-width: 991.98px) {
    .bio__box {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .view__bio-link {
        display: block;
        font-size: 16px !important;
        line-height: 22px !important;
    }

    .bio__modal-content {
        flex-direction: column;
        padding: 20px;
    }

    .bio__modal-image {
        width: 100px;
        height: 100px;
        margin-right: 20px;
    }

    .bio__modal-info {
        overflow: scroll;
        padding-right: 15px;
    }

    .bio__modal-info p {
        height: 300px;
    }

    .bio__modal {
        padding: 20px;
    }

    .mobile__bio-heading {
        display: block;
        flex: 1;
    }

    .desktop__bio-heading {
        display: none;
    }

    .modal-image__wrapper {
        display: flex;
        margin-bottom: 10px;
    }

    .modal-image__wrapper h4 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 5px;
    }

    .modal-image__wrapper h5 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 10px;
    }
}

/* Responsive Code */
