.profile_sec {
    display: flex;
    flex-direction: column;
    gap: 125px;
}
.profile_flex {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.profile_content_wrap { 
    flex-basis: calc(68% - 30px);
}
.profile_image_wrap {
    flex-basis: 32%;
}
.profile_flex.reverse {
    flex-direction: row-reverse;
}

.profile_subhead {
    font-family: var( --font-Mr-Eaves-Mod-ot-reg);
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 58px;
    text-transform: uppercase;
    margin-bottom: 0;
}
.profile-heading {
    font-family: var(--font-Mr-Eaves-Bold);
    font-weight: 700;
    font-size: 64px;    
    line-height: 64px;
}

/* .profile_sec .profile_image_wrap img {
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0px 1px 10px 0px #ddd;
} */

.profile_sec .parah a,
.profile_sec .parah a:hover {
    text-decoration: none;
}

.profile_sec .parah a > strong:hover {
    color: var(--color-midnightBlue) !important;
}

@media(max-width:992px) {
    .profile_sec {
        gap: 35px;
        margin-top: 50px;
    }
    .profile_flex {
        flex-direction: column-reverse !important;
        gap: 40px;
    }
    .profile_subhead {
        font-size: 22px;
        line-height: 30px;
    }
    .profile-heading {
        font-size: 38px;    
        line-height: 44px;
    }
}