@media (min-width: 48rem) {
	:root {
		font-size: calc(1rem + ((1vw - 0.48rem) * 1.389));
	}
}

body {
	/* font-family: var(--font-base); */
	color: var(--color-text);
	background-color: var(--color-bg);
}

.u-text-bold {
	font-weight: bold;
}
.u-text-small {
	font-size: 0.875rem;
}
.u-mb-1 {
	margin-bottom: var(--spacing-sm);
}
.u-mb-2 {
	margin-bottom: var(--spacing-md);
}
.u-flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.max-w-600 {
	max-width: 600px;
	margin: 0 auto;
}


/*  FONTS FAMILY  */
@font-face {
    font-family: 'marcellus';
    src: url('../fonts/marcellus-regular-webfont.woff2') format('woff2'),
         url('../fonts/marcellus-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'inter';
    src: url('../fonts/inter-black-webfont.woff2') format('woff2'),
         url('../fonts/inter-black-webfont.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'inter';
    src: url('../fonts/inter-bold-webfont.woff2') format('woff2'),
         url('../fonts/inter-bold-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'inter';
    src: url('../fonts/inter-extrabold-webfont.woff2') format('woff2'),
         url('../fonts/inter-extrabold-webfont.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'inter';
    src: url('../fonts/inter-semibold-webfont.woff2') format('woff2'),
         url('../fonts/inter-semibold-webfont.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'inter';
    src: url('../fonts/inter-light-webfont.woff2') format('woff2'),
         url('../fonts/inter-light-webfont.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'inter';
    src: url('../fonts/inter-regular-webfont.woff2') format('woff2'),
         url('../fonts/inter-regular-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}


.container {
	width: 100%;
	max-width: 53.051026rem;
}

/*  HEADER CSS START  */
.bd-header {
	padding-top: 1.26312rem;
	padding-bottom: 0.94734rem;
	padding-inline: 0.63156rem;
	background-color: #fff;
	position: relative;
	overflow: hidden;
}


.bd_main_menu {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 1.5789rem;
	margin-right: 0.63156rem;
	line-height: 0;
}

.bd_main_menu li {
	line-height: normal;
}

.bd_main_menu li a {
	font-family: var(--font-secondary);
	font-weight: var(--semi-bold);
	font-size: var(--fs-p-xs);
	letter-spacing: 0.006316rem;
	line-height: normal;
	color: var(--color-green);
	text-decoration: none;
	transition: 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_main_menu li:last-child a {
	font-size: 0.986812rem;
}

.bd_main_menu li a:hover {
	opacity: 0.5;
}

.bd_main_menu li.current-menu-item a,
.bd_main_menu li.current-menu-ancestor a,
.bd_main_menu li.current-menu-parent a {
/*     color: #007466; Example: orange active color
    position: relative; */
	opacity: 0.5;
}
/*  HEADER CSS END  */


/*  HOME PAGE CSS START  */
.bd_section_hero {
	padding-top: 3.513052rem;
	padding-bottom: 2.565712rem;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.bd_section_hero:before {
	content: " ";
	width: calc(100% - 21.473034rem);
	height: 100%;
	display: block;
	border-radius: 0.31578rem 1.26312rem 1.26312rem;
	background-image: url(/wp-content/uploads/2025/08/bg-home-hero.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top left;
	/*    background: linear-gradient(107deg, rgba(0, 153, 126, 0.08) 4.31%, rgba(0, 153, 126, 0.12) 93.95%);*/
	position: absolute;
	top: 0;
	left: 1.26312rem;
	z-index: -1;
}

.bd_hero_content {
	max-width: 26.446568rem;
	margin-inline: 1.26312rem auto;
}

.bd_hero_content h1 {
	line-height: var(--l-height-xmin);
	letter-spacing: -0.026841rem;
}

.bd_body p {
	text-wrap: pretty;
	margin-bottom: 0 !important;
	letter-spacing: -0.007894rem;
}

.bd_body p:not(:last-child) {
	margin-bottom: 0.592087rem !important;
}

.bd_body p strong {
	font-weight: var(--semi-bold);
}

.bd_hero_inline_link {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 0.94734rem;
	margin-top: 2.289404rem;
	/*    line-height: 0;*/
}

.bd_hero_inline_link .bd_button {
	letter-spacing: 0.006316rem;
	gap: 0.749977rem;
	padding-inline: 0.710505rem 0.592087rem;
}

.bd_hero_inline_link .bd_button i {
	font-size: 0.394725rem;
	letter-spacing: 0;
}

.bd_hero_inline_link .bd_button:hover {
	--background: var(--color-darkgrey) !important;
	--border: var(--color-darkgrey) !important;
	--color: #fff !important;
}

.bd_link {
	display: block;
	width: max-content;
	font-family: var(--font-secondary);
	font-size: var(--fs-p-xs);
	font-weight: var(--semi-bold);
	line-height: normal;
	letter-spacing: 0.006316rem;
	padding-bottom: 0.197362rem;
	color: var(--color-green);
	position: relative;
	text-decoration: none;
	transition: 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_link:before {
	content: " ";
	width: 100%;
	height: 0.078945rem;
	display: block;
	background-color: var(--color-green);
	position: absolute;
	bottom: 0;
	left: 0;
}

.bd_link:hover {
	color: var(--color-darkgrey);
	transition: 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_link:hover:before {
	background-color: var(--color-darkgrey);
	animation: progress-bar-animation 0.3s linear;
}

.bd_hero_img_section {
	width: 18.946795rem;
	position: absolute;
	height: 100%;
	top: 0;
	right: 0;
	overflow: hidden;
	border-radius: 1.26312rem 0px 0 1.26312rem;
}

.bd_section_hero .bd_hero_img_section img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.bd_glance_section {
	padding-top: 3.828831rem;
	padding-bottom: 4.736699rem;
	position: relative;
	overflow: hidden;
}

.bd_content_warpper {
	max-width: 35.051571rem;
	margin-inline: 1.26312rem auto;
}

.bd_eyebrow {
	font-family: var(--font-secondary);
	font-weight: var(--semi-bold);
	font-size: 0.710505rem;
	letter-spacing: 0.078156rem;
	line-height: normal;
	text-transform: uppercase;
	color: var(--color-green);
	margin-bottom: 1.302592rem;
}

.bd_content_warpper h3 {
	font-family: var(--font-secondary);
	font-weight: var(--regular);
	font-size: var(--fs-p-xl);
	line-height: var(--l-height-max);
	margin-bottom: 0;
	color: #353d40;
}

.bd_glance_section .bd_button {
	width: 7.657663rem;
	margin-inline: 1.184175rem auto;
	display: flex;
	padding-inline: 0.78945rem 0.671032rem;
}

.bd_glance_section .bd_button i {
	font-size: 0.394725rem;
	letter-spacing: 0;
}

.bd_glance_section .bd_button:hover {
	--background: var(--color-green) !important;
	--color: #fff !important;
}

.bd_steps_section {
	padding-top: 1.815735rem;
	padding-bottom: 4.618281rem;
	position: relative;
	overflow: hidden;
}

.bd_step_content_wapper {
	max-width: 27.157073rem;
	margin-inline: auto 3.157799rem;
}

.bd_step_box_list {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
}

.bd_step_box_list li {
	position: relative;
	overflow: hidden;
}

.bd_step_box_list li:not(:last-child) {
	padding-bottom: 1.539427rem;
	margin-bottom: 1.618372rem;
}

.bd_step_box_list li:not(:last-child):after {
	content: " ";
	width: 100%;
	height: 1px;
	background-color: rgb(27 36 41 / 20%);
	position: absolute;
	bottom: 0;
	left: 0;
}

.bd_step_box_list li h3 {
	font-family: var(--font-primary);
	font-size: var(--fs-xs);
	font-weight: var(--regular);
	line-height: 110%; /* 28.6px */
	letter-spacing: -0.010263rem;
	margin-bottom: 0.94734rem;
	color: var(--color-green);
}

.bd_step_box_list li p {
	margin-bottom: 0;
	font-size: 0.749977rem;
	letter-spacing: -0.0075rem;
	color: #353d40;
}

.bd_steps_image_wapper {
	width: 21.473034rem;
	height: 100%;
	border-radius: 0 1.26312rem 0 0;
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
}

.bd_steps_image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*  HOME PAGE CSS END  */


/*  OUR TEAM PAGE CSS START  */
.bd_section_inner_hero {
    padding-bottom: 3.157799rem;
}

.bd_section_inner_hero:before {
	left: auto;
	z-index: -1;
	right: 1.26312rem;
	border-radius: 1.26312rem;
}

.bd_section_inner_hero .bd_hero_img_section {
	left: 0;
	border-radius: 0px 1.26312rem 1.26312rem 0px;
}

.bd_section_inner_hero .bd_hero_content {
	max-width: 27.670215rem;
	margin-inline: auto 3.907776rem;
}

/* .bd_team_leadership_section .container {
	max-width: 49.261667rem;
	padding: 3.197272rem 0px 2.526239rem 0px;
} */

.bd_team_leadership_section {
    padding-top: 3.236744rem;
    padding-bottom: 4.736699rem;
}

.bd_team_leadership_warpper {
    max-width: 49.261667rem;
    margin-inline: 1.263120rem auto;
}

.bd_team_eyebrow {
    font-family: var(--font-primary);
    font-size: var(--fs-ss);
    font-weight: var(--regular);
    line-height: var(--l-height-xmin); /* 28.6px */
    letter-spacing: -0.010263rem;
    padding-bottom: 1.223647rem;
    color: var(--color-green);
    position: relative;
    margin-bottom: 1.184175rem;
}

.bd_team_eyebrow:after {
	content: " ";
	width: 100%;
	height: 1px;
	background-color: rgb(27 36 41 / 20%);
	position: absolute;
	bottom: 0;
	right: 0;
}

.bd_team_list:not(.social_list_modal) {
	row-gap: 2.210459rem;
	column-gap: 1.578900rem;
}

.bd_team_list li:not(.social_list_modal li) {
    flex: 0 0 auto;
    max-width: 100%;
    width: calc(33.333% - 1.894680rem);
    min-height: 17.999455rem;
}

.bd_team_box {
	gap: 1.026285rem;
	text-decoration: none;
	transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_team_box_image {
    height: 14.525876rem;
    max-width: 100%;
    position: relative;
    overflow: hidden;
}

.bd_team_box_image img {
	transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_team_name {
    margin-bottom: 0.552615rem;
    letter-spacing: -0.010263rem;
    align-items: start;
}

.bd_contact_icon {
    display: flex;
    align-items: center;
    gap: 0.394725rem;
}

.bd_contact_icon span {
    font-size: 0.986812rem;
    line-height: 112%;
}

.bd_team_title {
    transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_team_box:hover {
    transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_team_box:hover .bd_team_box_image img {
    transform: scale(1.1);
    transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_team_box:hover .bd_team_title {
    color: var(--color-darkgrey);
    transition: transform 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

/* .bd_contact_icon a {
    font-size: 0.986812rem;
    line-height: 112%;
	color: #353d40;
}

.bd_contact_icon a:hover {
	color: var(--color-green) !important;
} */

.bd_member_modal {}

.bd_member_modal .modal-dialog {
    max-width: 38.2945rem;
}

.bd_member_modal .modal-content {
    padding: 2.3687rem 1.5791rem 1.5791rem;
    position: relative;
}

.bd_team_name_modal {
    font-family: var(--font-primary);
    font-weight: var(--regular);
    font-size: var(--fs-ss);
    letter-spacing: -0.010263rem;
    line-height: var(--l-height-xmin);
    margin-bottom: 0.552615rem;
    color: var(--color-darkgrey);
}

.bd_member_header_modal p {
    font-size: 0.4896rem;
    line-height: .4634rem;
    letter-spacing: 0.0078rem;
}

.bd_team_title_modal {
    font-family: var(--font-secondary);
    font-weight: var(--semi-bold);
    font-size: var(--fs-p-xs);
    letter-spacing: 0.006316rem;
    line-height: normal;
    color: var(--color-green);
    display: block;
    margin-bottom: 0;
}

.bd_member_content_modal {
    padding-top: 1.1054rem;
    padding-bottom: 1.2238rem;
}

.bd_member_content_modal p {
    font-family: var(--font-secondary);
    font-size: 0.7895rem;
    line-height: 1.2633rem;
    margin-bottom: 0 !important;
    color: var(--color-darkgrey);
    opacity: 0.9;
}

.bd_member_content_modal p:not(last-child) {
    margin-bottom: 0.6448rem !important;
}

.social_list_modal {
    text-align: right;
    margin-bottom: 0px;
}

.social_list_modal .list-inline-item:not(:last-child) {
    margin-right: 1.0527rem;
}

.social_list_modal li a {
    color: var(--color-darkgrey);
    font-size: 0.986812rem;
    line-height: 112%;
    transition: none;
}

.social_list_modal li a:hover {
    color: var(--color-green) !important;
    transition: none;
}

/*.people_footer_modal .post_list_categories li .active {
    background-color: var(--actionBlue);
    border-color: var(--actionBlue);
}*/

.bd_member_modal .btn-close {
    position: absolute;
    top: 0.5921rem;
    right: 0.5921rem;
    font-size: .4rem;
}

/*  OUR TEAM PAGE CSS END  */


/*  OUR SERVICES PAGE CSS START  */
.bd_service_expertise_section {
    padding-top: 3.236744rem;
    padding-bottom: 4.657754rem;
    position: relative;
    overflow: hidden;
}

.bd_service_expertise_section .bd_steps_image_wapper {
/*     width: 21.473034rem; */
    height: calc(100% - 9.670760rem);
    border-radius: 1.26312rem 0 0 0;
    top: auto;
    bottom: 0;
    left: auto;
    right: 0;
}

.bd_service_expertise_section .bd_team_eyebrow {
	margin-bottom: 0 !important;
}

.bd_service_expertise_section .bd_step_content_wapper {
    max-width: 25.578173rem;
    margin-inline: 0 auto;
    margin-top: 3.157799rem;
}

.bd_service_expertise_section .bd_step_box_list li p {
    max-width: 22.420374rem;
}
/*  OUR SERVICES PAGE CSS END  */


/*  SINGLE PAGE CSS START  */
.bd_section_hero.bd_section_single_hero {
    padding-top: 2.565712rem;
}

.bd_section_hero.bd_section_single_hero:before {
    width: calc(100% - 2.526239rem);
	border-radius: 1.26312rem;
    background: linear-gradient(107deg, rgba(0, 153, 126, 0.08) 4.31%, rgba(0, 153, 126, 0.12) 93.95%);
}

.bd_section_hero.bd_section_single_hero .bd_hero_content {
    max-width: 100%;
    margin-inline: auto;
    text-align: center;
}

.bd_section_hero.bd_section_single_hero .bd_hero_content h1 {
    margin-bottom: 0;
}

.bd_single_content_section {
    padding-top: 3.157799rem;
    padding-bottom: 3.157799rem;
    position: relative;
    overflow: hidden;
}

.bd_single_content_box {
    width: 100%;
    max-width: 39.472490rem;
    margin-inline: auto;
    position: relative;
    overflow: hidden;
}

.bd_single_content_box h2,
.bd_single_content_box h3,
.bd_single_content_box h4,
.bd_single_content_box h5,
.bd_single_content_box h6 {
	color: var(--color-green);
	margin-bottom: 0.789450rem;
} 

.bd_single_content_box p {
	color: var(--color-darkgrey);
    margin-bottom: 0 !important;
}

.bd_single_content_box p:not(:last-child) {
    margin-bottom: 0.789450rem !important;
}
/*  SINGLE PAGE CSS END  */


/*  FOOTER CSS START  */
.bd_footer {
	padding-top: 1.578900rem;
	padding-bottom: 2.210459rem;
	position: relative;
	overflow: hidden;
	background: radial-gradient(70.53% 70.53% at 50% 29.47%, #414a4e 0%, #353d40 100%);
}

.bd_copyright_warpper,
.bd_footer_menu_wapper,
.bd_footer_main_warpper {
	width: 100%;
	max-width: 49.261667rem;
	margin-inline: auto;
	position: relative;
	overflow: hidden;
}

.bd_footer_main_warpper {
	padding-bottom: 1.144702rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
}

.bd_footer_logo_link {
	display: block;
	width: max-content;
	margin-inline: auto;
	text-decoration: none;
}

.bd_footer_logo_link img {
	display: block;
	margin-inline: auto;
	margin-bottom: 0.513142rem;
	max-width: 3.473579rem;
}

.bd_footer_logo_link span {
	font-family: var(--font-secondary);
	font-weight: var(--light);
	font-size: var(--fs-btn-xs);
	line-height: 150%; /* 21px */
	color: #fff;
}

.bd_social_link {
	display: flex;
	gap: 0.94734rem;
	position: absolute;
	bottom: 1.302592rem;
	right: 0.947340rem;
}

.bd_social_link a {
	font-size: 0.986812rem;
	color: #fff;
	text-decoration: none;
	transition: 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_social_link a:hover {
	color: var(--color-green);
	transition: 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_footer_menu_wapper {
	padding-top: 0.947340rem;
	padding-bottom: 0.907867rem;
	padding-inline: 0.94734rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bd_footer_menu {
	padding-left: 0;
	margin-bottom: 0;
	list-style: none;
	display: flex;
	align-items: center;
	gap: 1.5789rem;
	line-height: 0;
}

.bd_footer_menu li {
	font-family: var(--font-secondary);
	font-weight: var(--regular);
	font-size: var(--fs-btn-sm);
	line-height: normal;
	letter-spacing: 0.006316rem;
	color: #fff;
	opacity: 0.9;
}

.bd_footer_menu li a {
	color: #fff;
	text-decoration: none;
	opacity: 0.9;
	transition: 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_footer_menu li:nth-last-child(3) {
	flex-grow: 1;
}

.bd_footer_menu li a:hover {
	opacity: 1;
	text-decoration: underline;
	transition: 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

.bd_copyright_warpper {
	padding-top: 0.947340rem;
	padding-inline: 0.94734rem;
}

.bd_copyright_warpper p {
	font-family: var(--font-secondary);
	font-weight: var(--light);
	font-size: var(--fs-btn-xs);
	line-height: 150%; /* 21px */
	color: #fff;
	opacity: 0.9;
	display: flex;
	align-items: center;
	gap: 0.15789rem;
	margin-bottom: 0;
}

.bd_copyright_warpper p span {
	flex-grow: 1;
}

.bd_copyright_warpper p a {
	color: #fff;
	opacity: 0.9;
	font-weight: var(--light);
	text-decoration: underline;
}

.bd_copyright_warpper p a:hover {
	opacity: 1;
	text-decoration: none;
	transition: 0.35s cubic-bezier(0.3, 0.7, 0.4, 1);
}

/*  FOOTER CSS START  */


/*  AMINATION CSS START  */
@keyframes progress-bar-animation {
	0% {
		width: 0%;
	}
	100% {
		width: 100%;
	}
}
