@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  */
* {
	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: 16px;
	line-height: 30px;
	text-transform: uppercase;
	color: #146b39;
	font-weight: 700;
	border-radius: 26px;
	background-color: #d0e1d7;
	width: fit-content;
	padding: 10px 30px;
	margin-bottom: 20px;
}

.common-heading {
	font-size: 38px;
	line-height: 46px;
	color: #212121;
	font-weight: 700;
}

.common-btn {
	display: inline-block;
	position: relative;
	padding: 13px 25px;
	border-radius: 29px;
	background-image: linear-gradient(89deg, #f73f27 0%, #fdaf21 100%);
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 700;
	text-decoration: none;
	overflow: hidden;
	z-index: 1;
	transition: background-color 0.3s ease;
	text-decoration: none !important;
}

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

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

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

.common-btn-2 {
	background-image: linear-gradient(89deg, #0f6939 0%, #c7d935 100%)
}

.common-btn-2::before {
	background-color: #0f693980;
}

.common-btn-container {
	display: flex;
	justify-content: end;
	align-items: end;
	height: 100%;
}

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

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

	to {
		transform: translateY(0);
	}
}

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

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

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

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

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

.main-header ul li a {
	font-size: 16px;
	color: #2a2a2a;
	font-weight: 400;
	transition: all 0.5s ease;
}

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

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

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

.ms-slide::before {
	content: '';
	width: 100%;
	height: 50%;
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(37, 64, 121, 1) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.ms-slide-info {
	position: absolute !important;
	top: 42%;
	left: 50%;
	transform: translate(-50%, -50%) !important;
	width: 850px !important;
	max-width: 100%;
	z-index: 2;
}

.ms-skin-light-6 .ms-nav-next {
	background: url("../images/b-next-icon.png") no-repeat !important;
	border: 0 !important;
	width: 62px !important;
	height: 62px !important;
}

.ms-skin-light-6 .ms-nav-prev {
	background: url("../images/b-prev-icon.png") no-repeat !important;
	border: 0 !important;
	width: 62px !important;
	height: 62px !important;
}

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

.banner-heading {
	font-size: 55px;
	line-height: 3.5rem;
	color: #ffffff;
	font-weight: 700;
	text-align: center;
}

.banner-text {
	font-size: 16px;
	line-height: 25px;
	color: #ffffff;
	font-weight: 400;
	text-align: center;
	padding: 20px 0px 30px;
}

.banner-btn-container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.home_content img{
	border-radius: 20px;
}
.service-sec {
	padding: 90px 0;
}

.service-sec-mt {
	margin-top: 50px;
}

.service-row-gap {
	row-gap: 35px;
}

.service-card {
	border-radius: 10px;
	background-color: #ffffff;
	box-shadow: #00000021 0px 12px 50px 4px;
	padding: 10px 10px 40px;
	position: relative;
	min-height: 100%;
}

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

.service-icon-main-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: -45px;
}

.service-icon-container {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 81px;
	height: 81px;
	border-radius: 41px;
}

.card-icon-bg:nth-child(3n+1) .service-icon-container {
	background-image: linear-gradient(89deg, #f73f27 0%, #fdaf21 100%);
}

.card-icon-bg:nth-child(3n+2) .service-icon-container {
	background-image: linear-gradient(89deg, #0f6939 0%, #c7d935 100%);
}

.card-icon-bg:nth-child(3n) .service-icon-container {
	background-image: linear-gradient(89deg, #0f6db5 0%, #23bbed 100%);
}

.service-card-heading {
	font-size: 24px;
	line-height: 46px;
	color: #212121;
	font-weight: 700;
	text-align: center;
	margin-top: 10px;
}

.service-card-text {
	font-size: 14px;
	line-height: 24px;
	color: #212121;
	font-weight: 400;
	text-align: center;
}

.service-card-btn {
	font-size: 16px;
	letter-spacing: 1px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: 700;
	text-align: center;
	display: inline-block;
	margin-top: 17px;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-decoration: none;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.5s ease;
}

.card-icon-bg:nth-child(3n+1) .service-card-btn {
	background-image: linear-gradient(89deg, #f73f27 0%, #fdaf21 100%);
}

.card-icon-bg:nth-child(3n+2) .service-card-btn {
	background-image: linear-gradient(89deg, #0f6939 0%, #c7d935 100%);
}

.card-icon-bg:nth-child(3n) .service-card-btn {
	background-image: linear-gradient(89deg, #0f6db5 0%, #23bbed 100%);
}

.service-card-btn::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 1px;
	transition: all 0.5s ease;
	background-image: inherit;
}

.service-card-btn:hover::after {
	bottom: 2px;
}

.about-sec {
	background-color: #dff1ff;
	position: relative;
	padding: 115px 0;
}

.about-sec::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	background: url("../images/about-bg.png") no-repeat;
	width: 729px;
	height: 710px;
}

.about-left-container {
	position: relative;
}

.about-card {
	border-radius: 20px;
	background-color: #ffffff;
	position: absolute;
	bottom: 50px;
	left: -70px;
	padding: 16px 26px 10px;
	animation: slideLeftRight 2s ease-in-out infinite alternate forwards;
}

@keyframes slideLeftRight {
	0% {
		transform: translateX(-20px);
	}

	100% {
		transform: translateX(20px);
	}
}

.about-card-text {
	font-size: 14px;
	line-height: 20px;
	color: #082060;
	font-weight: 700;
}

.about-card-text strong {
	font-size: 16px;
	font-weight: 800;
}

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

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

.about-right-container {
	padding-left: 20px;
	position: relative;
}

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

.why-choose-us-sec {
	padding: 111px 0 75px;
}

.why-choose-us-sec .common-sub-heading {
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

.choose-us-card {
	display: flex;
	align-items: center;
	gap: 12px;
}

.choose-us-card-img-container {
	width: 86px;
	min-width: 86px;
	height: 86px;
	border-radius: 43px;
	background-image: linear-gradient(89deg, #f73f27 0%, #fdaf21 100%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.choose-us-card-heading {
	font-size: 20px;
	line-height: 46px;
	color: #212121;
	font-weight: 700;
}

.choose-us-card-text {
	font-size: 14px;
	line-height: 22px;
	color: #212121;
	font-weight: 400;
}

.bg-green {
	background-image: linear-gradient(89deg, #0f6939 0%, #c7d935 100%);
}

.bg-blue {
	background-image: linear-gradient(89deg, #0f6db5 0%, #23bbed 100%);
}

.contact_testimonial-sec {
	position: relative;
	border-top: 1px solid #106eb8;
	padding: 60px 0;
}

.contact_testimonial-sec::before {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	background: #2d773c;
	width: 50%;
	height: 100%;
}

.home-form {
	margin: 35px 45px 0px 0;
}

.home-form p {
	margin-bottom: 16px;
}

.testimonial-container {
	position: relative;
	z-index: 1;
	padding-left: 70px;
}

.testimonial-sec-gap {
	margin-top: 35px;
}

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

.sp-testimonial-free-section .sp-testimonial-client-testimonial,
.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
	font-size: 17px !important;
	line-height: 38px !important;
	color: #ffffff !important;
	text-align: left !important;
	margin: 0 !important;
	padding: 0 !important;
}

.sp-testimonial-free-section .sp-testimonial-client-name {
	line-height: 38px !important;
	color: #ffffff !important;
	margin-top: 44px !important;
	text-align: end !important;
}

.sp-testimonial-free-wrapper {
	overflow: visible !important;
}

.sp-testimonial-free-section .testimonial-pagination {
	margin-bottom: -40px !important;
	margin-left: -40px !important;
}

#sp-testimonial-free-wrapper-38 .sp-testimonial-free-section .testimonial-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #ffffff !important;
}

#sp-testimonial-free-wrapper-38 .sp-testimonial-free-section .testimonial-pagination span.swiper-pagination-bullet {
	background: #ffffffa6 !important;
}

/* footer */
.footer {
	position: relative;
	background: #042e5b;
	padding: 70px 0 0;
}

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

.media-img-container {
	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: 25px;
}

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

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

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

.footer ul li a:hover {
	color: #f73f27;
	padding-left: 5px;
}

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

.f-menu-container {
	margin-left: -30px;
}

.f-contact-container {
	margin-left: -30px;
}

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

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

/* scroll to top  */
.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	cursor: pointer;
	z-index: 1000;
	width: 68px;
	height: 68px;
	border-radius: 34px;
	background-image: linear-gradient(89deg, #ef4323 0%, #fbb945 100%);
	align-items: center;
	justify-content: center;
}

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

@keyframes bounce2 {

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

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

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

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

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

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

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

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

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

.contact-form-sec input[type="submit"] {
	display: inline-block;
	position: relative;
	padding: 15px 35px;
	border-radius: 29px;
	background-image: linear-gradient(89deg, #0f6939 0%, #c7d935 100%);
	width: fit-content;
	font-size: 16px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 700;
}

.contact-form-sec input[type="submit"]:hover {
	background-image: linear-gradient(89deg, #c7d935 0%, #0f6939 100%);
}

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

.inner_title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 0;
	width: 30px;
	height: 3px;
	background: #f73f27;
}
.inner_mid_title {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
	text-align: center;
}

.inner_mid_title strong {
	color: #f73f27;
}

.inner_mid_title::after {
	position: absolute;
	content: "";
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 7%;
	height: 3px;
	background: #f73f27;
}

.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-icon-2.png");
	background-position: top 4px left;
	padding-left: 28px;
	background-repeat: no-repeat;
	background-size: 18px;
	font-size: 16px;
	color: #2b2b2b;
	font-weight: normal;
	list-style: none;
	padding-bottom: 6px;
}

.inner_bottm_sec {
	background-image: linear-gradient(89deg, #0f6939 0%, #c7d935 100%);
	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: #fff;
}

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

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

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

.contact_page_heading strong {
	color: #f73f27;
}

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

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

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

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

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

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

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

.back_btn {
	margin: 15px 0 60px;
}

/* blog page css  */
.more-link {
	display: block;
	background-image: linear-gradient(89deg, #f73f27 0%, #fdaf21 100%);
	width: fit-content;
	margin: 15px 0;
	padding: 15px 25px;
	border-radius: 15px;
	color: #fff;
	text-transform: capitalize;
	transition: all 0.5s ease;
	text-decoration: none !important;
}
.more-link:hover{
	background-image: linear-gradient(89deg, #fdaf21 0%, #f73f27 100%);
	color: #fff !important;
}

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


/* mediaquery start here */

/* mobile screen  iphone SE */
@media only screen and (min-width : 321px) and (max-width : 480px) {
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.logo-container img {
		width: 180px;
	}
	.animate{
		animation: none;
	}
	.banner-sec {
		margin-top: 70px;
	}
	.banner-sec .container {
		width: auto;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 32px;
	}
	.banner-text {
		padding: 20px 10px 30px;
	}
	.ms-skin-light-6 .ms-nav-next {
		top: auto !important;
		bottom: 30px !important;
		left: 100px !important;
	}
	.ms-skin-light-6 .ms-nav-prev {
		top: auto !important;
		bottom: 30px !important;
	}
	.service-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 28px;
		line-height: 38px;
	}
	.service-sec-mt {
		margin-top: 25px;
	}
	.about-sec {
		padding: 50px 0;
	}
	.about-card {
		left: 0;
		animation: none;
	}
	.about-right-container {
		padding-left: 0;
	}
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.choose-us-card-heading {
		line-height: 30px;
		padding-bottom: 5px;
	}
	.home-form {
		margin: 35px 0px 0px 0;
	}
	.contact_testimonial-sec::before {
		right: 0;
		top: auto;
		bottom: 0;
		width: 100%;
		height: 55%;
	}
	.testimonial-container {
		padding-top: 50px;
		padding-left: 0;
	}
	.f-menu-container {
		margin-left: 0;
	}
	.f-contact-container {
		margin-left: 0;
	}
	.f-service-container {
		padding-left: 0;
	}
	.lower-footer {
		padding: 18px 0 60px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 70px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 28px;
	}
}

/* mobile screen rotate */
@media only screen and (min-width : 481px) and (max-width : 767px) {
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.logo-container img {
		width: 180px;
	}
	.animate{
		animation: none;
	}
	.banner-sec {
		margin-top: 70px;
	}
	.banner-sec .container {
		width: auto;
	}
	.banner-heading {
		font-size: 28px;
		line-height: 32px;
	}
	.banner-text {
		padding: 20px 10px 30px;
	}
	.ms-skin-light-6 .ms-nav-next {
		top: auto !important;
		bottom: 30px !important;
		left: 100px !important;
	}
	.ms-skin-light-6 .ms-nav-prev {
		top: auto !important;
		bottom: 30px !important;
	}
	.service-sec {
		padding: 50px 0;
	}
	.service-sec-mt .col-sm-12 {
    flex: 0 0 auto;
    width: 50%;
}
	.common-heading {
		font-size: 28px;
		line-height: 38px;
	}
	.service-sec-mt {
		margin-top: 25px;
	}
	.about-sec {
		padding: 50px 0;
	}
	.about-card {
		left: 0;
	}
	.about-right-container {
		padding-left: 0;
	}
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.choose-us-card-heading {
		line-height: 30px;
		padding-bottom: 5px;
	}
	.home-form {
		margin: 35px 0px 0px 0;
	}
	.contact_testimonial-sec::before {
		right: 0;
		top: auto;
		bottom: 0;
		width: 100%;
		height: 50%;
	}
	.testimonial-container {
		padding-top: 50px;
		padding-left: 0;
	}
	.f-menu-container {
		margin-left: 0;
	}
	.f-contact-container {
		margin-left: 0;
	}
	.f-service-container {
		padding-left: 0;
	}
	.lower-footer {
		padding: 18px 0 60px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 70px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 28px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
}

/* 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) {
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.logo-container img {
		width: 180px;
	}
	.animate{
		animation: none;
	}
	.banner-sec {
		margin-top: 70px;
	}
	.banner-sec .container {
		width: auto;
	}
	.banner-heading {
		font-size: 28px;
		line-height: 32px;
	}
	.banner-text {
		padding: 20px 10px 30px;
	}
	.ms-slide-info {
		max-width: 80%;
	}

	.service-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 28px;
		line-height: 38px;
	}
	.service-sec-mt {
		margin-top: 25px;
	}
	.about-sec {
		padding: 50px 0;
	}
	.about-card {
		left: 0;
	}
	.about-right-container {
		padding-left: 0;
	}
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.choose-us-card-heading {
		font-size: 16px;
		line-height: 22px;
		padding-bottom: 5px;
	}
	.choose-us-card-img-container {
		width: 47px;
		min-width: 47px;
		height: 47px;
	}
	.choose-us-card-img-container img{
		width: 25px;
	}
	.choose-us-card-text {
    font-size: 13px;
}
	.home-form {
		margin: 35px 0px 0px 0;
	}

	.testimonial-container {
		padding-left: 25px;
	}
	.sp-testimonial-free-section .sp-testimonial-client-testimonial, .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
    line-height: 27px !important;
}
	.f-menu-container {
		margin-left: 0;
	}
	.f-contact-container {
		margin-left: 0;
	}
	.f-service-container {
		padding-left: 0;
	}
	.lower-footer {
		padding: 18px 0 60px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 70px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 28px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
}

/* 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-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.logo-container img {
		width: 180px;
	}
	.animate{
		animation: none;
	}
	.banner-sec {
		margin-top: 70px;
	}
	.banner-sec .container {
		width: auto;
	}
	.banner-heading {
		font-size: 28px;
		line-height: 32px;
	}
	.banner-text {
		padding: 20px 10px 30px;
	}
	.ms-slide-info {
		max-width: 80%;
	}

	.service-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 28px;
		line-height: 38px;
	}
	.service-sec-mt {
		margin-top: 25px;
	}
	.about-sec {
		padding: 50px 0;
	}
	.about-card {
		left: 0;
	}
	.about-right-container {
		padding-left: 0;
	}
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.choose-us-card-heading {
		font-size: 16px;
		line-height: 22px;
		padding-bottom: 5px;
	}
	.choose-us-card-img-container {
		width: 47px;
		min-width: 47px;
		height: 47px;
	}
	.choose-us-card-img-container img{
		width: 25px;
	}
	.choose-us-card-text {
    font-size: 13px;
}
	.home-form {
		margin: 35px 0px 0px 0;
	}

	.testimonial-container {
		padding-left: 25px;
	}
	.sp-testimonial-free-section .sp-testimonial-client-testimonial, .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
    line-height: 27px !important;
}
	.f-menu-container {
		margin-left: 0;
	}
	.f-contact-container {
		margin-left: 0;
	}
	.f-service-container {
		padding-left: 0;
	}
	.lower-footer {
		padding: 18px 0 60px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 90px 0 90px !important;
		margin: 70px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 28px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
}

/* ipad screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.logo-container img {
		width: 180px;
	}
	.animate{
		animation: none;
	}
	.banner-sec {
		margin-top: 70px;
	}
	.banner-sec .container {
		width: auto;
	}
	.banner-heading {
		font-size: 28px;
		line-height: 32px;
	}
	.banner-text {
		padding: 20px 10px 30px;
	}
	.ms-slide-info {
		max-width: 80%;
	}

	.service-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 28px;
		line-height: 38px;
	}
	.service-sec-mt {
		margin-top: 25px;
	}
	.about-sec {
		padding: 50px 0;
	}
	.about-card {
		left: 0;
	}
	.about-right-container {
		padding-left: 0;
	}
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.choose-us-card-heading {
		font-size: 16px;
		line-height: 22px;
		padding-bottom: 5px;
	}
	.choose-us-card-img-container {
		width: 47px;
		min-width: 47px;
		height: 47px;
	}
	.choose-us-card-img-container img{
		width: 25px;
	}
	.choose-us-card-text {
    font-size: 13px;
}
	.home-form {
		margin: 35px 0px 0px 0;
	}

	.testimonial-container {
		padding-left: 25px;
	}
	.sp-testimonial-free-section .sp-testimonial-client-testimonial, .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
    line-height: 27px !important;
}
	.f-menu-container {
		margin-left: 0;
	}
	.f-contact-container {
		margin-left: 0;
	}
	.f-service-container {
		padding-left: 0;
	}
	.lower-footer {
		padding: 18px 0 60px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		margin: 70px 0 50px !important;
	}
	.page .entry-title, .blog_page_title {
		font-size: 28px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;
	}
	.logo-container img {
		width: 180px;
	}
	.animate{
		animation: none;
	}
	.banner-sec {
		margin-top: 70px;
	}
	.banner-sec .container {
		width: auto;
	}
	.banner-heading {
		font-size: 28px;
		line-height: 32px;
	}
	.banner-text {
		padding: 20px 10px 30px;
	}
	.ms-slide-info {
		max-width: 80%;
	}

	.service-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 28px;
		line-height: 38px;
	}
	.service-sec-mt {
		margin-top: 25px;
	}
	.about-sec {
		padding: 50px 0;
	}
	.about-card {
		left: 0;
	}
	.about-right-container {
		padding-left: 0;
	}
	.why-choose-us-sec {
		padding: 50px 0;
	}
	.choose-us-card-heading {
		font-size: 16px;
		line-height: 22px;
		padding-bottom: 5px;
	}
	.choose-us-card-img-container {
		width: 47px;
		min-width: 47px;
		height: 47px;
	}
	.choose-us-card-img-container img{
		width: 25px;
	}
	.choose-us-card-text {
    font-size: 13px;
}
	.home-form {
		margin: 35px 0px 0px 0;
	}

	.testimonial-container {
		padding-left: 25px;
	}
	.sp-testimonial-free-section .sp-testimonial-client-testimonial, .sp-testimonial-free-section .sp-testimonial-client-testimonial p {
    line-height: 27px !important;
}
	.f-menu-container {
		margin-left: 0;
	}
	.f-contact-container {
		margin-left: 0;
	}
	.f-service-container {
		padding-left: 0;
	}
	.page .entry-header, .blog_page_header {
		margin: 70px 0 50px !important;
	}
	.service-card-heading {
		font-size: 22px;
	}
}
/* 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) {
	.service-card-heading {
		font-size: 22px;
	}
	.lower-footer {
		padding: 18px 0;
	}
}

@media only screen and (min-width : 1025px) and (max-width : 1199px){
	.main-header ul li {
		margin-right: 20px;
	}
	.main-header ul li a {
		font-size: 14px;
	}
	.header-btn-container .common-btn {
		margin-left: -30px;
	}
	.choose-us-card-heading {
		font-size: 18px;
		line-height: 22px;
		padding-bottom: 5px;
	}
}
@media screen and (min-width: 1424px) {

}

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

}

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

}

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

}

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

}