.page-header {
    color: #1E3050;
    font-weight: 900;
    font-size: 40px;
    margin-bottom: 10px
}
.hero-section {
    padding: 5rem;
    padding-bottom: 10rem;
    display: flex;
    justify-content: center;
    gap: 10%;
}

.hero-img-box {
    display: flex;
    justify-content: center;
    overflow: hidden;
    height: 490px;
    width: 330px;
}

.hero-img-box img {
    border-radius: 5px;
}

.q-bio {
    line-height: 25px;
}

.bio-info-text-content, .q-bio {
    max-width: 670px;
}

.highlight {
    color: #1eb53a;
}
.bio-info-section {
    margin-top: 1rem;
}
.bio-info-header {
    color: #1E3050;
    font-size: 17px;
    font-weight: bold;
}
.bio-socials {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.bio-social-icon path {
    fill: #1E3050;
    transition: fill .4s ease;
}

.bio-social-icon:hover path {
    fill: #1eb53a;
}
.bio-info-select {
    display: flex;
}
.bio-info-select-info {
    width: 33%;
    background-color: #1E3050;
    color: white;
    font-weight: bold;
    display: flex;
    justify-content: center;
    padding: 15px 0px;
    cursor: pointer;
    user-select: none;
}
.bio-info-select-info:nth-child(1) {
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}
.bio-info-select-info:nth-child(3) {
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
}
.bio-info-select-info p {
    position: relative;
}
.bio-info-select-info p::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 1px;
    background-color: #1eb53a;
    bottom: 0px;
    left: 0;
    transition: width .4s ease;
    border-radius: 3px;
}
.bio-info-select-info.active p::after {
    width: 100%;
}

.bio-info-select-info:hover p::after {
    width: 100%;
}

.bio-info-text-content {
    padding: 1rem 20px;
    padding-left: 0;
    margin-top: .5rem;
    overflow-y: scroll;
    max-height: 300px;
}
.bio-info-text-content p {
    line-height: 25px;
    font-size: 16.5px;
    margin-bottom: 15px;
}

.bio-info-select-text {
    display: none;
}

.bio-info-select-text h2 {
    color: #1E3050;
    margin-bottom: 10px;
}

.bio-info-select-text h3 {
    color: #1E3050;
    margin-bottom: 5px;
}

.bio-info-select-text a {
    color: #0056b3;
    text-decoration: none;
}
.bio-info-select-text a:hover {
    text-decoration: underline;
}
.bio-info-select-text.active {
    position: relative;
    display: block;
    transition: opacity .4s ease;
}
.bio-info-select-text ul {
    margin: 1rem 0;
    font-weight: bold;
}
.bio-info-select-text li::marker {
    color: #1eb53a;
}
.bio-info-select-text li {
    margin-bottom: 10px;
}
#bio-line-break {
    display: none;
}