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

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

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

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

@font-face {
	font-family: 'Poppins';
	src: url('../fonts/Poppins-SemiBold.eot');
	src: url('../fonts/Poppins-SemiBold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
		url('../fonts/Poppins-SemiBold.woff') format('woff'),
		url('../fonts/Poppins-SemiBold.ttf') format('truetype'),
		url('../fonts/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;
}

.pad-0 {
	padding: 0;
}

.pad-left-0 {
	padding-left: 0;
}

.pad-right-0 {
	padding-right: 0;
}

.common-sub-heading {
	font-size: 26px;
	color: #0d803f;
	font-weight: 600;
	font-family: "Poppins";
	text-align: center;
}

.common-heading {
	font-size: 38px;
	letter-spacing: 2px;
	line-height: 49px;
	color: #223645;
	font-weight: 800;
	font-family: "Akhand";
	text-align: center;
}

.common-btn {
	display: inline-block;
	position: relative;
	padding: 13px 25px;
	border-radius: 8px;
	background-color: #0d803f;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	overflow: hidden;
	transition: background-color 0.3s ease;
	z-index: 1;
}

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

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


/* top header  */
.top-header {
	background-color: #0d803f;
	padding: 10px 0;
}

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

.top-header-left {
	display: flex;
	gap: 35px;
}

.header-info-container {
	display: flex;
	gap: 6px;
}

.header-info-container strong {
	font-size: 14px;
	color: #89c75a;
	font-weight: 700;
}
.header-info-container a:hover{
	color:#89c75a;
}
.header-info-container .header-info-text {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
}

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


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

.pos-fixed {
	top: 0;
	box-shadow: 0 0 5px #dddddd;
}

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

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

	to {
		transform: translateY(0);
	}
}

.pos-fixed .main-header-container {
	padding: 0;
}

.logo-container {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: auto;
	background-color: #ffffff;
	padding: 3px 21px 20px;
	border-radius: 50%;
	box-shadow: 0px 18px 20px -19px rgba(0, 0, 0, 1);
}

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

.main-header-container {
	position: relative;
}

.header-manu-container ul {}

.main-header ul li a {
	display: inline-block;
	font-size: 16px;
	color: #1f1f1f;
	font-weight: 500;
	padding: 33px 0px;
}

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

.main-header ul li:nth-child(3) {
	margin-right: 300px;
}

.main-header ul li li:nth-child(3) {
	margin-right: 0px;
}

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

.header-btn-container {
	display: flex;
	justify-content: end;
}



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

.banner-img {
	width: 100%;
}

.ms-slide-info {
	position: absolute !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.banner-width {
	max-width: 500px;
	margin-left: 15px;
}

.banner-sub-heading {
	font-size: 18px;
	color: #ffffff;
	font-weight: 600;

}

.banner-heading {
	font-size: 42px;
	letter-spacing: 2px;
	line-height: 45px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 800;
	font-family: "Akhand";
	padding: 10px 0 15px;
}

.banner-text {
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	font-weight: 400;
	padding-bottom: 30px;
	padding-right: 60px;
}

.banner-btn-container {
	display: flex;
	align-items: center;
	gap: 10px;
}

.banner-btn-1 {
	background-color: #89c75a;
}

.banner-btn-2 {
	color: #0d803f;
	background-color: #ffffff;
}

.banner-btn-2:hover {
	background-color: #89c75a;
	color: #ffffff;
}

.ms-skin-light-6 .ms-nav-next {
	background: url("../images/right-arrow.png") no-repeat !important;
	border: 0 !important;
}

.ms-skin-light-6 .ms-nav-prev {
	background: url("../images/right-arrow.png") no-repeat !important;
	border: 0 !important;
	rotate: 180deg;
}

.ms-skin-light-6.round-skin .ms-nav-next,
.ms-skin-light-6.round-skin .ms-nav-prev,
.ms-skin-light-6.round-skin .ms-slide .ms-slide-vpbtn,
.ms-skin-light-6.round-skin .ms-video-btn {
	border-radius: 0 !important;
}


/* our-services */
.our-services {
	padding: 80px 0 100px;
}

.our-services .our-services-card {
	text-align: center;
	border-radius: 10px;
	background-color: #ffffff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	min-height: 100%;
}

.our-services-card img {
	width: 100%;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.our-services-card-heading {
	font-size: 20px;
	letter-spacing: 1px;
	padding: 30px 5px 10px;
	text-transform: uppercase;
	color: #111111;
	font-weight: 800;
	font-family: "Akhand";
	text-align: center;
}

.our-services-card-text {
	font-size: 14px;
	line-height: 23px;
	color: #111111;
	font-weight: 400;
	text-align: center;
	padding: 0 35px;
}

.our-services-card-link {
	font-size: 16px;
	letter-spacing: 1px;
	text-decoration: underline;
	color: #0d803f;
	font-weight: 700;
	text-align: center;
	margin: 20px 0 25px;
	display: inline-block;
	text-underline-offset: 5px;
}

.our-services-card-link:hover {
	text-underline-offset: 2px;
	color: #0d803f;
}

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

.why-choose-mt {
	margin-top: 50px;
}

.why-choose-card {
	border-radius: 10px;
	background-color: #ffffff;
	text-align: center;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	padding: 30px 20px 0px;
	min-height: 100%;
	position: relative;
}

.why-choose-card-heading {
	font-size: 16px;
	line-height: 21px;
	color: #223645;
	font-weight: 700;
	text-align: center;
	padding-top: 20px;
}

.why-choose-card-text {
	font-size: 14px;
	line-height: 24px;
	color: #292929;
	font-weight: 400;
	text-align: center;
	padding: 15px 0 25px;
}

.why-choose-btn {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -18px;
	padding: 10px 20px;
	font-size: 12px;
}

.about-sec {
	position: relative;
	background-color: #efffe2;
}

.about-left-bg {
	padding: 0;
	background-color: #89c75a;
}

.about-left-container {
	height: 100%;
	float: right;
	padding: 50px 15px 0 0;
}

.about-right-container {
	padding: 75px 0 50px 50px;
	text-align: left;
	max-width: 590px;
}

.about-sec .common-sub-heading {
	text-align: left;
}

.about-sec .common-heading {
	text-align: left;
}

.about-text {
	font-size: 16px;
	line-height: 30px;
	color: #0f0f0f;
	font-weight: 400;
	padding: 20px 0;
}

.about-card-container {
	display: flex;
	align-items: center;
	padding-bottom: 30px;
	gap: 60px;
}

.about-card {
	text-align: center;
}

.about-card-digit {
	font-size: 30px;
	line-height: 30px;
	color: #0d803f;
	font-weight: 700;
	padding: 15px 0 5px;
}

/* testimonial-sec */
.testimonial-sec {
	padding: 100px 0;
	background: url("../images/testimonial-bg.jpg");
	background-size: cover;
	background-attachment: fixed;
}

.testimonial-sec .common-sub-heading {
	color: #ffffff;
}

.testimonial-sec .common-heading {
	color: #ffffff;
}

.swiper-wrapper {
	margin-top: 50px;
}

#sp-testimonial-free-wrapper-47 .sp-testimonial-free-section.swiper-initialized,
#sp-testimonial-free-wrapper-47 .sp-testimonial-free-section:not(.swiper-initialized, .tfree-layout-grid) {
	margin: 0 !important;
}

#sp-testimonial-free-wrapper-93 .sp-testimonial-client-testimonial,
#sp-testimonial-free-wrapper-47 .sp-testimonial-client-testimonial {
	padding-top: 30px;
}
#sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-rating {
	display: flex !important;
	position: absolute;
	top: 0;
	left: 13px;
}
#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-rating{
	display: flex !important;
	position: absolute;
	top: 30px;
	left: 42px;
}

#sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-name {
	text-align: end !important;
	padding-right: 60px !important;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff !important;
	font-weight: 700;
}
#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-name {
	text-align: end !important;
	padding-right: 20px !important;
	font-size: 16px;
	line-height: 30px;
	color: #ffffff !important;
	font-weight: 700;
}

#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial,
#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial p,
#sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial,
#sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
	font-size: 16px;
	line-height: 30px;
	color: #ffffff;
	font-weight: 400;
	margin: 0 0 10px 0;
	text-align: left !important;
	padding-right: 46px;
	margin-bottom: 10px !important;
}
#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial,
#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial p{
	padding-right: 0px;
}

.swiper-slide-next::before {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	background: #ffffff;
	left: -33px;
	top: 0;
}

.swiper-slide-next::after {
	content: '';
	position: absolute;
	width: 1px;
	height: 100%;
	background: #ffffff;
	right: 5px;
	top: 0;
}
#sp-testimonial-free-wrapper-93 .sp-testimonial-free {
	background: #0d803f !important;
	padding: 25px 20px 15px;
	border-radius: 15px !important;
	min-height: 100%;
}

/* news-sec */
.news-sec {
	padding: 80px 0 120px;
	position: relative;
}

.news-sec::before {
	content: '';
	background: url("../images/news-ba-1.png") no-repeat;
	background-size: cover;
	position: absolute;
	width: 283px;
	height: 333px;
	left: 1%;
	bottom: -5px;
	z-index: 1;
}

