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;
	outline-offset: 0px;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn.focus:active, .btn:active:focus, .btn:focus {
	outline: none;
	outline-offset: 0px;
	border: none !important;
}
a:focus, a:hover {
	text-decoration: none !important;
	outline: none !important;
}

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

.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	padding: 5px 0;
	transition: all 0.5s ease 0s;
	-moz-transition: all 0.5s ease 0s;
	-webkit-transition: all 0.5s ease 0s;
	z-index: 999;
}
.fixed-header{
	top: 0;
	background: #fff;
	box-shadow: 0 0 5px #929292;
	animation: smoothScroll 1s;
	z-index: 999;
}
@keyframes smoothScroll {
	0% {
		transform: translateY(-200px);
	}
	100% {
		transform: translateY(0px);
	}
}
.fixed-header .logo img{
	width: 100px;
}
.logo img{
	width: 200px;
	transition: ease 0.5s all 0s;
}
.menu{
	display: inline-block;
	vertical-align: middle;
}
.menu ul{
	margin: 0;
	padding: 0;
}
.menu ul li{
	display: inline-block;    
	margin-right: 22px;    
}
.menu ul li:last-child{
	margin-right: 0;
}
.menu ul li a{
	display: block;
	font-size: 14px;
	font-weight:bold;
	color: #214442;
	padding: 33px 0;
	text-transform: uppercase;
	transition: ease 0.5s all 0s;
}
.menu ul li a:hover, .menu ul li a.active{
	color: #662ca7;
}
.call-btn{
	display: inline-block;
	vertical-align: middle;
	background: #6b2bad;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 13px 24px;
	margin-left: 45px;
	line-height: 1.2;
	border-radius: 50px;
	transition: ease 0.5s all 0s;
}
.call-btn img{
	transform: translate(-5px, 0px);
	transition: ease 0.5s all 0s;
}
.call-btn:hover {
	background:#048949;
}
.banner {
	margin-top: 100px;
	position: relative;
}
.banner:before{
	width: 100%;
	height: 100%;
	background: linear-gradient(107deg,rgba(255, 255, 255, 0.82) 26%, rgba(0, 0, 0, 0) 42%);
	position: absolute;
	top: 0;
	left: 0;
	content: "";
}
.banner-content{
	position: absolute;
	width: 100%;
	top: 57%;
	transform: translateY(-50%);
}
.banner-part{
	max-width: 370px;
}
.banner-title{
	font-size: 44px;
	font-weight: 600;
	color: #000;
	line-height: 45px;
}
.banner-title .purple{
	color: #6b2bad;
	font-weight: 600;
}
.banner-title .green{
	color: #548826;
	font-weight: 600;
}
.banner-text{
	font-size: 15px;
	color: #070707;
	margin-top: 14px;
}
.banner-btn{
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top:22px;
}
.banner-btn a{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #6b2bad;    
	color: #fff;
	border: 2px solid #6b2bad;
	font-size: 15px;
	font-weight:600;
	padding: 12px 22px;
	line-height: 1.2;
	border-radius:50px;
	text-transform: uppercase;
	transition: ease 0.5s all 0s !important;
}
.banner-btn a:hover {
	background: #0b7a44;
	border: 2px solid #0b7a44;
}
.banner-btn a:last-child{
	padding: 13px 37px;
	background: transparent;
	color: #000000;
}
.banner-btn a:last-child:hover{
	background: #7fda57;
}
.ndis{
	margin-top:25px;
}
.about-sec{
	padding: 50px 0;
}
.about-part{
	display: flex;
	align-items: center;
	gap: 30px;
	border-right: 1px solid #adabab;
}
.about-part img{
	min-width: 385px;
	border-radius: 20px;
}
.small-title{
	font-size: 15px;
	font-weight: bold;
	color: #6b2bad;
	text-transform: uppercase;
	line-height: 1.3;
	margin-bottom: 7px;
	letter-spacing: 1px;
}
.about-title{
	font-size:28px;
	font-weight: 600;
	color: #000;
	line-height:30px;
}
.about-title strong{
	font-weight: 600;
	color: #548826;
}
.about-text{
	color: #000000;
	font-size: 15px;
	margin-top: 10px;
}
.learn-btn{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: transparent;
	color: #000;
	border: 2px solid #6b2bad;
	font-size: 15px;
	font-weight: 500;
	padding: 10px 22px;
	line-height: 1.2;
	border-radius: 50px;
	text-transform: uppercase;
	margin-top: 20px;
	transition: ease 0.5s all 0s;  
}
.learn-btn:hover {
	background: #099651;
	color: #fff;
}
.learn-btn img{
	width: auto !important;
	min-width: auto !important;
	border-radius: 0 !important;
}
.box1{
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 13px;
	color: #000;
	margin-top: 16px;
}
.box1 strong{
	display: block;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 1px;
}
.service-sec{
	padding: 10px 0 50px;
}
#service-slider {
	margin-top: 30px;
}
#service-slider .item{
	margin: 7px;
	padding: 25px 10px 10px;
	border-radius: 10px;
	border: 1px solid #c2c2c2;
	overflow: hidden;
	position: relative;
	background: #fff;
	text-align: center;
	min-height: 100%;
	transition: ease 0.5s all 0s;
}
#service-slider .item img{
	border-radius: 50%;
}
#service-slider .owl-stage{
	display: flex;
}
#service-slider .owl-stage-outer{
	padding-bottom:40px;  
}
#service-slider .owl-prev, #service-slider .owl-next{
	display: none;
}
#service-slider .owl-dots{
	text-align: center;
}
#service-slider  .owl-dot{
	border: none;
	background: transparent;
	padding: 0;
}
#service-slider .owl-dot span{
	background: #a5a5a5;
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 3px;
	border-radius: 50%;
}
#service-slider .owl-dot.active span{
	background: #4c4c4c;
}
.serv-icon.purple img{
	background: #e9dcff;
}
.serv-icon.green img{
	background: #cde8db;
}
.serv-title{
	font-size: 14px;
	color: #000;
	margin-top: 12px;
	line-height: 1.4;
	min-height: 78px;
}
.read-btn {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	color: #5e3697;
	border-bottom: 1px solid;
	margin-top: 10px;
	text-transform: uppercase;
	transition: ease 0.5s all 0s;
}
.read-btn:hover{
	color: #1b6a43;
}
.choose-us-sec{
	background: #662ca7;
	padding: 34px 0;
}
.choose-right ul{
	margin: 0;
	padding: 0;
	text-align: center;
}
.choose-right ul li{
	display: inline-block;
	vertical-align: top;
	color: #fff;
	width: 19%;
	line-height: 1.3;
	padding: 0 8px;
	position: relative;
}
.choose-right ul li img{
	margin-bottom: 7px;
}
.choose-right ul li:before{
	width: 1px;
	height: 100px;
	background: #ffffff45;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
}
.testimonial-sec{
	padding: 50px 0;
}
.sp-testimonial-free-section {
	margin: 0 !important;
	margin-bottom:50px !important;
}
.sp-testimonial-free{
	background: #fff !important;
	margin: 10px;
	padding: 40px 15px 22px;
	border-radius: 15px !important;
	position: relative;
	text-align: left !important;
	border: 1px solid #bdbdbd !important
}
.sp-testimonial-free:before{
	background:url(../images/quote.png) no-repeat;
	width:21px;
	height:19px;
	position:absolute;
	top:15px;
	left:15px;
	content:"";
}
.sp-testimonial-client-testimonial{
	margin-bottom:14px !important;
}
.sp-testimonial-client-testimonial p{
	font-size: 14px !important;
	color: #000000 !important;
	line-height: 23px !important;
	margin-bottom: 26px !important;
	text-align: left !important;
	padding: 0 !important;
	padding-right: 5px !important;
	max-height: 93px;
	overflow-y: auto;
	scrollbar-width: thin;
	scrollbar-color: #3c3c3c #cecece;
}
.sp-testimonial-client-name{
	text-align: left !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	margin-bottom: 0 !important;
	color: #6b2bad !important;
	line-height: 1.3 !important;
}
.sp-testimonial-client-designation{
	text-align: left !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	color: #001a2c !important;
}
.sp-testimonial-client-image{
	position: absolute;
	bottom: 20px;
	right:10px;
	margin-bottom: 0 !important;
}
.lets-talk-sec{
	background: #e6d7f4;
	padding: 37px 0px;
	position: relative;
	overflow: hidden;
}
.talk-left{
	display: flex;
	align-items: center;
	gap: 15px;
}
.talk-left strong{
	display: block;
	font-size: 20px;
	font-weight: 600;
	color: #000000;
	line-height: 1.3;
}
.learn-btn2{
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: #6b2bad;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	padding: 10px 22px;
	line-height: 1.2;
	border-radius: 50px;
	text-transform: uppercase;
	margin-top: 20px;
	transition: ease 0.5s all 0s;
}
.learn-btn2:hover{
	background: #22a163;
}
.talk-right{
	position: relative;
	padding-left: 28px;
	padding-right: 24px;
}
.talk-right:before{
	width: 1px;
	height: 125px;
	background: #000;
	position: absolute;
	top: -2px;
	left: 0;
	content: "";
}
.talk-right span{
	display: flex;
	align-items: center;
	gap: 10px;
	color: #000;
	font-size: 15px;
	font-weight: 500;
	margin-top: 15px;
}
.talk-right span a{
	color: #000;
	transition: ease 0.5s all 0s;
}
.talk-right span a:hover {
	color: #099551;
	letter-spacing: 0.5px;
}
.talk-bg{
	position: absolute;
	top: 0;
	right: 0;
}
.talk-bg:before{
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg,rgba(230, 215, 244, 1) 0%, rgba(0, 0, 0, 0) 21%);
	position: absolute;
	top: 0;
	left: 0;
	content: "";
}
.footer{
	background: #5e3697;
	padding: 50px 0 15px;
}
.foot_logo img{

}
.foot_title{
	font-size: 18px;
	color: #fff;
	font-weight: 600;
	line-height: 1.3;
	margin-bottom: 14px;
	text-transform: uppercase;
}
.foot1{
	margin: 0;
	padding: 0;
}
.foot1 li{
	color: #fff;
	list-style: none;
	margin-bottom: 7px;
	font-size: 14px;
}
.foot1 li a{
	color: #fff;
	transition: ease 0.5s all 0s;
}
.foot1 li a:hover{
	color: #7fdb54;
}
.foot1.second li{
	display: flex;
	margin-bottom: 12px;
	align-items: center;
	gap: 11px;
}
.social a{
	margin-right: 4px;
}
.foot_text{
	font-size: 14px;
	color: #fff;
}
.copyright{
	padding: 15px 0 0;
	font-size: 14px;
	color: #fff;
	border-top: 1px solid #fff3;
	text-transform: uppercase;
	margin-top: 40px;
}
.copyright a{
	color: #fff;
}
#back2Top {
	width: 40px;
	height: 40px;
	line-height: 24px;
	z-index: 999;
	padding-top: 5px;
	cursor: pointer;
	position: fixed;
	bottom: 32px;
	right: -25%;
	color: #fff;
	background:#0e1623;
	text-align: center;
	opacity: 0;
	transition: ease 0.5s all 0s;
}
#back2Top.show {
	opacity: 1;
	right: 1%;
}
.page{
	margin-top:0 !important;
}
.site-content, .site-main .widecolumn {
	margin-left: 0px !important;
}
.page .entry-header, .blog_page_header {
	background: url(../images/inner-banner.jpg) no-repeat;
	background-size: cover !important;
	background-position:center top !important;
	max-width: 100% !important;
	padding: 175px 0 !important;
	margin: 100px 0 50px !important;
	position: relative;
	overflow: hidden;
	text-align: left;
}
.page .entry-header:before, .blog_page_header:before {
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	content: "";
	top:0;
	bottom: 0;
	left: 0;
	right: 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: #000;
	width: 100%;
	font-size:27px;
	font-weight: bold;
	text-transform: uppercase;
	position: relative;
	z-index: 99;
	margin-bottom: 0 !important;
	max-width: 574px;
}
.abt-title {
	font-size: 24px;
	font-weight: bold;
	color: #000;
	margin-bottom: 10px;
	line-height: 1.2;  
}
.abt-title strong{
	font-weight: bold;
	color:#548826;
}
.abt-title.dup{
	font-size: 20px;
	font-weight: 600;
	color: #6b2bad;
	margin-top: 16px;
}
.ab-inner-text {
	color: #000;
	font-size: 15px;
}
.ab-inner-text p{
	margin-bottom:15px;
}
.ab-inner ul {
	padding: 0px;
	margin: 15px 0 0;
}
.ab-inner ul li {
	background: url(../images/checked.png) no-repeat;
	background-position: top 2px left;
	list-style: none;
	padding-left: 29px;
	font-size: 15px;
	margin-bottom: 5px;
	color: #000;
	background-size: 22px;
	line-height: 23px;
}
.ab-inner.two ul{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top:25px;
}
.inner-sec {
	background:#7fda5717;
	margin-top: 40px;
	padding: 50px 0;
}
.bottom-sec{
	padding: 40px 15px;
	margin-top: 40px;
	background:#058647;
	border-radius: 7px;
}
.bottom-sec .abt-title{
	color:#fff;
}
.bottom-sec .ab-inner-text{
	color:#fff;
}
.inr-box1-top{
	margin-top:25px;
}
.inr-box1{
	background: #fff;
	box-shadow: 0 0 5px #969696;
	min-height: 100%;
	padding: 25px 17px;
	border-radius: 10px;
}
.inr-box1 p{
	margin-bottom:0;
}
.inr-box1 img{
	background:#6b2bad;
	border-radius: 50%;
	width: 86px;
	border: 5px solid #fffefe;
	box-shadow: 0 0 3px #777;
	padding: 5px;
}
.inr-box1-title{
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin-top: 18px;
	line-height: 1.2;
}
.inr-box1-text {
	font-size: 15px;
	margin-top: 10px;
	color: #000;
}
.faq-sec{
	margin-top:30px;
}
.faq-part{
	margin-top:25px;
}
.sp-ea-single{
	margin-bottom: 10px !important;
	background: #ededed !important;
}
.ea-expand.sp-ea-single{
	background:#6b2bad !important;
}
.ea-header a{
	font-size: 16px !important;
	line-height: 17px !important;
	font-weight: 600 !important;
	color: #000 !important;
	padding: 14px 12px !important;
}
.ea-expand.sp-ea-single .ea-header a{
	color: #fff !important;
}
.ea-body{
	font-size: 14px !important;
	color: #000 !important;
	padding: 14px 12px !important;
}
.ea-body p{
	margin-bottom:0 !important;
}
.ea-expand-icon{
	float: right !important;
	color: #000 !important;
	font-size: 14px !important;
}
.ea-expand.sp-ea-single .ea-expand-icon{
	color: #fff !important;
}
.contact-left {
	height: 100%;
	padding: 35px 25px 25px;
}
.info-text {
	color: #000;
	text-transform: uppercase;
	font-size: 22px;
	padding-bottom: 10px;
	font-weight: bold;
}
.contact_top_number {
	font-size: 16px;
	position: relative;
	padding-left: 35px;
	margin-top: 15px;
	color: #000;
	line-height: 1.3;
	font-weight: 500;
}
.contact_top_number img {
	position: absolute;
	top: 1px;
	left: 0;
}
.contact_top_number a {
	color: #000;
}
.contact-right {
	background:#6b2bad;
	padding: 35px 25px 0;
}
.info-text.second{
	color:#fff;
}
.frm_fld input {
	width: 100%;
	padding: 10px 12px;
	border: none !important;
	margin-top: 10px;
	border-radius: 5px;
	color: #000;
	background: #fff;
}
.frm_fld select {
	background:url(../images/dropdown.png) center right 10px no-repeat #fff;
	width:100%;
	border:none !important;
	margin-top:10px;
	border-radius:5px;
	font-size:15px;
	color:#000;
	padding:12px 30px 10px 12px;
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	text-transform:none
}
.frm_fld select option{
	color:#000;
}
.frm_fld textarea {
	width:100%;
	height:98px;
	padding:10px 12px;
	background:#fff !important;
	color:#000;
	margin-top:10px;
	border-radius:5px;
	border:none !important;
	resize:none;
}
.send_btn input {
	border: none !important;
	display: block;
	border-radius: 50px !important;
	color: #fff !important;
	padding: 11px 30px !important;
	background: #0b9351 !important;
	font-size: 15px !important;
	font-weight: 600 !important;
	margin-top: 21px;
}
.frm_fld p, .send_btn p {
	margin-bottom:0
}
.footer_fixed_buttons {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 99;
}
.footer_btn1 {
	background:#548826;
	color: #fff !important;
	width: 50%;
	float: left;
	padding: 10px 0;
	font-weight:600;
}
.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;
	font-weight:600;
}
.back-btn a {
	background: #6b2bad;
	color: #fff;
	font-size: 15px;
	font-weight: bold;
	border-radius: 50px;
	padding: 11px 22px;
	text-transform: uppercase;
	display: inline-block;
	margin-top: 20px;
}
.error_container {
	align-items: center;
	padding: 10px 0 50px;
	text-align: center;
}



