body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins';
}
a {
	text-decoration: none !important;
}
img {
	max-width: 100%;
	height: auto;
}
a:focus {
	outline: none;
	outline: 0px auto -webkit-focus-ring-color;
	outline-offset: 0px;
}
.btn.active.focus, .btn.focus, .btn.focus:active{
	outline: none;
	outline-offset: 0px;
	border: none !important;
}
a:focus, a:hover {
	text-decoration: none !important;
	border: none !important;
}

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

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




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

ul{
	list-style: none !important;
}

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

a {
	color: #000;
	text-decoration: none;
}

.f-14 {
	font-size: 14px;
}
.mt-90{
	margin-top: 90px;
}

.orange-btn {
	background-color: #f6903e;
	display:inline-block;
	padding: 12px 34px;
	border-radius: 27px;
	transition: all 0.5s ease;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
}
.orange-btn:hover{
	background-color: #9d5ba0;
}
.purple-btn {
	display:inline-block;
	background-color: #9d5ba0;
	padding: 12px 34px;
	border-radius: 27px;
	transition: all 0.5s ease;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
}
.purple-btn:hover{
	background-color: #f6903e;
}

/* top header css here  */
.top-header {
	padding: 10px 0;
	background-color: #954e9e;
}

.top-header-info-container {
	display: flex;
	justify-content: space-between;
}

.h-address {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	color: #fff;
}

.top-header .h-address a {
	color: #fff;
}

.top-header-socialMedia-container {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 20px;
}

/* main header section css here  */
.main-header {
	background-color: white;
	transition: all 0.5s ease;
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
}
.animate{
	animation: slideDown 0.7s ease-in-out;
}
.pos-fixed{
	position: sticky;
}

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

	to {
		transform: translateY(0);
	}
}

.main-header ul {
	list-style: none;
	margin:0;
	padding:0;
}
.header-right{
	text-align:right;
}
.menu{
	display:inline-block;
	vertical-align:middle;
}
.menu ul li a{
	font-weight: 500;
	padding: 0 10px;
}
.header-btn {
	display:inline-block;
	vertical-align:middle;
	background-color: #f6903e;
	padding: 12px 34px;
	border-radius: 27px;
	transition: all 0.5s ease;
	color: #fff !important;
	text-transform: uppercase;
	font-weight: 600;
	margin-left:20px;
}
.header-btn:hover {
	background-color: #9d5ba0;
}

/* banner area css here  */

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

.banner{
	position: relative;
}
.banner::before{
	content: "";
	position: absolute;
	inset: 0;
	background: url(../images/banner-shape.png);
	background-size: cover;
	width: 100%;
	height: 100%;
}
/* .banner::after{
content: url("../images/banner-shape-2.png");
position: absolute;
bottom: -7px;
right: 0;
} */
.banner .banner-main-container {
	position: absolute;
	z-index: 1;
	top: 44%;
	transform:translatey(-50%);
	right: 8%;
}

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


.banner-sub-heading {
	font-size: 30px;
	font-weight: 600;
	color: #f6903e;
	text-transform: uppercase;
}

.banner-heading {
	font-weight: bold;
	font-size: 50px;
	line-height: 1;
	color: #3eaed4;
}

.banner-heading strong {
	color: #6ab557;
}

.banner-text {
	padding: 15px 0 10px;
}

/* about section css here  */
.about-sec{
	padding: 100px 0 120px;
	position: relative;
}
.about-sec::before{
	content: url("../images/about-shape.png");
	position: absolute;
	bottom: -6px;
	z-index: -1;
}

.about-sub-heading{
	font-size: 25px;
	font-weight: 600;
	color: #f6903e;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.about-heading{
	font-size: 40px;
	font-weight: bold;
	color: #3eaed4;
	line-height: 1.1;
}
.about-text{
	line-height: 1.7;
	padding: 20px 0;
	color: #4f4f4f;
	margin-right: 30px;
}

