/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');



/* Default CSS */
*{
	box-sizing: border-box;
}
html, body{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Inter", sans-serif;
}
body {
	background: var(--Light-blue, #F9FAFB);
}
h1,
h2,
h3,
h4,
h5,
h6{
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
}
p{
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
}
a{
	text-decoration: none;
	outline: none;
	border: none;
	font-weight: 500;
	-webkit-transition: color 350ms ease-in-out;
	-moz-transition: color 350ms ease-in-out;
	-ms-transition: color 350ms ease-in-out;
	-o-transition: color 350ms ease-in-out;
	transition: color 350ms ease-in-out;
}
a:focus,
a:hover{
	text-decoration: none;
	outline: none;
	border: none;
}
title{
	text-transform: capitalize;
}

/* Root variables */
:root{
	
	--primary-color: #3c89a5;
	--secondary-color: #363536;
	--hover-color: #42A735;
	--green-color: #008280;
	--black-color: #000;
	--white-color: #fff;
	--Rich-Teal: #255A66;
	--Slate: #4A545A;
	--Pure-White: #FFF;
	--Light-blue: #F9FAFB;
	--Blue-Gray: #E3EAF0;
	--Charcoal: #2F3438;
	--Warm-Gold: #D4A44A;
	--Soft-Gold: #E2BE6A;
	--Deep-Teal: #2E6F7E;
	--Error: #DB0808;

}

.container {
	max-width: 1090px;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}


/* Header section css start */
.main-header-sec{
	margin: 0px;
	padding: 15px 64px;
	border-bottom: 1px solid var(--Blue-Gray);
	background: var(--Pure-White);
}
.main-header-sec nav.navbar {
    padding: 0;
}
.main-header-sec .navbar-expand-lg .navbar-nav .nav-item {
    margin-right: 40px;
	position: relative;
	padding: 15px 0;
	display: flex;
    align-items: center;
    gap: 14px;
}
.main-header-sec .navbar-expand-lg .navbar-nav .nav-link {
	color: var(--Slate);
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	transition: all ease 0.4s;
	padding: 0;
	display: inline-flex;
    align-items: center;
    gap: 14px;
}
.main-header-sec .navbar-expand-lg .navbar-nav .nav-link:hover {
	color: #D4A44A;
}
.action-btn {
	display: flex;
	padding: 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	background: var(--Rich-Teal);
	color: var(--Pure-White);
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	border: 1px solid var(--Rich-Teal) !important;
    transition: all ease 0.4s;
}
.action-btn:hover {
	background: var(--Pure-White);
	color: var(--Rich-Teal) !important;
} 

.sub-menu {
	display: block;
	position: absolute;
	opacity: 0;
	visibility: hidden;
	-webkit-transform: translateY(20px);
	transform: translateY(20px);
	min-width: 200px;
	padding: 15px;
	border-radius: 0;
	border: 0;
	background-color: #fff;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
	box-shadow: 0 16px 50px rgb(0 0 0 / 7%);
	top: 100%;
}
.sub-menu li {
	list-style: none;
	margin: 0 0 10px;
}
.sub-menu li a {
	white-space: nowrap;
}
.main-header-sec .navbar-expand-lg .navbar-nav .nav-item:hover > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	transition: 1s;
	z-index: 1;
}
.main-header-sec .navbar-expand-lg .navbar-nav .nav-item span {
	line-height: 0;
	transition: all 0.3s;
} 
.main-header-sec .navbar-expand-lg .navbar-nav .nav-item:hover > span {
	transform: rotate(-180deg);
}

/* Header section css end */


