@font-face {
	font-family: 'Playfair Display';
	src: url('PlayfairDisplay-Bold.eot');
	src: url('PlayfairDisplay-Bold.eot?#iefix') format('embedded-opentype'),
		url('PlayfairDisplay-Bold.woff2') format('woff2'),
		url('PlayfairDisplay-Bold.woff') format('woff'),
		url('PlayfairDisplay-Bold.ttf') format('truetype'),
		url('PlayfairDisplay-Bold.svg#PlayfairDisplay-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Bold.eot');
	src: url('Poppins-Bold.eot?#iefix') format('embedded-opentype'),
		url('Poppins-Bold.woff2') format('woff2'),
		url('Poppins-Bold.woff') format('woff'),
		url('Poppins-Bold.ttf') format('truetype'),
		url('Poppins-Bold.svg#Poppins-Bold') format('svg');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Medium.eot');
	src: url('Poppins-Medium.eot?#iefix') format('embedded-opentype'),
		url('Poppins-Medium.woff2') format('woff2'),
		url('Poppins-Medium.woff') format('woff'),
		url('Poppins-Medium.ttf') format('truetype'),
		url('Poppins-Medium.svg#Poppins-Medium') format('svg');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('Poppins-Regular.eot');
	src: url('Poppins-Regular.eot?#iefix') format('embedded-opentype'),
		url('Poppins-Regular.woff2') format('woff2'),
		url('Poppins-Regular.woff') format('woff'),
		url('Poppins-Regular.ttf') format('truetype'),
		url('Poppins-Regular.svg#Poppins-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Poppins';
	src: url('Poppins-SemiBold.eot');
	src: url('Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('Poppins-SemiBold.woff2') format('woff2'),
		url('Poppins-SemiBold.woff') format('woff'),
		url('Poppins-SemiBold.ttf') format('truetype'),
		url('Poppins-SemiBold.svg#Poppins-SemiBold') format('svg');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}



/* Reset css  */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'Poppins';
}

ul {
	list-style: none;
}

ul,
li {
	margin: 0;
	padding: 0;
}

a {
	color: #000;
	transition: all 0.5s ease !important;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.sub-heading-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.common-sub-heading {
	font-size: 13px;
	letter-spacing: 1px;
	line-height: 26px;
	color: #000000;
	font-weight: 500;
	border-radius: 15px;
	background-color: #ffe2de;
	width: fit-content;
	padding: 3px 20px 3px 35px;
	margin-bottom: 20px;
	position: relative;
}

.common-sub-heading::before {
	content: '';
	width: 8px;
	height: 8px;
	border-radius: 4px;
	background-color: #f05a4a;
	position: absolute;
	left: 18px;
	top: 50%;
	transform: translateY(-50%);
}

.common-heading {
	font-size: 36px;
	line-height: 40px;
	font-weight: 700;
	color: #000000;
	font-family: 'Playfair Display';
}

.common-heading strong {
	color: #015c95;
	font-weight: 600 !important;
}

.common-text {
	font-size: 16px;
	line-height: 25px;
	color: #3b3b3b;
}

.common-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	padding: 10px 10px 10px 25px;
	width: fit-content;
	text-transform: capitalize;
	background-color: #ff9d1f;
	font-size: 15px;
	color: #000000;
	font-weight: 500;
	border-radius: 29px;
	text-align: center;
	text-decoration: none !important;
	overflow: hidden;
	z-index: 1;
	transition: background-color 0.3s ease;
}

.common-btn::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-color: #25aadd;
	transform: scaleX(0);
	transform-origin: left;
	z-index: -1;
	transition: transform 0.5s ease;
}