/* our-services css here  */
.our-services{
	padding: 90px 0 160px;
	background-color: #fff3ea;
	position: relative;
}
.our-services::before{
	content: url("../images/our-services-shape-1-img.png");
	position: absolute;
	top: 0;
}
.our-services::after{
	content: url("../images/our-services-shape-2-img.png");
	position: absolute;
	bottom: 0;
	right: 0;
}
.our-services .container{
	position: relative;
	z-index: 1;
}
.our-services-sub-heading{
	font-size: 25px;
	font-weight: 600;
	color: #f6903e;
	text-transform: uppercase;
}
.our-services-sub-heading span{
	padding: 0 10px;
}
.our-services-heading{
	font-size: 40px;
	font-weight: bold;
	color: #3eaed4;
	margin-bottom: 20px;
}
.our-services-container{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.our-services-container img{
	width: 100%;
}
.our-services-icon-container {
	position: absolute;
	bottom: 30px;
	z-index: 1;
	background: #954e9e;
	padding: 20px;
	border-radius: 15px;
}
.our-services-text-container {
	background: url("../images/our-services-box-shape-img.png");
	background-position: bottom right;
	background-repeat: no-repeat;
	background-color: #3eaed4;
	color: #fff;
	width: 90%;
	padding: 60px 10px 30px;
	border-radius: 20px;
	position: absolute;
	bottom: -65px;
}
/* choose us section css here  */
.choose-us{
	padding: 100px 0 120px;
	position: relative;
}
.choose-us::before{
	content: url("../images/Choose-us-shape-img.png");
	position: absolute;
	bottom: -12px;
	right: 0;
	z-index: -1;
}
.choose-us ul li {
	background: url("../images/list-item-icon-img.png");
	background-position: top 4px left;
	padding-left: 28px;
	background-repeat: no-repeat;
	background-size: 20px;
	font-size: 16px;
	color: #2b2b2b;
	font-weight: normal;
	list-style: none;
	padding-bottom: 6px;
	margin-top: 15px;
}

.choose-us-sub-heading{
	font-size: 25px;
	font-weight: 600;
	color: #f6903e;
	margin-bottom: 5px;
	text-transform: uppercase;
}
.choose-us-heading{
	font-size: 40px;
	font-weight: bold;
	color: #3eaed4;
	line-height: 1.1;
}
.choose-us .orange-btn{
	margin-top: 25px;
}
.choose-us ul li strong{
	color: #3eaed4;
}

/* testimonial css here  */
.testimonial{
	padding: 100px 0;
	position: relative;
	background-color: #954e9e;
}
.testimonial::before{
	content: url("../images/testimonial-shape.png");
	position: absolute;
	top: 0;
	left: 0;
	/* z-index: -1; */
}
.testimonial .container{
	position: relative;
	z-index: 1;
}
.testimonial-sub-heading{
	font-size: 25px;
	font-weight: 600;
	color: #f6903e;
	text-transform: uppercase;
	margin-bottom: 5px;
}
.testimonial-heading{
	font-size: 40px;
	font-weight: bold;
	color: #3eaed4;
	line-height: 1.1;
}
.testimonial-text{
	line-height: 1.7;
	padding: 20px 0;
	color: #fff;
}

/* contact css here */
.contact{
	padding: 70px 0;
	position: relative;
}

.input-container p{
	margin-bottom:0;
}
.contact input, .contact-page .contact-deatails input, .contact select, .contact-page .contact-deatails select{
	border: 1px solid #a9a9a9;
	border-radius: 15px;
	padding: 10px 20px;
	margin-top:12px;
	width:100%;
	background: #fff;
}
.contact textarea, .contact-page .contact-deatails textarea{
	width:100%;
	height: 106px;
	border-radius: 15px;
	margin-top:12px;
	border: 1px solid #a9a9a9;
	background: #fff;
}
.submit-btn-container input{
	border: none !important;
	display: block;
	border-radius: 50px !important;
	color: #fff !important;
	padding: 10px 40px !important;
	background: #f6903e !important;
	font-size: 17px !important;
	font-weight: 500 !important;
	margin: 18px 0;
	text-align: center;
}
.contact-sub-heading{
	font-size: 25px;
	font-weight: 600;
	text-transform: uppercase;
	color: #f6903e;
	margin-bottom: 5px;
}
.contact-heading{
	font-size: 40px;
	font-weight: bold;
	color: #3eaed4;
	line-height: 1.1;
}
.contact-text{
	line-height: 1.7;
	padding: 20px 0;
	color: #4f4f4f;
}
.submit-btn-container .wpcf7-spinner{
	display: none;
}

/* testimonial css here  */
.sp-testimonial-free-section.swiper-initialized{
	margin: 0 10px !important;
	margin-bottom: 0 !important;
}
#sp-testimonial-free-wrapper-27 .sp-testimonial-free {
	background: #fff !important;
	border-radius: 20px !important;
}
.sp-testimonial-free-section .sp-testimonial-client-image img {
	-webkit-border-radius: 0% !important;
	-moz-border-radius: 0% !important;
	border-radius: 20px !important;
}
#sp-testimonial-free-wrapper-27 .sp-testimonial-free-section .sp-testimonial-client-image {
	text-align: start !important;
}
.sp-testimonial-free-section .sp-testimonial-title {
	position: absolute;
	bottom: 50px;
	left: 283px;
}
.sp-testimonial-free-section .sp-testimonial-title h3 {
	font-size: 16px !important;
}
#sp-testimonial-free-wrapper-27 .sp-testimonial-free-section .sp-testimonial-client-testimonial {
	color: #333333;
	background: url("../images/rating.png");
	background-position: top 50px left 32px;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 250px;
	padding: 80px 22px 0;
}
.sp-testimonial-free-section .sp-testimonial-client-testimonial p{
	text-align: start !important;
}
#sp-testimonial-free-wrapper-27 .sp-testimonial-free-section .sp-testimonial-client-rating {
	position: absolute;
	top: 50px;
	left: 284px;
}