/*Responsive*/
@media only screen and (min-width : 320px) and (max-width :567px) {
	.banner img{
		height:300px;
		object-fit:cover;
	}
	.ndis img{
		height:auto !important;
	}
}

@media only screen and (min-width : 320px) and (max-width : 1023px) {
	.header{
		background: #fff;
	}
	.fixed-header{
		animation: none;
	}
	.call-btn, .menu{
		display:none;
	}
	.logo img, .fixed-header .logo img{
		width: 95px;
	}	
	.rmp-submenu .menu-item a {
		height: auto !important;
		overflow: visible !important;
		line-height: inherit !important;
		margin-bottom: 5px;
		padding: 6px 25px !important;
	}
	.banner {
		margin-top: 89px;
	}
	.banner::before {
		background: #ffffff40;
	}
	.banner-content {
		top: 50%;
	}
	.banner-part {
		max-width: 100%;
	}
	.banner-title {
		font-size: 26px;
		line-height: 28px;
	}
	.banner-btn{
		display:none;
	}
	.ndis {
		margin-top: 10px;
	}
	.ndis img{
		width: 145px;
	}
	.about-sec {
		padding: 35px 0;
	}	
	.about-part {
		gap: 25px;
		border-right: none;
		flex-direction: column;
	}
	.about-part img {
		min-width: 100%;
		width: 100%;
	}
	.small-title{
		font-size: 14px;
	}
	.about-title {
		font-size: 24px;
		line-height: 24px;
	}
	.learn-btn{
		font-size: 14px;
	}
	.box1-top{
		margin-top:25px;
	}
	.box1 img{
		width:60px;
	}
	.box1{
		gap: 10px;
	}
	.service-sec {
		padding: 5px 0 35px;
	}
	.serv-title {
		min-height: auto;
	}
	.choose-right{
		margin-top:10px;
	}	
	.choose-right ul li {
		width: 49%;
		padding: 0;
		margin-top: 18px;
		font-size: 15px;
	}
	.choose-right ul li::before{
		display:none;
	}
	.testimonial-sec {
		padding: 35px 0;
	}
	.testi-right{
		margin-top:20px;
	}
	.lets-talk-sec {
		padding: 35px 0px 0;
	}
	.talk-bg{
		position: relative;
		margin-top: 15px;
	}
	.talk-bg img{
		width:100%;
	}
	.talk-left {
		gap: 12px;
		align-items: start;
	}
	.talk-left strong{
		font-size: 17px;
	}
	.talk-left strong br{
		display:none;
	}
	.talk-left img{
		width:58px;
	}
	.talk-right {
		padding-left: 20px;
		padding-right: 5px;
		margin-top: 26px;
	}
	.talk-right span {
		margin-top: 10px;
	}
	.footer {
		padding: 36px 0 60px;
	}
	.foot_logo img {
		width: 100px;
	}
	.foot_title {
		font-size: 17px;
		margin-bottom: 10px;
		margin-top: 15px;
	}
	.foot_text{
		margin-top:15px;
	}
	.copyright {
		margin-top: 25px;
	}
	.page .entry-header, .blog_page_header {
		padding: 70px 0 !important;
		margin: 89px 0 30px !important;
	}
	.page .entry-title, .blog_page_title{
		font-size: 22px;
	}
	.abt-title {
		font-size: 20px;
	}
	.abt-title.dup {
		font-size: 18px;
	}
	.inner-sec {
		margin-top: 35px;
		padding: 35px 0;
	}
	.inr-box1 img {
		width: 76px;
		border: 3px solid #fffefe;
		padding: 7px;
	}
	.inr-box1-title {
		font-size: 18px;
	}
	.ab-iner-img{
		margin-top:15px;
	}
	.ab-iner-img img{
		width:100%;
	}
	.bottom-sec {
		padding: 32px 10px;
		margin-top: 35px;
	}
	.contact-left {
		padding: 20px 20px 25px;
	}
	.info-text {
		font-size: 18px;
	}
	.contact-right {
		padding: 20px 15px 0;
	}
	.copyright {
		text-align: center;
	}
}

