/* :root {
    --font-myriad: "myriad-pro", sans-serif;
    --text-body: #485560;
    --primary-blue: #243746;
    --beige: #DECAA4;
    --beige-light: #F7F3EB;
    --green: #D3E6CB;
    --green-light: #F0F5EF;
    --blue: #CADBEB;
    --blue-light: rgba(202, 219, 235, 0.35);
    --border-color: rgba(222, 202, 164, 0.75);
    --border-radius: 12px;
    --grey: #DDE2E2;
    --grey-rgb: 221, 226, 226;
    --bg-page: #F7F8F8;
    --white: #fff;
    --error-text: #fb0000;
    --black: #000;
    --transition: all 400ms ease-in-out;
    --green-gradient: linear-gradient(180deg, #DDE8D9 0%, #FDFDFD 100%);
    --blue-gradient: linear-gradient(180deg, var(--blue-light) 0%, #FDFDFD 100%);
} */

/* Team Members with Pop-up Section */
.team_members_with_pop-up_section{
    position: relative;
    padding: 100px 0;
}

.main_top_content{
    margin-bottom: 50px;
}

.main_top_content h2{
    margin-bottom: 30px;
}

.team_content_rows{
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.team_content_rows .thumb-img{
    width: 75px;
    height: 75px;
    flex-shrink: 0;
    margin-right: 25px;
    overflow: hidden;
    border-radius: 50%;
    background-color: var(--primary-blue);
}
.team_content_rows .thumb-img img{
    height: 100%;
    object-fit: cover;
}
.team_content_rows .content-middle{
    flex-grow: 1;
    display: flex;
    align-items: center;
}
.team_content_rows .content-middle .name{
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 25px;
    width: 36%;
}
.team_content_rows .content-middle .position{
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    color: var(--primary-blue);
    opacity: 0.85;
    width: 40%;
}
.team_content_rows .btn-wrap{
    margin-left: 25px;
    min-width: 50px;
}



html.active-popup {
    overflow: hidden !important;
}

html.active-popup .site-header {
    z-index: 2;
}

.sidebar-popup-wrap {
    position: fixed;
    right: 0;
    top: 0;
    visibility: hidden;
    z-index: 9999;
}

.sidebar-popup-wrap .popup-content {
    height: 100vh;
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    right: 0;
    padding: 50px;
    transform: translateX(110%);
    transition: all 0.7s;
    max-width: 500px;
    width: 100%;
    background-color: var(--white);
}

.sidebar-popup-wrap.active .popup-content {
    transform: translateX(0);
}

.sidebar-popup-wrap .overlay {
    background: linear-gradient(180deg,rgba(1,40,79,0.00) 50%,#9BE8E6 100%),rgba(1,40,79,0.75);
    background: linear-gradient(180deg, rgba(36, 55, 70, 0.00) 50%, var(--beige) 100%), rgba(1, 40, 79, 0.75);
    bottom: 0;
    height: 100vh;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    transition: all .15s linear;
    width: 100%;
    z-index: 0;
    opacity: 0;
}

.sidebar-popup-wrap.active,.sidebar-popup-wrap.active .overlay {
    opacity: 1;
    visibility: visible;
}

.sidebar-popup-wrap.active {
    z-index: 99999;
}

.sidebar-popup-wrap .popup-content .popup-close {
    align-items: center;
    background-size: 12px;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    background-color: var(--blue);
    border-radius: 50%;
    position: absolute;
    justify-content: center;
    right: 15px;
    top: 15px;
    z-index: 99;
    margin-left: auto;
}

.sidebar-popup-wrap .popup-content .popup-close img,.sidebar-popup-wrap .popup-content .popup-close svg {
    width: 24px;
    height: 24px;
}

.sidebar-popup-wrap .popup-content .popup-close svg path {
    transition: var(--transition);
}

.sidebar-popup-wrap .popup-content .popup-close:hover {
    background-color: var(--primary-blue);
}

.sidebar-popup-wrap .popup-content .popup-close:hover svg path {
    fill: var(--blue);
}

.sidebar-popup-wrap .popup-content .team-content {
    display: flex;
    margin-bottom: 45px;
}
.sidebar-popup-wrap .popup-content .team-popup-content {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.team-popup-content .bottom-bio-wrap{
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.team-popup-content .thumb-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--dark-blue);
    margin-bottom: 45px;
    overflow: hidden;
}
.team-popup-content h3,
.team-popup-content .position{
    margin-bottom: 25px;
}

.team-popup-content .position {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
}

.team-popup-content .thumb-wrap img {
    height: 100%;
    object-fit: cover;
}
.team-popup-content .social-icons:not(:last-child){
    margin-bottom: 30px;
}
.team-popup-content .social-icons{
    display: flex;
    align-items: center;
}
.team-popup-content .social-icons a{
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--blue);    
}
.team-popup-content .social-icons a + a{
    margin-left: 15px;
}
.team-popup-content .social-icons a:hover{
    background-color: var(--primary-blue);
}
.team-popup-content .social-icons a img,
.team-popup-content .social-icons a svg{
    width: 24px;
    height: 24px
}

.team-popup-content .social-icons a svg path{
    transition: var(--transition);
}
.team-popup-content .social-icons a:hover svg path{
    fill: var(--blue);
}

/* Team Members with Pop-up Section */