/*
 * Happy Nursing Service - Optimized CSS
 */
@charset "utf-8";

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700,800,900');

/*********************************
2. Body and some general stuff
*********************************/
:root {
	--au-brand: var(--brand-green);
	--au-text: #6f6f6f;
	--au-border: #e8e8e8;
	--au-border-light: #eeeeee;
	--au-transition: 0.3s ease;

	--brand-green: #048324;
	--brand-green-rgb: 4, 131, 36;
	--brand-green-deep: #036d1e;
	--brand-red: #e42228;
	--brand-red-rgb: 228, 34, 40;
	--brand-red-deep: #c91d23;
	--text-muted: #777777;
}

/* Modern browsers */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.25);
	border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(0, 0, 0, 0.4);
}

/* Firefox */
html,
.qc-modal,
.fb-modal {
	scrollbar-width: thin;
	scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

* {
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	text-shadow: rgba(0, 0, 0, .01) 0 0 1px;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	font-weight: 400;
	background: #FFFFFF;
	color: #a5a5a5;
}

div {
	display: block;
	position: relative;
	box-sizing: border-box;
}

ul {
	list-style: none;
	margin-bottom: 0px;
}

p {
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	line-height: 1.9;
	font-weight: 500;
	color: #464545;
}

ul li {
	color: #464545;
}

p a {
	display: inline;
	position: relative;
	color: inherit;
	border-bottom: solid 1px #ffa07f;
	transition: all 200ms ease;
}

p:last-of-type {
	margin-bottom: 0;
}

a {
	transition: all 200ms ease;
}

a,
a:hover,
a:visited,
a:active,
a:link {
	text-decoration: none;
}

p a:active {
	position: relative;
	color: #FF6347;
}

p a:hover {
	color: #FFFFFF;
	background: #ffa07f;
}

p a:hover::after {
	opacity: 0.2;
}

::selection {
	background: rgba(87, 204, 195, 0.75);
	color: #FFFFFF;
}

h1 {
	font-size: 60px;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 36px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.2;
	color: #404040;
}

.join-team-btn {
	display: block;
	color: var(--brand-red) !important;
	font-weight: bolder !important;
	border: 2px solid var(--brand-red);
	border-radius: 20px;
	padding: 5px 15px;
    font-weight: 600;
}

.mobile-login-button {
	margin-top: 10px !important;
	padding: 10px 20px;
	background-color: #ffff;
	text-align: center;
	border-radius: 8px;
}

.mobile-login-button a {

	color: var(--brand-green-deep) !important;
}

.form-control {
	color: #727372;
}

section {
	display: block;
	position: relative;
	box-sizing: border-box;
}

.bottom-edge {
	position: relative;
	overflow: hidden;
}

.bottom-edge::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;

	height: 150px;

	background: linear-gradient(to bottom,
			rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 0.35) 45%,
			rgba(255, 255, 255, 1) 100%);

	pointer-events: none;
}

.clear {
	clear: both;
}

.clearfix::before,
.clearfix::after {
	content: "";
	display: table;
}

.clearfix::after {
	clear: both;
}

.clearfix {
	zoom: 1;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.trans-200 {
	transition: all 200ms ease;
}

.trans-300 {
	transition: all 300ms ease;
}

.trans-400 {
	transition: all 400ms ease;
}

.trans-500 {
	transition: all 500ms ease;
}

.fill-height {
	height: 100%;
}

.super-container {
	width: 100%;
	overflow: hidden;
}

.prlx-parent {
	overflow: hidden;
}

.prlx {
	height: 130% !important;
}

.parallax-window {
	min-height: 400px;
	background: transparent;
}

.parallax-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.background-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.nopadding {
	padding: 0px !important;
}

.button {
	height: 46px;
	border-radius: 20px;
}

.button a {
	display: block;
	padding-left: 40px;
	padding-right: 36px;
	line-height: 42px;
	font-size: 14px;
	text-transform: uppercase;
	font-weight: 600;
}

.button-1 {
	background: var(--brand-red);
	border: solid 2px transparent;
}

.button-1 a {
	color: #FFFFFF;
}

.button-1:hover {
	background: transparent;
	border: solid 2px var(--brand-red);
}

.button-1:hover a {
	color: var(--brand-red);
}

.button-2 {
	background: transparent;
	border: solid 2px var(--brand-green);
}

.button-2 a {
	color: var(--brand-green);
}

.button-2:hover {
	background: var(--brand-green);
}

.button-2:hover a {
	color: #FFFFFF;
}

.section-subtitle {
	font-size: 18px;
	font-weight: 500;
	color: #a6abb2;
	line-height: 0.75;
}

.section-title {
	margin-top: 9px;
}

/* =========================================
   ABOUT US
   ========================================= */

.about-us {
	width: 100%;
	background: #ffffff;
	position: relative;
	overflow: hidden;
	padding-top: 89px;
	padding-bottom: 90px;
}

.about-us-row {
	position: relative;
	min-height: 600px;
}

.about-us-content {
	padding: 30px 30px 90px 0;
}

.about-us-text {
	margin-top: 30px;
}

.about-us-text p {
	color: var(--au-text);
	margin-bottom: 18px;
}

.about-us-text p:last-child {
	margin-bottom: 0;
}

/* --- Image --- */

.about-us-image-wrapper {
	position: absolute;
	inset: 0 0 0 auto;
	width: 45%;
	height: 100%;

	display: flex;
	align-items: center;
	justify-content: center;

	pointer-events: none;
}

.about-us-image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-us-image img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center center;
}

/* =========================================
   ABOUT INFO CARDS
========================================= */

.about-us-info {
	margin-top: 32px;

	display: flex;
	flex-direction: column;

	gap: 18px;
}

/* =========================================
   CARD
========================================= */

