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

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

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





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

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: 18px;
	line-height: 28px;
	text-transform: uppercase;
	color: #2a2a2a;
	font-weight: bold;
	margin-bottom: 15px;
	border-radius: 20px;
	background-color: #e5e5e5;
	padding: 5px 30px;
	width: fit-content;
}

.common-heading {
	font-size: 37px;
	line-height: 45px;
	color: #1f1f1f;
	font-weight: 600;
}

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

.common-text {
	font-size: 17px;
	line-height: 28px;
	color: #5f5f5f;
}

.common-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	padding: 12px 45px;
	width: fit-content;
	border-radius: 26px;
	/* filter: drop-shadow(0px 1px 0.5px rgba(0, 0, 0, 0.58)); */
	background-image: linear-gradient(87deg, #c9a14d 0%, #947430 28%, #b89039 72%, #ac8531 100%);
	font-size: 18px;
	line-height: 28px;
	font-weight: 500;
	color: #ffffff;
	text-align: center;
	text-decoration: none !important;
	overflow: hidden;
	z-index: 1;
	transition: background-color 0.3s ease;
}

.btn-arrow {
	width: 38px;
	height: 38px;
	border-radius: 19px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

.common-btn img {
	width: 18px;
}

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

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

.common-btn-2 {
	color: #272727;
	background: #ffffff;
	border: 2px solid #112d4e;
	padding: 10px 15px;
	font-size: 18px;
}

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

.common-btn-2::before {
	background-color: #112d4d;
}

.common-btn-3 {
	color: #ffffff;
	background-image: linear-gradient(87deg, #112d4d 0%, #112d4d 100%);
}

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

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

.common-btn-4 {
	color: #212121;
	background: #fff;
}

.common-btn-4::before {
	background-color: #c9a14d;
}

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

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

.gradient-color {
	color: #ba8a48;
	background-image: linear-gradient(45deg, #ba8a48, #dec37a 50%, #faf0a6 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

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

	to {
		transform: translateY(0);
	}
}

.padding-0 {
	padding: 0;
}

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

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

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

.header-manu-container {
	margin-left: -33px;
}

.header-manu-container ul {
	/* width: 100%;
	display: flex;
	align-items: center;
	justify-content: end; */
}

.main-header ul li {
	margin-right: 40px;
}

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

.main-header ul li a {
	font-size: 18px;
	line-height: 40px;
	color: #5f5f5f;
	font-weight: 500;
	padding: 0;
	text-transform: capitalize;
}

.main-header li a:after {
	position: absolute;
	content: "";
	width: 0px;
	height: 3px;
	background: #112d4e;
	bottom: 0;
	left: 0;
	transition: all 0.5s ease-in-out;
	visibility: hidden;
	opacity: 0;
}

.main-header li a:hover:after {
	width: 100%;
	visibility: visible;
	opacity: 1;
}

.primary-navigation li li a:hover:after {
	visibility: hidden;
	opacity: 0;
}

.site-navigation .current_page_item>a:after,
.site-navigation .current_page_ancestor>a:after,
.site-navigation .current-menu-item>a:after,
.site-navigation .current-menu-ancestor>a:after {
	width: 100%;
	visibility: visible;
	opacity: 1;
}

.site-navigation li .current_page_item>a:after,
.site-navigation li .current_page_ancestor>a:after,
.site-navigation li .current-menu-item>a:after,
.site-navigation li .current-menu-ancestor>a:after {
	visibility: hidden;
	opacity: 0;
}

.header-btn-container {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 15px;
}

.header-btn-container .common-btn-3 {
	padding: 12px 50px;
}

.header-btn-container img {
	width: 18px;
}

.header-btn-container .common-btn-3:hover .gradient-color {
	color: #ffffff !important;
	background-image: linear-gradient(45deg, #FFFFFF, #FFFFFF 50%, #FFFFFF 100%);
}

.pos-fixed {
	transition: all 0.5s ease;
	box-shadow: 0 0 5px #dddddd;
}

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

/* banner css here  */
.banner-sec {
	position: relative;
	margin-top: 160px;
}

.banner-img img {
	width: 100%;
}

.banner-container {
	max-width: 675px;
	position: absolute;
	top: 39%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	z-index: 1;
}

.banner-heading {
	font-size: 58px;
	line-height: 65px;
	color: #ffffff;
	font-weight: 600;

}

.banner-heading strong {
	font-weight: 400 !important;
	color: #ba8a48;
	background-image: linear-gradient(45deg, #ba8a48, #dec37a 50%, #faf0a6 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.banner-sub-heading {
	font-size: 20px;
	letter-spacing: 0px;
	line-height: 28px;
	color: #f6eb9b;
	font-weight: 600;
	padding: 25px 0 20px;
}

.banner-container .common-text {
	color: #ffffff;
}

.banner-btn-container {
	display: flex;
	align-items: start;
	flex-direction: column;
	gap: 10px;
	margin-top: 25px;
}

.banner-btn-container .common-btn::before {
	background-color: #ffffff;
}

.banner-btn-container .common-btn:hover {
	color: #000;
}

.banner-btn-container .common-btn-2 {
	background: transparent;
	border: 2px solid #ffffff;
	padding: 10px 30px;
}

.banner-btn-container .common-btn-2::before {
	background-color: #c9a14d;
}

.banner-btn-container .common-btn-2:hover .gradient-color {
	color: #ffffff !important;
	background-image: linear-gradient(45deg, #FFFFFF, #FFFFFF 50%, #FFFFFF 100%);
}


/* banner-bottom-sec */
.banner-bottom-sec {
	background: url("../images/banner-bottom-img.jpg") no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: bottom;
	height: 120px;
}

/* our-aim-sec */
.our-aim-sec {
	background: #0f2a44;
}

.our-aim-sec .container {
	max-width: 1624px;
	overflow: hidden;
}

.c_p {
	padding: 0;
}

.our-aim-sec-left {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 0 15px 0 0;
}

.our-aim-heading {
	font-size: 22px;
	color: #ffffff;
	font-weight: 600;
}

.our-aim-text {
	font-size: 14px;
	line-height: 22px;
	color: #ffffff;
}

.our-aim-sec-left ul {
	padding: 10px 0;
	margin: 0;
	list-style: none;
}

.our-aim-sec-left ul li {
	padding-left: 20px;
	position: relative;
	font-size: 14px;
	line-height: 24px;
	color: #ffffff;
	padding-left: 24px;
}

.our-aim-sec-left ul li::before {
	content: '';
	background: url("../images/list-img.png") no-repeat;
	background-size: cover;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 6px;
}

/* our-service-sec */
.our-service-sec {
	padding: 90px 0;
}

.service-card-heading {
	font-size: 19px;
	letter-spacing: 0px;
	line-height: 32px;
	color: #1f1f1f;
	font-weight: 600;
	padding: 10px 0 5px;
}

.service-card-text {
	font-size: 16px;
	line-height: 25px;
	color: #5f5f5f;
}

.our-service-card ul {
	padding: 10px 0;
	margin: 0;
	list-style: none;
}

.our-service-card ul li {
	padding-left: 26px;
	font-size: 16px;
	line-height: 26px;
	color: #5f5f5f;
	position: relative;
}

.our-service-card ul li::before {
	content: '';
	background: url("../images/list-img.png") no-repeat;
	background-size: cover;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.our-service-card .common-btn {
	margin-top: 15px;
}


/* about-sec */
.about-sec {
	margin: 30px 0 100px;
	position: relative;
}

.about-sec .common-heading strong {
	color: #4f6f52;
	font-weight: 400 !important;
}

.about-right-bottom {
	margin-top: 30px;
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 30px;
}

.about-right-bottom-card-img {
	width: 74px;
	min-width: 74px;
	height: 74px;
	border-radius: 37px;
	background-color: #0f2a44;
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-right-bottom-card-img img {
	width: 45px;
}

.about-right-bottom-card {
	display: flex;
	align-items: center;
	gap: 15px;
	position: relative;
}

.about-right-bottom-card::before {
	content: '';
	width: 100%;
	height: 2px;
	position: absolute;
	border-bottom: 2px dashed #708195;
	bottom: -15px;
	left: 0;
}

.about-right-bottom-card:last-child:before {
	content: none;
}

.about-right-bottom-card-heading {
	font-size: 22px;
	line-height: 25px;
	color: #1f1f1f;
	font-weight: 600;
	padding-bottom: 10px;
}

.about-right-bottom-card-text {
	font-size: 16px;
	line-height: 25px;
	color: #5f5f5f;
}

/* our-team-sec */
.our-team-sec {
	padding: 90px 0;
	background-color: #f4f1ec;
}

.our-team-card {
	border-radius: 10px;
	filter: drop-shadow(0px 7px 6.5px rgba(0, 0, 0, 0.23));
	background-color: #f7f8fc;
	min-height: 100%;
	padding: 20px 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.our-team-card-heading {
	font-size: 22px;
	line-height: 30px;
	color: #1f1f1f;
	font-weight: 600;
	text-align: center;
	padding: 20px 0 5px;
}

.our-team-card-sub-heading {
	font-size: 18px;
	line-height: 30px;
	color: #4f6f52;
	font-weight: 600;
	text-align: center;
}

.our-team-card-text {
	font-size: 14px;
	line-height: 23px;
	color: #5f5f5f;
	text-align: center;
}

.our-team-card-text strong {
	margin: 3px 0 7px;
	display: block;
}

.our-team-card .common-btn {
	margin-top: 15px;
}

.our-team-card-2 {
	background: url("../images/our-team-card-bg.jpg") no-repeat;
	background-size: cover;
	border-radius: 10px;
	min-height: 100%;
	padding: 30px 20px;
}

.our-team-card-2-heading {
	font-size: 28px;
	line-height: 30px;
	color: #ffffff;
	font-weight: 600;
	text-align: center;
}

.our-team-card-2 ul {
	padding: 10px 0;
	margin: 0;
	list-style: none;
	position: relative;
}

.our-team-card-2 ul li {
	font-size: 16px;
	line-height: 28px;
	color: #ffffff;
	position: relative;
	padding-left: 20px;
}

.our-team-card-2 ul li::before {
	content: '';
	background: url("../images/list-img.png") no-repeat;
	background-size: cover;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.our-team-card-2-text {
	font-size: 16px;
	line-height: 26px;
	color: #ffffff;
	font-weight: 400;
	text-align: center;
}

.our-team-card-2 .common-btn {
	margin-top: 20px;
}

/* news-sec */
.news-sec {
	padding: 60px 0;
	background: url("../images/news-bg.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	position: relative;
}

.news-sec::before {
	content: '';
	background: #000000cc;
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
}

.news-sec .container {
	position: relative;
	z-index: 1;
}

.news-sec-heading {
	font-size: 38px;
	line-height: 30px;
	color: #ffffff;
	font-weight: 600;
	text-align: center;
	padding-bottom: 40px;
	position: relative;
	width: fit-content;
}

.news-sec-heading::before {
	content: '';
	width: 100%;
	height: 5px;
	background-image: linear-gradient(87deg, #b98947 0%, #ddc379 51%, #f9ef9f 100%);
	position: absolute;
	bottom: 15px;
	left: 0;
}

.news-sec-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.news-sec-text {
	font-size: 18px;
	line-height: 31px;
	color: #ffffff;
	text-align: center;
	margin-top: 5px;
}

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

/* why-choose-sec */
.why-choose-sec {
	padding: 100px 0;
}

.why-choose-sec .common-text {
	font-size: 16px;
}

.why-choose-card {
	border-radius: 20px;
	filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.23));
	background-color: #ffffff;
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	min-height: 100%;
	transition: all 0.5s ease;
}

.why-choose-card:hover {
	background-color: #0f2a44;
}

.why-choose-card img {
	width: 50px;
}

.why-choose-card-heading {
	font-size: 20px;
	line-height: 28px;
	color: #1f1f1f;
	font-weight: 600;
	padding: 10px 0 5px;
	transition: all 0.5s ease;
}

.why-choose-card:hover .why-choose-card-heading {
	color: #ffffff;
}

.why-choose-card-text {
	font-size: 15px;
	line-height: 24px;
	color: #5f5f5f;
	text-align: center;
	transition: all 0.5s ease;
}

.why-choose-card:hover .why-choose-card-text {
	color: #ffffff;
}


/* info-sec */
.info-sec {
	padding: 80px 0;
	background-color: #f4f1ec;
}

.info-sec-left ul {
	padding: 10px 0;
	margin: 0;
	list-style: none;
}

.info-sec-left ul li {
	font-size: 17px;
	line-height: 28px;
	color: #5f5f5f;
	padding-left: 30px;
	position: relative;
}

.info-sec-left ul li::before {
	content: '';
	background: url("../images/list-img-2.png") no-repeat;
	background-size: cover;
	width: 22px;
	height: 22px;
	position: absolute;
	left: 0;
	top: 5px;
}

.info-sec-left {
	margin-right: -33px;
}

.info-sec-right img {
	float: right;
}

/* footer-top-sec */
.footer-top-sec {
	background: url("../images/footer-top-bg.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 80px 0;
	position: relative;
}

.footer-top-sec::before {
	content: '';
	background: #0000009f;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	top: 0;
}

.footer-top-sec-content {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.footer-top-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 20px;
}

.footer-top-sec-content .common-heading {
	color: #ffffff;
	width: fit-content;
	margin-bottom: 35px;
	position: relative;
}

.footer-top-sec-content .common-heading::before {
	content: '';
	background-image: linear-gradient(87deg, #c9a14d 0%, #947430 28%, #b89039 72%, #ac8531 100%);
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: -15px;

}

.footer-top-sec-content .common-text {
	color: #ffffff;
}

.footer-top-sec-content .common-text strong {
	font-size: 20px;
}



/* footer */
.footer {
	position: relative;
	padding: 60px 0 0;
	position: relative;
	z-index: 1;
}

.footer-img {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.f-logo {
	width: 149px;
}

.ndis-logo {
	width: 149px;
}

.footer-text {
	font-size: 17px;
	line-height: 26px;
	color: #5f5f5f;
	font-weight: 500;
}

.social-icon {
	display: flex;
	align-items: center;
	width: 80px;
	gap: 10px;
}

.footer-heading {
	font-size: 24px;
	line-height: 26px;
	color: #0f2a44;
	font-weight: 600;
	margin-bottom: 20px;
}

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

.footer ul li {
	font-size: 16px;
	color: #5f5f5f;
	padding-bottom: 5px;
}

.footer ul li a {
	font-size: 16px;
	color: #5f5f5f;
}

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

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

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

.f-sec-2 {
	padding-left: 20px;
}

.f-sec-3 {
	margin-left: -15px;
	margin-right: -20px;
}

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


.footer-bottom {
	font-size: 18px;
	line-height: 17px;
	color: #3b3b3b;
	font-weight: 600;
	text-align: center;
	padding: 20px 0;
	border-top: 2px solid #dadada;
	margin-top: 30px;
}

.lower-footer {
	position: relative;
	font-size: 16px;
	color: #ffffff;
	padding: 8px 0;
	text-align: center;
	z-index: 5;
	background-color: #0f2a44;
}

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

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


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

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


@keyframes bounce2 {

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

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

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

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

.page .entry-header,
.blog_page_header {
	background: url("../images/inner-banner.jpg") #eee no-repeat center !important;
	background-size: cover !important;
	max-width: 100% !important;
	padding: 150px 0 150px !important;
	margin: 160px 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: #112d4d;
}

.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;
}

.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-image: linear-gradient(87deg, #c9a14d 0%, #947430 28%, #b89039 72%, #ac8531 100%);
	padding: 30px 20px;
	text-align: center;
}

.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_title {
	color: #131313;
	font-size: 20px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
}

.core-box_title strong {
	color: #112d4d;
}

.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: #112d4d;
}

.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;
	margin: 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: #112d4d;
	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: #c9a14d;
	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-image: linear-gradient(87deg, #c9a14d 0%, #947430 28%, #b89039 72%, #ac8531 100%);
	width: fit-content;
	margin: 15px 0;
	padding: 15px 25px;
	border-radius: 35px;
	color: #fff;
	text-transform: capitalize;
	transition: all 0.5s ease;
	text-decoration: none !important;
}

.more-link:hover {
	background-image: linear-gradient(87deg, #112d4d 0%, #112d4d 100%) !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 #c9a14d;
}

.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: 35px;
	width: fit-content;
	background-image: linear-gradient(87deg, #112d4d 0%, #112d4d 100%);
	padding: 15px 50px;
	transition: all 0.5s ease;
}

.contact-form-sec input[type="submit"]:hover {
	background-image: linear-gradient(87deg, #c9a14d 0%, #947430 28%, #b89039 72%, #ac8531 100%);
}

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

.inner_separator {
	background-image: linear-gradient(87deg, #112d4d 0%, #112d4d 100%);
	color: #ffffff;
	padding: 30px 15px;
	margin: 40px 0;
	display: flex;
	font-size: 20px;
	font-weight: 600;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	gap: 20px;
}

.inner_separator .common-btn::before {
	background: #fff;
}

.inner_separator .common-btn:hover {
	color: #000;
}

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

/* 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 #112d4d;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
}

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

.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: #112d4d;
}

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

.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-image: linear-gradient(87deg, #c9a14d 0%, #947430 28%, #b89039 72%, #ac8531 100%);
}

.inner-form-submit-btn input[type="submit"]:hover {
	background-image: linear-gradient(87deg, #112d4d 0%, #112d4d 100%);
}

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

#sp-testimonial-free-wrapper-172 .sp-testimonial-free {
	padding: 50px 20px 20px;
	background: #fff !important;
	box-shadow: 0 0 5px #c6c6c6;
	border-radius: 10px !important;
	margin: 5px;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial .sp-testimonial-content {
	height: 125px;
	overflow: auto;
	display: block !important;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
	padding: 0 !important;
	text-align: left !important;
}

#sp-testimonial-free-wrapper-172 .sp-testimonial-free-section .sp-testimonial-client-name {
	text-align: right !important;
}

#sp-testimonial-free-wrapper-172 .sp-testimonial-free-section .sp-testimonial-client-rating {
	display: flex !important;
	position: absolute;
	top: 30px;
}

.testimonial-text {

	margin-bottom: 10px;
}

.testimonial-heading {
	font-weight: 600;
	text-align: right;
}

/* 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;
	}

	.logo-container img {
		width: 100px;
	}
	.banner-sec {
		margin-top: 110px;
	}
	.banner-sec .container {
		width: auto;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 36px;
	}
	.banner-img img {
		width: 100%;
		height: 600px;
		object-fit: cover;
	}
	.banner-sub-heading {
		font-size: 18px;
		line-height: 26px;
		padding: 20px 0 15px;
	}
	.common-text {
		font-size: 16px;
		line-height: 26px;
	}
	.banner-container {
		top: 50%;
	}
	.our-aim-sec-left {
		padding: 0 15px;
		flex-direction: column;
	}
	.our-aim-sec-left img{
		width: 100%;
	}
	.our-aim-sec {
		background: #0f2a44;
		padding: 50px 0;
	}
	.our-service-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 26px;
		line-height: 30px;
	}
	.about-sec {
		margin: 30px 0 50px;
	}
	.about-right .common-heading br{
		display: none;
	}
	.our-team-sec {
		padding: 50px 0;
	}
	.news-sec-heading {
		font-size: 26px;
		line-height: 36px;
	}
	.common-btn {
		padding: 12px 30px;
		font-size: 16px;
		line-height: 28px;
	}

	.why-choose-sec {
		padding: 50px 0;
	}
	.info-sec {
		padding: 50px 0;
	}
	.info-sec-left {
		margin-right: 0;
	}
	.footer-top-sec-content .common-heading::before {
		width: 90%;
	}
	.footer-top-sec {
		overflow: hidden;
		padding: 50px 0;
	}
	.footer{
		overflow: hidden;
	}
	.f-logo {
		width: 130px;
	}
	.ndis-logo {
		width: 125px;
	}
	.f-sec-2 {
		padding-left: 0;
	}
	.f-sec-3 {
		margin-left: 0;
		margin-right: 0;
	}
	.footer-bottom {
		font-size: 18px;
		line-height: 26px;
		margin-top: 15px;
	}
	.lower-footer {
		padding: 8px 0 60px;
	}
	.scroll-top {
		bottom: 3rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 110px 0 50px !important;
	}
	.inner-form-container {
		padding: 30px 10px;
	}
	.our-service-card img{
		width: 100%;
	}
}

@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) {
	.our-aim-sec-left {
		flex-direction: row;
	}
	.footer-top-sec-content .common-heading::before {
		width: 100%;
	}
}

/* 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) {
	.our-aim-sec-left {
		flex-direction: row !important;
	}
	.footer-top-sec-content .common-heading::before {
		width: 100%;
	}
}

/* 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) {
	.our-aim-sec-left {
		flex-direction: row !important;
	}
	.footer-top-sec-content .common-heading::before {
		width: 100%;
	}
}

/* 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) {
	.our-aim-sec-left {
		flex-direction: row;
	}
	.footer-top-sec-content .common-heading::before {
		width: 100%;
	}
}

/* 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;
	}

	.logo-container img {
		width: 100px;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 36px;
	}
	.banner-sub-heading {
		font-size: 18px;
		line-height: 26px;
		padding: 20px 0 15px;
	}
	.common-text {
		font-size: 16px;
		line-height: 26px;
	}
	.common-heading {
		font-size: 26px;
		line-height: 30px;
	}
	.banner-sec {
		margin-top: 110px;
	}
	.banner-container {
		top: 45%;
	}
	.our-aim-sec-left {
		flex-direction: column;
	}
	.our-aim-sec-left img{
		width: 100%;
	}
	.our-aim-sec .container {
		max-width: 960px;
	}
	.our-aim-sec{
		padding: 0 0 50px;
	}
	.our-team-card-2-heading {
		font-size: 26px;
		line-height: 30px;
	}
	.page .entry-header, .blog_page_header {
		margin: 110px 0 50px !important;
	}
}

/* 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) {}

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

@media screen and (min-width: 1920px) {
	.banner-container {
		top: 28%;
	}
}

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

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



@media (min-width: 1025px) and (max-width: 1199px) {}