.btn-icon {
	width: 26px;
	height: 26px;
	border-radius: 16px;
	background-color: #ffffff;
	transition: all 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.btn-icon img {
	width: 13px;
	rotate: -20deg;
	transition: all 0.5s ease;
}

.common-btn:hover {
	color: #000000;
}

.common-btn:hover .btn-icon img {
	rotate: 0deg;
}

.common-btn:hover::before {
	transform: scaleX(1);
}

/* .common-btn:hover {
box-shadow: 0 0 5px #a5a5a5;
} */

.common-btn-2 {
	color: #000000;
	background: #ffffff;
}

.common-btn-2:hover {
	color: #000000;
}

.common-btn-2::before {
	background-color: #25aadd;
}

.common-btn-2 .btn-icon {
	background-color: #ff9d1f;
}

.common-btn-3 {
	color: #000000;
	background: #25aadf;
}

.common-btn-3:hover {
	color: #000000;
}

.common-btn-3::before {
	background-color: #ff9d1f;
}

.animate {
	animation: slideDown 0.7s ease-in-out;
}

@keyframes slideDown {
	from {
		transform: translateY(-150%);
	}

	to {
		transform: translateY(0);
	}
}

.padding-0 {
	padding: 0;
}

/* .top-header */
.top-header {
	background: #ffffff;
	padding: 20px 0;
	transition: all 0.5s ease;
}

.top-header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.top-header-right {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.top-header-right .common-btn {
	padding: 8px 8px 8px 20px;
}

.header-right-content {
	display: flex;
	align-items: center;
	gap: 10px;
}

.header-right-content-icon {
	width: 29px;
	height: 29px;
	border-radius: 15px;
	background-color: #25aadd;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-right-content:nth-child(1) .header-right-content-icon {
	background-color: #ff9d1f;
}

.header-right-content-icon img {
	width: 13px;
}

.header-right-content a {
	font-size: 14px;
	color: #1b1b1b;
	font-weight: 600;
}

.header-right-content a:hover {
	color: #508af2;
}

.header-bottom {
	border-radius: 15px;
	background-color: #508af2;
	padding: 0px 0;
	margin: 10px 23px;
	transition: all 0.5s ease;
}

/* main header section css here  */
.main-header {
	position: fixed;
	padding: 0px 0;
	top: 0px;
	left: 0;
	right: 0;
	z-index: 999;
	background-color: transparent;
	transition: all 0.5s ease;
}

.logo-container {
	position: relative;
	transition: all 0.5s ease;
}

.logo-container img {
	width: 310px;
	transition: all 0.5s ease;
}


.header-manu-container {
	transition: all 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.header-manu-container ul {
	/* width: 100%;
	display: flex;
	align-items: center;
	justify-content: center; */
	transition: all 0.5s ease;
}

.main-header ul li {
	transition: all 0.5s ease;
	margin-right: 23px;
}

.main-header ul li:last-child {
	margin-right: 0;
}

.main-header ul li a {
	font-size: 15px;
	color: #ffffff;
	line-height: 60px;
	text-transform: capitalize;
	padding: 0;
}

.header-btn-container {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 5px;
	transition: all 0.5s ease;
	margin-left: -30px;
}

.pos-fixed {
	top: 0;
	transition: all 0.5s ease;
}

.pos-fixed .logo-container img {
	width: 250px;
	position: relative;
	transition: all 0.5s ease;
}

.pos-fixed .top-header {
	padding: 10px 0;
}

.pos-fixed .header-bottom {
	border-radius: 0;
	padding: 0px 0;
	margin: 0;
}



/* banner css here  */
.banner-sec {
	position: relative;
	margin: 99px 15px 0;
	background: #fff;
	border-radius: 15px;
}

.banner-sec::before {
	content: '';
	background: url("../images/banner-shape-1.png") no-repeat;
	background-size: cover;
	width: 244px;
	height: 160px;
	position: absolute;
	right: 0;
	top: 70px;
	z-index: 1;
}

.banner-sec::after {
	content: '';
	background: url("../images/banner-shape-2.png") no-repeat;
	background-size: cover;
	width: 140px;
	height: 170px;
	position: absolute;
	left: 0;
	bottom: 0px;
	z-index: 1;
}

.banner-img img {
	width: 100%;
	border-radius: 15px;
}

.banner-container {
	max-width: 700px;
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	display:flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
}

.banner-container .common-sub-heading {
	color: #fff;
}

.banner-container .common-heading {
	font-size: 45px;
	line-height: 62px;
	color: #ffffff;
	filter: drop-shadow(0px 9px 13.5px #16224b);
}

.banner-container .common-text {
	font-size: 18px;
	line-height: 30px;
	color: #ffffff;
	font-weight: 400;
	max-width: 700px;
	padding: 15px 0 20px;
}

.banner-btn-container {
    display: flex;
    align-items: center;
    gap: 15px;
}
/* .banner-bottom-sec */
.banner-bottom-sec{
	margin-top: -30px;
	position: relative;
	z-index: 99;
}

.banner-bottom-sec .container{
	max-width: 1300px;
}

.banner-bottom-card{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 10px;
	background-color: #f5f2ec;
	padding: 50px 10px 30px;
	font-family: 'Playfair Display';
	font-weight: 700;
	font-size: 18px;
	min-height: 100%;
}

.banner-bottom-card-icon{
	position: relative;
	margin-bottom: 15px;
}

.banner-bottom-card-icon:before{
	content: '';
	background: #ff9d1f;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	position: absolute;
	right: -15px;
	top: -10px;
}

.banner-bottom-card-icon img{
	width: 55px;
	position: relative;
}

/* about-sec */
.about-sec {
	position: relative;
	padding: 90px 0;
}

.about-sec-left {
	position: relative;
	width: fit-content;
}

.about-sec-left::before {
	content: '';
	background: linear-gradient(0deg, rgba(255, 157, 31, 0.68) 0%, rgba(45, 47, 39, 0) 100%);
	width: 100%;
	height: 70%;
	position: absolute;
	left: 0;
	bottom: 0;
	border-radius: 15px;
}

.about-sec-left img {
	border-radius: 15px;
}

.experience-sec {
	border-radius: 15px;
	background-color: #f5f2ec;
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 20px 40px;
	position: absolute;
	right: 30px;
	bottom: -35px;
}

.experience-number {
	font-size: 45px;
	line-height: 30px;
	color: #000000;
	font-weight: 600;
}

.experience-text {
	font-size: 14px;
	line-height: 19px;
	color: #000000;
	font-weight: 400;
}

.about-sec-right {
	padding-left: 50px;
	border-left: 2px solid #f5f4f4;
}

.about-sec-right .common-text {
	padding: 30px 0 40px;
}

.about-sec-right ul {
	padding: 35px 0;
	list-style: none;
	margin: 0;
	border-top: 1px solid #f0f0f0;
	margin-right: -35px;
}

.about-sec-right ul li {
	font-size: 14px;
	line-height: 37px;
	color: #040404;
	font-weight: 400;
	position: relative;
	padding-left: 20px;
}

.about-sec-right ul li::before {
	content: '';
	background: url("../images/icon-list.png") no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}


/* our-service */
.our-service {
	padding: 90px 0;
	border-top: 1px solid #f0f0f0;
	position: relative;
}

.our-service::before {
	content: '';
	background: url("../images/service-shape-1.png") no-repeat;
	background-size: cover;
	width: 147px;
	height: 243px;
	position: absolute;
	right: 80px;
	top: 55px;
	z-index: 1;
}

.our-service::after {
	content: '';
	background: url("../images/service-shape-2.png") no-repeat;
	background-size: cover;
	width: 179px;
	height: 187px;
	position: absolute;
	left: 0px;
	top: 55px;
	z-index: 1;
}

.service-margin {
	margin-top: 75px;
}

.our-service-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	border-radius: 20px;
	background-color: #f5f2ec;
	padding: 50px 10px 10px;
}

.service-icon {
	width: 58px;
}

.service-card-heading {
	font-size: 20px;
	line-height: 30px;
	color: #000000;
	font-weight: 600;
	padding: 25px 0 5px;
}

.service-card-text {
	font-size: 14px;
	line-height: 28px;
	color: #000000;
	font-weight: 400;
	text-align: center;
	max-width: 297px;
	padding-bottom: 20px;
}

.service-card-link-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.service-card-link {
	font-size: 16px;
	line-height: 30px;
	font-weight: 500;
	position: relative;
	z-index: 1;
}

.service-card-link:hover {
	color: #000000 !important;
}

.service-card-link.link-red {
	color: #f3584d;
}

.service-card-link.link-yellow {
	color: #fd9e20;
}

.service-card-link.link-blue {
	color: #26a9de;
}

.service-card-link-container img {
	width: 14px;
	position: relative;
	z-index: 1;
}

.service-img img {
	border-radius: 20px;
}

.service-img {
	border-radius: 20px;
	margin-top: -25px;
	position: relative;
}

.service-img::before {
	content: '';
	background: url("../images/service-img-shape.png") no-repeat;
	background-size: cover;
	width: 215px;
	height: 38px;
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
}

.service-btn {
	margin-top: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* service-bottom-sec */
.service-bottom-sec .container {
	max-width: 1624px;
}

.service-bottom-sec{
	position: relative;
}
.service-bottom-video{
	position: relative;
}
.service-bottom-video::before {
    content: '';
    background: linear-gradient(0deg,rgba(22, 34, 75, 1) 0%, rgba(142, 191, 12, 0) 100%);
    border-radius: 10px;
    width: 100%;
    height: 560px;
    position: absolute;
    left: 50%;
    top: 48%;
    transform: translate(-50%, -50%);
}

.service-bottom-sec video{
	border-radius: 10px;
	object-fit: cover;
	width: 100%;
	height: 560px;
}

.service-bottom-content {
/* 	background: url("../images/service-bottom-img.jpg") no-repeat;
	background-size: cover;
	padding: 150px 0 180px; */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 40px;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}

.service-bottom-btn {
	width: 97px;
	height: 97px;
	border-radius: 48px;
	background-color: #ff9d1f;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-bottom-text {
	font-size: 48px;
	line-height: 58px;
	color: #ffffff;
	font-weight: 700;
	font-family: "Playfair Display";
	text-align: center;
	max-width: 703px;
}

/* value-sec */
.value-sec {
	background: url("../images/value-sec-bg.png") no-repeat;
	background-size: cover;
	padding: 0 0 50px;
}

.value-sec-inner {
	position: relative;
}

.value-sec-inner::before {
	content: '';
	background: #ffffff;
	width: 100%;
	height: 100px;
	position: absolute;
	top: -100px;
	left: 0;
	border-radius: 30px 30px 0 0;
}

.value-sec-inner::after {
	content: '';
	background: url("../images/value-shape-1.png") no-repeat;
	background-size: cover;
	width: 50px;
	height: 50px;
	position: absolute;
	right: 150px;
	top: -25px;
}

.value-card-1 {
	margin-top: 50px;
	margin-bottom: -100px;
	position: relative;
}

.value-card-1::before {
	content: '';
	background: url("../images/value-shape-2.png") no-repeat;
	background-size: cover;
	width: 46px;
	height: 46px;
	position: absolute;
	right: -90px;
	top: -30px;
}

.value-sec-container {
	display: flex;
	align-items: center;
	justify-content: center;
}

.value-sec-container.value-sec-container-left {
	justify-content: end;
	flex-direction: column;
	gap: 20px;
}

.value-sec-container.value-sec-container-right {
	justify-content: start;
	flex-direction: column;
	gap: 20px;
}

.value-card {
	max-width: 329px;
	border-radius: 15px;
	background-color: #ffffff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	min-height: 100%;
	position: relative;
}

.value-card-top {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 30px;
	border-radius: 15px 15px 0 0;
}

.value-card-1 .value-card-top {
	background-color: #16224b;
}

.value-card-icon img {
	width: 51px;
}

.value-card-heading {
	font-size: 25px;
	line-height: 38px;
	color: #ffffff;
	font-weight: 600;
}

.value-card-text {
	font-size: 14px;
	line-height: 24px;
	color: #4d3e3a;
	font-weight: 400;
	padding: 20px 25px;
}


.value-card-4 {
	margin-top: -100px;
}

.value-card-2 .value-card-top {
	background-color: #fe9d1f;
}

.value-card-3 .value-card-top {
	background-color: #25aadf;
}

.value-card-4 .value-card-top {
	background-color: #ef594a;
}

.value-card-5 .value-card-top {
	background-color: #508af2;
}

.value-card-6 .value-card-top {
	background-color: #fe8a7a;
}

.value-mid-sec {
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-value-card-container {
	position: relative;
}

.main-value-card-container::before {
	content: '';
	background: transparent;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	border: 2px solid #c1c2c3;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.value-card-mid {
	margin: 50px 0;
}

.value-mid-sec-outer {
	position: relative;
}

.value-mid-sec-outer::before {
	content: '';
	width: 71px;
	height: 51px;
	background-color: #16224b;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	position: absolute;
	left: 50%;
	top: -30px;
	transform: translateX(-50%);
}

.value-mid-sec-outer::after {
	content: '';
	width: 71px;
	height: 51px;
	background-color: #ef594a;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
	position: absolute;
	left: 50%;
	bottom: -30px;
	transform: translateX(-50%);
}

.value-mid-sec {
	position: relative;
}

.value-mid-sec::before {
	content: '';
	width: 51px;
	height: 71px;
	background-color: #fe9d1f;
	clip-path: polygon(100% 0, 0 50%, 100% 100%);
	position: absolute;
	top: 50%;
	left: -10px;
	transform: translateY(-50%);
}

.value-mid-sec::after {
	content: '';
	width: 51px;
	height: 71px;
	background-color: #25aadf;
	clip-path: polygon(100% 50%, 0 0, 0 100%);
	position: absolute;
	top: 50%;
	right: -10px;
	transform: translateY(-50%);
}

.value-mid-sec-outer img {
	position: relative;
	z-index: 1;
}

.value-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
	gap: 15px;
}

/* aged-care-sec */
.aged-care-sec {
	border-radius: 15px;
	background-color: #f5f2ec;
	position: relative;
	margin: 0 15px;
}

.aged-care-sec-inner {
	position: relative;
}

.aged-care-sec-inner::before {
	content: '';
	background: url("../images/aged-care-shape-2.png") no-repeat;
	background-size: cover;
	width: 200px;
	height: 76px;
	position: absolute;
	top: 0;
	left: 0;
}

.aged-care-sec-inner::after {
	content: '';
	background: url("../images/aged-care-shape-3.png") no-repeat;
	background-size: cover;
	width: 113px;
	height: 56px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.aged-care-left {
	position: relative;
}

.aged-care-left::before {
	content: '';
	background: url("../images/aged-care-shape-4.png") no-repeat;
	background-size: cover;
	width: 59px;
	height: 62px;
	position: absolute;
	bottom: 0;
	right: 100px;
}

.aged-care-left::after {
	content: '';
	background: url("../images/aged-care-shape-5.png") no-repeat;
	background-size: cover;
	width: 34px;
	height: 143px;
	position: absolute;
	bottom: 120px;
	left: -90px;
}

.aged-care-left .common-heading {
	margin-bottom: 30px;
}

.aged-care-left .common-text {
	color: #4b4b4b;
}

.aged-care-left .common-text-2 {
	padding: 30px 0;
	color: #4b4b4b;
	font-weight: 500;
	font-style: italic;
}

.aged-care-left .common-btn {
	padding: 10px 10px 10px 25px;
}

.aged-care-right {
	display: flex;
	justify-content: end;
	position: relative;
}

.aged-care-right img {
	position: relative;
	margin: -100px -30px 0 0;
}

.aged-care-right::before {
	content: '';
	background: url("../images/aged-care-shape-1.png") no-repeat;
	background-size: cover;
	width: 472px;
	height: 472px;
	position: absolute;
	top: 35px;
	right: -45px;
}


/* testimonial-sec */
.testimonial-sec {
	padding: 65px 0 0px;
}

#sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-image {
	text-align: start !important;
}

#sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-image img {
	width: 60px;
	position: absolute;
	left: 0;
	top: 0;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
	padding: 5px 0 0 80px !important;
	text-align: start !important;
	font-size: 14px !important;
	color: #000000 !important;
}

#sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-rating {
	display: flex !important;
	position: absolute;
	top: 0;
	left: 80px;
}

#sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .sp-testimonial-client-name {
	font-size: 15px !important;
	line-height: 30px !important;
	color: #000000 !important;
	font-weight: 600 !important;
	font-style: italic !important;
	text-align: end !important;
}

.testimonial-content {
	margin-top: 50px;
}

.testimonial-content .swiper-slide-active {
	position: relative;
	padding-right: 30px;
}

.testimonial-content .swiper-slide-next {
	padding-left: 30px;
}

.testimonial-content .swiper-slide-active::before {
	content: '';
	border-right: 1px solid #d1d3db;
	height: 100%;
	position: absolute;
	right: -20px;
}

.testimonial-content #sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .swiper-slide-next .sp-testimonial-client-rating {
	left: 110px;
}