/* Hero section css Start */
.hero-section {
	background: var(--Light-blue);
	display: flex;
	padding: 164px 64px;
	justify-content: space-between;
	align-items: flex-start;
}
.hero-content span {
	display: inline-flex;
	padding: 10px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 64px;
	border: 1px solid var(--Rich-Teal);
	background: #EFF3F3;
	color: var(--Rich-Teal);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.hero-content h2 {
	margin: 16px 0 24px;
	color: var(--Charcoal);
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.hero-content h2 strong {
	color: var(--Rich-Teal);
}
.hero-content p {
	color: #000;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.hero-action {
    display: flex;
    align-items: center;
    gap: 24px;
	margin: 40px 0 0;
}
.action-btn-unfill {
	display: flex;
	padding: 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	border: 1px solid var(--Rich-Teal) !important;
	background: var(--Pure-White);
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
    transition: all ease 0.4s;
}
.action-btn-unfill:hover {
	background: var(--Rich-Teal);
	color: var(--Pure-White);
}
.hero-image {
	box-shadow: 2px 10px 30px 0 rgba(0, 0, 0, 0.25);
	border-radius: 16px;
	background: rgba(46, 111, 126, 0.10);
}
.hero-image img {
	border-radius: 16px;
}

/* Hero section css End */

/* Our Mission section css Start */
.title {
	text-align: center;
}
.title h2 {
	margin: 0 0 16px;
	color: var(--Rich-Teal);
	text-align: center;
	font-family: Inter;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.title p {
	color: var(--Charcoal);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.our-mission {
	padding: 0 64px 80px;
	background: var(--Light-blue);
}
.our-mission-bar {
	display: flex;
	flex-wrap: wrap;
	margin: 40px -20px 40px;
}
.our-mission-item {
	width: 33.33%;
	padding: 0 20px;
}
.our-mission-in {
	padding: 40px 24px;
	border-radius: 16px;
	border: 1px solid #E3EAF0;
	background: #FFF;
	text-align: center;
	height: 100%;
}
.our-mission-in span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 8px;
	background: rgba(226, 190, 106, 0.30);
}
.our-mission-in h3 {
	margin: 24px 0 16px;
	color: var(--Charcoal);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.our-mission-in p {
	color: var(--Charcoal);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.our-mission-action {
    display: flex;
    justify-content: center;
}

/* Our Mission section css End */


/* How It Works section css Start */
.how-it-works {
	padding: 80px 64px;
	background: rgba(46, 111, 126, 0.10);
}
.how-it-works-item {
	display: flex;
	padding: 16px 24px;
	align-items: flex-start;
	gap: 40px;
	align-self: stretch;
	border-radius: 16px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
	margin: 40px 0 0;
	cursor: pointer;
	transition: all ease 0.3s
}
.how-it-works-item:hover {
	box-shadow: 2px 10px 30px 0 rgba(0, 0, 0, 0.25);
}
.works-step span {
	display: inline-flex;
	padding: 8px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 16px;
	background: rgba(46, 111, 126, 0.10);
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.works-content h3 {
	margin: 0 0 8px;
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.works-content p {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0 0 26px;
}
.works-content a {
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all ease 0.4s;
}
.works-content a:hover {
	color: #D4A44A;
}
.how-it-works-bar {
    max-width: 645px;
    margin: 0 auto;
}
.works-content {
	width: calc(100% - 22%);
} 

/* How It Works section css End */


/* Core Certification Programs section css Start */

.certification-programs {
	padding: 80px 64px;
	background: var(--Light-blue);
}
.certification-programs-bar {
	display: flex;
    flex-wrap: wrap;
    margin: 40px -12px 0;
}
.certification-item {
	width: 33.33%;
    padding: 0 12px;
}
.certification-in {
	padding: 24px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
	height: 100%;
}
.certification-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	border-radius: 64px;
	background: rgba(226, 190, 106, 0.30);
}
.certification-in h3 {
	margin: 24px 0 16px;
	color: var(--Rich-Teal);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.certification-in span {
	color: var(--Slate);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.certification-in p {
	margin: 16px 0 0;
	color: var(--Charcoal);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

/* Core Certification Programs section css End */


/* Specialty Courses section css Start */

.specialty-courses {
	background: var(--Light-blue);
	padding: 80px 135px;
}
.courses-item {
	padding: 0 12px;
}
.courses-in {
	border-radius: 16px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	height: 100%;
}
.courses-img img {
	width: 100%;
}
.courses-row {
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.courses-row span {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 4px 16px;
	border-radius: 16px;
	background: rgba(226, 190, 106, 0.30);
	color: var(--Rich-Teal);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.courses-row p {
	color: var(--Slate);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.courses-name {
	padding: 0 16px 24px;
	
}
.courses-name h3 {
	margin: 0 0 8px;
	color: var(--Rich-Teal);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.courses-name p {
	color: var(--Slate);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	padding: 0 0 30px;
	border-bottom: 1px solid var(--Blue-Gray, #E3EAF0);
}
.courses-topics {
	padding: 0 16px 24px;
}
.courses-topics span {
	display: inline-flex;
	align-items: center;
	color: var(--Rich-Teal);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	gap: 8px;
	margin: 0 0 11px;
}
.courses-topics ul {
	margin: 0;
	padding: 0;
}
.courses-topics ul li {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 5px;
}
.courses-topics ul li p {
	width: calc(100% - 30px);
	color: #000;
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.courses-box button.slick-arrow {
	width: 19.625px;
	height: 33.333px;
	background: url(../images/arrow.svg) no-repeat center;
	background-size: contain;
}
.courses-box button.slick-prev {
	left: -40px;
    transform: rotate(180deg) translate(0, 50%);
}
.courses-box button.slick-next {
	right: -40px;
}
.courses-box button.slick-arrow::before {
	display: none;
}
.courses-box button.slick-arrow.slick-disabled {
	opacity: 0.2;
}
.courses-box {
    margin: 40px -12px 0;
}
.courses-box .slick-track {
	display: flex;
}
.courses-box .slick-track .slick-slide {
	height: auto;
}
.courses-box .slick-dots {
	position: static;
	display: flex;
	text-align: center;
    align-items: center;
    justify-content: flex-end;
	margin: 24px 0 0;
} 
.courses-box .slick-dots li {
	width: auto;
    height: auto;
    margin: 0 0 0 16px;
}
.courses-box .slick-dots li button {
	width: 16px;
	height: 16px;
	border: 2px solid var(--Rich-Teal);
	border-radius: 50%;
}
.courses-box .slick-dots li.slick-active button {
	background: var(--Rich-Teal);
}
.courses-box .slick-dots li button:before {
	display: none;
}
.courses-action {
    display: flex;
    justify-content: center;
}

/* Specialty Courses section css End */


/* Adult Family Home Providers section css Start */
.family-home-providers {
	padding: 80px 64px;
	background: rgba(226, 190, 106, 0.20);
}
.home-providers-box {
    display: flex;
}
.home-providers-content {
    width: 60%;
	padding-right: 80px;
}
.home-providers-image {
    width: 40%;
}
.home-providers-image img {
	width: 100%;
	border-radius: 16px;
}
.home-providers-content .title {
	text-align: left;
}
.title span {
	display: inline-flex;
	padding: 10px 24px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 64px;
	border: 1px solid var(--Warm-Gold, #D4A44A);
	background: var(--Soft-Gold, #E2BE6A);
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0 0 16px;
}
.home-providers-content .title h2 {
	text-align: left;
}
.home-providers-content .title p {
	text-align: left;
}
.home-providers-content > p {
	color: #2F3438;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 20px 0 0;
}
.home-providers-content ul {
	padding: 0;
	margin: 0;
}
.home-providers-content ul li {
	color: #2F3438;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: relative;
	list-style: none;
	padding-left: 15px;
}
.home-providers-content ul li::before {
	    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    height: 6px;
    width: 6px;
    background: #2F3438;
    border-radius: 50%;
}
.home-providers-action {
    display: inline-flex;
    margin: 80px 0 0;
}

/* Adult Family Home Providers section css End */



/* Comprehensive Workforce Solutions section css Start */

.workforce-solutions {
	padding: 80px 64px;
	background: var(--Light-blue, #F9FAFB);
}
.workforce-solutions .title span {
	border: 1px solid var(--Rich-Teal, #255A66);
	background: #EFF3F3;
	color: var(--Rich-Teal, #255A66);
}
.workforce-solutions .title p {
	max-width: 680px;
    margin: 0 auto;
}
.workforce-solutions-box {
	display: flex;
	flex-wrap: wrap;
	margin: 40px -12px 16px;
}
.solutions-item {
	width: 50%;
	padding: 0 12px 24px;
}
.solutions-item-in {
	display: flex;
	padding: 40px 24px;
	align-items: flex-start;
	gap: 16px;
	flex: 1 0 0;
	border-radius: 16px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
}
.solutions-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: rgba(226, 190, 106, 0.30);
	border-radius: 8px;
}
.solutions-content {
	width: calc(100% - 70px);
}
.solutions-content h3 {
	margin: 0 0 16px;
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.solutions-content p {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.workforce-solutions-action {
    display: flex;
    justify-content: center;
}

/* Comprehensive Workforce Solutions section css End */


/* AFH CTA section css Start */
.afh-cta {
	padding: 80px 64px;
	background: var(--Deep-Teal, #2E6F7E);
}
.afh-cta .title h2 {
	color: var(--Pure-White);
}
.afh-cta .title p {
	color: var(--Pure-White);
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	max-width: 680px;
	margin: 0 auto;
}
.afh-cta-action {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
}
.afh-cta-action .action-btn {
	background: var(--Warm-Gold, #D4A44A);
	border: 1px solid var(--Warm-Gold) !important;
}
.afh-cta-action .action-btn:hover {
	background: var(--Pure-White);
    color: var(--Warm-Gold) !important;
} 
/* AFH CTA section css End */


/* Footer section css Start */
.footer-main {
	padding: 64px 72px 100px 72px;
	background: var(--Rich-Teal, #255A66);
}
.footer-top {
    display: flex;
    justify-content: space-between;
}
.footer-logo p {
	margin: 24px 0 0;
	color: var(--Pure-White);
	font-family: "Source Sans 3", sans-serif;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	width: 265px;
}
.footer-links h3 {
	color: var(--Pure-White);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding: 0 0 8px;
	margin: 0 0 24px;
	position: relative;
}
.footer-links h3::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--Soft-Gold, #E2BE6A);
}
.footer-links ul {
    padding: 0;
    margin: 0;
	display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-links ul li {
    list-style: none;
}
.footer-links ul li a {
	color: var(--Pure-White);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: all ease 0.3s;
}
.footer-links ul li a:hover {
	color: var(--Soft-Gold, #E2BE6A);
}
.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
	margin: 0 0 16px;
}
.footer-contact span {
	display: inline-flex;
	width: 20px;
}
.footer-contact a {
	color: var(--Pure-White);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: all ease 0.3s;
}
.footer-contact a:hover {
	color: var(--Soft-Gold, #E2BE6A);
}
.footer-contact p {
	color: var(--Pure-White);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.footer-council {
	display: flex;
	width: 1216px;
	padding: 16px 24px;
	justify-content: space-between;
	gap: 24px;
	border-radius: 16px;
	background: var(--Pure-White, #FFF);
	margin: 80px auto 0;
}
.footer-council-text {
	width: calc(100% - 29%);
	padding: 0 24px;
    border-left: 1px solid var(--Blue-Gray, #E3EAF0);
	display: flex;
    align-items: center;
}
.footer-council-text p {
	color: var(--Rich-Teal);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.footer-council-action {
    display: flex;
    align-items: center;
}
.footer-council-action .action-btn {
    background: var(--Warm-Gold, #D4A44A);
    border: 1px solid var(--Warm-Gold) !important;
}
.footer-council-action .action-btn:hover {
	background: var(--Pure-White);
    color: var(--Warm-Gold) !important;
}
.footer-bottom {
	display: flex;
	padding: 24px 64px;
	justify-content: space-between;
	align-items: center;
	background: var(--Light-blue, #F9FAFB);
}
.footer-bottom p {
	color: var(--Slate, #4A545A);
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.footer-bottom ul {
	margin: 0;
	padding: 0;
	display: flex;
}
.footer-bottom ul li {
    list-style: none;
    padding: 0 15px;
    border-left: 1px solid #4A545A;
}
.footer-bottom ul li:first-child {
	border-left:none;
}
.footer-bottom ul li:last-child {
	padding-right: 0;
}
.footer-bottom ul li a {
	color: var(--Slate, #4A545A);
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: all ease 0.3s;
}
.footer-bottom ul li a:hover {
	color: var(--Warm-Gold);
}

/* Footer section css End */


/* Responsive css Start */

@media screen and (max-width: 1400px){
	.footer-council {
		width: 100%;
	}
	.footer-council-text {
		width: calc(100% - 30%);
	}
}
@media screen and (max-width: 1300px) {
	.footer-council {
		width: 100%;
	}
	.footer-council-text {
		width: calc(100% - 33%);
	}
	.main-header-sec .navbar-expand-lg .navbar-nav .nav-item {
		margin-right: 25px;
	}
}
@media screen and (max-width: 1200px) {
	.main-header-sec {
		padding: 15px 20px;
	}
	.main-header-sec .navbar-expand-lg .navbar-nav .nav-item {
		margin-right: 20px;
	}
	.hero-section {
		padding: 80px 20px;
	}
	.hero-content {
		width: 50%;
	}
	.hero-image {
		box-shadow: 2px 5px 20px 0 rgba(0, 0, 0, 0.25);
		width: 45%;
	} 
	.hero-content h2 br {
		display: none;
	}
	.hero-image img {
		width: 100%;
	}
	.our-mission {
		padding: 0 20px 80px;
	}
	.how-it-works {
		padding: 80px 20px;
	}
	.certification-programs {
		padding: 80px 20px;
	}
	.specialty-courses {
		padding: 80px 50px;
	}
	.courses-box button.slick-prev {
		left: -20px;
	}
	.courses-box button.slick-next {
		right: -20px;
	}
	.family-home-providers {
		padding: 80px 20px;
	}
	.home-providers-content {
		padding-right: 50px;
	}
	.home-providers-action {
		margin: 50px 0 0;
	}
	.workforce-solutions {
		padding: 80px 20px;
	}
	.afh-cta {
		padding: 80px 20px;
	}
	.footer-main {
		padding: 64px 20px 80px 20px;
	}
	.footer-council {
		margin: 50px auto 0;
	}
	.footer-bottom {
		padding: 24px 20px;
	}
}
@media screen and (max-width: 1100px) {
	.main-header-sec .navbar-expand-lg .navbar-nav .nav-item {
        margin-right: 15px;
    }
	.main-header-sec .navbar-expand-lg .navbar-nav .nav-link {
		font-size: 16px;
	}
	.footer-council-text {
        width: calc(100% - 36%);
    }
}
@media screen and (max-width: 1024px) {
	.action-btn {
		padding: 15px;
	}
	.hero-section {
        padding: 60px 20px;
    }
	.hero-content h2 {
		font-size: 32px;
	}
	.hero-content p br {
		display: none;
	}
	.hero-action {
		margin: 30px 0 0;
	}
	.our-mission-bar {
		margin: 40px -12px 40px;
	}
	.our-mission-item {
		padding: 0 12px;
	}
	.our-mission {
        padding: 0 20px 50px;
    }
	.how-it-works {
        padding: 50px 20px;
    }
	.certification-programs {
        padding: 50px 20px;
    }
	.specialty-courses {
        padding: 50px 40px;
    }
	.courses-box button.slick-arrow {
		width: 15.625px;
	}
	.courses-box button.slick-prev {
        left: -15px;
    }
	.courses-box button.slick-next {
        right: -15px;
    }
	.courses-name p {
		padding: 0 0 20px;
	}
	.courses-row span {
		padding: 4px 10px;
	}
	.family-home-providers {
        padding: 50px 20px;
    }
	.workforce-solutions {
        padding: 50px 20px;
    }
	.title h2 {
		font-size: 28px;
	}
	.solutions-item-in {
		padding: 30px 24px;
	}
	.afh-cta {
        padding: 50px 20px;
    } 
	.footer-main {
        padding: 50px 20px 50px 20px;
    }
	.footer-council-text {
        width: calc(100% - 37%);
    }
	.our-mission-in {
		padding: 30px 24px;
	}
}
@media screen and (max-width: 991px) {
	.hero-section {
        padding: 50px 20px;
    }
	.hero-content h2 {
        font-size: 28px;
        margin: 15px 0 20px;
    }
	.hero-image {
		width: 47%;
	}
	.hero-action {
        margin: 20px 0 0;
    }
	.action-btn {
		font-size: 15px;
        padding: 12px;
    }
	.action-btn-unfill {
		padding: 12px;
		font-size: 15px;
	}
	.title h2 {
        font-size: 26px;
    }
	.our-mission-bar {
        margin: 30px 0 30px;
		row-gap: 24px;
    }
	.our-mission-item {
        padding: 0;
        width: 100%;
    }
	.title p br {
		display: none;
	}
	.how-it-works-item {
		margin: 30px 0 0;
	}
	.certification-programs-bar {
		margin: 30px 0 0;
		row-gap: 24px;
	}
	.certification-item {
		width: 100%;
		padding: 0;
	}
	.home-providers-box {
		flex-direction: column-reverse;
		align-items: center;
		gap: 30px;
	}
	.home-providers-content {
        padding: 0;
        width: 100%;
    }
	.home-providers-image {
		width: 60%;
	}
	.home-providers-action {
        margin: 30px 0 0;
    }
	.workforce-solutions .title p {
		max-width: 100%;
	}
	.workforce-solutions-box {
		margin: 40px -12px 40px;
		row-gap: 24px;
	}
	.solutions-item {
		padding-bottom: 0;
	}
	.solutions-item-in {
		height: 100%;
		flex-direction: column;
	}
	.solutions-content {
		width: 100%;
	}
	.afh-cta .title p {
		max-width: 100%;
		font-size: 18px;
	}
	.afh-cta-action {
		margin: 30px 0 0;
	}
	.footer-top {
		flex-wrap: wrap;
    	row-gap: 30px;
	}
	.footer-logo {
		width: 100%;
		display: flex;
		gap: 30px;
		align-items: center;
	}
	.footer-logo p {
		width: 100%;    
		margin: 0;
	}
	.footer-council {
        margin: 40px auto 0;
		padding: 16px 20px;
		gap: 20px;
    }
	.footer-council-text {
        width: calc(100% - 45%);
        padding: 0 20px;
    }
	.footer-council-text p {
		font-size: 15px;
	}
	.certification-in {
		text-align: center;
	}
	.header-action {
		display: flex;
		align-items: center;
		gap: 24px;
	}
	.main-header-sec {
		position: relative;
	}
	.main-header-sec nav.navbar {
		position: static;
	}
	.navbar-collapse {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		border-radius: 0 0 8px 8px;
		background: var(--Rich-Teal);
		box-shadow: 0px 5px 5px 0 rgba(0, 0, 0, 0.25);
		z-index: 1;
	}
	.main-header-sec .navbar-expand-lg .navbar-nav .nav-link {
		color: var(--Pure-White);
		display: flex;
		justify-content: space-between;
		padding: 15px 20px;
		background: var(--Rich-Teal);
		z-index: 1;
        position: relative;
		width: 100%;
	}
	.main-header-sec .navbar-expand-lg .navbar-nav .nav-item {
        margin-right: 0;
		padding: 0 0;
		border-bottom: 1px solid var(--Pure-White);
		overflow: hidden;
		min-height: 50px;
		flex-direction: column;
        align-items: flex-start;
		gap: 0;
    }
	.main-header-sec .navbar-expand-lg .navbar-nav .nav-item:last-child {
		border-bottom:none;
	}
	.main-header-sec .navbar-expand-lg .navbar-nav .nav-item span svg path {
		fill: var(--Pure-White);
	}
	.sub-menu {
		position: relative;
		transform: translateY(0);
		width: 100%;
    	margin: -100% 0 0;
		background: var(--Rich-Teal);
		box-shadow: none;
		padding: 0;
		z-index: 0;
	}
	.main-header-sec .navbar-expand-lg .navbar-nav .nav-item:hover > .sub-menu {
		margin: 0 0 0;
		z-index: 0;
	}
	.sub-menu li {
		padding: 0;
    	border-top: 1px solid var(--Pure-White);
		margin: 0;
	}
	.sub-menu li:last-child {
		padding-bottom: 0;
	}
	.sub-menu li a {
		padding: 15px 50px !important;
	}
	button.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0,0,0,0.7)' stroke-linecap='round' stroke-width='2' d='M7 7L23 23M23 7L7 23'/%3E%3C/svg%3E");
	}
	button.navbar-toggler {
		padding: 4px 10px;
	}
	.navbar-toggler:focus {
		box-shadow:none;
	}
	.main-header-sec .navbar-expand-lg .navbar-nav .nav-item span {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: 50px;
		width: 50px;
		position: absolute;
		top: 0;
		right: 0;
		z-index: 111;
	}

}
@media screen and (max-width: 767px) {
	.hero-section {
		flex-direction: column-reverse;
        row-gap: 24px;
	}
	.hero-content {
        width: 100%;
		text-align: center;
    }
    .hero-image {
        width: 100%;
    }
	.hero-content span {
		padding: 10px 20px;
	}
	.hero-content h2 {
		font-size: 24px;
	}
	.hero-action {
		gap: 20px;
		justify-content: center;
	}
	.our-mission-bar {
        margin: 20px 0 20px;
    }
	.title h2 {
        font-size: 24px;
    }
	.how-it-works-bar {
		max-width: 100%;
	}
	.how-it-works-item {
        margin: 24px 0 0;
        flex-direction: column;
        gap: 20px;
        padding: 20px 24px;
		align-items: center;
    }
	.works-content {
		width: 100%;
		text-align: center;
	}
	.works-content p {
		margin: 0 0 20px;
	}
	.certification-programs-bar {
        margin: 20px 0 0;
    }
	.certification-in {
		padding: 20px;
		text-align: center;
	}
	.specialty-courses {
        padding: 50px 30px;
    }
	.courses-box button.slick-arrow {
        width: 12.625px;
    }
	.courses-box button.slick-prev {
        left: -10px;
    }
	.courses-box button.slick-next {
        right: -10px;
    }
	.courses-box .slick-dots {
		justify-content: center;
	}
	.courses-box .slick-dots li {
		margin: 0 8px;
	}
	.home-providers-image {
        width: 100%;
    }
	.title span {
		padding: 10px 20px;
	}
	.home-providers-action {
        margin: 20px 0 0;
		display: flex;
        justify-content: center;
    }
	.workforce-solutions-box {
        margin: 20px 0 20px;
    }
	.solutions-item {
		width: 100%;
		padding: 0;
	}
	.afh-cta-action {
        margin: 20px 0 0;
    }
	.footer-logo {
		gap: 20px;
		flex-direction: column;
	}
	.footer-logo p {
		font-size: 16px;
		text-align: center;
	}
	.footer-links ul {
		gap: 12px;
	}
	.footer-council {
		flex-direction: column;
        align-items: center;
	}
	.footer-council-text {
        width: 100%;
        padding: 0;
    }
	.footer-bottom {
        padding: 20px 20px;
        flex-direction: column;
		row-gap: 20px;
    }
	.footer-bottom p {
		text-align: center;
	}
	.solutions-item-in {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	.solutions-content {
		width: 100%;
	}
	.certification-in h3 {
		margin: 20px 0 15px;
	}
	.home-providers-content .title , .home-providers-content .title h2 , .home-providers-content .title p {
		text-align: center;
	}
	.home-providers-content ul + p {
		text-align: center;
	}
	.navbar-brand {
		max-width: 190px;
		margin: 0;
	}
	.header-action {
		gap: 15px;
	}
	.header-action .action-btn {
        font-size: 12px;
        padding: 10px;
    }
	button.navbar-toggler {
		padding: 2px 6px;
	}

}
@media screen and (max-width: 400px) {
	.main-header-sec {
        padding: 15px 15px;
    }
	.navbar-brand {
		max-width: 170px;
		margin: 0;
	}
	.header-action {
		gap: 10px;
	}
	button.navbar-toggler {
		padding: 2px 5px;
	}
}

/* Responsive css End */



/* About Us css Start */

.about-hero {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(90deg, rgba(46, 111, 126, 0.75) 2.52%, rgba(46, 111, 126, 0.80) 4.04%, rgba(46, 111, 126, 0.40) 52.79%, rgba(46, 111, 126, 0.10) 62.3%, rgba(46, 111, 126, 0.00) 71.63%), url(../images/about-hero.png) lightgray 0.404px -201.104px / 100% 244.657% no-repeat;
}
.inner-hero {
	padding: 80px 64px;
}
.inner-hero-content {
	border-radius: 16px;
	border: 1px solid rgba(227, 234, 240, 0.30);
	background: rgba(37, 90, 102, 0.05);
	backdrop-filter: blur(6px);
	width: 740px;
	padding: 24px;
}
.inner-hero-content span {
	color: var(--Soft-Gold, #E2BE6A);
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	position: relative;
	display: inline-flex;
    align-items: center;
    gap: 8px;
}
.inner-hero-content span::before {
	content: "";
	width: 40px;
	height: 2px;
	display: inline-block;
	background: var(--Soft-Gold, #E2BE6A);
}
.inner-hero-content h1 {
	margin: 16px 0 8px;
	color: #FFF;
	font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.inner-hero-content h3 {
	color: var(--Pure-White, #FFF);
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.tab-bar {
	padding: 8px 64px;
	border-bottom: 1px solid var(--Blue-Gray, #E3EAF0);
}
.tab-bar ul {
    gap: 40px;
	border: none;
}
.tab-bar ul li button {
	display: flex;
	padding: 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: #000 !important;
	text-align: center;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	border: none !important;
	border-radius: 0 !important;
	margin: 0;
	border-bottom: 4px solid transparent !important;
}
.tab-bar ul li button:hover {
	border: none !important;
	border-radius: 0 !important;
	color: var(--Rich-Teal, #255A66) !important;
	border-bottom-color:transparent !important;
}
.tab-bar ul li button.active {
	border:none !important;
	border-radius: 0 !important;
	border-bottom: 4px solid var(--Warm-Gold, #D4A44A) !important;
	background: transparent !important;
	color: var(--Rich-Teal, #255A66) !important;
}
.tab-content {
	padding: 80px 64px;
}
.tab-content .title p {
	max-width: 920px;
	margin: 0 auto;
}
.tab-content-text {
	padding: 24px;
	border-radius: 16px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: var(--Pure-White, #FFF);
	max-width: 920px;
	margin: 40px auto 0;
}
.tab-content-text p {
	color: var(--Charcoal, #2F3438);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.tab-values {
	display: flex;
	flex-wrap: wrap;
	row-gap: 24px;
	margin: 40px -12px 0;
	padding: 0 64px;
}
.tab-values-item {
	width: 33.33%;
	padding: 0 12px;
}
.tab-values-in {
	padding: 24px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
	height: 100%;
}
.tab-values-in h4 {
	margin: 0 0 16px;
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.tab-values-in p {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.what-we-do .solutions-item-in {
	flex-direction: column;
	padding: 24px;
	height: 100%;
}
.what-we-do .solutions-content {
	width: 100%;
}
.what-we-do .solutions-item {
	padding-bottom: 0;
}
.what-we-do .workforce-solutions-box {
	margin-bottom: 0;
	row-gap: 24px;
}


.board-directors {
	padding: 80px 64px;
}
.directors-box {
	display: flex;
	flex-wrap: wrap;
	margin: 40px -12px 0;
}
.directors-item {
	width: 25%;
	padding: 0 12px;
}
.director-image img {
	width: 100%;
	border-radius: 16px;
}
.director-name {
	text-align: center;
	padding: 24px 0 0;
}
.director-name h3 {
	margin: 0 0 8px;
	color: var(--Charcoal, #2F3438);
	text-align: center;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.director-name span {
	color: var(--Slate, #4A545A);
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.our-team {
	padding: 80px 64px;
}
.our-team-box {
	display: flex;
	flex-wrap: wrap;
	margin: 40px -12px 0;
	justify-content: space-between;
}
.our-team-item {
	width: 30%;
	padding: 0 12px;
}
.our-team-in {
	padding: 40px 0 80px 0;
	border-radius: 16px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: var(--Pure-White, #FFF);
	text-align: center;
}
.our-team-image img {
    border-radius: 50%;
	height: 235px;
	width: 235px;
}
.our-team-name {
	padding: 40px 0 0;
}
.our-team-name h3 {
	margin: 0 0 8px;
	color: var(--Charcoal, #2F3438);
	text-align: center;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.our-team-name span {
	color: var(--Slate, #4A545A);
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.governance-documents {
	padding: 80px 64px;
}
.governance-box {
    display: flex;
    gap: 40px;
	margin: 40px 0 0;
}
.governance-item {
	padding: 40px 24px;
	border-radius: 16px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
}
.governance-in {
	display: flex;
	gap: 16px;
}
.governance-icon {
	display: flex;
	width: 51px;
	height: 52px;
	justify-content: center;
	align-items: center;
	border-radius: 8px;
	background: rgba(46, 111, 126, 0.10);
}
.governance-content h3 {
	margin: 0 0 16px;
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.governance-content p {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.governance-content {
	width: calc(100% - 70px);
}
.governance-item a.download-action {
	display: flex;
	padding: 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	background: var(--Rich-Teal, #255A66);
	color: var(--Pure-White, #FFF);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 48px 0 0;
}
.governance-content strong {
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 70px 0 0;
    display: block;
}

/* Responsive css Start */
@media screen and (max-width: 1200px) {
	.inner-hero {
		padding: 80px 20px;
	}
	.tab-bar {
		padding: 8px 20px;
	}
	.tab-content {
		padding: 80px 20px;
	}
	.board-directors {
		padding: 80px 20px;
	} 
	.our-team {
		padding: 80px 20px;
	}
	.governance-documents {
		padding: 80px 20px;
	}
}
@media screen and (max-width: 1024px) {
	.inner-hero {
		padding: 50px 20px;
	}
	.tab-content {
		padding: 50px 20px;
	}
	.board-directors {
		padding: 50px 20px;
	} 
	.our-team {
		padding: 50px 20px;
	}
	.governance-documents {
		padding: 50px 20px;
	}
	.about-hero {
		background-size: cover;
    	background-position: center;
	}
	.inner-hero-content h1 {
		font-size: 32px;
	}
	.inner-hero-content h3 {
		font-size: 20px;
	}
	.inner-hero-content {
		width: 700px;
	}
	.tab-values {
		padding: 0 20px;
	}
	.our-team-item {
		padding: 0 12px;
	}
	.our-team-in {
		padding: 40px 20px 40px 20px;
	}
}
@media screen and (max-width: 991px) {
	.inner-hero-content {
        width: 75%;
    }
	.inner-hero-content h1 {
        font-size: 28px;
    }
	.tab-content .title p {
		max-width: 100%;
	}
	.tab-values-item {
		width: 50%;
	}
	.what-we-do .solutions-item {
		width: 50%;
    	padding: 0 12px;
	}
	.what-we-do .workforce-solutions-box {
		margin: 30px -12px 0;
	}
	.directors-item {
		width: 50%;
	}
	.directors-box {
		row-gap: 40px;
	}
	.our-team-item {
		width: 50%;
	}
	.our-team-box {
		justify-content: center;
    	row-gap: 24px;
	}
}
@media screen and (max-width: 767px) {
	.our-team-item {
        width: 100%;
    }
	.our-team-name {
		padding: 20px 0 0;
	}
	.our-team-in {
        padding: 20px;
    }
	.governance-box {
		gap: 20px;
		margin: 20px 0 0;
		flex-direction: column;
	}
	.about-hero {
		background-position: center right;
	}
	.inner-hero-content {
		padding: 20px;
	}
	.inner-hero-content {
        width: 100%;
    }
	.inner-hero-content h1 {
        font-size: 24px;
    }
	.inner-hero-content span {
    	font-size: 20px;
	}
	.inner-hero-content span::before {
		width: 30px;
	}
	.inner-hero-content h3 {
        font-size: 18px;
    }
	.tab-bar ul {
		gap: 10px;
	}
	.tab-bar ul li button  {
		font-size: 16px;
		padding: 14px;
	}
	.tab-content-text {
		padding: 20px;
		max-width: 100%;
    	margin: 20px auto 0;
	}
	.tab-values {
        padding: 0 0;
        margin: 20px 0 0;
    }
	.tab-values-item {
        width: 100%;
		padding: 0;
    }
	.tab-values-in {
		padding: 20px;
		text-align: center;
	}
	.what-we-do .workforce-solutions-box {
        margin: 20px 0 0;
		row-gap: 20px;
    }
	.what-we-do .solutions-item {
        width: 100%;
        padding: 0;
    }
	.directors-box {
        row-gap: 24px;
        margin: 20px 0 0;
    }
	.directors-item {
        width: 100%;
        padding: 0;
    }
	.director-name {
		padding: 20px 0 0;
	}
	.our-team-box {
		margin: 20px 0 0;
	}
	.governance-item {
		padding: 20px 20px;
	}
	.governance-item a.download-action {
		margin: 30px 0 0;
	}
	.governance-content strong {
		margin: 30px 0 0;
	}
	.governance-content h3 {
		font-size: 22px;
	}
	.director-name h3 {
		font-size: 22px;
	}
}

/* About Us css End */


/* Programs Services css Start */
.programs-services-hero {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%), linear-gradient(90deg, rgba(46, 111, 126, 0.75) 2.52%, rgba(46, 111, 126, 0.80) 4.04%, rgba(46, 111, 126, 0.40) 52.79%, rgba(46, 111, 126, 0.10) 62.3%, rgba(46, 111, 126, 0.00) 71.63%), url(../images/programs-services-hero.png) lightgray 0.275px -105.144px / 100% 244.657% no-repeat;
}
.inner-hero-content .action-btn-unfill {
	display: inline-flex;
	background: transparent;
	border-radius: 8px;
	border: 1px solid var(--Pure-White, #FFF) !important;
	color: var(--Pure-White);
	margin: 24px 0 0;
}
.inner-hero-content .action-btn-unfill:hover {
	background: var(--Pure-White);
	color: var(--Rich-Teal);
}

.check-your-eligibility {
	padding: 80px 64px;
}
.check-your-box {
	padding: 40px;
	border-radius: 16px 16px 0 0;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: rgba(46, 111, 126, 0.02);
}
.check-your-top {
	display: flex;
	padding-bottom: 24px;
	align-items: center;
	gap: 40px;
	align-self: stretch;
	border-bottom: 1px solid var(--Blue-Gray, #E3EAF0);
}
.check-your-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 91px;
	height: 91px;
	background: rgba(226, 190, 106, 0.30);
	border-radius: 50%;
}
.check-your-content h2 {
	margin: 0 0 8px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.check-your-content p {
	color: #000;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.check-your-content small {
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	line-height: normal;
}
.check-your-content {
	width: calc(100% - 130px);
}
.check-your-list {
	display: flex;
	gap: 80px;
	margin: 40px 0 0;
}
.check-list-item {
	width: 50%;
}
.check-list-item h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.check-list-item h3 span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: rgba(226, 190, 106, 0.30);
	border-radius: 50%;
}
.check-list-item ul {
	margin: 0;
	padding: 0;
}
.check-list-item ul li {
	list-style: none;
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	position: relative;
	margin: 16px 0 0;
	padding-left: 32px;
	min-height: 22px;
}
.check-list-item ul li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 22px;
	height: 22px;
	display: inline-flex;
	background: url(../images/check-icon.svg) no-repeat center;
	background-size: contain;
}
.check-your-ready {
	display: flex;
	padding: 16px 40px;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	border-radius: 0 0 16px 16px;
	background: rgba(46, 111, 126, 0.10);
}
.check-ready-text h3 {
	margin: 0 0 8px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.check-ready-text p {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.check-ready-text {
	width: calc(100% - 22%);
}
.our-programs {
	padding: 0 64px;
}
.our-programs .solutions-content a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin:40px 0 0;
	transition: all ease 0.4s;
}
.our-programs .solutions-content a:hover {
	color: #D4A44A;
}
.our-programs .solutions-item-in {
	padding-bottom: 24px;
	transition: all ease 0.3s;
	cursor: pointer;
	height: 100%;
}
.our-programs .solutions-item-in:hover {
	box-shadow: 2px 10px 30px 0 rgba(0, 0, 0, 0.25);
}
.our-programs .solutions-item {
	padding-bottom: 0;
}
.our-programs .workforce-solutions-box {
	margin-bottom: 0;
	row-gap: 24px;
}
.program-support {
	padding: 80px 64px;
}

/* Responsive css Start */
@media screen and (max-width: 1400px) { 
	.programs-services-hero {
		background-size: cover;
	}
}
@media screen and (max-width: 1200px) {
	.check-your-eligibility {
		padding: 80px 20px;
	}
	.our-programs {
		padding: 0 20px;
	}
	.program-support {
		padding: 80px 20px;
	}
	.check-ready-text {
		width: calc(100% - 24%);
	}	
}
@media screen and (max-width: 1100px) {
	.programs-services-hero .inner-hero-content {
		width: 650px;
	}
}
@media screen and (max-width: 1024px) {
	.check-your-eligibility {
        padding: 50px 20px;
    }
	.check-ready-text {
        width: calc(100% - 25%);
    }
	.program-support {
        padding: 50px 20px;
    }
	.check-your-content h2 {
		font-size: 28px;
	}
}
@media screen and (max-width: 991px) {
	.programs-services-hero .inner-hero-content {
        width: 75%;
    }
	.check-your-box {
		padding: 30px;
	}
	.check-your-content h2 {
		font-size: 26px;
	}
	.check-your-list {
		display: flex;
		gap: 40px;
		margin: 30px 0 0;
	}
	.check-your-ready {
		padding: 16px 30px;
	}
	.check-ready-text {
        width: calc(100% - 30%);
    }
	.our-programs .solutions-content a {
		margin: 30px 0 0;
	}
}
@media screen and (max-width: 767px) {
	.programs-services-hero {
        background-size: cover;
        background-position: center;
    }
	.programs-services-hero .inner-hero-content {
        width: 100%;
    }
	.inner-hero-content .action-btn-unfill {
		margin: 20px 0 0;
	}
	.check-your-box {
        padding: 20px;
    }
	.check-your-top {
		padding-bottom: 20px;
		gap: 20px;
		flex-direction: column;
	}
	.check-your-content {
		width: 100%;
		text-align: center;
	}
	.check-your-list {	
        gap: 30px;
        margin: 20px 0 0;
        flex-direction: column;
    }
	.check-list-item {
		width: 100%;
	}
	.check-your-ready {
        padding: 16px 20px;
        flex-direction: column;
		gap: 20px;
    }
	.check-ready-text {
        width: 100%;
        text-align: center;
    }
	.our-programs .solutions-item-in {
		padding-top: 24px;
	}
	.our-programs .solutions-content a {
        margin: 20px 0 0;
    }
}

/* Programs Services css End */

/* AFH-provider-pathway css Start */
.provide-hero {
	padding: 16px 64px 40px;
	background: var(--Pure-White);
}
.breadcurmb ul {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	gap: 12px;
}
.breadcurmb ul li {
	list-style: none;
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}
.breadcurmb ul li::after {
	content: "";
	width: 7.4px;
	height: 12px;
	display: inline-block;
	background: url(../images/arrow-right.svg) no-repeat center;
	background-size: contain;
}
.breadcurmb ul li:last-child:after {
	display: none;
}
.breadcurmb ul li a {
	color: var(--Slate, #4A545A);
	text-align: center;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.breadcurmb ul li.active a {
	color: var(--Rich-Teal, #255A66);
	font-weight: 500;
}
.provide-hero-title {
	padding: 40px 0 0;
	text-align: center;
}
.provide-hero-title h1 {
	color: var(--Rich-Teal, #255A66);
	text-align: center;
	font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.afh-provider .tab-content {
    padding: 20px 64px;
}
.provider-tab-content p {
	margin: 20px 0 0;
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.provider-tab-content p:first-child {
	margin: 0;
}
.provider-tab-content ul {
	margin: 0;
}
.provider-tab-content ul li {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.afh-provider {
	background: var(--Pure-White);
}
.ready-caregiver {
	padding: 80px 64px;
	background: var(--Pure-White);
}
.ready-caregiver-box {
	display: flex;
	padding: 24px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-radius: 16px;
	background: var(--Pure-White, #FFF);
	box-shadow: 2px 8px 24px 0 rgba(0, 0, 0, 0.25);
}
.ready-caregiver-content {
	width: calc(100% - 25%);
}
.ready-caregiver-content h3 {
	margin: 0 0 8px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.ready-caregiver-content p {
	color: var(--Slate, #4A545A);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.ready-caregiver-action .action-btn {
    background: var(--Warm-Gold, #D4A44A);
    border: 1px solid var(--Warm-Gold) !important;
}
.ready-caregiver-action .action-btn:hover {
    background: var(--Pure-White);
    color: var(--Warm-Gold) !important;
}

/* Responsive css Start */
@media screen and (max-width: 1200px) {
	.provide-hero {
		padding: 16px 20px 40px;
	}
	.afh-provider .tab-content {
		padding: 20px 20px;
	}
	.ready-caregiver {
		padding: 80px 20px;
	}
}
@media screen and (max-width: 1024px) {
	.provide-hero-title h1 {
		font-size: 32px;
	}
	.ready-caregiver {
        padding: 50px 20px;
    }
	.tab-bar ul {
		gap: 24px;
	}
}
@media screen and (max-width: 991px) {
	.provide-hero {
        padding: 16px 20px 30px;
    }
	.provide-hero-title {
		padding: 30px 0 0;
	}
	.provide-hero-title h1 {
        font-size: 28px;
    }
	.tab-bar ul {
        gap: 14px;
    }
	.tab-bar ul li button {
		padding: 10px;
		font-size: 16px;
	} 
	.tab-bar ul {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding: 0 0 5px;
	}
	.tab-bar ul li button {
		white-space: nowrap;
	}
}
@media screen and (max-width: 767px) {
	.provide-hero-title h1 {
        font-size: 24px;
    }
	.provide-hero {
        padding: 16px 20px 20px;
    }
	.ready-caregiver-box {
		padding: 20px;
		gap: 20px;
		flex-direction: column;
	}
	.ready-caregiver-content {
		width: 100%;
		text-align: center;
	}
}

/* AFH-provider-pathway css End */


/* Resources Page css Start */
.resources-hero {
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%), linear-gradient(90deg, rgba(46, 111, 126, 0.75) 2.52%, rgba(46, 111, 126, 0.80) 4.04%, rgba(46, 111, 126, 0.40) 52.79%, rgba(46, 111, 126, 0.10) 62.3%, rgba(46, 111, 126, 0.00) 71.63%), url(../images/resources.png) lightgray 0.275px -204.377px / 100% 244.657% no-repeat;
}
.quick-links {
	padding: 80px 64px;
}
.quick-links-box {
	padding: 24px;
	border-radius: 16px;
	background: rgba(46, 111, 126, 0.10);
}
.quick-links-box .title {
	text-align: left;
}
.quick-links-box .title h2 {
	text-align: left;
}
.quick-links-row {
    display: flex;
    gap: 19px;
}
.quick-links-row a {
	width: 50%;
}
.quick-links-item {
	display: flex;
	padding: 24px;
	gap: 16px;
	border-radius: 16px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
}
.quick-links-content h4 {
	margin: 0 0 8px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.quick-links-content p {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.quick-links-content {
	width: calc(100% - 70px);
}
.featured-resources {
	padding: 80px 0 0;
}
.featured-resources .title {
	text-align: left;
}
.featured-resources .title h2 {
	text-align: left;
}
.featured-box {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}
.featured-item {
	width: 25%;
	padding: 0 12px;
}
.featured-item-in {
	padding: 24px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
	height: 100%;
}
.featured-title {
	display: flex;
	align-items: center;
	gap: 15px;
}
.featured-title h4 {
	color: #000;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	width: calc(100% - 46px);
}
.featured-item-in p {
	color: #000;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 26px 0;
	min-height: 77px;
}
.featured-item-in a {
	display: flex;
	padding: 12px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	border: 2px solid var(--Rich-Teal, #255A66);
	background: var(--Pure-White, #FFF);
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	transition: all ease 0.4s;
}
.featured-item-in a:hover {
	background: var(--Rich-Teal, #255A66);
	color: var(--Pure-White, #FFF);
}
.featured-item-in a svg path {
	transition: all ease 0.4s;
}
.featured-item-in a:hover svg path {
	fill: #fff;
}

.most-recent {
	padding: 0 64px 80px;
}
.search-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.search-input {
	width: calc(100% - 215px);
}
.search-input input {
	padding: 12px 24px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: var(--Pure-White, #FFF) url(../images/search-icon.svg) no-repeat center left 24px;
	width: 100%;
	padding-left: 50px;
}
.sort-recent {
    display: flex;
    padding: 12px 16px;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    border: 1px solid var(--Blue-Gray, #E3EAF0);
    background: var(--Pure-White, #FFF);
}
.sort-recent label {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.sort-recent select {
	color: #000;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	border: none;
}
.sort-recent select:focus-visible {
	border: none;
	box-shadow: none;
	outline:none;
}
.table-wrapper table {
    width: 100%;
    border: 1px solid var(--Blue-Gray, #E3EAF0);
}
.table-wrapper table th {
	padding: 18px 24px;
	background: rgba(46, 111, 126, 0.05);
	color: var(--Rich-Teal, #255A66);
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.table-wrapper table th:first-child {
	text-align: left;
}
.table-wrapper table td {
	padding: 16px 24px;
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.table-wrapper table td .resource-name {
    display: flex;
    align-items: center;
    gap: 8px;
}
.table-wrapper table tbody tr {
	border-bottom: 1px solid var(--Blue-Gray, #E3EAF0);
	background: var(--Pure-White, #FFF);
}
.table-wrapper table td button.download-btn {
	display: inline-flex;
	align-items: center;
	padding: 12px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	border: 2px solid var(--Rich-Teal, #255A66);
	background: var(--Pure-White, #FFF);
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	transition: all ease 0.4s;
}
.table-wrapper table td button.download-btn:hover {
	background: var(--Rich-Teal, #255A66);
	color: var(--Pure-White);
}
.table-wrapper table td button.download-btn svg path {
	transition: all ease 0.4s;
}
.table-wrapper table td button.download-btn:hover svg path {
	fill: #fff;
}

.most-recent .tab-bar {
    padding: 16px 0 40px;
    border: none;
}
.most-recent .tab-bar ul.nav-tabs {
	gap: 8px;
}
.most-recent .tab-bar ul.nav-tabs li button {
	display: flex;
	padding: 12px 40px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px !important;
	border: 1px solid var(--Blue-Gray, #E3EAF0) !important;
	background: var(--Pure-White, #FFF);
	color: #000 !important;
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: all ease 0.4s;
}
.most-recent .tab-bar ul.nav-tabs li button.active {
	border: 1px solid var(--Soft-gray, #E2E2E0) !important;
	background: var(--Deep-Teal, #2E6F7E) !important;
	color: var(--Pure-White, #FFF) !important;
}
.most-recent .tab-bar ul.nav-tabs li button:hover {
	border: 1px solid var(--Soft-gray, #E2E2E0) !important;
	background: var(--Deep-Teal, #2E6F7E) !important;
	color: var(--Pure-White, #FFF) !important;
}
.most-recent .tab-content {
	padding: 0;
}
.pagination-bar {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 5px;
	margin: 24px 0 0;
}
.pagination-bar a {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.pagination-bar a svg path {
	fill: #255A66;
}
.pagination-bar .disable {
	opacity: 0.5;
}
.pagination-bar a.prev {
	margin-right: 10px;
}
.pagination-bar a.next {
	margin-left: 10px;
	color: var(--Rich-Teal, #255A66);
}
.pagination-bar .page-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 32px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 15px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	transition: all ease 0.4s;
}
.pagination-bar .page-number.active {
	background: var(--Rich-Teal, #255A66);
	color: var(--Pure-White, #FFF);
} 
.pagination-bar .page-number:hover {
	background: var(--Rich-Teal, #255A66);
	color: var(--Pure-White, #FFF);
} 

/* Responsive css Start */

@media screen and (max-width: 1400px) {
	.featured-title h4 {
		font-size: 18px;
	}
	.featured-item-in p {
		min-height: 96px;
	}
	.most-recent .tab-bar ul.nav-tabs li button {
		padding: 12px 30px;
	}
}
@media screen and (max-width: 1300px) {
	.most-recent .tab-bar ul.nav-tabs li button {
        padding: 12px 25px;
    }
}
@media screen and (max-width: 1200px) {
	.resources-hero {
		background-size: cover;
	}
	.quick-links {
		padding: 80px 20px;
	}
	.quick-links-item {
		height: 100%;
	}
	.most-recent {
		padding: 0 20px 80px;
	}
	.table-wrapper table th {
		font-size: 18px;
	}
	.table-wrapper table td {
		font-size: 18px;
	}
}
@media screen and (max-width: 1100px) {
	.featured-item-in a {
		padding: 12px 12px;
	}
	.featured-item-in p {
        min-height: 116px;
    }
	.most-recent .tab-bar ul.nav-tabs li button {
        padding: 12px 20px;
    }
}
@media screen and (max-width: 1024px) {
	.quick-links {
        padding: 50px 20px;
    }
	.featured-resources {
		padding: 50px 0 0;
	}
	.featured-box {
		row-gap: 24px;
	}
	.featured-item {
		width: 50%;
	}
	.featured-item-in p {
        min-height: 58px;
    }
	.most-recent .tab-bar ul.nav-tabs li button {
        padding: 12px 16px;
    }
	.table-wrapper table th {
        font-size: 16px;
        padding: 16px 18px;
    }
	.table-wrapper table td {
        font-size: 16px;
        padding: 14px 18px;
    }
	.most-recent {
        padding: 0 20px 50px;
    }
}
@media screen and (max-width: 991px) {
	.resources-hero {
        background-position: center;
	}
	.featured-item-in p {
        min-height: 77px;
    }
	.table-wrapper table td button.download-btn {
		padding: 12px 12px;
		font-size: 15px;
	}
	.table-wrapper table th {
		padding: 16px 10px;
		font-size: 15px;
	}
	.table-wrapper table td {
		font-size: 15px;
		padding: 14px 16px;
	}
	.table-wrapper table td .resource-name span {
		text-align: left;
	}
	.table-wrapper {
		overflow-x: auto;
	}
}
@media screen and (max-width: 767px) {
	.quick-links-box {
		padding: 20px
	}
	.quick-links-row {
		flex-wrap: wrap;
	}
	.quick-links-row a {
		width: 100%;
	}
	.quick-links-item {
		padding: 20px;
	}
	.featured-item {
        width: 100%;
		padding: 0;
    } 
	.featured-box {
		margin: 0;
	}
	.featured-item-in p {
        min-height: auto;
        margin: 20px 0;
    }
	.search-bar {
		align-items: flex-end;
    	flex-direction: column;
	}
	.search-input {
		width: 100%;
	}
	.most-recent .tab-bar {
		padding: 16px 0 20px;
	}
	.search-input input {
		padding: 12px 20px;
		background-position: center left 15px;
		padding-left: 40px;
	}
	.table-wrapper table td .resource-name span {
		width: calc(100% - 20px);
		min-width: 150px;
	}
	.pagination-bar {
		margin: 20px 0 0;
	}
}

/* Resources Page css End */

/* Conditions Page css Start */
.conditions-hero {
	padding: 80px 64px;
	background: var(--Deep-Teal, #2E6F7E);	
}
.conditions-hero h1 {
	margin: 0 0 24px;
	color: var(--Pure-White, #FFF);
	text-align: center;
	font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.conditions-hero p {
	color: var(--Pure-White, #FFF);
	text-align: center;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
section.conditions-content {
    padding: 80px 64px;
}
.conditions-content p {
    color: var(--Charcoal, #2F3438);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.conditions-content ul li {
	color: var(--Charcoal, #2F3438);
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

/* Responsive css Start */

@media screen and (max-width: 1200px) {
	.conditions-hero {
		padding: 80px 20px;
	}
	section.conditions-content {
		padding: 80px 20px;
	}
}
@media screen and (max-width: 1024px) {
	section.conditions-content {
        padding: 50px 20px;
    }
	.conditions-hero {
        padding: 50px 20px;
    }
	.conditions-hero h1 {
		font-size: 32px;
	}
}
@media screen and (max-width: 991px) {
	.conditions-hero h1 {
        font-size: 28px;
    }
}
@media screen and (max-width: 767px) {
	.conditions-hero h1 {
        font-size: 26px;
        margin: 0 0 20px;
    }
	.conditions-hero p br {
		display: none;
	}
	.conditions-content p {
		font-size: 16px;
	}
	.conditions-content ul li {
		font-size: 16px;
	}
}

/* Conditions Page css End */


/* Contact Us Page css Start */
.contact-hero {
	padding: 80px 64px;
	background: var(--Light-blue, #F9FAFB);
}
.contact-hero span {
	color: var(--Soft-Gold, #E2BE6A);
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.contact-hero span::before {
	content: "";
    width: 40px;
    height: 2px;
    display: inline-block;
    background: var(--Soft-Gold, #E2BE6A);
}
.contact-hero h1 {
	margin: 16px 0 8px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 40px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}
.contact-hero h3 {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.contact-hero-row {
	display: flex;
	align-items: center;
	gap: 24px;
	margin: 24px 0 0;
}
.contact-hero-item {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 16%;
}
.contact-hero-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: rgba(46, 111, 126, 0.20);
	border-radius: 50%;
}
.contact-hero-content {
	width: calc(100% - 56px);
} 
.contact-min {
	padding: 80px 64px;
	background: var(--Pure-White, #FFF);
}
.contact-min-box {
    display: flex;
	align-items: flex-start;
}
.send-message {
    width: 65%;
	padding-right: 40px;
}
.send-message-in {
	padding: 24px;
	border-radius: 16px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: var(--Pure-White, #FFF);
}
.send-message-in .title {
	text-align: left;
}
.send-message-in .title h2 {
	text-align: left;
}
.send-message-in .title p {
	text-align: left;
}
.get-in {
	width: 35%;
	padding: 24px;
	border-radius: 8px;
	border: 1px solid var(--Soft-gray, #E2E2E0);
	background: var(--Light-blue, #F9FAFB);
}
.get-in .title {
	text-align: left;
}
.get-in .title h2 {
	text-align: left;
	margin: 0 0 24px;
}
.contact-you {
	padding: 24px 0 0;
}
.contact-you h4 {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 0 0 8px;
}
.contact-you h4 sup {
	color: var(--Error, #DB0808);
}
.contact-you ul {
	padding: 0;
	margin: 0 0 24px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.contact-you ul li {
	list-style: none;
}
.contact-you ul li a {
	display: flex;
	padding: 8px;
	align-items: center;
	gap: 4px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: var(--Pure-White, #FFF);
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: all ease 0.4s;
}
.contact-you ul li.active a {
	background: var(--Blue-Gray, #E3EAF0);
}
.contact-you ul li:hover a {
	background: var(--Blue-Gray, #E3EAF0);
}
.form-group label {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0 0 8px;
}
.form-group label span {
	color: var(--Error, #DB0808);
}
.form-group .form-control {
	padding: 16px 24px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
	color: var(--Dark-Gray, #767676);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.form-group select.form-control {
	background: url(../images/select-dropdown-arrow.svg) no-repeat center right 30px;
}
.form-group select.form-control option:hover {
	border-radius: 8px;
	background: var(--Blue-Gray, #E3EAF0);
} 
.form-group .form-control:focus {
	box-shadow: none !important;
}
.form-group textarea.form-control {
	min-height: 180px;
}
.contact-form button.submit-btn {
	display: flex;
	padding: 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	background: var(--Rich-Teal, #255A66);
	color: var(--Pure-White, #FFF);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	width: 100%;
	transition: all ease 0.4s;
	border: 1px solid var(--Rich-Teal, #255A66);
	box-shadow: none !important;
	margin: 16px 0 0;
}
.contact-form button.submit-btn:hover {
	color: var(--Rich-Teal, #255A66);
	background: var(--Pure-White);
}
.form-note {
	color: var(--Slate, #4A545A);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding: 24px 0 0;
}
.form-row {
    display: flex;
	margin: 0 -12px;
}
.form-row .form-group {
	width: 50%;
	padding: 0 12px;
}
.form-group {
	margin: 0 0 24px;
}
.get-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background:var(--Deep-Teal, #2E6F7E);
	border-radius: 50%;
}
.get-item {
	display: flex;
	gap: 14px;
	margin: 0 0 40px;
}
.get-item:last-child {
	margin: 0;
}
.get-item-text h3 {
	margin: 0 0 8px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.get-item-text a {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.get-item-text p {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 8px 0 0;
}
.get-item-text {
	width: calc(100% - 60px);
}

@media screen and (max-width: 1400px) {
	.contact-hero-item {
		width: 20%;
	}
}
@media screen and (max-width: 1300px) {
	.contact-hero-item {
        width: 22%;
    }
}
@media screen and (max-width: 1200px) {
	.contact-hero {
		padding: 80px 20px;
	}
	.contact-min {
		padding: 80px 20px;
	}
}
@media screen and (max-width: 1100px) {
	.contact-hero-item {
        width: 25%;
    }
}
@media screen and (max-width: 1024px) {
	.contact-hero {
        padding: 50px 20px;
    }
	.contact-hero h1 {
		font-size: 32px;
	}
	.contact-hero h3 {
		font-size: 22px;
	}
	.contact-min {
        padding: 50px 20px;
    }
	.send-message {
		width: 60%;
	}
	.get-in {
		width: 40%;
	}
}
@media screen and (max-width: 991px) {
	.contact-hero-item {
        width: 32%;
    }
	.contact-hero span {
		font-size: 22px;
	}
	.contact-hero h1 {
        font-size: 28px;
    }
	.contact-hero h3 {
        font-size: 20px;
    }
	.contact-min-box {
		flex-wrap: wrap;
    	row-gap: 24px;
	}
	.send-message {
        width: 100%;
		padding-right: 0;
    }
	.get-in {
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.contact-hero span {
        font-size: 20px;
    }
	.contact-hero h1 {
        font-size: 26px;
    }
	.contact-hero h3 {
        font-size: 18px;
    }
	.contact-hero h3 br , .send-message-in .title p br {display: none;}
	.contact-hero-row {
		flex-wrap: wrap;
	}
	.contact-hero-item {
		width: 100%;
	}
	.send-message-in {
		padding: 20px;
	}
	.contact-you ul {
		overflow-x: auto;
		padding: 0 0 4px;
	}
	.contact-you ul li a {
		white-space: nowrap;
	}
	.form-row {
		margin: 0;
    	flex-wrap: wrap;
	}
	.form-row .form-group {
		width: 100%;
    	padding: 0 0;
	}
	.form-group {
		margin: 0 0 20px;
	}
	.form-group .form-control {
		padding: 15px 15px;
	}
	.form-group textarea.form-control {
		min-height: 100px;
	}
	.contact-form button.submit-btn {
		margin: 10px 0 0;
	}
	.form-note {
		padding: 20px 0 0;
	}
	.get-in {
		padding: 24px;
	}
	.get-item {
		margin: 0 0 30px;
	}
}

/* Contact Us Page css End */


/* Application Process Css Start */

.application-section {
    padding: 80px 64px;
}

.modal {
	background: #fff;
	border-radius: 12px;
	width: 100%;
	max-width: 820px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	animation: fadeIn .3s ease;
	display: block;
    position: static;
    margin: 0 auto;
}
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(12px)
	}
	to {
		opacity: 1;
		transform: none
	}
}
.modal-header {
	border-radius: 16px 16px 0 0;
	padding: 32px 24px;
	background: var(--Deep-Teal, #2E6F7E);
	position: relative;
	display: block;
	border-bottom: none;
}
.modal-header h2 {
	color: var(--Pure-White, #FFF);
	font-family: Inter;
	font-size: 32px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 0 0 8px;
}
.modal-header .subtitle {
	color: var(--Pure-White, #FFF);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.close-btn {
	position: absolute;
	right: 24px;
	top: 32px;
	background: none;
	border: none;
	color: #fff;
	cursor: pointer;
}
.close-btn:hover {
	opacity: 1;
}
.progress-bar {
	height: 5px;
	background: #dde3e3;
}
.progress-fill {
	height: 100%;
	background: #c49a2a;
	transition: width .4s ease;
}
.modal-body {
	padding: 64px 24px 20px;
	min-height: 420px;
}
.screen {
	display: none;
}
.screen.active {
	display: block;
	animation: slideIn .22s ease;
}
@keyframes slideIn {
	from {
		opacity: 0;
		transform: translateX(10px)
	}
	to {
		opacity: 1;
		transform: none
	}
}
.section-title {
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0 0 24px;
}
#screen-0 .section-title {
    margin: 0;
}
.section-desc {
	color: var(--Dark-Gray, #767676);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 0 0 40px;
}
.checklist-group {
	margin-bottom: 24px;
}
.checklist-group h4 {
	margin: 0 0 8px;
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.check-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 4px 0;
	cursor: pointer;
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.check-item input[type=checkbox] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	accent-color: var(--Rich-Teal, #255A66);
	cursor: pointer;
	flex-shrink: 0;
}
.eligibility-wrap {
	position: relative;
}
.form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 24px;
}
.form-group {
	display: flex;
	flex-direction: column;
}
.form-group.full {
	grid-column: 1/-1;
}
.form-group label .req {
	color: #DB0808;
}
.form-group input,
.form-group select,
.form-group textarea {
	padding: 16px 24px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
	color: var(--Dark-Gray, #767676);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	transition: border-color .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: #3a7a7a;
	box-shadow: none;
}
.form-group select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 24px center;
	padding-right: 32px;
}
.form-group textarea {
	resize: vertical;
	min-height: 60px;
}
.sign-note {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin: 4px 0 0;
}
.upload-box.is-invalid {
	border-color: #DB0808;
	background: #FFF5F5;
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid {
	border-color: #DB0808;
}
.check-item.is-invalid {
	color: #DB0808;
}
.radio-group.is-invalid {
	outline: 1px solid #DB0808;
	border-radius: 8px;
	padding: 8px;
}
.field-error {
	color: #DB0808;
	font-family: Inter;
	font-size: 13px;
	font-weight: 400;
	margin-top: 6px;
	display: block;
}
.step-error {
	color: #DB0808;
	font-family: Inter;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 16px;
	padding: 12px 16px;
	border-radius: 8px;
	background: #FFF5F5;
	border: 1px solid #DB0808;
}
.upload-box {
	border-radius: 16px;
	border: 2px dashed var(--Deep-Teal, #2E6F7E);
	padding: 24px 0;
	text-align: center;
	cursor: pointer;
	background: var(--Pure-White);
	transition: background .2s;
	display: block;
}
.upload-icon {
	margin-bottom: 16px;
}
.upload-box strong {
	display: block;
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	margin: 0 0 16px;
}
.upload-box small {
	color: var(--Warm-Gray, #716E6E);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.upload-box input[type=file] {
	display: none;
}
.radio-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 4px;
}
.radio-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .875rem;
	color: #333;
	cursor: pointer;
}
.radio-item input {
	accent-color: #3a7a7a;
	width: 20px;
	height: 20px;
}
.attest-box {
	border-radius: 16px;
	border: 1px solid var(--Off-White, #F7F7F4);
	background: var(--Off-White, #F7F7F4);
	padding: 40px;
	color: #000;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin-bottom: 40px;
	max-height: 200px;
    overflow-y: auto;
}
.attest-box p {
	margin-bottom: 8px;
}
.attest-box h5 {
	color: #000;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 24px 0 8px;
}
.info-banner {
	padding: 24px;
	border-radius: 8px;
	background: rgba(46, 111, 126, 0.10);
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.success-wrap {
	text-align: center;
	padding: 20px 0 10px;
}
.success-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #E2BE6A;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}
.success-wrap h3 {
	color: var(--Rich-Teal, #255A66);
	text-align: center;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0 0 16px;
}
.success-wrap p {
	color: var(--Charcoal, #2F3438);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.next-steps {
	text-align: left;
	padding: 32px 0 0;
}
.next-steps strong {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}
.next-steps ul {
	margin: 0;
	padding: 0;
}
.next-steps ul li {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	list-style: none;
}
.next-steps p {
	text-align: left;
	margin: 40px 0 0;
}

.step-dots {
	display: flex;
	gap: 16px;
	align-items: center;
}
.dot {
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #B4B6B8;
	transition: all .25s;
	flex-shrink: 0;
}
.dot.done {
	background: var(--Warm-Gold);
}
.dot.active {
	background: var(--Rich-Teal);
}
.modal-footer {
	display: flex;
	padding: 24px 40px;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	border-radius: 0 0 16px 16px;
	border-top: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #F9FAFB;
}
.btn {
	cursor: pointer;
	border: 1px solid var(--Rich-Teal, #255A66);
	transition: all .2s;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px;
	border-radius: 8px;
	background: var(--Rich-Teal, #255A66);
	color: var(--Pure-White, #FFF);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0;
}
.btn-back {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	color: var(--Dark-Gray, #767676);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	padding: 0;
	margin: 0;
	background: transparent;
	border-radius: 0;
	border: none;
}
.btn-back:hover {
	color: var(--Rich-Teal, #255A66);
}
.btn-back:hover svg path {
	fill: var(--Rich-Teal);
}
.btn-next:hover {
	background: var(--Pure-White);
	color: var(--Rich-Teal);
	border: 1px solid var(--Rich-Teal, #255A66);
}
.btn-next:hover svg path {
	fill: var(--Rich-Teal);
}
.modal-footer>* {
	margin: 0;
}
.btn-submit {
	border-radius: 8px;
	background: var(--Warm-Gold, #D4A44A);
	border-color: var(--Warm-Gold, #D4A44A);
}
.btn-submit:hover {
	background: var(--Pure-White);
	color: var(--Warm-Gold, #D4A44A);
	border: 1px solid var(--Warm-Gold, #D4A44A);
}
.btn-enroll:hover {
	background: var(--Pure-White);
    color: var(--Rich-Teal);
    border: 1px solid var(--Rich-Teal, #255A66);
}
.btn-close-final {
	border-radius: 8px;
	border: 1px solid var(--Rich-Teal, #255A66);
	background: var(--Pure-White, #FFF);
	color: var(--Rich-Teal, #255A66);
}
.btn-close-final:hover {
	background:var(--Rich-Teal, #255A66);
	color: var(--Pure-White);
}
.success-btns {
	display: flex;
	gap: 24px;
    flex-direction: row-reverse;
}

@media screen and (max-width: 1200px) {
	.application-section {
		padding: 80px 20px;
	}
}
@media screen and (max-width: 1024px) {
	.application-section {
		padding: 50px 20px;
	}
	.modal-header h2 {
		font-size: 28px;
	}
	.modal-body {
		padding: 40px 24px 20px;
	}
	.modal-footer {
		padding: 24px 30px;
	}
	#screen-5 > div:nth-child(3) {
		margin: 30px 0 30px !important;
	}
	.attest-box {
		padding: 24px;
		font-size: 18px;
		margin-bottom: 30px;
	}
}
@media screen and (max-width: 991px) {
	.modal-header h2 {
        font-size: 26px;
    }
}
@media screen and (max-width: 767px) {
	.modal-header {
		padding: 20px 20px;
	}
	.modal-header h2 {
        font-size: 24px;
    }
	.modal-header .subtitle {
		font-size: 18px;
	}
	.close-btn {
		right: 20px;
    	top: 20px;
	}
	.section-title {
		font-size: 18px;
	}
	.section-desc {
		margin: 0 0 20px;
	}
	.checklist-group {
		margin-bottom: 20px;
	}
	.step-dots {
		gap: 5px;
	}
	.dot {
		width: 10px;
    	height: 10px;
	}
	.btn {
		padding: 12px;
		font-size: 13px;
	}
	.form-group input, .form-group select, .form-group textarea {
		padding: 15px 15px;
	}
	.upload-box {
		padding: 20px 0;
	}
	#screen-5 > div:nth-child(3) {
        margin: 20px 0 20px !important;
    }
	.section-title {
		margin: 0 0 20px;
	}
	.attest-box {
        padding: 20px;
        font-size: 16px;
        margin-bottom: 20px;
    }
	.attest-box h5 {
		font-size: 18px;
		margin: 20px 0 8px;
	}
	#screen-8 > div:nth-child(4) {
		margin: 20px 0 !important;
	}
	.info-banner {
		padding: 20px;
	}
	.btn.btn-back {
		padding: 0;
	}
	.success-wrap {
		padding: 10px 0 10px;
	}
	.success-wrap h3 {
		font-size: 20px;
	}
	.next-steps {
		padding: 20px 0 0;
	}
	.next-steps p {
		margin: 20px 0 0;
	}
	
}

@media(max-width:580px) {
	.form-grid {
		grid-template-columns: 1fr;
	}
	.modal-body {
		padding: 24px 18px 12px;
	}
	.modal-footer {
		padding: 14px 18px 20px;
	}
	.badge-b {
		display: none;
	}
}
/* Application Process Css End */


/* Schools css Start */
.schools-hero {
	position: relative;
	padding-bottom: 140px;
}
.schools-feature {
    margin: -90px 0 0;
    position: relative;
}
.schools-main {
    padding: 0 64px 80px;
	background: var(--Pure-White);
}
.filter-card {
	padding: 24px;
	border-radius: 16px;
	border: 2px solid var(--Blue-Gray, #E3EAF0);
	background: var(--Pure-White, #FFF);
}
.filter-grid {
	display: grid;
	grid-template-columns: 1fr 1.4px 1fr 1.4px 1fr;
	gap: 0;
	align-items: start;
}
.divider-v {
	background: var(--Blue-Gray, #E3EAF0);
	width: 1px;
	align-self: stretch;
	margin: 0 4px;
}
.filter-section {
	padding: 0 24px;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.filter-section:first-child { padding-left: 0; }
.filter-section:last-child  { padding-right: 0; }
.filter-label {
	color: var(--Slate, #4A545A);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	margin: 0 0 24px;
	text-transform: uppercase;
}
.checkbox-row {
	display: flex;
	align-items: center;
	gap: 40px;
	flex-wrap: wrap;
    padding: 10px 0;
}
.cb-item {
	display: flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
	user-select: none;
	color: var(--Slate, #4A545A);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.cb-item input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--Rich-Teal);
	cursor: pointer;
	flex-shrink: 0;
}
.filter-bottom {
	display: flex;
	align-items: center;
	gap: 40px;
	margin-top: 16px;
	padding-top: 24px;
	border-top: 2px solid var(--Blue-Gray, #E3EAF0);
}
.btn-search svg path {
	transition: all ease 0.4s;
}
.btn-search:hover svg path {
	fill: var(--Rich-Teal);
}

.btn-clear {
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	background: transparent;
	border: none;
	padding: 0;
}
.dropdown-wrap {
	position: relative;
}
.dropdown-trigger {
	padding: 4px 16px;
	display: flex;
	height: 44px;
	padding: 4px 16px;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
	color: var(--Dark-Gray, #767676);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.dropdown-trigger .chevron {
	transition: transform 0.2s;
	flex-shrink: 0;
	transform: rotate(180deg);
}
.dropdown-trigger.open .chevron { 
	transform: rotate(0deg); 
}
.dropdown-trigger .selected-count {
	display: none;
}
.dropdown-menu {
	display: none;
	position: absolute;
	top: calc(100% + 5px);
	left: 0;
	right: 0;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF;
	z-index: 100;
	overflow-y: auto;
	padding: 0;
}
.dropdown-menu.open { display: block; }
.dd-cb-item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 8px 24px;
	color: var(--Slate, #4A545A);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	cursor: pointer;
}
.dd-cb-item input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--Rich-Teal);
	cursor: pointer;
	flex-shrink: 0;
	margin-top: 2px;
}
.dd-cb-item label { cursor: pointer; line-height: 1.35; }
.dd-region-item {
	padding: 16px 24px;
	border-bottom: 1px solid var(--Blue-Gray, #E3EAF0);
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	cursor: pointer;
	transition: background 0.15s;
	border-radius: 0;
}
.dd-region-item:hover { 
	border-radius: 8px;
	background: var(--Blue-Gray, #E3EAF0); 
}
.dd-region-item.selected {
	border-radius: 8px;
	background: var(--Blue-Gray, #E3EAF0); 
	border: none;
}
.dropdown-menu::-webkit-scrollbar { width: 5px; }
.dropdown-menu::-webkit-scrollbar-track { background: #f5f5f5; }
.dropdown-menu::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

.showing-schools {
	padding: 60px 0 0;
}
.showing-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
	margin: 0 0 16px;
}
.showing-title-row h4 {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.showing-schools-filter {
	display: flex;
	align-items: center;
	gap: 6px;
}
.showing-schools-filter label {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}
.showing-schools-filter select {
	padding: 12px 16px;
	padding-right: 46px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: #FFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center right 16px;
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	appearance: none;
}
.showing-schools-box {
    display: flex;
	margin: 0 -12px;
	flex-wrap: wrap;
    row-gap: 24px;
}
.showing-item {
	width: 50%;
	padding: 0 12px;
}
.showing-in {
	padding: 24px;
	border-radius: 16px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: var(--Pure-White, #FFF);
	height: 100%;
}
.showing-schools-details {
    display: flex;
    align-items: center;
}
.showing-schools-image {
    width: 42%;
    padding-right: 40px;
}
.showing-schools-image img {
	width: 100%;
}
.showing-schools-content {
	width: 58%;
}
.showing-schools-content h3 {
	color: var(--Rich-Teal, #255A66);
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	margin: 0 0 16px;
}
.schools-content-category {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.schools-content-category a {
	display: inline-flex;
	padding: 8px;
	align-items: center;
	gap: 8px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: var(--Light-blue, #F9FAFB);
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.schools-content-category .online-available {
	background: #8FB786;
	border-color: #8FB786;
}
.schools-content-category .in-person {
	background: var(--Soft-Gold, #E2BE6A);
	border-color: var(--Soft-Gold, #E2BE6A);
}
.showing-schools-contact {
	display: flex;
	align-items: center;
	gap: 4px;
	margin: 16px 0 0;
}
.showing-schools-contact span {
	display: inline-flex;
	min-width: 24px;
}
.showing-schools-contact a {
	color: var(--Charcoal, #2F3438);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.courses-offerred {
    display: flex;
    align-items: center;
	gap: 8px;
	padding: 8px 0;
	border-top: 1px solid var(--Blue-Gray, #E3EAF0);
	border-bottom: 1px solid var(--Blue-Gray, #E3EAF0);
	margin: 16px 0 0;
}
.courses-offerred span {
	color: #000;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.offerred-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: calc(100% - 143px);
}
.offerred-bar a {
	display: inline-flex;
	padding: 8px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	border: 1px solid var(--Blue-Gray, #E3EAF0);
	background: var(--Light-blue, #F9FAFB);
	color: var(--Charcoal, #2F3438);
	text-align: center;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}
.schools-action {
    display: flex;
    justify-content: flex-end;
    margin: 8px 0 0;
}
.schools-action .action-btn-unfill {
	gap: 14px;
}
.schools-action .action-btn-unfill svg path {
	transition: all ease 0.4s;
} 
.schools-action .action-btn-unfill:hover svg path {
	fill: var(--Pure-White);
}

@media screen and (max-width: 1300px) {
	.checkbox-row {
		gap: 20px;
	}
	.showing-schools-image {
		padding-right: 20px;
	}
	.schools-content-category {
		gap: 8px;
	}
}
@media screen and (max-width: 1200px) {
	.schools-main {
		padding: 0 20px 80px;
	}
	.showing-in {
		padding: 20px;
	}
}
@media screen and (max-width: 1024px) {
	.checkbox-row {
        gap: 12px;
    }
	.showing-schools {
		padding: 40px 0 0;
	}
	.showing-schools-content h3 {
		font-size: 20px;
	}
	.schools-content-category a {
		padding: 6px;
		gap: 6px;
		font-size: 14px;
	}
	.schools-main {
        padding: 0 20px 50px;
    }
}
@media screen and (max-width: 991px) {
	.filter-label {
		margin: 0 0 15px;
	}
	.checkbox-row {
		padding: 0;
	}
	.filter-bottom {
		gap: 24px;
	}
	.showing-item {
		width: 100%;
		padding: 0;
	}
	.showing-schools-box {
		margin: 0;
	}
}
@media screen and (max-width: 767px) {
	.filter-card {
		padding: 20px;
	}
	.filter-bottom {
        gap: 20px;
        padding-top: 20px;
    }
	.showing-schools {
        padding: 30px 0 0;
    }
	.showing-title-row {
		flex-direction: column;
    	gap: 16px;
	}
	.showing-schools-image {
		width: 100%;
		padding-right: 0;
	}
	.showing-schools-content {
		width: 100%;
	}
	.showing-schools-details {
		flex-direction: column;
    	row-gap: 20px;
	}
	.courses-offerred {
		flex-direction: column;
		align-items: flex-start;
	}
	.offerred-bar {
		width: 100%;
		gap: 6px;
	}
	.offerred-bar a {
		padding: 8px 10px;
	}
	.schools-action .action-btn-unfill {
		gap: 10px;
	}
}

@media (max-width: 768px) {
.filter-grid {
	grid-template-columns: 1fr;
	gap: 20px;
}
.divider-v { display: none; }
.filter-section { padding: 0; }
.checkbox-row { gap: 16px; }
.dropdown-trigger { min-width: 100%; }
}
/* Schools css End */