.news-sec::after {
	content: '';
	background: url("../images/news-ba-2.png") no-repeat;
	background-size: cover;
	position: absolute;
	width: 251px;
	height: 312px;
	right: 1.5%;
	bottom: -7px;
	z-index: 1;
}

.news-heading {
	font-size: 50px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #0d803f;
	font-weight: 800;
	font-family: "Akhand";
	text-align: center;
}

.news-text {
	font-size: 16px;
	line-height: 29px;
	color: #252525;
	font-weight: 400;
	font-family: "Poppins";
	text-align: center;
	padding: 20px 110px 30px;
}

.news-btn-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.news-btn-2 {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.news-btn-2 a {
	font-size: 28px;
	text-transform: uppercase;
	color: #89c75a;
	font-weight: 700;
}

.news-btn-2 a:hover {
	color: #0d803f;
}

/* footer */
.footer {
	position: relative;
	background-color: #012f15;
	padding: 70px 0 0;
}

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

.media-img-container {
	min-width: 31px;
	width: 31px;
	height: 31px;
	border-radius: 15px;
	border: 1px solid #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

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

.footer ul li {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	margin-bottom: 20px;
}

.footer ul li a {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	transition: all 0.5s ease;
}

.footer ul li a:hover {
	color: #89c75a;
}

.f-contact-container ul li {
	display: flex;
	align-items: center;
	gap: 10px;
}

.f-contact-container {
	padding-left: 32px;
	padding-right: 20px;
}

.f-service-container-1 {
	padding-left: 20px;
}

.f-service-container-2 {
	padding-left: 40px;
}

.lower-footer {
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	text-align: center;
	padding: 18px 0;
	border-top: 1px solid #ffffff;
	margin-top: 25px;
}

.lower-footer a {
	color: #ffffff;
	transition: all 0.5s ease;
}

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

/* scroll to top  */
.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	cursor: pointer;
	z-index: 1000;
}

.scroll-top img {
	background-color: #89c75a;
	padding: 16px 10px;
	border-radius: 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: 150px 0 150px !important;
	margin: 80px 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_title {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.inner_title strong {
	color: #89c75a;
}

.inner_title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
	background: #89c75a;
}

.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: #0d803f;
	padding: 30px 20px;
	text-align: center;
}

.inner_bottm_sec .inner_title:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 10%;
	height: 3px;
	background: #ffffff;
}

.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;
	padding-bottom: 12px;
}

.core-box_title strong {
	color: #89c75a;
}

.core-box_title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
	background: #89c75a;
}

.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;
	padding-bottom: 15px;
	position: relative;
}

.contact_page_heading::before {
	position: absolute;
	content: "";
	bottom: 8px;
	left: 0;
	width: 30px;
	height: 3px;
	background: #89c75a;
}

.contact_page_heading strong {
	color: #89c75a;
}

.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-text a{
	transition: all 0.5s ease;
}
.contact-text a:hover{
	 color: #89c75a;
}
.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_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 25px 0;
	border-radius: 5px;
}

/* thank you page   */
.thankyou-btn {
	border-radius: 27px;
	background-image: linear-gradient(89deg, #151b8b 0%, #5b93c7 99%, #5b93c7 100%);
	transition: all 0.8s ease !important;
	cursor: pointer;
	color: #fff;
	font-weight: 600;
	position: relative;
	display: inline-block;
	white-space: nowrap;
	padding: 15px 30px;
}

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

/* footer_fixed_buttons css  */
.footer_fixed_buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 999;
	box-shadow: 0 0 5px #a1a1a1;
}

.footer_btn1 {
	background: #89c75a;
	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_btn3 {
	background: #0d803f;
	width: 50%;
	float: left;
	color: #fff !important;
	padding: 10px 0;
	text-decoration: none !important;
	text-transform: capitalize;
}

.contact-page input {
	width: 100%;
	padding: 12px 10px 12px 10px;
	border-radius: 7px;
	color: #515151;
	font-size: 16px;
	text-transform: capitalize;
	border: 1px solid #89c75a;
	outline: none;
}

.contact-page input:focus,
.contact-page select:focus,
.contact-page textarea:focus {
	border: 1px solid #0d803f;
}

.contact-page select {
	width: 100%;
	padding: 12px;
	border-radius: 7px;
	color: #9393a1;
	font-size: 16px;
	text-transform: capitalize;
	border: 1px solid #89c75a;
	outline: none;
}

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

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

.contact-page input[type="submit"]:hover {
	background-color: #89c75a;
}

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

.back_btn {
	margin: 10px 0 50px;
}

.back_btn a {
	text-decoration: none !important;
}
#acwp-toolbar-btn {
	background: #0d803f !important;
	-moz-transition: all 0.5s ease 0s !important;
    -webkit-transition: all 0.5s ease 0s !important;
    transition: all 0.5s ease 0s !important;
}
#acwp-toolbar-btn:hover, #acwp-toolbar-btn:focus {
	border-color: #89c75a !important;
}
.acwp-heading {
	background: #0d803f !important;
}
body #acwp-toolbar-btn-wrap {
	right: auto !important;
	left: 30px;
	border-color: #89c75a !important;
	-moz-transition: all 0.5s ease 0s !important;
    -webkit-transition: all 0.5s ease 0s !important;
    transition: all 0.5s ease 0s !important;
}
body #acwp-toolbar-btn-wrap:hover{
	border-color: #0d803f !important;
}