/* footer css here  */
.footer{
	background-color: #1c071f;
	padding: 80px 0 0;
}
.lower-footer{
	margin-top: 55px;
	font-size: 14px;
}
.ndis-logo{
	padding: 20px 0;
}
.f-media-container{
	display: flex;
	align-items: center;
	gap: 20px;
}
.footer-title{
	font-size: 22px;
	font-weight: 600;
	color: #3eaed4;
	padding-bottom: 20px;
}
.footer li a{
	color: #fff;
}
.footer li {
	font-size: 14px;
	color: #fff;
}
.footer .f-contact li{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 25px;

}
.footer .f-contact-container{
	/*   padding-left: 20px; */
}
.footer .f-services-container{
	padding-left: 65px;
}
.footer .f-services li{
	padding-bottom: 10px;
}
.lower-footer a{
	color: #fff;
}
.lower-footer a:hover{
	color: #f6903e;
}
.footer ul li a:hover{
	color: #f6903e;
}
/* scroll to top  */
.scroll-top {
  position: fixed;
  bottom: 3rem;
  right: 1rem;
  cursor: pointer;
  z-index: 1000;
}
/* banner css  */
.site-content, .site-main .widecolumn {
	margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
	background: url("../images/banner.jpg") #eee no-repeat center !important;
	background-position: center;
	background-size: cover !important;
	max-width: 100% !important;
	padding: 150px 0 !important;
	margin: 0 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: #f26d20;
	position: relative;
	font-size: 15px;
}
.breadcrumb-container a {
	color: #f26d20;
}
.page {
	margin-top: 0 !important;
}
/* common css  */
.inner_title {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}
.inner_title strong {
	color: #9d5ba0;
}
.inner_title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 50px;
	height: 3px;
	background: #9d5ba0;
}
.inner_txt {
	font-size: 16px;
	color: #2b2b2b;
	font-weight: normal;
	margin-top: 20px;
}
.margin-top {
	margin-top: 48px;
}
.inner_list_heading{
	margin-top: 20px;
	color: #9d5ba0;
	font-size: 20px;
}
.inner_list_txt {
	margin-top: 20px;
}
.inner_list_txt ul {
	padding: 0;
	margin: 0;
}
.inner_list_txt ul li {
	background: url("../images/list-item-icon-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: #9d5ba0;
	padding: 30px 20px;
	text-align: center;
	margin-bottom: 48px;
}
.inner_bottm_sec .inner_title:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 10%;
	height: 3px;
	background: #f6903e;
}
.center_content .inner_title:after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 10%;
	height: 3px;
	background: #9d5ba0;
}
/* contact page css  */
.contact_page_info a{
	color: #000 !important;
	text-decoration: none !important;
}
.contact_page_info .contact-text{
	padding: 0;
}
.contact_page_heading {
	color: #2b2b2b;
	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: #954e9e;
}
.contact_page_heading strong {
	color: #954e9e;
}
.contact_page_info {
	position: relative;
	color: #000;
	margin-top: 25px;
	padding-left: 60px;
}
.contact-img {
	position: absolute;
	top: 3px;
	left: 0;
	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;
}
/* .contact-page .contact-deatails input {
	border: 1px solid #a9a9a9;
	height: 56px;
	border-radius: 15px;
}
.contact-page .contact-deatails textarea {
	height: 134px;
	border-radius: 15px;
	border: 1px solid #a9a9a9;
} */
.testimonial_page p{
	margin-bottom: 0;
}
.testimonial-card {
	min-height: 100%;
	position: relative;
	padding: 25px 25px;
	border-radius: 20px;
}
.testimonial-rating-img {
}
.testimonial-page-text {
	font-size: 15px;
	margin-top:5px;
}
.footer_fixed_buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 99;
}
.footer_btn1 {
	background:#3eaed4;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
	text-transform:uppercase;
	font-weight:500;
}
.footer_btn2 {
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	height: 44px;
	width: 44px;
	border-radius: 50%;
	padding: 9px 8px;
}
.footer_btn3 {
	background: #262525;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
	text-transform:uppercase;
	font-weight:500;
}
.back-btn a {
	background: #3dadd3;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	border-radius: 50px;
	padding: 10px 28px;
	text-transform: uppercase;
	display: inline-block;
	margin-top: 20px;
}
.error_container {
	align-items: center;
	padding: 0 0 30px;
	text-align: center;
}




