.profile_sec {
    position: relative;
}

.profile_slider_wrap {
    display: flex;
    flex-direction: column;
}

.profile_flex {
    display: flex;
    gap: 55px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #80949E;
}

.profile_flex:first-child {
    padding-top: 0 !important;
}

.profile_flex:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.profile_flex.reverse {
    flex-direction: row-reverse;
}

.profile_image_wrap {
    flex: 0 0 35%;
    max-width: 500px;
    min-width: 0;
}

.profile_content_wrap {
    flex: 1;
    min-width: 0;
}

.profile_image_wrap .img-wrap {
    position: relative;
}

.profile_image_wrap img {
    width: 100%;
    display: block;
}

.profile_subhead {
    font-family: var(--h4FontFamily);
    font-size: var(--h4DeskFont);
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    text-transform: none;
    color: var(--defaultFontColor);
}

.profile-heading {
    font-family: var(--h1FontFamily);
    font-weight: 700;
    font-size: var(--h1DeskFont);
    line-height: var(--h1DeskLineHt);
    margin: 0 0 4px;
    color: var(--primaryFontColor);
}

.profile-heading span {
    color: inherit;
}

.profile_sec .parah h4 {
    font-family: var(--h4FontFamily);
    font-size: var(--h4DeskFont);
    line-height: var(--h4DeskLineHt);
    font-style: var(--h4FontStyle);
    font-weight: var(--h4FontWt);
    color: var(--secondaryFontColor);
}

.profile_sec .parah p {
    font-size: var(--defaultDeskFont);
    line-height: var(--defaultDeskLineHt);
    color: var(--defaultFontColor);
}

.profile_sec .parah p:last-child {
    margin-bottom: 0;
}

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

.leadership-slider-nav {
    display: none;
}

@media(max-width:767px) {
    .profile_sec {
        overflow: hidden;
        margin-top: 30px;
    }
    .profile_slider_wrap {
        display: flex;
        flex-direction: row;
        gap: 0;
    }

    .mobile-profile-group {
		display: flex;
		flex-direction: column;
		gap: 0px;
	}
	.mobile-profile-group .profile_flex {
		width: 100% !important;
        padding: 45px 0;
        gap: 35px;
	}

    .profile_flex,
    .profile_flex.reverse {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 0px !important;
    }
    .profile_image_wrap,
    .profile_content_wrap {
        flex: none;
        width: 100%;
        max-width: none;
    }
    .profile_image_wrap {
        margin-bottom: 0;
    }
    .profile-heading {
        font-size: var(--h1MobFont);
        line-height: var(--h1MobLineHt);
    }
    .profile_subhead {
        font-size: var(--h4MobFont);
        line-height: var(--h4MobLineHt);
        margin-top: 13px;
        margin-bottom: 10px;
    }
    .profile_sec .parah p {
        font-size: var(--defaultMobFont);
        line-height: var(--defaultMobLineHt);
    }

    .leadership-slider {
        height: auto !important;
    }
    .leadership-slider .swiper-wrapper {
        align-items: flex-start;
    }
    .leadership-slider .swiper-slide {
        height: auto !important;
    }

    .leadership-slider-nav {
        position: relative;
        margin-top: 25px;
    }
    .leadership-slider-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 24px;
        margin-top: 25px;
    }
    .leadership-prev,
    .leadership-next {
        width: 42px;
        height: 42px;
        border: 1px solid #425A6E;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .3s ease;
        background: #fff;
    }
    .leadership-prev i,
    .leadership-next i {
        font-size: 18px;
        color: #425A6E;
    }
    .leadership-prev:hover,
    .leadership-next:hover {
        background: #425A6E;
    }
    .leadership-prev:hover i,
    .leadership-next:hover i {
        color: #fff;
    }
}