.about-info-card {
	position: relative;

	padding: 25px 26px 24px;

	background: #ffffff;

	border: 1px solid #e9ece9;

	border-radius: 12px;

	overflow: hidden;

	box-shadow: 0 5px 22px rgba(0, 0, 0, 0.045);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

/* Left accent */

.about-info-card::before {
	content: "";

	position: absolute;

	top: 0;
	left: 0;
	bottom: 0;

	width: 4px;

	background: var(--brand-green);
}

/* Red card accent */

.about-info-card-red::before {
	background: var(--brand-red);
}

/* Hover */

.about-info-card:hover {
	transform: translateY(-4px);

	border-color: #dfe5e1;

	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

/* =========================================
   CARD TOP
========================================= */

.about-info-card-top {
	display: flex;

	align-items: center;

	width: 100%;

	margin-bottom: 18px;
}

/* =========================================
   ICON
========================================= */

.about-info-icon {
	width: 52px;
	height: 52px;

	flex-shrink: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-right: 15px;

	border-radius: 10px;

	background: #eef8f1;

	color: var(--brand-green);

	font-size: 21px;

	transition:
		background 0.25s ease,
		color 0.25s ease;
}

/* Red icon */

.about-info-card-red .about-info-icon {
	background: #fff0f1;

	color: var(--brand-red);
}

/* Hover icon */

.about-info-card-green:hover .about-info-icon {
	background: var(--brand-green);

	color: #ffffff;
}

.about-info-card-red:hover .about-info-icon {
	background: var(--brand-red);

	color: #ffffff;
}

/* =========================================
   HEADING
========================================= */

.about-info-heading {
	flex: 1;
}

.about-info-heading span {
	display: block;

	margin-bottom: 4px;

	color: #999999;

	font-size: 9px;

	line-height: 1;

	font-weight: 700;

	letter-spacing: 1.4px;

	text-transform: uppercase;
}

.about-info-heading h3 {
	margin: 0;

	color: #333333;

	font-size: 21px;

	line-height: 1.25;

	font-weight: 700;
}

/* =========================================
   NUMBER
========================================= */

.about-info-number {
	margin-left: 15px;

	color: #dfe8e1;

	font-size: 28px;

	line-height: 1;

	font-weight: 700;
}

.about-info-card-red .about-info-number {
	color: #f5dfe0;
}

/* =========================================
   CONTENT
========================================= */

.about-info-content {
	padding-left: 67px;

	padding-right: 15px;
}

.about-info-content p {
	margin: 0;

	color: var(--au-text);

	line-height: 1.75;
}

.about-info-content p+p {
	margin-top: 11px;
}

/* =========================================
   SMALL BOTTOM ACCENT
========================================= */

.about-info-content::after {
	content: "";

	display: block;

	width: 35px;
	height: 3px;

	margin-top: 18px;

	border-radius: 3px;

	background: var(--brand-green);
}

.about-info-card-red .about-info-content::after {
	background: var(--brand-red);
}

.about-info-services {
	display: grid;
	grid-template-columns: 1fr 1fr;

	gap: 15px 18px;

	margin: 40px 0;
}

.about-info-service-item {
	display: flex;
	align-items: center;

	gap: 10px;
}

.about-info-service-icon {
	flex: 0 0 46px;

	width: 46px;
	height: 46px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 7px;

	background: #eef8f1;

	color: var(--brand-green);
	font-size: 18px;
}

.about-info-service-text {
	color: #404040;

	font-size: 16px;
	font-weight: 600;

	line-height: 1.3;
}

/* Red-card variant support, in case you reuse this on .about-info-card-red */
.about-info-card-red .about-info-service-icon {
	background: #fff0f1;
	color: var(--brand-red);
}

/*********************************
3. Header
*********************************/

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	z-index: 100;
	background: #FFFFFF;
}

.header-content {
	width: 100%;
	height: 117px;
	padding-left: 100px;
	padding-right: 102px;
}

.header.scrolled .header-content {
	height: 75px;
	box-shadow: 0px 5px 15px rgba(87, 204, 195, 0.15);
}

.logo a>div:first-child {
	font-size: 30px;
	font-weight: 700;
	line-height: 0.75;
	color: #353535;
}

.logo a>div:first-child span {
	color: var(--brand-green);
	margin-left: 7px;
}

.logo a>div:last-child {
	font-size: 12px;
	color: #969696;
	font-weight: 500;
	line-height: 0.75;
	margin-top: 6px;
}

.main-nav {
	margin-left: 226px;
}

.main-nav ul li a {
	font-size: 16px;
	font-weight: bold;
	color: #404040;
	white-space: nowrap;
}

.main-nav ul li a:hover,
.main-nav ul li.active a {
	color: var(--brand-green);
}

.main-nav ul li:not(:last-child) {
	margin-right: 33px;
}

.work-hours {
	font-size: 15px;
	font-weight: 600;
	color: #404040;
	margin-right: 26px;
	white-space: nowrap;
}

.header-phone {
	height: 46px;
	border-radius: 20px;
	background: var(--brand-green);
	padding-left: 40px;
	padding-right: 36px;
	line-height: 46px;
	font-size: 14px;
	font-weight: 600;
	color: #FFFFFF;
	margin-right: 12px;
}

.header-phone::selection {
	background: rgba(64, 64, 64, 0.75);
}

.header-button {
	margin-right: 16px;
}

.social ul li {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #e6ebf1;
	transition: all 200ms ease;
}

.social ul li:hover {
	background: var(--brand-green);
}

.social ul li:hover a i {
	color: #FFFFFF;
}

.social ul li:not(:last-of-type) {
	margin-right: 15px;
}

.social ul li a {
	display: block;
	width: 100%;
	height: 100%;
	line-height: 34px;
	text-align: center;
}

.social ul li a i {
	font-size: 16px;
	color: #404040;
	transition: all 200ms ease;
}

.hamburger {
	display: none;
	cursor: pointer;
	border: solid 1px transparent;
	border-radius: 7px;
	transition: all 200ms ease;
}

.hamburger:hover {
	border: solid 1px rgba(0, 0, 0, 0.05);
}

.hamburger i {
	font-size: 20px;
	color: #404040;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 7px;
	padding-right: 7px;
}

/*********************************
4. Menu
*********************************/

.menu {
	position: fixed;
	top: 0;
	right: -350px;
	width: 350px;
	height: 100vh;
	background: var(--brand-green);
	z-index: 102;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 50px;
}

.menu.active {
	right: 0;
}

.menu-overlay {
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(255, 255, 255, 0.75);
	z-index: 101;
	visibility: hidden;
	opacity: 0;
}

.menu-overlay.active {
	visibility: visible;
	opacity: 1;
}

.menu-close-container {
	position: absolute;
	top: 41px;
	left: 28px;
	width: 18px;
	height: 18px;
	transform-origin: center center;
	transform: rotate(45deg);
	cursor: pointer;
	z-index: 1;
}

.menu-close {
	width: 100%;
	height: 100%;
	transform-style: preserve-3D;
}

.menu-close div {
	width: 100%;
	height: 2px;
	background: #FFFFFF;
	top: 8px;
	transition: all 200ms ease;
}

.menu-close div:last-of-type {
	transform: rotate(90deg) translateX(-2px);
	transform-origin: center;
}

.menu-close:hover div {
	background: #1befc5;
}

.menu-nav {
	margin-top: 75px;
}

.menu-nav ul li:not(:last-child) {
	margin-bottom: 1px;
}

.menu-nav ul li a {
	font-size: 24px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.75);
}

.menu-nav ul li a:hover {
	color: #1befc5;
}

.menu-social {
	position: absolute;
	bottom: 30px;
	left: 30px;
}

.menu-social ul li:hover {
	background: #404040;
}

.menu-social ul li:hover a i {
	color: #FFFFFF;
}

.menu-extra {
	margin-top: 50px;
}

.menu-extra>div:not(:last-child) {
	margin-bottom: 5px;
}

.menu-link,
.menu-link a {
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.75);
}

.menu-link a:hover {
	color: #FFFFFF;
}

/*********************************
5. Home
*********************************/

.home {
	width: 100%;
	margin-top: 117px;
}

.home-height {
	height: 768px;
}

.tab-height {
	height: 368px;
}

.home-slider-container {
	width: 100%;
	height: 100%;
}

.home-container {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 0;
	width: 100%;
}

.home-content {
	max-width: 550px;
}

.home-subtitle {
	font-size: 30px;
	color: var(--brand-green);
	font-weight: 600;
	line-height: 1.1;
}

.home-title {
	font-size: 60px;
	color: #404040;
	line-height: 1.2;
	font-weight: 500;
	margin-top: -2px;
}

.home-text {
	margin-top: 11px;
	font-size: 16px;
}

.home-buttons {
	margin-top: 36px;
	flex-wrap: wrap;
	gap: 10px;
}

.home-buttons>div:not(:last-child) {
	margin-right: 10px;
}

.home-slider-dots {
	position: absolute;
	bottom: 53px;
	left: calc((100vw - 1140px) / 2);
	z-index: 1;
}

.home-slider-custom-dot {
	width: 8px;
	height: 8px;
	background: #b4b4b4;
	border-radius: 50%;
	cursor: pointer;
}

.home-slider-custom-dot.active,
.home-slider-custom-dot:hover {
	background: var(--brand-green);
}

.home-slider-custom-dot:not(:last-child) {
	margin-right: 8px;
}

/*********************************
6. Request Healthcare
*********************************/

.milestones {
	margin-top: 85px;
}

/* Milestone card (wraps the value + its label) */
.milestone-item {
	text-align: center;
}

/* The big number / icon inside a milestone card, e.g. "24/7", "100%" */
.milestone-value {
	font-size: 36px;
	font-weight: 700;
	color: var(--brand-green);
	line-height: 0.75;
}

.milestone-text {
	font-size: 18px;
	font-weight: 600;
	color: #404040;
	line-height: 1.5;
	margin-top: 5px;
}

.about-us-form-container {
	position: relative;
	width: 100%;
	padding: 100px 35px 40px;
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 8px;
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Form Title */

.about-us-form-title {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-green);
	color: #ffffff;
	border-radius: 8px 8px 0 0;
	font-size: 22px;
	font-weight: 600;
}

/* Form */

.about-us-form {
	width: 100%;
}

/* Labels */

.about-us-form label {
	margin-bottom: 7px;
	color: #404040;
	font-size: 14px;
	font-weight: 600;
}

/* Form spacing */

.about-us-form .form-group {
	margin-bottom: 20px;
}

/* Message */

.about-us-form textarea {
	resize: vertical;
}

/* Select fields, marked "selected" once the user has chosen a value */

.about-us-select.selected {
	color: #404040;
}

/* Submit button */

.about-us-button {
	background: var(--brand-green);
	border-color: var(--brand-green);
	font-size: 14px;
	font-weight: 600;
	padding: 12px 20px;
	transition: all 0.2s ease;
}

.about-us-button:hover {
	background: var(--brand-green-deep);
	border-color: var(--brand-green-deep);
}

/*********************************
7. Why Choose Us (Care Section)
*********************************/

.care-section {
	position: relative;
	width: 100%;
	background: #eff3f7;
	overflow: hidden;
}

/* Decorative background shapes */

.care-decor {
	position: absolute;
	z-index: 0;
	border-radius: 50%;
	pointer-events: none;
}

.care-decor-1 {
	width: 380px;
	height: 380px;
	top: -160px;
	right: -140px;
	background: rgba(var(--brand-green-rgb), 0.06);
}

.care-decor-2 {
	width: 260px;
	height: 260px;
	bottom: -120px;
	left: -100px;
	background: rgba(var(--brand-red-rgb), 0.05);
}

.care-content {
	position: relative;
	z-index: 1;
	padding-top: 102px;
	padding-bottom: 90px;
}