@media only screen and (min-width : 481px) and (max-width : 767px) {
	.banner img{
		height:350px !important;
		object-fit:cover !important;
	}
	.ndis img, .banner-btn a img{
		height:auto !important;
	}
	.banner-part {
		max-width: 100% !important;
	}
	.banner-title {
		font-size: 29px !important;
		line-height: 30px !important;
	}
	.about-part {
		flex-direction: column !important;
	}
	.choose-right ul li {
		width: 49% !important;
	}
	.talk-left strong {
		font-size: 22px !important;
	}
	.talk-right {
		margin-top: 25px !important;
	}
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.call-btn{
		display: inline-block;
		position: fixed;
		top: 24px;
		right: 80px;
		padding: 11px 24px;
	}
	.banner-part {
		max-width: 375px;
	}
	.banner-title {
		font-size: 32px;
		line-height: 32px;
	}
	.banner-btn {
		display: block;
	}
	.ndis {
		margin-top: 16px;
	}
	.about-part {
		flex-direction: row;
	}
	.about-part img {
		min-width: 340px;
	}
	.box1 {
		gap: 15px;
		width: 49%;
		display: inline-flex;
	}
	.choose-right ul li {
		width: 30%;
		padding: 0 16px;
		margin-top: 25px;
	}
	.talk-right{
		margin-top: 0;
	}
	.talk-bg{
		margin-top: 25px;
	}
	.foot_text, .flag{
		text-align: center;
	}	
}