.fix-btn {
    position: fixed;
    top: 250px;
    right: -100px;
    z-index: 99;
    transform: rotate(90deg);
}
.fix-btn a {
    display: inline-block;
    vertical-align: middle;
    background: #89c75a;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 16px;
    letter-spacing: 1px;
	border-radius: 8px;
	text-transform: uppercase;
}
.sticky-whatsapp-btn {
    width: 40px;
    position: fixed;
    right: 10px;
    top: 440px;
    border-radius: 50%;
    z-index: 9999;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite; 
	animation: swing ease-in-out 1s infinite alternate;
    transform-origin: center -20px;
    float:left;
    box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
@keyframes swing {
    0% { transform: rotate(3deg); }
    100% { transform: rotate(-3deg); }
}
  @keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #EDEDED;
    -moz-box-shadow: 0 0 0 0 #EDEDED;
    box-shadow: 0 0 0 0 #EDEDED;
  }
  70% {
      -webkit-box-shadow: 0 0 0 15px rgba(255, 1, 1, 0);
      -moz-box-shadow: 0 0 0 15px rgba(255, 1, 1, 0);
      box-shadow: 0 0 0 15px rgba(255, 1, 1, 0);
  }
  100% {
      -webkit-box-shadow: 0 0 0 0 rgba(255, 1, 1, 0);
      -moz-box-shadow: 0 0 0 0 rgba(255, 1, 1, 0);
      box-shadow: 0 0 0 0 rgba(255, 1, 1, 0);
  }
}

/* Referral css */

.ref_form_box {
	padding: 35px;
	margin-bottom: 30px;
	border: 1px solid #ddd;
	border-radius: 10px;
}
.ref_form_box p {
	margin-bottom: 0 !important;
}
.ref_form_box_heading {
	color: #131313;
	font-weight: bold;
	font-size: 26px;
	line-height: 30px;
}
.ref_form_box_heading strong {
	color: #89c75a;
	font-weight: bold;
}
.ref_form_box_label {
	color: #666;
	margin-top: 15px;
        margin-bottom: 5px;
}
.ref_form_box_input input {
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	color: #555;
}
.ref_form_box_input select {
	background: url("../images/dropdown.png") #fff no-repeat center right 10px;
	width: 100%;
	min-height: 44px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	border-radius: 2px;
	color: #555;
	padding: 10px 30px 10px 12px;
/* 	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none; */
     outline: 0;
}
.ref_form_box_input textarea {
	resize: none;
	height: 144px;
	margin-top: 2px;
	border: 1px solid #ccc !important;
	color: #555;
}
.ref_form_box .contact_btn input {
	font-weight: 600;
	background: #0d803f !important;
	font-size: 16px;
	margin-top: 20px;
	border-radius: 8px;
	padding: 15px 40px 12px;
    -moz-transition: all 0.5s ease 0s;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.ref_form_box .contact_btn input:hover{
	background: #89c75a !important;
}
span.wpcf7-list-item {
	margin: 0 !important;
	display: block;
}
.wpcf7-list-item label {
	display: block;
	position: relative;
	margin-top: 8px;
	color: #555;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.half_check .wpcf7-list-item {
	width: 45%;
}
.wpcf7-list-item label input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.wpcf7-list-item-label {
	position: relative;
	padding-left: 22px;
}
.wpcf7-list-item-label::before {
	position: absolute;
	top: 1px;
	left: 0;
	height: 16px;
	width: 16px;
	background-color: #eee;
	border: 1px solid #ccc;
	border-radius: 50%;
}
.wpcf7-list-item label:hover input ~ .wpcf7-list-item-label:before {
	background-color: #ccc;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:before {
	background-color: #89c75a;
	border-color: #89c75a;
}
.wpcf7-list-item-label:after {
	content: "";
	position: absolute;
	display: none;
}
.wpcf7-list-item label input:checked ~ .wpcf7-list-item-label:after {
	display: block;
}
.wpcf7-list-item label .wpcf7-list-item-label:after {
	left: 6px;
	top: 3px;
	width: 5px;
	height: 9px;
	border: solid #fff;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.wpcf7 form.invalid .wpcf7-response-output{
    border-color: #89c75a !important;
}

/* Location css */

.area_sec {
    padding: 40px 0;
	background-color: #f7f7f7;
}
.area_heading{
    color: #00313d;
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
    text-align: center;
    margin-bottom: 40px;
    text-transform: capitalize;
}
.area_heading:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 50%;
    transform: translatex(-50%);
    width: 30px;
    height: 3px;
    background: #0087a8;
}
.area_loc{
    margin-bottom: 12px;
}
.area_loc a {
    display: inline-block;
	text-decoration: none !important;
    padding: 15px 15px 15px 45px;
    border-radius: 4px;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    color: #252525 !important;
    text-transform: capitalize;
/*  border: 2px solid #85eb34; */
    background: url("https://triplercare.com.au/wp-content/uploads/2025/07/footer_address.png") #fff;
    background-position: 15px 15px;
    background-repeat: no-repeat;
    background-size: 22px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    -moz-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}