.care-commitment-row {
	margin-top: 90px;
}

/* Eyebrow badge (replaces the old plain-gray section-subtitle) */

.care-eyebrow {
	display: inline-block;
	margin-bottom: 4px;
	padding: 7px 16px;
	border-radius: 30px;
	background: #e8f5ec;
	color: var(--brand-green);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.care-description {
	margin-top: 22px;
}

.care-description p {
	margin-bottom: 16px;
	color: var(--au-text);
}

.care-description p:last-child {
	margin-bottom: 0;
}

/* =========================================
   IMAGE
========================================= */

.care-image-container {
	position: relative;
	width: 100%;
}

.care-image-shape {
	position: absolute;
	top: 24px;
	left: -24px;
	width: 100%;
	height: 100%;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--brand-green), #036019);
	opacity: 0.9;
	z-index: 0;
}

.care-image {
	position: relative;
	z-index: 1;
	width: 100%;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
	border-radius: 16px;
	overflow: hidden;
}

.care-image img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.care-image-badge {
	position: absolute;
	z-index: 2;
	left: 28px;
	bottom: -22px;

	display: inline-flex;
	align-items: center;
	gap: 10px;

	padding: 14px 20px;

	border-radius: 12px;
	background: #ffffff;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.care-image-badge i {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #fdecec;
	color: var(--brand-red);
	font-size: 14px;
}

.care-image-badge span {
	color: #23291f;
	font-size: 13px;
	font-weight: 700;
}

/* =========================================
   FEATURES
========================================= */

.care-features {
	margin-top: 8px;
}