@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.call-btn {
		font-size: 14px;
		padding: 14px 24px 11px;
		margin-left: 10px;
	}
	.menu ul li {
		margin-right: 15px;
	}
	.menu ul li a{
		padding: 36px 0;
	}
	.banner-title {
		font-size: 38px;
		line-height: 40px;
	}
	.about-title {
		font-size: 24px;
		line-height: 26px;
	}
	.box1 {
		gap: 10px;
		font-size: 12px;
	}
	.box1 strong{
		font-size: 15px;
	}
	.box1 img{
		width:50px;
	}
	.choose-left .about-title {
		font-size: 23px;
	}
	.choose-right ul li {
		width: 19%;
		padding: 0 3px;
		font-size: 13px;
	}
	.talk-left img{
		width:65px;
	}
	.talk-left strong {
		font-size: 17px;
	}
	.talk-left strong br{
		display:none;
	}
	.talk-bg {
		width: 280px;
		height: 100%;
	}
	.talk-bg img{
		min-height:100%;
		object-fit: cover;
	}
	.talk-right {
		padding-left: 21px;
		padding-right: 8px;
	}
}

/* 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) {
	.call-btn{
		display: inline-block;
		position: fixed;
		top: 24px;
		right: 80px;
		padding: 11px 24px;
	}
	.banner-part {
		max-width: 375px;
	}
	.banner-title {
		font-size: 32px;
		line-height: 32px;
	}
	.banner-btn {
		display: block;
	}
	.ndis {
		margin-top: 16px;
	}
	.about-part {
		flex-direction: row;
	}
	.about-part img {
		min-width: 340px;
	}
	.box1 {
		gap: 15px;
		width: 49%;
		display: inline-flex;
	}
	.choose-right ul li {
		width: 30%;
		padding: 0 16px;
		margin-top: 25px;
		font-size: 15px;
	}
	.talk-right{
		margin-top: 0;
	}
	.talk-bg{
		margin-top: 25px;
		width: 100%;
		height: auto;
	}
	.foot_text, .flag{
		text-align: center;
	}
}

@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) {
	.call-btn {
		font-size: 14px;
		padding: 14px 24px 11px;
		margin-left: 10px;
	}
	.menu ul li {
		margin-right: 15px;
	}
	.menu ul li a{
		padding: 36px 0;
	}
	.banner-title {
		font-size: 38px;
		line-height: 40px;
	}
	.about-title {
		font-size: 24px;
		line-height: 26px;
	}
	.box1 {
		width: 100%;
		display: flex;
		gap: 10px;
		font-size: 12px;
	}
	.box1 strong{
		font-size: 15px;
	}
	.box1 img{
		width:50px;
	}
	.choose-left .about-title {
		font-size: 23px;
	}
	.choose-right ul li {
		width: 19%;
		padding: 0 3px;
		font-size: 13px;
	}
	.talk-left img{
		width:65px;
	}
	.talk-left strong {
		font-size: 17px;
	}
	.talk-left strong br{
		display:none;
	}
	.talk-bg {
		width: 280px;
		height: 100%;
	}
	.talk-bg img{
		min-height:100%;
		object-fit: cover;
	}
	.talk-right {
		padding-left: 21px;
		padding-right: 8px;
	}
	.foot_text, .flag {
		text-align: left;
	}
}

/* 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) {
	.call-btn {
		position: relative;
		top: 0;
		right: 0;
		font-size: 14px;
		padding: 14px 24px 11px;
		margin-left: 10px;
	}
	.menu ul li {
		margin-right: 15px;
	}
	.menu ul li a{
		padding: 36px 0;
	}
	.banner-title {
		font-size: 38px;
		line-height: 40px;
	}
	.about-title {
		font-size: 24px;
		line-height: 26px;
	}
	.box1 {
		width: 100%;
		display: flex;
		gap: 10px;
		font-size: 12px;
	}
	.box1 strong{
		font-size: 15px;
	}
	.box1 img{
		width:50px;
	}
	.choose-left .about-title {
		font-size: 23px;
	}
	.choose-right ul li {
		width: 19%;
		padding: 0 3px;
		font-size: 13px;
	}
	.talk-left img{
		width:65px;
	}
	.talk-left strong {
		font-size: 17px;
	}
	.talk-left strong br{
		display:none;
	}
	.talk-bg {
		width: 280px;
		height: 100%;
	}
	.talk-bg img{
		min-height:100%;
		object-fit: cover;
	}
	.talk-right {
		padding-left: 21px;
		padding-right: 8px;
	}
	.foot_text, .flag {
		text-align: left;
	}
}

@media screen and (min-width: 1424px) {
	.page .entry-header, .blog_page_header{
		padding: 184px 0 !important;
	}
}

@media screen and (min-width: 1624px) {
	.slider-part{
		padding:0 8%;
	}
	.page .entry-header, .blog_page_header{
		padding: 215px 0 !important;
	}
}

@media screen and (min-width: 1920px) {
	.slider-part{
		padding:0 14%;
	}
	.page .entry-header, .blog_page_header{
		padding: 258px 0 !important;
	}
}

@media screen and (min-width: 2048px) {
	.slider-part{
		padding:0 17%;
	}
	.page .entry-header, .blog_page_header{
		padding: 278px 0 !important;
	}
}

@media screen and (min-width: 2550px) {
	.slider-part{
		padding:0 24%;
	}
	.page .entry-header, .blog_page_header{
		padding: 350px 0 !important;
	}
}    