/* Responsive Code */

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

@media only screen and (min-device-width : 375px) and (max-device-width : 667px) and (orientation : portrait) {}

@media only screen and (min-device-width : 414px) and (max-device-width : 736px) and (orientation : portrait) {}

@media only screen and (min-width : 321px) and (max-width : 480px) {
	.top-header {
		display: none;
	}
	.header-right {
		display: none;
	}
	.header-mid {
		display: none;
	}
	.main-header {
		top: 0;
		padding: 10px 0;
	}
	.logo-container img {
		width: 55px;
	}
	.animate {
		animation: none;
	}
	.logo-container {
		position: relative;
		left: 0;
		transform: none;
		padding: 0px 0px 0 12px;
		box-shadow: none;
	}
	.ms-view {
		height: 400px !important;
	}
	.ms-slide .ms-slide-bgcont, .ms-slide .ms-slide-bgvideocont {
		height: 400px !important;
	}
	.ms-slide .ms-slide-bgcont img, .ms-container, .ms-inner-controls-cont {
		height: 100% !important;
	}
	.ms-slide-info {
		top: 45%;
		padding: 20px 15px 20px;
		min-width: 90%;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 34px;
		padding: 10px 0;
	}
	.banner-text {
		font-size: 15px;
		line-height: 23px;
		padding: 14px 0;
	}
	.ms-skin-light-6 .ms-nav-next, .ms-skin-light-6 .ms-nav-prev {
		bottom: 18px;
		top: auto !important;
	}
	.ms-skin-light-6 .ms-nav-next {
		right: 34% !important;
		bottom: 22px;
	}
	.ms-skin-light-6 .ms-nav-prev {
		left: 34% !important;
		bottom: 30px;
	}
	.banner-sec {
		margin-top: 85px;
		overflow: hidden;
	}
	.banner-width {
		margin-left: 0;
	}
	.our-services {
		padding: 50px 0px;
	}
	.common-sub-heading {
		font-size: 22px;
	}
	.common-heading {
		font-size: 30px;
		line-height: 37px;
	}
	.about-right-container {
		padding: 50px 0;
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-mt {
		margin-top: 30px;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial p, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
		padding-right: 0;
	}
	.swiper-slide-next::before {
		content: none;
	}
	.news-sec {
		padding: 50px 0;
	}
	.news-heading {
		font-size: 32px;
		line-height: 36px;
	}
	.news-sec::before {
		content: none;
	}
	.news-sec::after {
		content: none;
	}
	.news-text {
		padding: 20px 10px 30px;
	}
	.news-btn-2 a {
		font-size: 22px;
	}
	.news-btn-container {
		gap: 20px;
	}
	.f-contact-container {
		padding-left: 0;
		padding-right: 0;
	}
	.f-service-container-1 {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 0;
	}
	.footer ul li:last-child {
		margin-bottom: 0px;
	}
	.ndis-img{
		margin-top: 20px;
	}
	.lower-footer {
		padding: 18px 0 60px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
	}
	.scroll-top {
		bottom: 4rem;
		right: 1rem;
	}
	.hentry {
		margin: 0 auto 10px !important;
	}
}

@media only screen and (min-width : 481px) and (max-width : 767px) {
	.top-header {
		display: none;
	}
	.header-right {
		display: none;
	}
	.header-mid {
		display: none;
	}
	.main-header {
		top: 0;
		padding: 10px 0;
	}
	.logo-container img {
		width: 55px;
	}
	.animate {
		animation: none;
	}
	.logo-container {
		position: relative;
		left: 0;
		transform: none;
		padding: 0px 0px 0 12px;
		box-shadow: none;
	}
	.ms-view {
		height: 400px !important;
	}
	.ms-slide .ms-slide-bgcont, .ms-slide .ms-slide-bgvideocont {
		height: 400px !important;
	}
	.ms-slide .ms-slide-bgcont img, .ms-container, .ms-inner-controls-cont {
		height: 100% !important;
	}
	.ms-slide-info {
		top: 45%;
		padding: 20px 15px 20px;
		min-width: 90%;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 34px;
		padding: 10px 0;
	}
	.banner-text {
		font-size: 15px;
		line-height: 23px;
		padding: 14px 0;
	}
	.ms-skin-light-6 .ms-nav-next, .ms-skin-light-6 .ms-nav-prev {
		bottom: 18px;
		top: auto !important;
	}
	.ms-skin-light-6 .ms-nav-next {
		right: 34% !important;
		bottom: 22px;
	}
	.ms-skin-light-6 .ms-nav-prev {
		left: 34% !important;
		bottom: 30px;
	}
	.banner-sec {
		margin-top: 85px;
		overflow: hidden;
	}
	.banner-width {
		margin-left: 0;
	}
	.our-services {
		padding: 50px 0px;
	}
	.common-sub-heading {
		font-size: 22px;
	}
	.common-heading {
		font-size: 30px;
		line-height: 37px;
	}
	.our-services .col-sm-12 {
		width: 50%;
	}
	.about-right-container {
		padding: 50px 0 !important;
		padding-left: 64px !important;
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-sec .col-sm-12 {
		width: 50%;
	}
	.why-choose-mt {
		margin-top: 30px;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial p, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
		padding-right: 0;
	}
	.swiper-slide-next::before {
		content: none;
	}
	.news-sec {
		padding: 50px 0;
	}
	.news-heading {
		font-size: 32px;
		line-height: 36px;
	}
	.news-sec::before {
		content: none;
	}
	.news-sec::after {
		content: none;
	}
	.news-text {
		padding: 20px 10px 30px;
	}
	.news-btn-2 a {
		font-size: 22px;
	}
	.news-btn-container {
		gap: 20px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.f-contact-container {
		padding-left: 0;
		padding-right: 0;
	}
	.f-service-container-1 {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 0;
	}
	.footer ul li:last-child {
		margin-bottom: 0px;
	}
	.ndis-img{
		margin-top: 20px;
	}
	.lower-footer {
		padding: 18px 0 60px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
	}
	.scroll-top {
		bottom: 4rem;
		right: 1rem;
	}
	.hentry {
		margin: 0 auto 10px !important;
	}
}

/* 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) {
	.top-header {
		display: none;
	}
	.header-right {
		display: none;
	}
	.header-mid {
		display: none;
	}
	.main-header {
		top: 0;
		padding: 10px 0;
	}
	.logo-container img {
		width: 55px;
	}
	.animate {
		animation: none;
	}
	.logo-container {
		position: relative;
		left: 0;
		transform: none;
		padding: 0px 0px 0 12px;
		box-shadow: none;
	}
	.ms-view {
		height: 400px !important;
	}
	.ms-slide .ms-slide-bgcont, .ms-slide .ms-slide-bgvideocont {
		height: 400px !important;
	}
	.ms-slide .ms-slide-bgcont img, .ms-container, .ms-inner-controls-cont {
		height: 100% !important;
	}
	.ms-slide-info {
		top: 45%;
		padding: 20px 15px 20px;
		min-width: 90%;
	}
	.banner-width {
		margin-left: 20px !important;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 34px;
		padding: 10px 0;
	}
	.banner-text {
		font-size: 15px;
		line-height: 23px;
		padding: 14px 0;
	}
	.ms-skin-light-6 .ms-nav-next, .ms-skin-light-6 .ms-nav-prev {
		bottom: 18px;
		top: auto !important;
	}
	.ms-skin-light-6 .ms-nav-next {
		right: 34% !important;
		bottom: 22px;
	}
	.ms-skin-light-6 .ms-nav-prev {
		left: 34% !important;
		bottom: 30px;
	}
	.banner-sec {
		margin-top: 85px;
		overflow: hidden;
	}
	.banner-width {
		margin-left: 0;
	}
	.our-services {
		padding: 50px 0px;
	}
	.common-sub-heading {
		font-size: 22px;
	}
	.common-heading {
		font-size: 30px;
		line-height: 37px;
	}
	.our-services .col-sm-12 {
		width: 50%;
	}
	.about-right-container {
		padding: 50px 0;
		padding-right: 30px;
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-sec .col-sm-12 {
		width: 50%;
	}
	.why-choose-mt {
		margin-top: 30px;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial p, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
		padding-right: 20px;
	}
	.swiper-slide-next::after {
		content: none;
	}
	.news-sec {
		padding: 50px 0;
	}
	.news-heading {
		font-size: 32px;
		line-height: 36px;
	}
	.news-sec::before {
        width: 130px !important;
        height: 160px !important;
	}
	.news-sec::after {
        width: 130px !important;
        height: 164px !important;
	}
	.news-text {
		padding: 20px 10px 30px;
	}
	.news-btn-2 a {
		font-size: 22px;
	}
	.news-btn-container {
		gap: 20px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.f-contact-container {
		padding-left: 0;
		padding-right: 0;
	}
	.f-service-container-1 {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 0;
	}
	.footer ul li:last-child {
		margin-bottom: 0px;
	}
	.ndis-img{
		margin-top: 20px;
	}
	.lower-footer {
		padding: 18px 0 60px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
	}
	.scroll-top {
		bottom: 4rem;
		right: 1rem;
	}
	.hentry {
		margin: 0 auto 10px !important;
	}
}

/* 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) {
	.top-header {
		display: none;
	}
	.header-right {
		display: none;
	}
	.header-mid {
		display: none;
	}
	.main-header {
		top: 0;
		padding: 10px 0;
	}
	.logo-container img {
		width: 55px;
	}
	.animate {
		animation: none;
	}
	.logo-container {
		position: relative;
		left: 0;
		transform: none;
		padding: 0px 0px 0 12px;
		box-shadow: none;
	}
	.ms-view {
		height: 400px !important;
	}
	.ms-slide .ms-slide-bgcont, .ms-slide .ms-slide-bgvideocont {
		height: 400px !important;
	}
	.ms-slide .ms-slide-bgcont img, .ms-container, .ms-inner-controls-cont {
		height: 100% !important;
	}
	.banner-width {
		margin-left: 20px !important;
	}
	.ms-slide-info {
		top: 45%;
		padding: 20px 15px 20px;
		min-width: 90%;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 34px;
		padding: 10px 0;
	}
	.banner-text {
		font-size: 15px;
		line-height: 23px;
		padding: 14px 0;
	}
	.ms-skin-light-6 .ms-nav-next, .ms-skin-light-6 .ms-nav-prev {
		bottom: 18px;
		top: auto !important;
	}
	.ms-skin-light-6 .ms-nav-next {
		right: 34% !important;
		bottom: 22px;
	}
	.ms-skin-light-6 .ms-nav-prev {
		left: 34% !important;
		bottom: 30px;
	}
	.banner-sec {
		margin-top: 85px;
		overflow: hidden;
	}
	.banner-width {
		margin-left: 0;
	}
	.our-services {
		padding: 50px 0px;
	}
	.common-sub-heading {
		font-size: 22px;
	}
	.common-heading {
		font-size: 30px;
		line-height: 37px;
	}
	.our-services .col-sm-12 {
		width: 50%;
	}
	.about-sec .about-right-container {
		padding: 50px 0;
		padding-right: 30px;
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-sec .col-sm-12 {
		width: 50%;
	}
	.why-choose-mt {
		margin-top: 30px;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial p, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
		padding-right: 20px;
	}
	.swiper-slide-next::after {
		content: none;
	}
	.news-sec {
		padding: 50px 0;
	}
	.news-heading {
		font-size: 32px;
		line-height: 36px;
	}
	.news-sec::before {
		width: 130px;
		height: 160px;
	}
	.news-sec::after {
		width: 130px;
		height: 164px;
	}
	.news-text {
		padding: 20px 10px 30px;
	}
	.news-btn-2 a {
		font-size: 22px;
	}
	.news-btn-container {
		gap: 20px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.f-contact-container {
		padding-left: 0;
		padding-right: 0;
	}
	.f-service-container-1 {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 0;
	}
	.footer ul li:last-child {
		margin-bottom: 0px;
	}
	.ndis-img{
		margin-top: 20px;
	}
	.lower-footer {
		padding: 18px 0 60px;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
	}
	.scroll-top {
		bottom: 4rem;
		right: 1rem;
	}
	.hentry {
		margin: 0 auto 10px !important;
	}
}

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

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.top-header {
		display: none;
	}
	.header-right {
		display: none;
	}
	.header-mid {
		display: none;
	}
	.main-header {
		top: 0;
		padding: 10px 0;
	}
	.logo-container img {
		width: 55px;
	}
	.animate {
		animation: none;
	}
	.logo-container {
		position: relative;
		left: 0;
		transform: none;
		padding: 0px 0px 0 12px;
		box-shadow: none;
	}
	.ms-view {
		height: 400px !important;
	}
	.ms-slide .ms-slide-bgcont, .ms-slide .ms-slide-bgvideocont {
		height: 400px !important;
	}
	.ms-slide .ms-slide-bgcont img, .ms-container, .ms-inner-controls-cont {
		height: 100% !important;
	}
	.ms-slide-info {
		top: 45%;
		padding: 20px 15px 20px;
		min-width: 90%;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 34px;
		padding: 10px 0;
	}
	.banner-text {
		font-size: 15px;
		line-height: 23px;
		padding: 14px 0;
	}
	.ms-skin-light-6 .ms-nav-next, .ms-skin-light-6 .ms-nav-prev {
		bottom: 18px;
		top: auto !important;
	}
	.ms-skin-light-6 .ms-nav-next {
		right: 34% !important;
		bottom: 22px;
	}
	.ms-skin-light-6 .ms-nav-prev {
		left: 34% !important;
		bottom: 30px;
	}
	.banner-sec {
		margin-top: 85px;
		overflow: hidden;
	}
	.banner-width {
		margin-left: 0;
	}
	.our-services {
		padding: 50px 0px;
	}
	.common-sub-heading {
		font-size: 22px;
	}
	.common-heading {
		font-size: 30px;
		line-height: 37px;
	}
	.our-services .col-sm-12 {
		width: 50%;
	}
	.about-right-container {
		padding: 50px 0;
		padding-right: 30px;
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-sec .col-sm-12 {
		width: 50%;
	}
	.why-choose-mt {
		margin-top: 30px;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial p, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
		padding-right: 20px;
	}
	.swiper-slide-next::after {
		content: none;
	}
	.news-sec {
		padding: 50px 0;
	}
	.news-heading {
		font-size: 32px;
		line-height: 36px;
	}
	.news-sec::before {
        width: 120px;
        height: 130px;
	}
	.news-sec::after {
        width: 110px;
        height: 144px;
	}
	.news-text {
		padding: 20px 10px 30px;
	}
	.news-btn-2 a {
		font-size: 22px;
	}
	.news-btn-container {
		gap: 20px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.f-contact-container {
		padding-left: 0;
		padding-right: 0;
	}
	.f-service-container-1 {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 0;
	}
	.footer ul li:last-child {
		margin-bottom: 0px;
	}
	.ndis-img{
		margin-top: 20px;
	}
	.lower-footer {
		padding: 18px 0 60px;
	}
	.page .entry-header, .blog_page_header {
		padding: 150px 0 150px !important;
	}
	.scroll-top {
		bottom: 4rem;
		right: 1rem;
	}
	.hentry {
		margin: 0 auto 10px !important;
	}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.top-header-container {
		padding: 0;
	}
	.top-header-right {
		gap: 10px;
	}
	.top-header-left {
		gap: 14px;
	}
	.main-header ul li:nth-child(3) {
		margin-right: 260px;
	}
	.main-header ul li {
		margin-right: 40px;
	}
	.header-btn-container .common-btn {
		padding: 13px 20px;
		font-size: 13px;
	}
	.banner-container .banner-width {
		margin-left: 80px;
	}
	.news-sec .news-sec::after {
		width: 230px;
		height: 280px;
	}
	.news-sec .news-sec::before {
		width: 210px;
		height: 240px;
	}
	#sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-93 .sp-testimonial-free-section .sp-testimonial-client-testimonial p, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial, #sp-testimonial-free-wrapper-47 .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
		padding-right: 22px;
	}
	.news-sec::after {
		width: 130px;
		height: 164px;
	}
	.news-sec::before {
		width: 130px;
		height: 160px;
	}
}

/* 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) {
	.header-mid {
		display: block;
	}
	.header-right {
		display: block;
	}
	.header-btn-container .common-btn {
		padding: 13px 20px;
		font-size: 13px;
	}
	.logo-container {
		position: absolute;
		left: 50%;
		padding: 3px 21px 20px;
		transform: translateX(-65%);
		box-shadow: 0px 18px 20px -19px rgba(0, 0, 0, 1);
	}
	.logo-container img {
		width: auto;
	}
	.main-header ul li:nth-child(3) {
		margin-right: 270px;
	}
	.main-header ul li {
		margin-right: 40px;
	}
	.swiper-slide-next::before {
		content: none;
	}
	.lower-footer {
		padding: 18px 0;
	}
	.page .entry-header, .blog_page_header {
		padding: 150px 0 150px !important;
	}
}

@media screen and (min-width: 1424px) {
	.ms-skin-light-6 .ms-nav-prev {
		left: 0 !important;
	}
	.main-header ul li:nth-child(3) {
		margin-right: 430px;
	}
}

@media screen and (min-width: 1624px) {
	.ms-skin-light-6 .ms-nav-prev {
		left: 50px !important;
	}
}

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

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

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