.care-features ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.care-features ul li {
	padding: 20px 22px;
	border-radius: 12px;
	background: #ffffff;
	border-left: 3px solid var(--brand-green);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.care-features ul li:not(:last-child) {
	margin-bottom: 18px;
}

.care-features ul li:hover {
	transform: translateX(4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Alternate accent color for rhythm */

.care-features ul li:nth-child(2) {
	border-left-color: var(--brand-red);
}

.care-features ul li:nth-child(2) .care-icon-container {
	background: #fdecec;
}

.care-features ul li:nth-child(2) .care-icon i {
	color: var(--brand-red);
}

.care-feature-content {
	padding-left: 20px;
}

.care-feature-title {
	font-size: 17px;
	font-weight: 700;
	color: #23291f;
	line-height: 1.25;
}

.care-feature-text {
	margin-top: 5px;
	font-size: 16px;
	font-weight: 500;
	color: #868686;
	line-height: 1.65;
}

.care-icon-container {
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	background: #e8f5ec;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.care-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.care-icon i {
	font-size: 22px;
	color: var(--brand-green);
	line-height: 1;
}

/*********************************
8. CTA
*********************************/

.cta {
	width: 100%;
	background: var(--brand-red);
	padding-top: 49px;
	padding-bottom: 46px;
}

.cta-title {
	font-size: 36px;
	font-weight: 600;
	color: #FFFFFF;
	line-height: 1.2;
}

.cta-text {
	font-size: 16px;
	font-weight: 500;
	color: #FFFFFF;
	line-height: 1.5;
	margin-top: -1px;
	margin-right: 30px;
}

.cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 12px;

	height: 59px;
	padding-left: 32px;
	padding-right: 30px;

	background: #ffff;
	border: solid 2px transparent;
	border-radius: 19px;

	color: var(--brand-red);
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
	text-decoration: none;

	transition: all 200ms ease;
}

.cta-button i {
	font-size: 14px;
	transition: transform 200ms ease;
}

.cta-button:hover {
	background: transparent;
	border-color: #ffffff;
	color: #ffffff;
}

.cta-button:hover i {
	transform: translateX(4px);
}

/*********************************
9. Services
*********************************/

.services {
	background: #FFFFFF;
	padding-top: 91px;
	padding-bottom: 25px;
}

.services-row {
	margin-top: 68px;
	justify-content: center;
}

.service-col {
	margin-bottom: 55px;
}

.service-title {
	font-size: 20px;
	font-weight: 600;
	color: #404040;
	line-height: 1.2;
	margin-top: 17px;
}

.service-text {
	margin-top: 21px;
}

.service-card .service-icon i {
	font-size: 50px;
	color: var(--brand-red);
}

/* =========================================
   CLIENTS / HEALTHCARE PARTNERS
========================================= */

.clients-section {
	position: relative;

	width: 100%;

	padding: 100px 0 90px;

	background: #f6f9f7;

	overflow: hidden;
}

/* =========================================
   SUBTLE BACKGROUND
========================================= */

.clients-section::before {
	content: "";

	position: absolute;

	width: 420px;
	height: 420px;

	top: -220px;
	left: -180px;

	border-radius: 50%;

	background: rgba(var(--brand-green-rgb), 0.045);

	pointer-events: none;
}

.clients-section::after {
	content: "";

	position: absolute;

	width: 350px;
	height: 350px;

	right: -180px;
	bottom: -180px;

	border-radius: 50%;

	background: rgba(var(--brand-red-rgb), 0.035);

	pointer-events: none;
}

/* =========================================
   SECTION HEADING
========================================= */

.clients-heading {
	position: relative;

	margin-bottom: 46px;

	z-index: 1;
}

.clients-eyebrow {
	display: inline-block;

	margin-bottom: 14px;

	color: var(--brand-green);

	font-family: 'IBM Plex Mono', 'Montserrat', monospace;

	font-weight: 600;

	letter-spacing: 2.5px;

	text-transform: uppercase;
}

.clients-heading h2 {
	margin: 0;

	color: #23291f;

	line-height: 1.2;

	font-weight: 700;
}

.clients-heading h2 .accent-word {
	color: var(--brand-green);
}

.clients-heading p {
	max-width: 620px;

	margin: 18px auto 0;

	color: #6b756f;

	line-height: 1.8;
}

/* =========================================
   COVERAGE STATUS LINE (signature element)
========================================= */

.coverage-status {
	display: inline-flex;

	align-items: center;

	gap: 9px;

	margin-top: 26px;

	padding: 8px 18px;

	border: 1px solid #dfe8e2;

	border-radius: 999px;

	background: #ffffff;
}

.coverage-dot {
	position: relative;

	width: 7px;
	height: 7px;

	border-radius: 50%;

	background: var(--brand-green);
}

.coverage-dot::after {
	content: "";

	position: absolute;

	top: -4px;
	left: -4px;

	width: 15px;
	height: 15px;

	border-radius: 50%;

	border: 1px solid var(--brand-green);

	opacity: 0.6;

	animation: coverage-pulse 2.2s ease-out infinite;
}

@keyframes coverage-pulse {
	0% {
		transform: scale(0.6);
		opacity: 0.6;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

.coverage-status-text {
	color: #4b544e;

	font-family: 'IBM Plex Mono', 'Montserrat', monospace;

	font-weight: 500;

	letter-spacing: 0.4px;
}

/* =========================================
   CLIENT ROW
========================================= */

.clients-row {
	position: relative;

	z-index: 1;

	margin-left: -10px;
	margin-right: -10px;
}

.clients-col {
	padding-left: 10px;
	padding-right: 10px;

	margin-bottom: 20px;
}

/* =========================================
   CLIENT CARD
========================================= */

.client-card {
	position: relative;

	height: 100%;

	min-height: 340px;

	display: flex;

	flex-direction: column;

	background: #ffffff;

	border: 1px solid #e7ece8;

	border-radius: 14px;

	overflow: hidden;

	box-shadow:
		0 5px 25px rgba(0, 0, 0, 0.045);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

/* Top accent bar, colored per region via --accent */

.client-card::before {
	content: "";

	position: absolute;

	top: 0;
	left: 0;
	right: 0;

	height: 4px;

	background: var(--accent, var(--brand-green));

	z-index: 2;
}

/* Hover */

.client-card:hover {
	transform: translateY(-7px);

	border-color: #d9e2dc;

	box-shadow:
		0 16px 40px rgba(0, 0, 0, 0.10);
}

/* =========================================
   REGION CODE BADGE
   (replaces the arbitrary 01/02/03/04 markers
   with the region's own two-letter code)
========================================= */

.client-code {
	position: absolute;

	top: 16px;
	left: 16px;

	z-index: 3;

	display: inline-flex;

	align-items: center;
	justify-content: center;

	min-width: 34px;
	height: 24px;

	padding: 0 8px;

	border-radius: 6px;

	background: var(--accent, var(--brand-green));

	color: #ffffff;

	font-family: 'IBM Plex Mono', 'Montserrat', monospace;

	font-size: 11px;

	font-weight: 600;

	letter-spacing: 0.5px;
}

/* =========================================
   LOGO / IMAGE
========================================= */

.client-logo {
	width: 100%;

	height: 190px;

	display: flex;

	align-items: center;

	justify-content: center;

	background: #ffffff;
}

/* Image fits inside parent */

.client-logo img {
	display: block;

	width: 100%;
	height: 100%;

	max-width: 100%;
	max-height: 100%;

	object-fit: cover;

	object-position: center;

	transition: transform 0.3s ease;
}

.client-card:hover .client-logo img {
	transform: scale(1.04);
}

/* =========================================
   CARD CONTENT
========================================= */

.client-card-content {
	position: relative;

	flex: 1;

	display: flex;

	flex-direction: column;

	justify-content: center;

	padding: 18px 22px 24px;

	border-top: 1px solid #f0f2f1;

	text-align: center;
}

/* Client name */

.client-card-content h3 {
	margin: 0;

	color: #23291f;

	font-size: 16px;

	line-height: 1.45;

	font-weight: 700;
}

/* Partner label */

.client-label {
	display: inline-block;

	margin-top: 8px;

	color: #97a19b;

	font-family: 'IBM Plex Mono', 'Montserrat', monospace;

	font-size: 12px;

	font-weight: 500;

	letter-spacing: 1.2px;

	text-transform: uppercase;
}

/* =========================================
   BOTTOM MESSAGE
========================================= */

.clients-bottom {
	position: relative;

	z-index: 1;

	margin-top: 42px;
}

.clients-bottom-line {
	width: 45px;
	height: 3px;

	margin: 0 auto 16px;

	border-radius: 3px;

	background: var(--brand-green);
}

.clients-bottom p {
	margin: 0;

	color: var(--text-muted);

	font-size: 16px;

	line-height: 1.7;
}

.clients-bottom strong {
	color: var(--brand-green);

	font-weight: 700;
}

/* =========================================
   HEALTHCARE STAFFING SERVICES
========================================= */

.staffing-services {
	position: relative;
	padding: 100px 0;
	background: #f8faf9;
	overflow: hidden;
}

/* =========================================
   SECTION HEADER
========================================= */

.staffing-header {
	margin-bottom: 60px;
}

.staffing-header .section-subtitle {
	margin-bottom: 12px;
	color: var(--brand-red);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.staffing-header h2 {
	margin: 0 0 18px;
	color: #222222;
	font-size: 42px;
	line-height: 1.2;
	font-weight: 700;
}

.staffing-header p {
	max-width: 700px;
	margin: 0 auto;
	color: #6b6b6b;
	font-size: 16px;
	line-height: 1.8;
}

/* =========================================
   PROFESSIONAL CARDS
========================================= */

.staffing-professionals {
	margin-left: -12px;
	margin-right: -12px;
	margin-bottom: 90px;
}

.staffing-col {
	padding-left: 12px;
	padding-right: 12px;
	margin-bottom: 24px;
}

.staffing-card {
	position: relative;
	height: 100%;
	min-height: 270px;

	display: flex;
	align-items: flex-start;

	padding: 35px 32px;

	background: #ffffff;
	border: 1px solid #e8ece9;
	border-radius: 16px;

	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

	overflow: hidden;

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.staffing-card::before {
	content: "";
	position: absolute;

	left: 0;
	top: 0;
	bottom: 0;

	width: 5px;

	background: var(--brand-green);
}

.staffing-card:hover {
	transform: translateY(-6px);
	border-color: rgba(var(--brand-green-rgb), 0.25);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
}

/* =========================================
   CARD ICON
========================================= */

.staffing-card-icon {
	flex: 0 0 62px;

	width: 62px;
	height: 62px;

	margin-right: 25px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 14px;

	background: rgba(var(--brand-green-rgb), 0.09);
}

.staffing-card-icon i {
	color: var(--brand-green);
	font-size: 26px;
}

/* =========================================
   CARD CONTENT
========================================= */

.staffing-card-content {
	flex: 1;
}

.staffing-label {
	display: block;

	margin-bottom: 8px;

	color: var(--brand-red);

	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.staffing-card-content h3 {
	margin: 0 0 15px;

	color: #222222;

	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
}

.staffing-card-content p {
	margin: 0;

	color: var(--au-text);

	font-size: 16px;
	line-height: 1.8;
}

/* =========================================
   STAFFING SOLUTIONS HEADER
========================================= */

.staffing-solutions-header {
	margin-bottom: 45px;
}

.staffing-solutions-header>span {
	display: inline-block;

	margin-bottom: 12px;

	color: var(--brand-red);

	font-size: 13px;
	font-weight: 700;

	text-transform: uppercase;
	letter-spacing: 2px;
}

.staffing-solutions-header h2 {
	margin: 0 0 15px;

	color: #222222;

	font-size: 36px;
	line-height: 1.25;
	font-weight: 700;
}

.staffing-solutions-header p {
	max-width: 750px;

	margin: 0 auto;

	color: var(--au-text);

	font-size: 15px;
	line-height: 1.8;
}

/* =========================================
   SOLUTION CARDS
========================================= */

.staffing-solutions {
	margin-left: -12px;
	margin-right: -12px;
}

.solution-card {
	position: relative;

	height: 100%;
	min-height: 330px;

	padding: 40px;

	background: #ffffff;

	border-radius: 18px;

	border: 1px solid #e7ebe8;

	overflow: hidden;

	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.solution-card:hover {
	transform: translateY(-6px);

	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.09);
}

/* Decorative number */

.solution-number {
	position: absolute;

	top: 20px;
	right: 30px;

	color: rgba(var(--brand-green-rgb), 0.07);

	font-size: 80px;
	line-height: 1;

	font-weight: 800;
}

/* Solution icon */

.solution-icon {
	width: 58px;
	height: 58px;

	margin-bottom: 25px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 50%;

	background: var(--brand-green);
}

.solution-icon i {
	color: #ffffff;
	font-size: 23px;
}

/* Solution content */

.solution-content h3 {
	margin: 0 0 15px;

	color: #222222;

	font-size: 25px;
	font-weight: 700;
}

.solution-content p {
	/* margin: 0 0 22px; */

	color: var(--au-text);

	font-size: 16px;
	line-height: 1.8;
}

.solution-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	color: var(--brand-green);

	font-size: 13px;
	font-weight: 700;

	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;

	transition: color 0.2s ease;
}

.solution-link:hover {
	color: var(--brand-red);
	text-decoration: none;
}

.solution-link i {
	transition: transform 0.2s ease;
}

.solution-link:hover i {
	transform: translateX(5px);
}

/* =========================================
   CTA
========================================= */

.staffing-cta {
	margin-top: 70px;

	padding: 35px 40px;

	border-radius: 16px;

	background: var(--brand-green);

	position: relative;
	overflow: hidden;
}

.staffing-cta::after {
	content: "";

	position: absolute;

	width: 250px;
	height: 250px;

	right: -100px;
	top: -100px;

	border-radius: 50%;

	background: rgba(255, 255, 255, 0.08);
}

.staffing-cta-content {
	position: relative;
	z-index: 2;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 30px;
}

.staffing-cta-content span {
	display: block;

	margin-bottom: 6px;

	color: rgba(255, 255, 255, 0.75);

	font-size: 12px;
	font-weight: 700;

	text-transform: uppercase;
	letter-spacing: 1.5px;
}

.staffing-cta-content h3 {
	margin: 0;

	color: #ffffff;

	font-size: 25px;
	line-height: 1.3;
	font-weight: 700;
}

.staffing-cta-button {
	flex-shrink: 0;

	display: inline-flex;
	align-items: center;
	gap: 12px;

	padding: 14px 25px;

	color: #ffffff;

	background: var(--brand-red);

	border-radius: 8px;

	font-size: 13px;
	font-weight: 700;

	text-transform: uppercase;
	text-decoration: none;

	transition:
		background 0.2s ease,
		transform 0.2s ease;
}

.staffing-cta-button:hover {
	color: #ffffff;
	background: var(--brand-red-deep);
	transform: translateY(-2px);
	text-decoration: none;
}

/*********************************
10. Family Support (formerly "Extra")
*********************************/

.family-support {
	padding-top: 54px;
	padding-bottom: 53px;
}

.family-support-card {
	background: #ffffffe8;
	width: 50%;
	padding-top: 74px;
	padding-left: 46px;
	padding-right: 30px;
	padding-bottom: 63px;
	box-shadow: 0px 25px 38px rgba(0, 0, 0, 0.2);
	border-radius: 8px;
}

.family-support-badge>div:first-child {
	font-size: 30px;
	font-weight: 700;
	color: var(--brand-red);
	line-height: 0.75;
}

.family-support-badge>div:last-child {
	font-size: 14px;
	font-weight: 500;
	color: var(--brand-green-deep);
	line-height: 0.75;
}

.family-support-badge>div:first-child span {
	display: inline-block;
	font-size: 36px;
	font-weight: 400;
	vertical-align: super;
}

.family-support-title {
	font-size: 42px;
	font-weight: 600;
	color: #404040;
	margin-top: 16px;
	line-height: 1.11;
}

.family-support-text {
	margin-top: 20px;
}

.family-support-cta {
	display: inline-block;
	margin-top: 47px;
}
.family-support-text ul li{
	font-size: 16px;
}
/* ========================================
   Footer
======================================== */

.footer {
	position: relative;
	display: block;
	background: #1f2522;
	color: #ffffff;
}

/* Brand line bookending the page */

.footer::before {
	content: "";
	display: block;
	height: 3px;
	width: 100%;
	background: linear-gradient(90deg, var(--brand-green), var(--brand-red));
}

.footer-content {
	padding: 65px 0 50px;
}

.footer-col {
	margin-bottom: 30px;
}

.footer-about {
	padding-right: 20px;
}

.footer-logo {
	margin-bottom: 25px;
}

.footer-logo a {
	display: inline-block;
}

.footer-logo img {
	display: block;
	max-width: 100%;
	height: 60px;
	width: auto;
}

.footer-about-text p {
	margin: 0 0 16px;
	color: #b9c0bc;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}

.footer-about-text p:last-child {
	margin-bottom: 0;
}

/* Social row */

.footer-social {
	display: flex;
	gap: 10px;
	margin: 26px 0 0;
	padding: 0;
	list-style: none;
}

.footer-social li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 50%;
	color: #ffffff;
	font-size: 16px;
	transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.footer-social li a:hover {
	background: var(--brand-green);
	border-color: var(--brand-green);
	transform: translateY(-3px);
}

.footer-section {
	padding-top: 5px;
}

.footer-title {
	position: relative;
	margin-bottom: 26px;
	padding-bottom: 12px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
}

.footer-title-spaced {
	margin-top: 30px;
}

/* Green underline */

.footer-title::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 36px;
	height: 2px;
	background: var(--brand-green);
}

.contact-list {
	margin: 0 0 8px;
	padding: 0;
	list-style: none;
}

.contact-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	color: #b9c0bc;
	font-size: 14px;
	line-height: 1.6;
}

.contact-icon-badge {
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(var(--brand-green-rgb), 0.14);
	color: #2fbf5a;
	font-size: 13px;
}

.contact-list li a {
	color: #b9c0bc;
	text-decoration: none;
	transition: color 0.2s ease;
}

.contact-list li a:hover {
	color: #ffffff;
}

.footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links li {
	margin-bottom: 12px;
}

.footer-links li a {
	display: inline-flex;
	align-items: center;
	color: #b9c0bc;
	font-size: 16px;
	text-decoration: none;
	transition:
		color 0.2s ease,
		padding-left 0.2s ease;
}

.footer-links li a i {
	margin-right: 9px;
	color: var(--brand-green);
	font-size: 9px;
}

.footer-links li a:hover {
	padding-left: 4px;
	color: #ffffff;
}

.opening-hours-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.opening-hours-list li {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	padding: 10px 14px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.03);
	color: #b9c0bc;
	font-size: 13px;
}

.opening-hours-list li span:first-child {
	color: #ffffff;
	font-weight: 500;
}

.opening-hours-list li span:last-child {
	text-align: right;
}

.footer-bar {
	width: 100%;
	background: rgb(228, 34, 40);
	;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bar-content {
	min-height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.copyright {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
}

.footer-nav ul {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-nav ul li {
	margin-left: 25px;
}

.footer-nav ul li a {
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer-nav ul li a:hover {
	color: #2fbf5a;
}

.img-inline {
	float: left;
	width: 100px;
	margin: 5px 15px 10px 0;
	border-radius: 8px;
}

/* =========================================
   TEAM
========================================= */

.team {
	width: 100%;
	padding-top: 90px;
	padding-bottom: 90px;
	background: #ffffff;
	position: relative;
	overflow: hidden;
}

/* =========================================
   TEAM ROW
========================================= */

.team-row {
	margin-top: 50px;
}

.team-col {
	margin-bottom: 30px;
}

/* =========================================
   TEAM ITEM
========================================= */

.team-item {
	width: 100%;
	height: 100%;

	background: #ffffff;

	border: 1px solid var(--au-border-light);
	border-radius: 12px;

	overflow: hidden;

	text-align: center;

	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

	transition: all 0.3s ease;
}

.team-item:hover {
	transform: translateY(-6px);

	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
}

/* =========================================
   TEAM IMAGE PARENT
========================================= */

.team-image {
	width: 100%;
	height: 300px;

	display: flex;
	align-items: center;
	justify-content: center;

	overflow: hidden;

	background: #fdf5f5;

	position: relative;
}

/* =========================================
   TEAM IMAGE
========================================= */

.team-image img {
	display: block;

	width: 100%;
	height: 100%;

	max-width: 100%;
	max-height: 100%;

	object-fit: contain;
	object-position: center center;

	margin: 0;
}

/* =========================================
   TEAM CONTENT
========================================= */

.team-content {
	padding: 25px 25px 28px;
}

/* =========================================
   TEAM NAME
========================================= */

.team-name {
	margin-bottom: 6px;
}

.team-name a {
	font-size: 21px;
	line-height: 1.3;

	font-weight: 700;

	color: #333333;

	text-decoration: none;

	transition: color 0.3s ease;
}

.team-item:hover .team-name a {
	color: var(--brand-red);
}

/* =========================================
   TEAM TITLE
========================================= */

.team-title {
	margin-bottom: 14px;

	font-size: 13px;
	line-height: 1.4;

	font-weight: 700;

	text-transform: uppercase;
	letter-spacing: 0.5px;

	color: var(--brand-red);
}

/* =========================================
   TEAM DESCRIPTION
========================================= */

.team-text {
	max-width: 420px;
	margin: 0 auto;
}

.team-text p {
	margin: 0;

	font-size: 14px;
	line-height: 1.7;

	color: var(--text-muted);
}

/* =========================================
   PROVIDER RATES
========================================= */

.provider-rates {
	width: 100%;
	padding: 90px 0;

	background: #fafafa;

	position: relative;
	overflow: hidden;
}

/* =========================================
   INTRO
========================================= */

.rates-intro {
	max-width: 650px;

	margin: 20px auto 0;

	font-size: 16px;
	line-height: 1.7;

	color: var(--text-muted);
}

/* =========================================
   PROVIDER RATE ROW
========================================= */

.provider-rates-row {
	margin-top: 50px;
}

.provider-rate-col {
	margin-bottom: 30px;
}

/* =========================================
   CARD
========================================= */

.provider-rate-card {
	height: 100%;

	background: #ffffff;

	border: 1px solid var(--au-border-light);
	border-radius: 14px;

	overflow: hidden;

	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.provider-rate-card:hover {
	transform: translateY(-6px);

	border-color: var(--brand-red);

	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.10);
}

/* =========================================
   CARD HEADER
========================================= */

.provider-card-header {
	display: flex;
	align-items: center;

	padding: 25px 28px;

	border-bottom: 1px solid var(--au-border-light);
}

.provider-icon {
	flex: 0 0 52px;

	width: 52px;
	height: 52px;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-right: 16px;

	border-radius: 12px;

	background: #fff0f1;

	color: var(--brand-red);

	font-size: 21px;
}

.provider-card-header h3 {
	margin: 0 0 4px;

	font-size: 21px;
	line-height: 1.3;

	font-weight: 700;

	color: #333333;
}

.provider-card-header span {
	font-size: 12px;

	font-weight: 600;

	text-transform: uppercase;
	letter-spacing: 0.7px;

	color: #999999;
}

/* =========================================
   MAIN RATE
========================================= */

.provider-rate {
	display: flex;
	align-items: baseline;

	padding: 25px 28px 20px;

	background: linear-gradient(135deg,
			#fff5f5 0%,
			#ffffff 100%);
}

.rate {
	font-size: 40px;
	line-height: 1;

	font-weight: 800;

	color: var(--brand-red);
}

.rate-unit {
	margin-left: 7px;

	font-size: 15px;
	font-weight: 600;

	color: var(--text-muted);
}

/* =========================================
   DETAILS
========================================= */

.provider-details {
	padding: 5px 28px 28px;
}

.detail-title {
	display: flex;
	align-items: center;

	margin-top: 20px;
	margin-bottom: 10px;

	font-size: 14px;

	font-weight: 700;

	color: #333333;
}

.detail-title i {
	width: 28px;

	color: var(--brand-red);

	font-size: 14px;
}

/* =========================================
   RATE LIST
========================================= */

.provider-details ul {
	list-style: none;

	padding: 0;
	margin: 0;
}

.provider-details ul li {
	display: flex;
	justify-content: space-between;
	align-items: center;

	padding: 9px 0;

	border-bottom: 1px solid #f1f1f1;

	font-size: 16px;
}

.provider-details ul li:last-child {
	border-bottom: none;
}

.provider-details ul li span {
	color: var(--text-muted);
}

.provider-details ul li strong {
	color: #333333;

	font-weight: 700;
}

/* =========================================
   SPECIAL RN
========================================= */

.special-rate {
	border-top: 4px solid var(--brand-red);
}

.special-rate .provider-rate {
	background: linear-gradient(135deg,
			#fff0f1 0%,
			#ffffff 100%);
}

/* =========================================
   INFORMATION NOTE
========================================= */

.assignment-note {
	display: flex;
	align-items: flex-start;

	margin-top: 20px;
	padding: 15px;

	background: #fafafa;

	border-radius: 8px;
}

.assignment-note i {
	margin-right: 10px;

	padding-top: 2px;

	color: var(--brand-red);

	font-size: 15px;
}

.assignment-note p {
	margin: 0;

	font-size: 12px;
	line-height: 1.6;

	color: var(--text-muted);
}

/* =========================================
   STRAIGHT TIME NOTE
========================================= */

.straight-time-note {
	margin-top: 12px;

	padding: 10px 12px;

	border-left: 3px solid var(--brand-red);

	background: #fff7f7;

	font-size: 12px;
	line-height: 1.5;

	color: #666666;
}

/* =========================================
   BLOG / HEALTHCARE INSIGHTS
========================================= */

.blog {
	width: 100%;

	padding: 90px 0;

	background: #f8faf9;
}

/* =========================================
   INTRO
========================================= */

.blog-intro {
	max-width: 650px;

	margin: 18px auto 0;

	color: var(--text-muted);

	font-size: 15px;
	line-height: 1.7;
}

/* =========================================
   BLOG ROW
========================================= */

.blog-row {
	margin-top: 50px;
}

.blog-col {
	margin-bottom: 30px;
}

/* =========================================
   BLOG CARD
========================================= */

.blog-card {
	height: 100%;

	display: flex;
	flex-direction: column;

	background: #ffffff;

	border-radius: 12px;

	overflow: hidden;

	border: 1px solid var(--au-border-light);

	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.blog-card:hover {
	transform: translateY(-7px);

	border-color: rgba(var(--brand-green-rgb), 0.25);

	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

/* =========================================
   IMAGE
========================================= */

.blog-card-image {
	position: relative;

	width: 100%;
	height: 230px;

	overflow: hidden;
}

.blog-card-image img {
	width: 100%;
	height: 100%;

	display: block;

	object-fit: cover;

	transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
	transform: scale(1.05);
}

/* =========================================
   CATEGORY
========================================= */

.blog-category {
	position: absolute;

	left: 18px;
	bottom: 18px;

	padding: 7px 13px;

	background: var(--brand-red);

	color: #ffffff;

	border-radius: 4px;

	font-size: 11px;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 0.5px;
}

/* =========================================
   CARD CONTENT
========================================= */

.blog-card-content {
	flex: 1;

	display: flex;
	flex-direction: column;

	padding: 25px;
}

/* =========================================
   DATE / META
========================================= */

.blog-date {
	display: flex;
	align-items: center;

	margin-bottom: 12px;

	color: var(--brand-green);

	font-size: 11px;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 0.5px;
}

.blog-date i {
	margin-right: 7px;

	color: var(--brand-red);
}

/* =========================================
   TITLE
========================================= */

.blog-card h3 {
	margin: 0 0 13px;

	font-size: 20px;

	line-height: 1.4;

	font-weight: 700;
}

.blog-card h3 a {
	color: #333333;

	text-decoration: none;

	transition: color 0.25s ease;
}

.blog-card h3 a:hover {
	color: var(--brand-green);
}

/* =========================================
   DESCRIPTION
========================================= */

.blog-card p {
	margin: 0;

	color: var(--text-muted);

	font-size: 16px;

	line-height: 1.75;
}

/* =========================================
   READ MORE
========================================= */

.blog-read-more {
	display: inline-flex;
	align-items: center;

	margin-top: auto;
	padding-top: 20px;

	color: var(--brand-red);

	font-size: 13px;

	font-weight: 700;

	text-decoration: none;

	transition: color 0.25s ease;
}

.blog-read-more i {
	margin-left: 8px;

	transition: transform 0.25s ease;
}

.blog-read-more:hover {
	color: var(--brand-green);
}

.blog-read-more:hover i {
	transform: translateX(5px);
}

/* =========================================
   VIEW ALL
========================================= */

.blog-view-all {
	margin-top: 25px;
}

.blog-button {
	display: inline-flex;
	align-items: center;

	padding: 13px 25px;

	background: var(--brand-green);

	color: #ffffff;

	border-radius: 5px;

	font-size: 13px;

	font-weight: 700;

	text-decoration: none;

	transition:
		background 0.25s ease,
		transform 0.25s ease;
}

.blog-button i {
	margin-left: 9px;
}

.blog-button:hover {
	background: var(--brand-red);

	color: #ffffff;

	transform: translateY(-2px);
}

/* =========================================
   CONTACT US
========================================= */

.contact {
	width: 100%;
	padding: 95px 0 100px;
	background: #f7faf8;
	position: relative;
	overflow: hidden;
}

/* Decorative background */

.contact::before {
	content: "";
	position: absolute;

	width: 420px;
	height: 420px;

	top: -220px;
	right: -180px;

	border-radius: 50%;

	background: rgba(var(--brand-green-rgb), 0.045);

	pointer-events: none;
}

.contact::after {
	content: "";

	position: absolute;

	width: 280px;
	height: 280px;

	bottom: -160px;
	left: -130px;

	border-radius: 50%;

	background: rgba(var(--brand-red-rgb), 0.035);

	pointer-events: none;
}

/* =========================================
   CONTACT HEADER
========================================= */

.contact-heading {
	max-width: 700px;

	margin: 0 auto 55px;
}

.contact-intro {
	max-width: 600px;

	margin: 18px auto 0;
}

.contact-intro p {
	margin: 0;

	color: var(--text-muted);

	font-size: 16px;

	line-height: 1.8;
}

/* =========================================
   CONTACT ROW
========================================= */

.contact-row {
	position: relative;
	z-index: 2;

	align-items: stretch;
}

/* =========================================
   CONTACT INFORMATION
========================================= */

.contact-information {
	height: 100%;

	padding: 38px;

	border-radius: 16px;

	background: var(--brand-green);

	position: relative;

	overflow: hidden;

	box-shadow: 0 15px 40px rgba(var(--brand-green-rgb), 0.16);
}

/* Decorative shape */

.contact-information::after {
	content: "";

	position: absolute;

	width: 230px;
	height: 230px;

	right: -100px;
	bottom: -110px;

	border: 45px solid rgba(255, 255, 255, 0.07);

	border-radius: 50%;
}

/* Header */

.contact-info-header {
	position: relative;
	z-index: 2;

	margin-bottom: 30px;
}

.contact-info-header>span {
	display: inline-block;

	margin-bottom: 10px;

	color: rgba(255, 255, 255, 0.75);

	font-size: 11px;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 1.5px;
}

.contact-info-header h3 {
	margin: 0 0 13px;

	color: #ffffff;

	font-size: 28px;

	font-weight: 700;

	line-height: 1.25;
}

.contact-info-header p {
	margin: 0;

	color: rgba(255, 255, 255, 0.82);

	font-size: 16px;

	line-height: 1.8;
}

/* =========================================
   CONTACT INFO CARDS
========================================= */

.contact-info-card {
	display: flex;

	align-items: center;

	position: relative;
	z-index: 2;

	width: 100%;

	padding: 17px 16px;

	margin-bottom: 12px;

	border: 1px solid rgba(255, 255, 255, 0.13);

	border-radius: 10px;

	background: rgba(255, 255, 255, 0.09);

	color: #ffffff;

	text-decoration: none;

	transition: all 0.25s ease;
}

.contact-info-card:hover {
	color: #ffffff;

	background: rgba(255, 255, 255, 0.16);

	transform: translateX(4px);
}

.contact-info-icon {
	width: 44px;
	height: 44px;

	flex-shrink: 0;

	display: flex;

	align-items: center;
	justify-content: center;

	margin-right: 14px;

	border-radius: 9px;

	background: #ffffff;

	color: var(--brand-green);

	font-size: 16px;
}

.contact-info-card-content {
	min-width: 0;

	flex: 1;
}

.contact-info-card-content span {
	display: block;

	margin-bottom: 3px;

	color: rgba(255, 255, 255, 0.68);

	font-size: 10px;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 1px;
}

.contact-info-card-content strong {
	display: block;

	color: #ffffff;

	font-size: 16px;

	font-weight: 600;

	line-height: 1.5;

	word-break: break-word;
}

.contact-info-card-content small {
	display: block;

	margin-top: 2px;

	color: rgba(255, 255, 255, 0.65);

	font-size: 14px;
}

.contact-info-arrow {
	margin-left: 10px;

	color: rgba(255, 255, 255, 0.5);

	font-size: 16px;
}

/* =========================================
   HOURS
========================================= */

.contact-hours {
	position: relative;
	z-index: 2;

	display: flex;

	align-items: center;

	padding: 20px 4px 5px;

	color: #ffffff;
}

.contact-hours-icon {
	width: 42px;
	height: 42px;

	display: flex;

	align-items: center;
	justify-content: center;

	margin-right: 14px;

	border-radius: 50%;

	background: var(--brand-red);

	color: #ffffff;

	font-size: 15px;
}

.contact-hours span {
	display: block;

	margin-bottom: 3px;

	color: rgba(255, 255, 255, 0.65);

	font-size: 10px;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 1px;
}

.contact-hours strong {
	display: block;

	font-size: 16px;

	font-weight: 600;
}

.contact-hours p {
	margin: 2px 0 0;

	color: rgba(255, 255, 255, 0.75);

	font-size: 12px;
}

/* =========================================
   CONTACT FORM
========================================= */
.contact-form {
	margin-top: 40px;
}

.contact-form-container {
	height: 100%;

	padding: 42px;

	background: #ffffff;

	border-radius: 16px;

	border: 1px solid #e9eeea;

	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

/* =========================================
   FORM HEADER
========================================= */

.contact-form-header {
	display: flex;

	align-items: center;
	justify-content: space-between;

	margin-bottom: 10px;
}

.contact-form-header>div:first-child span {
	display: block;

	margin-bottom: 7px;

	color: var(--brand-red);

	font-size: 11px;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 1.2px;
}

.contact-form-header h3 {
	margin: 0;

	color: #333333;

	font-size: 27px;

	font-weight: 700;
}

.contact-form-header-icon {
	width: 52px;
	height: 52px;

	display: flex;

	align-items: center;
	justify-content: center;

	border-radius: 12px;

	background: #eef8f1;

	color: var(--brand-green);

	font-size: 19px;
}

.contact-form-description {
	margin: 0 0 28px;

	color: var(--text-muted);

	font-size: 16px;

	line-height: 1.7;
}

/* =========================================
   FORM GRID
========================================= */

.contact-form-grid {
	display: grid;

	grid-template-columns: 1fr 1fr;

	column-gap: 18px;
}

/* =========================================
   FORM FIELD
========================================= */

.contact-field {
	margin-bottom: 18px;
}

.contact-field label {
	display: block;

	margin-bottom: 7px;

	color: #444444;

	font-size: 11px;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 0.5px;
}

.contact-field input,
.contact-field textarea {
	width: 100%;

	border: 1px solid #e3e7e4;

	border-radius: 7px;

	background: #fafcfb;

	color: #333333;

	font-family: inherit;

	font-size: 13px;

	outline: none;

	transition: all 0.25s ease;
}

.contact-field input {
	height: 50px;

	padding: 0 15px;
}

.contact-field textarea {
	min-height: 130px;

	padding: 14px 15px;

	line-height: 1.6;

	resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
	color: #a5a5a5;
}

.contact-field input:focus,
.contact-field textarea:focus {
	border-color: var(--brand-green);

	background: #ffffff;

	box-shadow: 0 0 0 3px rgba(var(--brand-green-rgb), 0.08);
}

/* =========================================
   FORM BOTTOM
========================================= */

.contact-form-bottom {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 20px;

	margin-top: 3px;
}

.contact-form-bottom p {
	margin: 0;

	color: #999999;

	font-size: 14px;
}

.contact-form-bottom p i {
	margin-right: 5px;

	color: var(--brand-green);
}

/* =========================================
   SUBMIT BUTTON
========================================= */

.contact-submit {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	gap: 12px;

	min-width: 160px;

	padding: 14px 22px;

	border: none;

	border-radius: 6px;

	background: var(--brand-red);

	color: #ffffff;

	font-family: inherit;

	font-size: 12px;

	font-weight: 700;

	text-transform: uppercase;

	letter-spacing: 0.5px;

	cursor: pointer;

	transition: all 0.25s ease;
}

.contact-submit:hover {
	background: var(--brand-green);

	transform: translateY(-2px);

	box-shadow: 0 7px 18px rgba(var(--brand-green-rgb), 0.18);
}

.contact-submit i {
	font-size: 12px;
}

/*********************************
12. Responsive (consolidated)
   All breakpoints below were previously scattered across ~38
   separate @media blocks throughout this file. They're merged
   here, one block per breakpoint, in descending width order,
   with original rule order preserved within each.
*********************************/

@media (min-width: 992px) {
	.footer-col+.footer-col {
		border-left: 1px solid rgba(255, 255, 255, 0.07);
		padding-left: 40px;
	}
}

@media only screen and (max-width: 1840px) {
	.main-nav {
		margin-left: 143px;
	}
}

@media only screen and (max-width: 1760px) {
	.work-hours {
		display: none;
	}
}

@media only screen and (max-width: 1600px) {
	.main-nav {
		margin-left: 24px;
		margin-right: 25px;
	}

	.main-nav ul li:not(:last-child) {
		margin-right: 25px;
	}

	.hide-screen {
		display: none;
	}
}

@media only screen and (max-width: 1440px) {
	.header-phone {
		display: none;
	}
}

@media only screen and (max-width: 1280px) {
	.main-nav ul li:not(:last-child) {
		margin-right: 29px;
	}
}

@media only screen and (max-width: 1199px) {
	.header-button {
		display: none;
	}

	.home-slider-dots {
		left: calc((100vw - 930px) / 2);
	}
}

@media only screen and (max-width: 991px) {
	.about-us-row {
		min-height: auto;
	}

	.about-us-content {
		padding: 70px 0 40px;
	}

	.about-us-image-wrapper {
		position: relative;
		inset: auto;
		width: 100%;
		height: 400px;
		margin-bottom: 50px;
	}

	.about-us-image {
		height: 100%;
	}

	.about-info-card {
		padding: 22px;
	}

	.care-content {
		padding-top: 70px;
		padding-bottom: 60px;
	}

	.care-commitment-row {
		margin-top: 60px;
	}

	.care-image-shape {
		display: none;
	}

	.cta-button {
		margin-top: 33px;
	}

	.staffing-services {
		padding: 80px 0;
	}

	.staffing-header h2 {
		font-size: 36px;
	}

	.staffing-card {
		min-height: auto;
	}

	.staffing-solutions-header h2 {
		font-size: 32px;
	}

	.staffing-cta-content {
		align-items: flex-start;
		flex-direction: column;
	}

	.staffing-cta-button {
		width: 100%;
		justify-content: center;
	}

	.clients-section {
		padding: 80px 0;
	}

	.clients-heading {
		margin-bottom: 36px;
	}

	.clients-heading h2 {
		font-size: 34px;
	}

	.client-card {
		min-height: 330px;
	}

	.client-logo {
		height: 180px;
	}

	.contact {
		padding: 75px 0;
	}

	.contact-information {
		margin-bottom: 30px;
	}

	.contact-form-container {
		height: auto;
	}

	.blog {
		padding: 70px 0;
	}

	.blog-row {
		margin-top: 40px;
	}

	.blog-card-image {
		height: 220px;
	}

	.provider-rates {
		padding: 70px 0;
	}

	.provider-rates-row {
		margin-top: 40px;
	}

	.provider-card-header {
		padding: 22px;
	}

	.provider-rate {
		padding-left: 22px;
		padding-right: 22px;
	}

	.provider-details {
		padding-left: 22px;
		padding-right: 22px;
	}

	.team {
		padding-top: 70px;
		padding-bottom: 70px;
	}

	.team-row {
		margin-top: 40px;
	}

	.team-image {
		height: 280px;
	}

	.team-content {
		padding: 22px 20px 25px;
	}

	.footer-content {
		padding: 60px 0 35px;
	}

	.footer-about {
		padding-right: 0;
	}

	.main-nav,
	.header-social {
		display: none;
	}

	.home-slider-dots {
		left: calc((100vw - 690px) / 2);
	}

	.hamburger {
		display: block;
	}

	.about-us-form-container {
		margin-top: 102px;
	}

	.footer-col:not(:last-child) {
		margin-bottom: 80px;
	}
}

@media only screen and (max-width: 767px) {
	.about-us-content {
		padding: 55px 0 30px;
	}

	.about-us-image-wrapper {
		height: 320px;
		margin-bottom: 40px;
	}

	.about-us-text p {
		font-size: 14px;
		line-height: 1.7;
	}

	.about-us-info {
		margin-top: 30px;
		padding-top: 20px;
		gap: 15px;
	}

	.about-info-card {
		padding: 20px 18px;
	}

	.about-info-content h3 {
		font-size: 18px;
	}

	.about-info-content p {
		font-size: 14px;
		line-height: 1.65;
	}

	.milestones {
		margin-top: 30px;
	}

	.milestone-counter {
		font-size: 28px;
	}

	.milestone-text {
		font-size: 12px;
	}

	.care-image-badge {
		left: 16px;
		bottom: -18px;
		padding: 11px 16px;
	}

	.care-image-badge span {
		font-size: 12px;
	}

	.care-features ul li {
		padding: 16px;
	}

	.care-feature-content {
		padding-left: 14px;
	}

	.staffing-services {
		padding: 60px 0;
	}

	.staffing-header {
		margin-bottom: 40px;
	}

	.staffing-header h2 {
		font-size: 30px;
	}

	.staffing-header p {
		font-size: 14px;
	}

	.staffing-professionals {
		margin-bottom: 60px;
	}

	.staffing-card {
		display: block;
		padding: 28px 24px;
	}

	.staffing-card-icon {
		margin-right: 0;
		margin-bottom: 20px;
	}

	.staffing-card-content h3 {
		font-size: 21px;
	}

	.staffing-card-content p {
		font-size: 14px;
		line-height: 1.7;
	}

	.staffing-solutions-header h2 {
		font-size: 28px;
	}

	.solution-card {
		padding: 30px 25px;
	}

	.solution-content h3 {
		font-size: 22px;
	}

	.staffing-cta {
		margin-top: 45px;
		padding: 28px 24px;
	}

	.staffing-cta-content h3 {
		font-size: 21px;
	}

	.clients-section {
		padding: 65px 0 60px;
	}

	.clients-heading {
		margin-bottom: 30px;
	}

	.clients-eyebrow {
		font-size: 9px;

		letter-spacing: 1.5px;
	}

	.clients-heading h2 {
		font-size: 28px;
	}

	.clients-heading p {
		margin-top: 14px;

		font-size: 14px;

		line-height: 1.7;
	}

	.coverage-status {
		margin-top: 20px;

		padding: 7px 14px;
	}

	.coverage-status-text {
		font-size: 10px;
	}

	.clients-row {
		margin-left: -7px;
		margin-right: -7px;
	}

	.clients-col {
		padding-left: 7px;
		padding-right: 7px;

		margin-bottom: 14px;
	}

	.client-card {
		min-height: 300px;

		border-radius: 11px;
	}

	.client-code {
		top: 12px;
		left: 12px;

		min-width: 30px;
		height: 21px;

		font-size: 10px;
	}

	.client-logo {
		height: 155px;

		padding: 20px;
	}

	.client-card-content {
		padding: 15px 15px 20px;
	}

	.client-card-content h3 {
		font-size: 14px;
	}

	.client-label {
		font-size: 8px;
	}

	.clients-bottom {
		margin-top: 28px;
	}

	.clients-bottom p {
		padding: 0 15px;

		font-size: 13px;
	}

	.footer-content {
		padding: 50px 0 35px;
	}

	.footer-bar-content {
		gap: 14px;
		padding: 16px 0;
		text-align: center;
	}

	.footer-nav ul {
		flex-wrap: wrap;
		justify-content: center;
	}

	.footer-nav ul li {
		margin: 4px 12px;
	}

	.contact {
		padding: 60px 0;
	}

	.contact-heading {
		margin-bottom: 35px;
	}

	.contact-information {
		padding: 28px 22px;
	}

	.contact-info-header h3 {
		font-size: 24px;
	}

	.contact-form-container {
		padding: 28px 20px;
	}

	.contact-form-header h3 {
		font-size: 23px;
	}

	.contact-form-header-icon {
		width: 44px;
		height: 44px;

		font-size: 16px;
	}

	.contact-form-grid {
		grid-template-columns: 1fr;

		column-gap: 0;
	}

	.contact-form-bottom {
		flex-direction: column;

		align-items: stretch;
	}

	.contact-form-bottom p {
		text-align: center;
	}

	.contact-submit {
		width: 100%;
	}

	.contact-info-card-content strong {
		font-size: 13px;
	}

	.blog {
		padding: 55px 0;
	}

	.blog-intro {
		font-size: 14px;
	}

	.blog-row {
		margin-top: 30px;
	}

	.blog-card-image {
		height: 210px;
	}

	.blog-card-content {
		padding: 22px;
	}

	.blog-card h3 {
		font-size: 19px;
	}

	.blog-card p {
		font-size: 13px;
	}

	.provider-rates {
		padding: 55px 0;
	}

	.rates-intro {
		font-size: 14px;
	}

	.provider-rates-row {
		margin-top: 30px;
	}

	.provider-card-header {
		padding: 20px;
	}

	.provider-icon {
		flex: 0 0 46px;

		width: 46px;
		height: 46px;

		margin-right: 12px;
	}

	.provider-card-header h3 {
		font-size: 19px;
	}

	.provider-rate {
		padding: 22px 20px 18px;
	}

	.rate {
		font-size: 34px;
	}

	.provider-details {
		padding: 5px 20px 22px;
	}

	.team {
		padding-top: 55px;
		padding-bottom: 55px;
	}

	.team-row {
		margin-top: 30px;
	}

	.team-image {
		height: 260px;
	}

	.team-content {
		padding: 20px 18px 24px;
	}

	.team-name a {
		font-size: 19px;
	}

	.team-text p {
		font-size: 14px;
		line-height: 1.65;
	}

	.footer-bar-content {
		padding: 20px 0;
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-nav ul {
		flex-wrap: wrap;
	}

	.footer-nav ul li {
		margin: 8px 20px 0 0;
	}

	.home-slider-dots {
		left: calc((100vw - 510px) / 2);
	}

	.home-content {
		max-width: 100%;
	}

	.home-title {
		font-size: 48px;
	}

	.home-subtitle {
		font-size: 24px;
	}

	.milestone-col:not(:last-child) {
		margin-bottom: 50px;
	}

	.family-support-card {
		width: 100%;
	}

	.footer-bar-content {
		height: auto;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.footer-nav {
		margin-top: 15px;
	}
}

@media only screen and (max-width: 575px) {
	.about-us-form-container {
		padding: 90px 20px 30px;
	}

	.about-us-form-title {
		height: 65px;
		font-size: 19px;
	}

	.cta-button {
		height: 52px;

		padding-left: 26px;
		padding-right: 24px;

		font-size: 14px;
	}

	.clients-section {
		padding: 55px 0;
	}

	.clients-heading h2 {
		font-size: 25px;
	}

	.client-logo {
		height: 145px;

		padding: 18px;
	}

	.client-card {
		min-height: 285px;
	}

	.logo img {
		height: 50px;
	}

	.team-image {
		height: 240px;
	}

	.team-col {
		margin-bottom: 20px;
	}

	.footer-content {
		padding: 50px 0 25px;
	}

	.footer-title {
		margin-bottom: 22px;
	}

	.footer-bar-content {
		align-items: center;
		text-align: center;
	}

	.footer-nav ul {
		justify-content: center;
	}

	.footer-nav ul li {
		margin: 6px 10px;
	}

	p {
		font-size: 13px;
	}

	h2 {
		font-size: 36px;
	}

	.header.scrolled .header-content,
	.header-content {
		height: 60px;
	}

	.home {
		margin-top: 60px;
		height: 500px
	}

	.logo a>div:first-child {
		font-size: 24px;
	}

	.logo a>div:last-child {
		font-size: 10px;
	}

	.section-subtitle {
		font-size: 16px;
	}

	.header-content {
		padding-left: 15px;
		padding-right: 30px;
	}

	.button {
		height: 40px;
	}

	.button a {
		font-size: 12px;
		line-height: 36px;
		padding-left: 31px;
		padding-right: 30px;
	}

	.home-slider-dots {
		display: none !important;
	}

	.home-subtitle {
		font-size: 18px;
	}

	.home-title {
		font-size: 36px;
	}

	.cta-title {
		font-size: 28px;
	}

	.family-support-badge>div:first-child {
		font-size: 28px;
	}

	.family-support-badge>div:last-child {
		font-size: 15px;
	}

	.family-support-title {
		font-size: 36px;
	}

	.milestone-item {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 15px;
	}

	.background-image {
		background-position: right;
		opacity: 0.5;
	}

	.bottom-edge::after {

		height: 50px;
	}
	.join-team-btn{
		display: none;
	}
}

@media only screen and (max-width: 480px) {
	.about-info-services {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-info-card {
		transition: none;
	}

	.about-info-card:hover,
	.about-info-card:focus-within {
		transform: none;
	}

	.client-card,
	.client-logo img {
		transition: none;
	}

	.client-card:hover {
		transform: none;
	}

	.client-card:hover .client-logo img {
		transform: none;
	}

	.coverage-dot::after {
		animation: none;

		opacity: 0.3;
	}
}