/*Responsive*/
@media only screen and (min-width : 320px) and (max-width : 1023px) {
	.header-btn, .menu{
		display:none;
	}
	.main-header{
		padding:5px 0;
	}
	.pos-fixed {
		position: fixed;
		top: 0;
		width: 100%;
	}
	.animate{
		animation: none;
	}
	.logo img{
		width:80px;
	}
	.rmp-submenu .menu-item a {
		height: auto !important;
		overflow: visible !important;
		line-height: inherit !important;
		margin-bottom: 5px;
		padding: 6px 25px !important;
	}
	.banner-sub-heading{
		font-size: 18px;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 1.2;
	}
	.banner .banner-main-container{
		top:50%;
		transform:translatey(-50%);
		right: 0;
	}
	.banner-text{
		display:none;
	}
	.banner .btn-container{
		display:none;
	}
	.banner::before, .about-sec::before, .our-services::before, .our-services::after, .choose-us::before{
		display:none;
	}
	.about-sec{
		padding:30px 0;
	}
	.about-sub-heading, .choose-us-sub-heading, .testimonial-sub-heading, .contact-sub-heading{
		font-size: 18px;
	}
	.about-heading, .choose-us-heading, .testimonial-heading, .contact-heading{
		font-size: 24px;
	}
	.about-heading br{
		display:none;
	}
	.about-text {
		line-height: 1.5;
		padding: 10px 0 20px;
		margin-right: 0;
	}
	.about-sec .orange-btn{
		font-size: 15px;
		padding: 10px 30px;
	}
	.about-img{
		margin-top:30px;
	}
	.about-img img{
		width:100%;
	}
	.our-services{
		padding:30px 0 15px;
	}
	.our-services-sub-heading{
		font-size: 20px;
	}
	.our-services-heading{
		font-size: 25px;
		margin-bottom: 25px;
		line-height: 32px;
	}
	.ttr1{
		margin-bottom:90px;
	}
	.our-services-text-container{
		padding: 48px 10px 20px;
	}
	.our-services-icon-container {
		bottom: 15px;
	}
	.our-services .mt-90 {
		margin-top: 0;
	}
	.choose-us {
		padding: 35px 0;
	}
	.choose-img{
		margin-bottom:30px;
	}
	.choose-img img{
		width:100%;
	}
	.choose-us .orange-btn, .testimonial .orange-btn {
		margin-top: 16px;
		font-size: 15px;
		padding: 10px 30px;
	}
	.testimonial{
		padding:30px 0;
	}
	.testimonial-text{
		line-height: 1.5;
		padding: 10px 0 0;
	}
	.testi-part{
		margin-top:20px;
	}
	.sp-testimonial-free{
		padding:20px 15px;
	}
	.sp-testimonial-client-image img{
		width:75px;
	}
	#sp-testimonial-free-wrapper-27 .sp-testimonial-free-section .sp-testimonial-client-testimonial {
		background-position: top 0px left 0;
		position: relative;
		top: 0;
		left: 0;
		padding: 23px 0 0;
	}
	.sp-testimonial-client-testimonial p{
		padding:0 !important;
		font-size: 15px !important;
		line-height: 24px !important;
	}
	.contact {
		padding: 30px 0 10px;
	}
	.form-part{
		margin-top:10px;
	}
	.footer{
		padding:30px 0 60px;
	}
	.foot_logo img{
		width:90px;
	}
	.ndis img{
		width:130px;
	}
	.f-media-container {
		gap: 5px;
	}
	.footer-title {
		font-size: 18px;
		padding-bottom: 10px;
		margin-top: 10px;
	}
	.footer .f-contact li {
		gap: 5px;
		margin-bottom: 15px;
	}
	.footer .f-services li{
		padding-bottom: 6px;
	}
	.footer .f-services-container {
		padding-left: 0;
	}
	.lower-footer {
		margin-top: 15px;
	}
	.page .entry-header, .blog_page_header{
		padding: 70px 0 !important;
		margin: 0 0 30px !important;
	}
	.page .entry-title, .blog_page_title{
		font-size: 26px;
	}
	.inner_title {
		font-size: 22px;
	}
	.inner_txt {
		font-size: 15px;
		margin-top: 15px;
	}
	.inner_title{
		font-size: 20px;
	}
	.margin-top {
		margin-top: 20px;
	}
	.contact_page_info{
		margin-top: 15px;
	}
	.contact_right {
		padding: 25px 20px 0;
		margin-top: 30px;
	}
	.contact_page_heading{
		font-size: 20px;
	}
}