.testimonial-content #sp-testimonial-free-wrapper-48 .sp-testimonial-free-section .swiper-slide-next .sp-testimonial-client-image img {
	left: 30px;
}

/* .referral-banner-sec */
.referral-banner-sec{
	background: url("../images/service-bottom-img-2.jpg") no-repeat;
	background-size: cover;
	background-attachment: fixed;
	padding: 80px 0;
	text-align: center;
	position: relative;
	margin-top: 50px;
}
.referral-banner-sec:before{
	content: '';
	background: #16224b9c;
	width: 100%;
	height: 100%;
	position:absolute;
	left: 0;
	top: 0;
}

.referral-banner-sec .common-heading{
	color: #fff;
	position: relative;
	font-size: 44px;
}

.referral-banner-sec .common-text{
	color: #fff;
	position: relative;
	padding: 20px 0;
}

.referral-banner-btn{
	display: flex;
	align-items: center;
	justify-content: center;
}

/* location-sec */
.location-sec{
	margin: 50px 0;
}

.loc-container ul {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

.loc-container ul li {
	font-size: 16px;
	line-height: 28px;
	color: #2f2f2f;
	padding-bottom: 5px;
	position: relative;
	padding-left: 25px;
}

.loc-container ul li a {
	color: #2f2f2f;
	transition: all 0.5s ease;
}

.loc-container ul li a:hover {
	color: #fe9d1f;
}

.loc-container ul li:before {
	position: absolute;
	content: "";
	background: url("../images/location-icon.png") no-repeat 0 0;
	width: 18px;
	height: 16px;
	background-size: contain;
	top: 7px;
	left: 0px;
}

.map-sec{
	margin: 0 0 30px !important;
}

.map-sec iframe{
	width: 100%;
	border-radius: 15px;
}

/* contact-sec */
.contact-sec {
	padding: 70px 0 0;
	border-top: 2px solid #f7f6f6;
	position: relative;
	z-index: 99;
	margin-bottom: -45px;
}

.contact-sec-inner {
	display: flex;
}

.contact-sec-left {
	border-radius: 15px 0 0 15px;
	background-color: #f1594a;
	padding: 50px 35px;
	min-height: 100%;
}

.contact-sec-heading {
	font-size: 28px;
	line-height: 38px;
	color: #ffffff;
	font-weight: 700;
	font-family: "Playfair Display";
}

.contact-sec-text {
	width: 385px;
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	font-weight: 400;
	padding: 5px 0 15px;
}

.contact-sec-btns {
	display: flex;
	align-items: center;
	gap: 10px;
}

.contact-sec-left .common-btn {
	padding: 8px 20px 8px 20px;
}

.contact-sec-right {
	border-radius: 0 15px 15px 0;
	background-color: #efefef;
	min-height: 100%;
	padding: 40px;
}

.contact-sec-right.contact-form-sec input {
	padding: 5px 6px 5px 15px;
	border: 1px solid #ffffff;
	background: #ffffff;
	font-size: 14px;
}

.contact-sec-right.contact-form-sec textarea {
	padding: 5px 6px 5px 15px;
	border: 1px solid #ffffff;
	background: #ffffff;
	height: 44px;
	font-size: 14px;
}

.contact-sec-right .form-btn {
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-sec-right.contact-form-sec input[type="submit"] {
	font-size: 15px;
	color: #000000;
	background-color: #f1594a;
	padding: 10px 25px;
	text-transform: capitalize;
}

.contact-sec-right.contact-form-sec input[type="submit"]:hover {
	background-color: #ff9d1f;
}

/* footer */

.home .footer {
	padding: 140px 0 0;
}

.footer {
	position: relative;
	padding: 60px 0 0;
	position: relative;
	z-index: 1;
	background-color: #16224b;
}

.footer::before {
	content: '';
	background: url("../images/footer-top-shape.png") repeat-x;
	background-size: cover;
	width: 100%;
	height: 58px;
	position: absolute;
	left: 0;
	top: -58px;
}

.f-logo-container {
	display: flex;
	align-items: center;
	gap: 35px;
	margin-top: 30px;
}

.f-logo {
	width: 282px;
}

.f-ndis-logo {
	width: 138px;
}

.aged-care-logo {
	width: 100px;
}

.Support-at-home-Logo {
    width: 120px;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

.care-logo{
    width: 100px;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
}

.footer-text {
	max-width: 433px;
	font-size: 16px;
	line-height: 27px;
	color: #ffffff;
	font-weight: 400;
	margin: 15px 0;
}

.f-media {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 30px;
}

.f-media a {
	width: 31px;
	height: 31px;
	border-radius: 16px;
	background-color: #ff9d1f;
	display: flex;
	align-items: center;
	justify-content: center;
}

.f-media a img {
	width: 17px;
}

.footer-heading {
	font-size: 20px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 700;
	margin-bottom: 15px;
	position: relative;
}


.footer ul {
	list-style: none;
	margin: 0;
	position: relative;
	z-index: 3;
}

.footer ul li {
	font-size: 14px;
	color: #ffffff;
	padding-bottom: 3px;
}

.footer ul li a {
	font-size: 14px;
	color: #ffffff;
}

.footer ul li a:hover {
	color: #ff9d1f;
	padding-left: 2px !important;
}

.f-sec-4 ul li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.f-contact-img {
	width: 31px;
	min-width: 31px;
	height: 31px;
	border-radius: 15px;
	background-color: #ff9d1f;
	display: flex;
	align-items: center;
	justify-content: center;
}

.f-sec-4 ul li img {
	width: 14px;
}

.f-contact-heading {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
}


.f-sec-2 {
	margin-left: -20px;
	margin-right: 0;
}

.f-sec-4 {
	margin-left: 50px;
	margin-right: -60px;
}

.f-sec-3 {
	margin-left: 99px;
	margin-right: 0;
}


.lower-footer {
	position: relative;
	font-size: 14px;
	color: #ffffff;
	padding: 15px 0;
	margin-top: 30px;
	text-align: center;
	z-index: 5;
	border-top: 1px solid #ffffff;
}

.lower-footer a {
	color: #ffffff;
}

.lower-footer a:hover {
	color: #ff9d1f;
}

.footer-mid{
	color: #fff;
	text-align: center;
	padding-top: 20px;
}

/* scroll to top  */
.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	cursor: pointer;
	z-index: 999999;
	width: 68px;
	height: 68px;
	border-radius: 34px;
	background-color: #ff9d1f;
	align-items: center;
	justify-content: center;
	transition: all 0.5s ease;
}


.scroll-top img {
	width: 25px;
	animation: bounce2 2s ease infinite;
}


@keyframes bounce2 {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

.training-page .inner_btns{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}

.training-page .inner_bottm_sec{
	margin-top: 30px;
}

.training-card {
    background: #fff;
    box-shadow: 0 0 15px #d5d5d5;
    min-height: 100%;
	border-radius: 15px;
}

.training-card-heading {
    font-size: 20px;
    font-weight: 600;
    background: #508af2;
    color: #fff;
    padding: 20px 25px;
    border-radius: 15px 15px 0 0;
}

.training-card-text {
    padding: 25px;
}
.training-card .common-btn{
	padding: 10px 25px;
	margin: 0 25px 25px;
}
.journey-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.journey-card-number {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid #508af2;
	background: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 600;
	position: relative;
}
.journey-card-text{
	font-size: 14px;
}

.training-journey-sec{
	position: relative;
}
.training-journey-sec:before{
	content:'';
	background: #ebebeb;
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 65px;
	left: 50%;
	transform: translateX(-50%);
}


/* banner css here */
.site-content,
.site-main .widecolumn {
	margin-left: 0px !important;
}

.page .entry-header,
.blog_page_header {
	background: url("../images/banner-img.jpg") #eee no-repeat !important;
	background-size: cover !important;
	max-width: 100% !important;
	padding: 230px 0 150px !important;
	margin: 90px 0 50px !important;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.page .entry-header:before,
.blog_page_header:before {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.page .entry-content {
	max-width: 100% !important;
	padding: 0px !important;
}

.content-area,
.content-sidebar {
	padding-top: 0px !important;
}

.page .entry-title,
.blog_page_title {
	color: #fff;
	position: relative;
	font-size: 32px;
	font-weight: 600;
	text-transform: none;
	z-index: 99;
	margin-bottom: 3px;
}

.breadcrumb-container {
	width: 100%;
	color: #ea0700;
	position: relative;
	font-size: 15px;
}

.breadcrumb-container a {
	color: #ea0700;
}

.page {
	margin-top: 0 !important;
}


/* inner page css  */
.inner_content p {
	margin-bottom: 0;
}

.inner_title {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
}

.inner_title strong {
	color: #ff9d1f;
}

.inner_txt {
	font-size: 16px;
	color: #2b2b2b;
	font-weight: normal;
	margin-top: 20px;
}

.margin-top {
	margin-top: 48px;
}

.inner_list_txt {
	margin-top: 20px;
}

.inner_list_txt ul {
	padding: 0;
	margin: 0;
}

.half-li ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.half-li ul li {
	width: 49%;
}

.inner_list_txt ul li {
	background: url("../images/list-img.png");
	background-position: top 4px left;
	padding-left: 28px;
	background-repeat: no-repeat;
	background-size: 18px;
	font-size: 16px;
	color: #2b2b2b;
	font-weight: normal;
	list-style: none;
	padding-bottom: 6px;
}

.inner_bottm_sec {
	background: #508af2;
	padding: 30px 20px;
	text-align: center;
	margin-bottom: 60px;
	border-radius: 10px;
}

.inner-page .inner_txt {
	margin-top: 0;
}

.core-box {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	padding: 30px 20px;
	background: #fff;
	border-radius: 5px;
	min-height: 100%;
}

.core-box img {
	width: 80px;
	padding-bottom: 20px;
}

.core-box .inner_title{
	font-size: 20px;
}

.core-box .inner_list_txt {
    margin-top: 10px;
}
.core-box .inner_txt{
	margin-top: 10px;
}

.core-box_title {
	color: #131313;
	font-size: 20px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
}

.core-box_title strong {
	color: #194d87;
}

.core-box_txt {
	font-size: 14px;
	color: #2b2b2b;
	font-weight: normal;
	margin-top: 20px;
}

.m-top {
	margin-top: 20px;
}

/* contact page css  */

.contact_page_heading {
	color: #131313;
	font-size: 26px;
	text-transform: capitalize;
	font-weight: bold;
	position: relative;
}

.contact_page_heading strong {
	color: #ff9d1f;
}

.contact_page_info {
	position: relative;
	color: #000;
	margin-top: 25px;
	display: flex;
	align-items: center;
	gap: 20px;
}

.contact-text a {
	transition: all 0.5s ease;
	text-decoration: none !important;
}

.contact-text strong {
	color: #000000;
	font-weight: 600;
}

.contact-img {
	background: #ffffff;
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	text-align: center;
	padding-top: 10px;
}

.contact-img img {
	width: 22px;
}

.contact_right {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	padding: 25px;
	border-radius: 5px;
}

/* thank you page   */
.thankyou-btn-container {
	display: flex;
	justify-content: center;
}

.thankyou-btn-container a {
	text-decoration: none !important;
}

.thankyou-text {
	font-size: 18px;
	font-weight: 500;
	padding-top: 20px;
}

/* 404 page */

.not_found-text {
	font-size: 18px;
	font-weight: 500;
	padding: 10px;
}

.back_btn {
	display: flex;
	justify-content: center;
	padding: 15px 0 60px;
}

.back_btn a {
	text-decoration: none !important;
}

/* footer_fixed_buttons css  */
.footer_fixed_buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 99;
}

.footer_btn1 {
	background: #ff9d1f;
	width: 50%;
	float: left;
	color: #fff !important;
	padding: 10px 0;
	text-decoration: none !important;
	text-transform: capitalize;
}

.footer_btn2 {
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	padding-top: 9px;
}

.footer_btn2 img {
	width: 18px;
}

.footer_btn3 {
	background: #508af2;
	width: 50%;
	float: left;
	color: #fff !important;
	padding: 10px 0;
	text-decoration: none !important;
	text-transform: capitalize;
}



/* blog page css  */
.more-link {
	display: block;
	background: #508af2;
	width: fit-content;
	margin: 15px 0;
	padding: 15px 25px;
	border-radius: 15px;
	color: #fff;
	text-transform: capitalize;
	transition: all 0.5s ease;
	text-decoration: none !important;
	margin-bottom: 60px;
}

.more-link:hover {
	background: #ff9d1f !important;
	color: #fff !important;
}

.post .entry-title {
	font-size: 30px !important;
	font-weight: 600 !important;
}

.widget_block {
	position: relative;
}

.widget_block::before {
	content: '';
	width: 100%;
	height: 3px;
	background: #000;
	position: absolute;
	left: 0;
	top: -15px;
}

#block-8::before {
	content: none;
}

#block-7 {
	margin-bottom: 10px;
}

/* contact page  */
.contact-form-sec input {
	width: 100%;
	padding: 12px 10px 12px 20px;
	border-radius: 7px;
	color: #515151;
	font-size: 16px;
	text-transform: capitalize;
	border: 1px solid #efefef;
	background: #efefef;
	outline: none;
}

.contact-form-sec input:focus,
.contact-form-sec select:focus,
.contact-form-sec textarea:focus {
	border: 1px solid #ff9d1f;
}

.contact-form-sec select {
	width: 100%;
	padding: 12px;
	border-radius: 7px;
	color: #515151;
	font-size: 16px;
	text-transform: capitalize;
	border: 1px solid #efefef;
	background: #efefef;
	outline: none;
}

.contact-form-sec textarea {
	width: 100%;
	padding: 12px 12px 12px 20px;
	border-radius: 7px;
	color: #515151;
	font-size: 16px;
	height: 90px;
	border: 1px solid #efefef;
	background: #efefef;
}

.contact-form-sec input[type="submit"] {
	font-size: 16px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 600;
	text-align: center;
	border-radius: 25px;
	width: fit-content;
	background-color: #508af2;
	padding: 13px 50px;
	transition: all 0.5s ease;
}

.contact-form-sec input[type="submit"]:hover {
	background-color: #ff9d1f;
}

.contact-form-sec p {
	margin-bottom: 0 !important;
}


.inner-separator {
	padding: 30px 40px 30px 40px;
	background: #25aadd1c;
	border-radius: 0 10px 10px 0;
	position: relative;
}

.inner-separator::before {
	content: '';
	background: #508af2;
	width: 5px;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.inner-page-btn .common-btn {
	padding: 13px 35px;
	font-size: 16px;
}

.margin-bottom {
	margin-bottom: 75px;
}

/* inner form css here  */
.inner-form-container a {
	text-decoration: none !important;
}

.inner-form-page .inner_txt a {
	text-decoration: none;
}

.inner-form-label {
	font-size: 17px;
	font-weight: 500;
}

.inner-form-label p {
	margin-bottom: 8px;
}

.inner-form-input input {
	width: 100%;
	border: 1px solid #25aadd;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
}

.inner-form-input select {
	width: 100%;
	border: 1px solid #25aadd;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
}

.inner-form-textarea textarea {
	width: 100%;
	border: 1px solid #25aadd;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
	height: 100px;
}

.inner-form-input .wpcf7-checkbox input {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.inner-form-input .wpcf7-radio input {
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.inner-form-input .wpcf7-radio label,
.inner-form-input .wpcf7-checkbox label {
	display: flex;
	align-items: center;
	gap: 10px;
}

.inner-form-input .wpcf7-radio .wpcf7-list-item,
.inner-form-input .wpcf7-checkbox .wpcf7-list-item {
	margin: 0;
}

.inner-form-input .wpcf7-checkbox {
	display: flex;
	gap: 5px;
	flex-direction: column;
}

.inner-form-input .wpcf7-radio {
	display: flex;
	gap: 20px;
}

.inner-form-input .wpcf7-radio label span,
.inner-form-input .wpcf7-checkbox label span {
	cursor: pointer;
}

.inner-form-container {
	margin-top: 30px;
	padding: 40px 30px;
	border-radius: 20px;
	box-shadow: 0 0 5px #dfdfdf;
}

.inner-form-heading p {
	margin-bottom: 0;
}

.inner-form-heading {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.inner-form-heading strong {
	color: #ff9d1f;
}

.inner-form-heading::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 12px;
	width: 30px;
	height: 3px;
	background: #ff9d1f;
}

.inner-form-radio .wpcf7-list-item {
	display: block;
	margin: 0;
}

.inner-form-text {
	font-size: 17px;
	text-align: center;
	font-weight: 600;
}

.inner-form-submit-btn {
	display: flex;
	justify-content: center;
}

.inner-form-submit-btn input[type="submit"] {
	font-size: 16px;
	color: #ffffff;
	font-weight: 500;
	border-radius: 27px;
	padding: 15px 40px;
	text-align: center;
	background: #ff9d1f;
	transition: all 0.5s ease;
}

.inner-form-submit-btn input[type="submit"]:hover {
	background: #25aadd;
}

.inner-form-submit-btn .wpcf7-spinner {
	display: none;
}

.wpcf7-acceptance label {
	display: flex;
	align-items: start;
	gap: 15px;
	cursor: pointer;
}

.wpcf7-acceptance input {
	width: 25px;
	height: 25px;
}

.help-sec {
	background: url("../images/help-sec-bg.jpg") no-repeat;
	background-size: cover;
	padding: 100px 0;
	position: relative;
	border-radius: 10px;
}

.help-sec::before {
	content: '';
	background: #25a9dda1;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 10px;
	z-index: 0;
}

.help-sec-heading {
	font-size: 26px;
	font-weight: 600;
	color: #fff;
	text-align: center;
	position: relative;
}

.inner-form {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	padding: 25px;
	border-radius: 10px;
	margin-top: 30px;
}

.inner-form .contact-form-sec input[type="submit"] {
	font-size: 14px;
	padding: 10px 25px;
}

.inner-img img{
	width: 100%;
	border-radius: 10px;
	margin-bottom: 10px;
}

.inner-service-card{
	text-decoration: none !important;
	display: block;
	background: #f5f2ec;
	border-radius: 10px;
	display: flex;
	align-items: center;
	flex-direction: column;
	min-height: 100%;
}

.inner-service-card-img{
	width: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.inner-service-card-img img{
	border-radius: 10px;
	width: 100% !important;
	height: 250px !important;
	object-fit:  cover;
	transition: all 0.5s;
}

.inner-service-card:hover .inner-service-card-img img{
	transform: scale(1.1);
}

.inner-service-card-arrow{
	width: 60px;
	height: 60px;
	background: #ff9d1f;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin-top: -30px;
	transition: all 0.5s ease;
	position: relative;
}

.inner-service-card-arrow img{
	width: 18px;
}

.inner-service-card-heading{
	font-size: 24px;
	text-align: center;
	font-weight: 600;
	padding: 20px 0 40px;
}

.inner-service-card:hover .inner-service-card-arrow{
	background: #25aadd;
}

.translate_btn{
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 9999;
}


@media screen and (min-width: 1025px) {
	.main-logo {
		display: none;
	}
}

/* mediaquery start here */

@media only screen and (min-width : 300px) and (max-width : 1023px) {
    .top-header {
        display: none;
    }

    .header-mid {
        display: none;
    }

    .header-right {
        display: none;
    }

    .animate {
        animation: none;
    }

	.banner-sec .container {
		width: auto;
	}
	.header-bottom {
		margin: 0;
		border-radius: 0;
		padding: 10px 0;
	}
	.pos-fixed .header-bottom {
		padding: 10px 0;
	}
	.logo-container img {
		width: 210px;
	}
	.pos-fixed .logo-container img {
		width: 210px;
	}
	.banner-sec::after{
		display: none;
	}
	.banner-sec::before{
		display: none;
	}
	.banner-img img {
		width: 100%;
		border-radius: 0;
		height: 475px;
		object-fit: cover;
		object-position: 25%;
	}
	.banner-sec {
		margin: 55px 0 0;
		border-radius: 0;
	}
	.banner-btn-container {
		gap: 10px;
		flex-wrap: wrap;
	}
	.banner-container .common-heading {
		font-size: 26px;
		line-height: 40px;
	}
	.banner-container {
		max-width: 350px;
	}
	.banner-bottom-sec {
		margin-top: 55px;
		z-index: 1;
	}

	.about-sec-right {
		padding-left: 0;
		border-left: 0;
		padding-top: 50px;
	}
	.about-sec-right .common-text {
		padding: 30px 0 20px;
	}
	.about-sec-right ul {
		padding: 10px 0;
		margin-right: 0;
	}
	.about-sec-right ul li {
		line-height: 26px;
		margin-bottom: 6px;
	}
	.about-sec-right ul li::before {
		top: 7px;
		transform: none;
	}	
	.about-sec{
		padding: 50px 0;
	}
	.common-heading {
		font-size: 26px;
		line-height: 35px;
	}
	.our-service::after {
		width: 90px;
		height: 90px;
	}
	.our-service::before {
		width: 70px;
		height: 100px;
		right: 35px;
		top: 190px;
	}
	.service-btn {
		margin-top: 30px;
	}
	.our-service {
		padding: 50px 0;
	}
	.service-bottom-text {
		font-size: 26px;
		line-height: 36px;
	}
	.service-bottom-content {
		width: 300px;
	}
	.value-sec-inner::after{
		display: none;
	}
	.value-card-1 {
		margin-top: 25px;
		margin-bottom: 0;
	}
	.value-card-2 {
		margin-top: -25px;
	}
	.value-mid-sec-outer {
		margin: 30px 0;
	}
	.value-card-4 {
		margin-top: -25px;
	}
	.main-value-card-container::before{
		display: none;
	}
	.value-card-1::before{
		display: none;
	}
	.value-btn {
		margin-top: 35px;
		gap: 10px;
	}
	.aged-care-right img {
		margin: 0;
	}
	.aged-care-right::before {
		width: 300px;
		height: 300px;
		top: 60px;
		right: 0;
	}
	.aged-care-sec-inner {
		padding-top: 70px;
	}
	.aged-care-sec-inner::before {
		width: 150px;
		height: 60px;
	}
	.aged-care-left::after{
		display: none;
	}
	.referral-banner-sec .common-heading {
		font-size: 26px;
	}
	.location-sec .col-12 {
		width: 50%;
	}
	.contact-sec {
		padding: 50px 0;
		margin-bottom: 0;
	}
	.contact-sec-inner {
		flex-direction: column;
	}
	.contact-sec-left {
		border-radius: 15px 15px 0 0;
		padding: 35px 25px;
	}
	.contact-sec-right {
		border-radius: 0 0 15px 15px;
		padding: 30px 20px;
	}
	.contact-sec-text{
		width: 100%;
	}
	.footer{
		overflow: hidden;
	}
	.home .footer {
		padding: 50px 0 0;
	}
	.footer::before{
		display: none;
	}
	.f-sec-2 {
		margin-left: 0;
		margin-right: 0;
	}
	.f-sec-4 {
		margin-left: 0;
		margin-right: 0;
	}
	.f-sec-3 {
		margin-left: 0;
		margin-right: 0;
	}
	.footer-mid {
		text-align: start;
	}
	.lower-footer {
		padding: 15px 0 115px;
	}
	.translate_btn {
		bottom: 60px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
		width: 55px;
		height: 55px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 60px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 26px;
	}
	.margin-bottom {
		margin-bottom: 5px;
	}
	.inner-form-container {
		margin-top: 30px;
		padding: 30px 10px;
	}
	.training-journey-sec .col-12 {
		width: 50%;
	}
	.training-journey-sec:before{
		display: none;
	}
	.inner-form-input .wpcf7-radio {
		flex-wrap: wrap;
	}
	
}

@media only screen and (max-width : 320px) {}

/* mobile screen  iphone SE */
@media only screen and (min-width : 321px) and (max-width : 480px) {}

/* mobile screen rotate */
@media only screen and (min-width : 481px) and (max-width : 767px) {}

/* iPhone X/XS */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
	.banner-container {
		max-width: 550px;
	}
	.about-sec-right {
		padding-top: 0px;
	}
}

/* iPhone XR */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
	.banner-container {
		max-width: 550px;
	}
		.about-sec-right {
		padding-top: 0px;
	}
}

/* iPhone XS Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {}

/* ipad screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.banner-container {
		max-width: 550px;
	}
		.about-sec-right {
		padding-top: 0px;
	}
	
}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.top-header {
		display: none;
	}

	.header-mid {
		display: none;
	}

	.header-right {
		display: none;
	}

	.animate {
		animation: none;
	}
	.header-bottom {
		margin: 0;
		border-radius: 0;
		padding: 10px 0;
	}
	.pos-fixed .header-bottom {
		padding: 10px 0;
	}
	.logo-container img {
		width: 210px;
	}
	.pos-fixed .logo-container img {
		width: 210px;
	}
	.banner-container .common-heading {
		font-size: 26px;
		line-height: 40px;
	}
	.banner-sec {
		margin: 55px 0 0;
		border-radius: 0;
	}
	.common-heading {
		font-size: 26px;
		line-height: 35px;
	}	
	.page .entry-header, .blog_page_header {
		padding: 120px 0 120px !important;
		margin: 60px 0 50px !important;
	}
	.f-sec-2 {
		margin-right: -20px;
	}
}

/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {}

@media screen and (min-width: 1424px) {
	.top-header {
		padding: 25px 0;
	}
	.top-header-right {
		gap: 40px;
	}
	.banner-sec {
		margin: 108px 15px 0;
	}
	.main-header ul li a {
		font-size: 17px;
	}
	.main-header ul li {
		margin-right: 30px;
	}
}

@media screen and (min-width: 1624px) {}

@media screen and (min-width: 1920px) {}

@media screen and (min-width: 2048px) {}

@media screen and (min-width: 2550px) {}



@media (min-width: 1025px) and (max-width: 1199px) {
/* 	.top-header {
		display: none;
	}

	.header-mid {
		display: none;
	}

	.header-right {
		display: none;
} */
	.top-header-right {
		gap: 10px;
	}
	.top-header-right .common-btn {
		padding: 8px 8px 8px 15px;
		gap: 10px;
	}
	.animate {
		animation: none;
	}
	.pos-fixed .header-bottom {
		padding: 10px 0;
	}
	.logo-container img {
		width: 210px;
	}
	.pos-fixed .logo-container img {
		width: 210px;
	}
	.main-header ul li {
		margin-right: 10px;
	}
	.main-header ul li a {
		font-size: 14px;
	}
	.banner-container .common-heading {
		font-size: 26px;
		line-height: 40px;
	}
	.banner-sec {
		margin: 55px 0 0;
		border-radius: 0;
	}
	.common-heading {
		font-size: 26px;
		line-height: 35px;
	}	
	.page .entry-header, .blog_page_header {
		padding: 120px 0 120px !important;
		margin: 60px 0 50px !important;
	}
	.f-sec-2 {
		margin-right: -20px;
	}
	.page .entry-header, .blog_page_header {
		padding: 200px 0 120px !important;
	}
}