@media only screen and (min-width : 481px) and (max-width : 767px) {
	.header-btn {
		right: 70px !important;
	}
	.ttr1{
		width:50%;
	}
	.our-services-text-container {
		padding: 48px 0 20px !important;
		font-size: 13px !important;
	}
	.sp-testimonial-client-image img {
		width: 105px !important;
	}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.header-btn{
		display: inline-block;
		position: fixed;
		top: 22px;
		right: 81px;
		padding: 8px 22px;
		font-size: 15px;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 1.2;
	}
	.banner-text {
		display: block;
	}
	.banner .btn-container {
		display: block;
		margin-top: 15px;
	}
	.orange-btn, .purple-btn{
		font-size:15px;
		padding: 10px 28px;
	}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.f-14 {
		font-size: 12px;
	}
	.banner .banner-main-container{
		right: 4%;
	}
	.banner-heading{
		font-size: 40px;
	}
	.footer .f-contact li {
		gap: 7px;
		font-size: 12px;
	}
}

/* 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) {
	.header-btn{
		display: inline-block;
		position: fixed;
		top: 22px;
		right: 81px;
		padding: 8px 22px;
		font-size: 15px;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 1.2;
	}
	.banner-text {
		display: block;
	}
	.banner .btn-container {
		display: block;
		margin-top: 15px;
	}
	.orange-btn, .purple-btn{
		font-size:15px;
		padding: 10px 28px;
	}
}

@media only screen and (min-width : 1025px) and (max-width : 1199px) and (orientation : portrait) {

}

@media only screen and (min-width : 1025px) and (max-width : 1199px) and (orientation : landscape) {

}

/* 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-btn {
		position: relative;
		top: 0;
		right: 0;
	}
	.f-14 {
		font-size: 12px;
	}
	.banner .banner-main-container{
		right: 4%;
	}
	.banner-heading{
		font-size: 40px;
	}
	.footer .f-contact li {
		gap: 7px;
		font-size: 12px;
	}
}

@media screen and (min-width: 1424px) {
	.banner .banner-main-container {
		right: 2%;
	}
}

@media screen and (min-width: 1624px) {
	.banner .banner-main-container {
		right: 8%;
	}
	.page .entry-header, .blog_page_header{
		padding: 175px 0 !important;
	}
}

@media screen and (min-width: 1920px) {
	.banner .banner-main-container {
		right: 14%;
	}
	.page .entry-header, .blog_page_header{
		padding: 195px 0 !important;
	}
}

@media screen and (min-width: 2048px) {
	.banner .banner-main-container {
		right: 17%;
	}
	.page .entry-header, .blog_page_header{
		padding: 205px 0 !important;
	}
}

@media screen and (min-width: 2550px) {
	.banner .banner-main-container {
		right: 23%;
	}
	.page .entry-header, .blog_page_header{
		padding: 270px 0 !important;
	}
}    
