@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-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: 'Cavolini';
	src: url('../fonts/Cavolini-Bold.eot');
	src: url('../fonts/Cavolini-Bold.eot?#iefix') format('embedded-opentype'),
		url('../fonts/Cavolini-Bold.woff2') format('woff2'),
		url('../fonts/Cavolini-Bold.woff') format('woff'),
		url('../fonts/Cavolini-Bold.ttf') format('truetype'),
		url('../fonts/Cavolini-Bold.svg#Cavolini-Bold') format('svg');
	font-weight: bold;
	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;
}

img {
	max-width: 100%;
	height: auto !important;
}

.pad-0 {
	padding: 0;
}

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

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


.common-heading {
	font-size: 38px;
	line-height: 35px;
	text-transform: uppercase;
	color: #004056;
	font-weight: 700;
	position: relative;
	z-index: 1;
}

.common-text {
	font-size: 16px;
	line-height: 30px;
	color: #212121;
	font-weight: 400;
}

.common-btn {
	display: inline-block !important;
	position: relative;
	padding: 18px 37px;
	border-radius: 10px;
	background-color: #d86ecc;
	font-size: 15px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #212121;
	font-weight: 700;
	text-align: center;
	text-decoration: none !important;
	overflow: hidden;
	z-index: 1;
	transition: background-color 0.3s ease;
}

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

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

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

.common-btn-2 {
	background-color: #b4e5a2;
}

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

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

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

	to {
		transform: translateY(0);
	}
}

.line {
	position: absolute;
	width: 74%;
	height: 1px;
	top: 50%;
	right: 0;
	background: #d1d1d1;
	z-index: 1;
	transition: all 0.5s ease;
}

.line::before {
	content: '';
	position: absolute;
	left: 0;
	top: -3px;
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background-color: #d86ecc;
}

.top-header {
	background-color: #ffffff;
	padding: 25px 0;
	position: relative;
	transition: all 0.5s ease;
}

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

.header-info {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: #0b0b0b;
	font-weight: 500;
	position: relative;
}

.header-info::before {
	content: '';
	background-color: #d1d1d1;
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	right: -25px;
}

.header-info:last-child::before {
	content: none;
}

.header-info a,
.header-info strong {
	font-size: 15px;
	color: #1b1b1b;
	font-weight: 700;
}

.header-info a:hover {
	color: #7ecfa6;
}


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

.header-container {
	position: relative;
}

.logo-container {
	position: relative;
}

.logo-container img {
	transition: all 0.5s ease;
	position: absolute;
	top: -120px;
	left: 0;
	z-index: 2;
}

.main-header-container {
	position: relative;
	padding: 5px 0 10px;
}

.header-manu-container {
	margin-right: 30px;
}

.header-manu-container ul {

}

.main-header ul li {
	margin-right: 60px;
	position: relative;
}

.main-header ul li::before {
	content: '';
	width: 2px;
	height: 15px;
	background-color: #1b1b1b;
	/* border-right: 2px solid #1b1b1b; */
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
}

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

.main-header ul li:last-child::before {
	content: none;
}

.main-header ul ul li::before{
	content: none;
}

.main-header ul li a {
	font-size: 15px;
	color: #1b1b1b;
	font-weight: 700;
	padding: 0;
}

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



.pos-fixed {
	background-color: #ffffff;
	box-shadow: 0 0 5px #e1e1e1;
	top: 0;
	border-bottom: 0;
}

.pos-fixed .line {
	display: none;
}

.pos-fixed .top-header {
	height: 0;
	padding: 0;
}

.pos-fixed .top-header .container {
	display: none;
}

.pos-fixed ul li a {
	color: #2a2a2a;
}

.pos-fixed .logo-container img {
	position: relative;
	top: 0;
	width: 80px;
}

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

.banner-sec::before {
	content: '';
	width: 100%;
	height: 28px;
	background: url("../images/banner-shape-1.png") repeat-x 0 0;
	background-size: cover;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

.banner-sec::after {
	content: '';
	width: 396px;
	height: 100%;
	background: url("../images/banner-shape-2.png") no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}


.banner-img::before {
	content: '';
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.747) 0%, rgba(255, 255, 255, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	width: 70%;
	height: 100%;
	z-index: 1;
}


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

.banner-container {
	width: 442px;
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	display: flex;
	align-items: start;
	flex-direction: column;
	z-index: 10;
}

.banner-sub-heading {
	font-size: 30px;
	color: #004056;
	font-weight: 600;
	margin-bottom: 15px;
}

.banner-heading {
	font-size: 50px;
	line-height: 55px;
	text-transform: uppercase;
	color: #004056;
	font-weight: 700;
	filter: drop-shadow(0px 4px 6.5px #ffffff);
}

.banner-container .common-text {
	padding: 20px 0 30px;
}

/* .about-sec */
.about-sec {
	position: relative;
	padding: 90px 0;
}

.about-sec-right {
	padding-left: 15px;
}

.about-sec-right .common-text {
	padding: 40px 0;
}


/* service-sec */
.service-sec {
	padding: 100px 0 0;
	background: #f0ffeb;
	position: relative;
}

.service-sec::before {
	content: '';
	background: url("../images/service-shape-1.png") no-repeat;
	width: 393px;
	height: 643px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.service-sec::after {
	content: '';
	background: url("../images/service-shape-2.png") no-repeat;
	width: 394px;
	height: 644px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
}
.service-btn-container {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 100px 0 0;
}
.service-btn-container a{
	margin-bottom: -26px;
}

.service-card-container {
	margin-top: 40px;
	display: flex;
	flex-direction: column;
	row-gap: 40px;
	position: relative;
	z-index: 1;
}

.service-card {
	background: linear-gradient(90deg, rgba(180, 229, 162, 1) 0%, rgba(240, 255, 235, 1) 50%);
	border-radius: 133px;
	padding: 15px;
	display: flex;
	align-items: center;
	gap: 50px;
}

.service-card-heading {
	font-size: 22px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #212121;
	font-weight: 700;
}

.service-card-text {
	font-size: 14px;
	line-height: 26px;
	color: #212121;
	font-weight: 400;
	padding: 10px 0 15px;
}

.service-card-text-container {
	max-width: 695px;
	display: flex;
	flex-direction: column;
	align-items: start;
}

.service-card-text-container .common-btn {
	font-size: 12px;
	padding: 16px 30px;
}

.service-card:nth-child(even) {
	background: linear-gradient(90deg, #f0ffeb 50%, #b4e5a2 100%);
	flex-direction: row-reverse;
}

.service-card:nth-child(even) .service-card-text-container {
	align-items: end;
	text-align: right;
}


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

.why-choose-card-text {
	font-size: 20px;
	line-height: 23px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #212121;
	font-weight: 700;
	text-align: center;
}

.why-choose-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.why-choose-card-img {
	position: relative;
}

.why-choose-card-icon {
	position: absolute;
	top: 42%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.5s;
}

.why-choose-card:hover .why-choose-card-icon {
	transform: translate(-50%, -50%) rotateY(360deg);
}

/* contact-sec */
.contact-sec {
	background: url("../images/contact-sec-bg.jpg") no-repeat;
	background-size: cover;
}

.contact-sec-heading {
	font-size: 45px;
	line-height: 50px;
	text-transform: uppercase;
	color: #004056;
	font-weight: 700;
	margin-bottom: 30px;
}

.contact-sec-left {
	position: relative;
}

.contact-sec-left img {
	position: absolute;
	top: -224px;
	left: -95px;
	max-width: 548px;
	z-index: 1;
}

.contact-sec-right {
	padding: 70px 0;
}

.contact-sec-right .common-btn-2 {
	width: fit-content;
	display: flex !important;
	align-items: center;
	gap: 10px;
}

/* testimonial sec  */
.testimonial-sec {
	padding: 100px 0 105px;
	background-color: #ffffff;
	position: relative;
}

.testimonial-sec::before {
	content: '';
	background: url("../images/testimonial-shape-img.png") no-repeat;
	background-size: cover;
	width: 402px;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
}

.testimonial-sec::after {
	content: '';
	background: url("../images/testimonial-shape-2.png") no-repeat;
	background-size: cover;
	width: 555px;
	height: 536px;
	position: absolute;
	right: 0;
	bottom: 0;
}

.testimonial-container {
	margin-top: 65px;
	position: relative;
	z-index: 1;
}

.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 p {
	padding: 0 !important;
	text-align: left !important;
	font-size: 14px !important;
	line-height: 24px !important;
	color: #1f1f1f !important;
	font-weight: 400 !important;
	position: relative !important;
	z-index: 2;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial,
.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
	margin: 0 0 10px 0 !important;
}

#sp-testimonial-free-wrapper-111 .sp-testimonial-free-section .sp-testimonial-client-rating,
#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section .sp-testimonial-client-rating {
	display: flex !important;
	position: absolute;
	top: 35px;
	left: 25px;
}
#sp-testimonial-free-wrapper-111 .sp-testimonial-free-section .sp-testimonial-client-rating{
	left: 35px;
}

#sp-testimonial-free-wrapper-111 .sp-testimonial-free-section .sp-testimonial-client-name,
#sp-testimonial-free-wrapper-33 .sp-testimonial-free-section .sp-testimonial-client-name {
	font-size: 14px !important;
	line-height: 24px !important;
	color: #1f1f1f !important;
	font-weight: 700 !important;
	text-align: end !important;
	position: relative !important;
	z-index: 2;
}

#sp-testimonial-free-wrapper-111 .sp-testimonial-free,
#sp-testimonial-free-wrapper-33 .sp-testimonial-free {
	border-radius: 15px !important;
	padding: 60px 23px 0;
}

#sp-testimonial-free-wrapper-111 .sp-testimonial-free::before,
#sp-testimonial-free-wrapper-33 .sp-testimonial-free::before {
	content: '';
	background: linear-gradient(0deg, #ffffff 15%, #ffffff00 100%);
	width: 100%;
	height: 70%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.sp-testimonial-free-section .sp-testimonial-item:nth-child(odd) .sp-testimonial-free {
	background: linear-gradient(0deg, #ffffff 0%, #ffe3fc 100%) !important;
	border: 1px solid #d86ecc !important;
	min-height: 220px;
}

.sp-testimonial-free-section .sp-testimonial-item:nth-child(even) .sp-testimonial-free {
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(240, 255, 235, 1) 100%) !important;
	border: 1px solid #b4e5a2 !important;
	min-height: 220px;
}

/* footer */
.footer {
	position: relative;
}

.footer-outer {
	background-color: #004056;
	padding: 80px 0 0;
	position: relative;
}

.footer-outer::before {
	content: '';
	background: url("../images/footer-shape.png") repeat-x 0 0;
	width: 100%;
	height: 28px;
	position: absolute;
	top: -25px;
	left: 0;
}

.footer-heading {
	font-size: 18px;
	text-transform: uppercase;
	color: #ffffff;
	font-weight: 700;
	position: relative;
	padding-bottom: 25px;
}

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

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

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

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

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

.f-contact-img {
	width: 28px;
	min-width: 28px;
	height: 28px;
	border-radius: 14px;
	background-color: #b4e5a2;
	display: flex;
	align-items: center;
	justify-content: center;
}

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

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

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



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

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

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


/* scroll to top  */
.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	cursor: pointer;
	z-index: 1000;
	width: 55px;
	height: 55px;
	border-radius: 29px;
	background: #d86ecc;
	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);
	}
}

/* inner page css  */
.inner_title {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
	font-family: 'Cavolini';
}

.inner_title strong {
	color: #d86ecc;
	font-family: 'Cavolini';
}

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

.inner_mid_title:after {
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 10%;
	height: 3px;
}

.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-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: #b4e5a2;
	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: 10px;
	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: #d86ecc;
}

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

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

.contact_page_heading strong {
	color: #d86ecc;
}

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

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

/* banner css here */
.inner_content {
	margin-bottom: 50px;
}

.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: 160px 0 50px !important;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.page .entry-header:before,
.blog_page_header:before {
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.page .entry-content {
	max-width: 100% !important;
	padding: 0px !important;
}

.content-area,
.content-sidebar {
	padding-top: 0px !important;
}

.page .entry-title,
.blog_page_title {
	color: #fff;
	position: relative;
	font-size: 32px;
	font-weight: 600;
	text-transform: none;
	z-index: 99;
	margin-bottom: 3px;
}

.breadcrumb-container {
	width: 100%;
	color: #ea0700;
	position: relative;
	font-size: 15px;
}

.breadcrumb-container a {
	color: #ea0700;
}

.page {
	margin-top: 0 !important;
}

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

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

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

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

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

.contact-form-sec input[type="submit"]:hover {
	background-color: #d86ecc;
}

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

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

/* inner form css here  */
.inner-form-container a {
	text-decoration: none !important;
}

.inner-form-page .inner_txt a {
	text-decoration: none;
}

.inner-form-label {
	font-size: 17px;
	font-weight: 500;
}

.inner-form-label p {
	margin-bottom: 8px;
}

.inner-form-input input {
	width: 100%;
	border: 1px solid #efefef;
	background-color: #efefef;
	border-radius: 10px;
	color: #2b2b2b;
	padding: 10px 20px;
}

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

.inner-form-container {
	margin-top: 30px;
	padding: 40px 30px 0;
	border-radius: 20px;
	box-shadow: 0 0 5px #dfdfdf;
}

.inner-form-heading p {
	margin-bottom: 0;
}

.inner-form-heading {
	color: #131313;
	font-size: 26px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 24px;
}

.inner-form-heading strong {
	color: #d86ecc;
}

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

.inner-form-radio .wpcf7-list-item {
	display: block;
	margin: 0;
}

.inner-form-text {
	font-size: 17px;
	text-align: center;
	font-weight: 600;
}

.inner-form-submit-btn {
	display: flex;
	justify-content: center;
}

.inner-form-submit-btn input[type="submit"] {
	font-size: 16px;
	color: #000000;
	font-weight: 500;
	border-radius: 27px;
	padding: 15px 40px;
	text-align: center;
	transition: all 0.5s ease;
	background: #b4e5a2;
}

.inner-form-submit-btn input[type="submit"]:hover {
	background: #d86ecc;
}

.inner-form-submit-btn .wpcf7-spinner {
	display: none;
}
/* blog page css  */
.more-link {
	display: block;
	background: #b4e5a2;
	width: fit-content;
	margin: 15px 0;
	padding: 15px 25px;
	border-radius: 15px;
	color: #000;
	text-transform: capitalize;
	transition: all 0.5s ease;
	text-decoration: none !important;
}
.more-link:hover{
	background: #d86ecc !important;
	color: #fff !important;
}

.post .entry-title{
	font-size: 30px !important;
	font-weight: 600 !important;
}
.widget_block{
	position: relative;	
}
.widget_block::before{
	content: '';
	width: 100%;
	height: 3px;
	background: #d86ecc;
	position: absolute;
	left: 0;
	top: -15px;
}
#block-8::before{
	content: none;
}
#block-7 {
	margin-bottom: 10px;
}
.service-card-container p{
	display: none;
}


/* mediaquery start here */
@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 (max-width : 320px) {

}

/* mobile screen  iphone SE */
@media only screen and (min-width : 321px) and (max-width : 480px) {
	.top-header{
		display: none;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;	
	}
	.line {
		display: none;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.animate {
		animation: none;
	}
	.banner-sec {
		overflow: hidden;
		margin-top: 100px;
	}
	.banner-sec::after {
		width: 250px;
		height: 90%;
		top: 0;
	}
	.banner-sub-heading {
		font-size: 20px;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 33px;
	}
	.banner-img img {
		height: 400px !important;
		object-fit: cover;
	}
	.banner-container {
		width: 100%;
	}
	.about-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.about-sec-right .common-text {
		padding: 15px 0;
	}
	.service-sec {
		padding: 50px 0 0;
	}
	.service-sec::before {
		width: 340px;
	}
	.service-card {
		flex-direction: column;
		align-items: unset;
		gap: 30px;
		padding: 15px 15px 30px;
		border-radius: 133px 133px 0 0;
	}
	.service-card:nth-child(even) {
		flex-direction: column;
	}
	.service-card:nth-child(even) .service-card-text-container {
		align-items: start;
		text-align: start;
	}
	.service-card-heading {
		font-size: 20px;
	}
	.service-btn-container {
		margin: 50px 0 0;
	}
	.service-page .service-card {
		align-items: center;
	}
	.why-choose-sec {
		padding: 80px 0;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.contact-sec-left img {
		position: relative;
		top: 0;
		left: 0;
		max-width: 100% !important;
	}
	.contact-sec-right {
		padding: 30px 0 15px;
	}
	.contact-sec-heading {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 20px;
	}
	.testimonial-sec {
		padding: 50px 0 80px;
	}
	.testimonial-container {
		margin-top: 25px;
	}
	.f-contact-container {
		padding-left: 15px;
	}
	.f-service-container {
		padding-left: 0px;
	}
	.f-service-container-2 {
		padding-left: 15px;
	}
	.lower-footer {
		padding: 25px 0 60px;
		margin-top: 20px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 85px 0 85px !important;
		margin: 100px 0 50px !important;
	}
	.hentry {
		margin: 0 auto 0px !important;
	}
	.inner-form-container {
		padding: 25px 10px 0;
	}
}

/* mobile screen rotate */
@media only screen and (min-width : 481px) and (max-width : 767px) {
	.top-header{
		display: none;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;	
	}
	.line {
		display: none;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.animate {
		animation: none;
	}
	.banner-sec {
		overflow: hidden;
		margin-top: 100px;
	}
	.banner-sec::after {
		width: 250px;
		height: 90%;
		top: 0;
	}
	.banner-sub-heading {
		font-size: 20px;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 33px;
	}
	.banner-img img {
		height: 400px !important;
		object-fit: cover;
	}

	.about-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.about-sec-right .common-text {
		padding: 15px 0;
	}
	.service-sec {
		padding: 50px 0 0;
	}
	.service-sec::before {
		width: 340px;
	}
	.service-card {
		flex-direction: column;
		align-items: center;
		gap: 30px;
		padding: 15px 15px 30px;
		border-radius: 133px 133px 0 0;
	}
	.service-card:nth-child(even) {
		flex-direction: column;
	}
	.service-card:nth-child(even) .service-card-text-container {
		align-items: start;
		text-align: start;
	}
	.service-card-heading {
		font-size: 20px;
	}
	.service-btn-container {
		margin: 50px 0 0;
	}
	.why-choose-sec {
		padding: 80px 0;
	}
	.why-choose-sec .col-sm-12 {
		flex: 0 0 auto;
		width: 50%;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.contact-sec .col-sm-12 {
		width: 50%;
	}
	.contact-sec-left img {
		position: relative;
		top: 0 !important;
		left: 0;
		max-width: 100% !important;
	}
	.contact-sec-right {
		padding: 30px 0 15px;
	}
	.contact-sec-heading {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 20px;
	}
	.testimonial-sec {
		padding: 50px 0 80px;
	}
	.testimonial-container {
		margin-top: 25px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.f-contact-container {
		padding-left: 15px;
	}
	.f-service-container {
		padding-left: 0px;
	}
	.f-service-container-2 {
		padding-left: 15px;
	}
	.lower-footer {
		padding: 25px 0 60px;
		margin-top: 20px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 85px 0 85px !important;
		margin: 100px 0 50px !important;
	}
	.hentry {
		margin: 0 auto 0px !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-mid{
		display: none;
	}
	.header-right{
		display: none;	
	}
	.line {
		display: none;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.animate {
		animation: none;
	}
	.banner-sec {
		overflow: hidden;
		margin-top: 100px;
	}
	.banner-sec::after {
		width: 250px;
		height: 90%;
		top: 0;
	}
	.banner-sub-heading {
		font-size: 20px;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 33px;
	}
	.banner-img img {
		height: 400px !important;
		object-fit: cover;
	}

	.about-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.about-sec-right .common-text {
		padding: 15px 0;
	}
	.service-sec {
		padding: 50px 0 0;
	}
	.service-sec::before {
		width: 340px;
	}
	.service-card {
		gap: 30px;
	}
	.service-card:nth-child(even) .service-card-text-container {
		align-items: start;
		text-align: start;
	}
	.service-card-heading {
		font-size: 20px;
	}
	.service-btn-container {
		margin: 50px 0 0;
	}
	.service-page .service-card img{
		min-width: 238px;
	}
	
	.service-page .service-card{
		border-radius: 133px 0 0 133px;
	}
	.service-page .service-card:nth-child(even){
		border-radius: 0 133px 133px 0;
	}
	.why-choose-sec {
		padding: 80px 0;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.contact-sec-left img {
		top: -170px;
		max-width: 444px !important;
	}
	.contact-sec-right {
		padding: 30px 0 15px;
	}
	.contact-sec-heading {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 20px;
	}
	.testimonial-sec {
		padding: 50px 0 80px;
	}
	.testimonial-container {
		margin-top: 25px;
	}
	.f-contact-container {
		padding-left: 15px;
	}
	.f-service-container {
		padding-left: 0px;
	}
	.f-service-container-2 {
		padding-left: 15px;
	}
	.lower-footer {
		padding: 25px 0 60px;
		margin-top: 20px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 85px 0 85px !important;
		margin: 100px 0 50px !important;
	}
	.hentry {
		margin: 0 auto 0px !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-mid{
		display: none;
	}
	.header-right{
		display: none;	
	}
	.line {
		display: none;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.animate {
		animation: none;
	}
	.banner-sec {
		overflow: hidden;
		margin-top: 100px;
	}
	.banner-sec::after {
		width: 250px;
		height: 90%;
		top: 0;
	}
	.banner-sub-heading {
		font-size: 20px;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 33px;
	}
	.banner-img img {
		height: 400px !important;
		object-fit: cover;
	}

	.about-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.about-sec-right .common-text {
		padding: 15px 0;
	}
	.service-sec {
		padding: 50px 0 0;
	}
	.service-sec::before {
		width: 340px;
	}
	.service-card {
		gap: 30px;
	}
	.service-card:nth-child(even) .service-card-text-container {
		align-items: start;
		text-align: start;
	}
	.service-card-heading {
		font-size: 20px;
	}
	.service-btn-container {
		margin: 50px 0 0;
	}
	.service-page .service-card img{
		min-width: 238px;
	}
	.service-page .service-card{
		border-radius: 133px 0 0 133px;
	}
	.service-page .service-card:nth-child(even){
		border-radius: 0 133px 133px 0;
	}
	.why-choose-sec {
		padding: 80px 0;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.contact-sec-left img {
		top: -170px;
		max-width: 444px;
	}
	.contact-sec-right {
		padding: 30px 0 15px;
	}
	.contact-sec-heading {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 20px;
	}
	.testimonial-sec {
		padding: 50px 0 80px;
	}
	.testimonial-container {
		margin-top: 25px;
	}
	.f-contact-container {
		padding-left: 15px;
	}
	.f-service-container {
		padding-left: 0px;
	}
	.f-service-container-2 {
		padding-left: 15px;
	}
	.lower-footer {
		padding: 25px 0 60px;
		margin-top: 20px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 85px 0 85px !important;
		margin: 100px 0 50px !important;
	}
	.hentry {
		margin: 0 auto 0px !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) {

}
/* ipad screen  */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
	.top-header{
		display: none;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;	
	}
	.line {
		display: none;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.animate {
		animation: none;
	}
	.banner-sec {
		overflow: hidden;
		margin-top: 100px;
	}
	.banner-sec::after {
		width: 250px;
		height: 90%;
		top: 0;
	}
	.banner-sub-heading {
		font-size: 20px;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 33px;
	}
	.banner-img img {
		height: 400px !important;
		object-fit: cover;
	}

	.about-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.about-sec-right .common-text {
		padding: 15px 0;
	}
	.service-sec {
		padding: 50px 0 0;
	}
	.service-sec::before {
		width: 340px;
	}
	.service-card {
		gap: 30px;
	}
	.service-card:nth-child(even) .service-card-text-container {
		align-items: start;
		text-align: start;
	}
	.service-card-heading {
		font-size: 20px;
	}
	.service-btn-container {
		margin: 50px 0 0;
	}
	.service-page .service-card img{
		min-width: 238px;
	}
	.service-page .service-card{
		border-radius: 133px 0 0 133px;
	}
	.service-page .service-card:nth-child(even){
		border-radius: 0 133px 133px 0;
	}
	.why-choose-sec {
		padding: 80px 0;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.contact-sec-left img {
		top: -170px;
		max-width: 444px !important;
	}
	.contact-sec-right {
		padding: 30px 0 15px;
	}
	.contact-sec-heading {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 20px;
	}
	.testimonial-sec {
		padding: 50px 0 80px;
	}
	.testimonial-container {
		margin-top: 25px;
	}
	.f-contact-container {
		padding-left: 15px;
	}
	.f-service-container {
		padding-left: 0px;
	}
	.f-service-container-2 {
		padding-left: 15px;
	}
	.lower-footer {
		padding: 25px 0 60px;
		margin-top: 20px;
	}
	.scroll-top {
		bottom: 8rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
/* 		padding: 85px 0 85px !important; */
		margin: 100px 0 50px !important;
	}
	.hentry {
		margin: 0 auto 0px !important;
	}
}

/* ipad rotate */
@media only screen and (min-width : 768px) and (max-width : 1024px) and (orientation : landscape) {
	.top-header{
		display: none;
	}
	.header-mid{
		display: none;
	}
	.header-right{
		display: none;	
	}
	.line {
		display: none;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.animate {
		animation: none;
	}
	.banner-sec {
		overflow: hidden;
		margin-top: 100px;
	}
	.banner-sec::after {
		width: 250px;
		height: 90%;
		top: 0;
	}
	.banner-sub-heading {
		font-size: 20px;
	}
	.banner-heading {
		font-size: 30px;
		line-height: 33px;
	}
	.banner-img img {
		height: 400px !important;
		object-fit: cover;
	}

	.about-sec {
		padding: 50px 0;
	}
	.common-heading {
		font-size: 30px;
		line-height: 30px;
	}
	.about-sec-right .common-text {
		padding: 15px 0;
	}
	.service-sec {
		padding: 50px 0 0;
	}
	.service-sec::before {
		width: 340px;
	}
	.service-card {
		gap: 30px;
	}
	.service-card:nth-child(even) .service-card-text-container {
		align-items: start;
		text-align: start;
	}
	.service-card-heading {
		font-size: 20px;
	}
	.service-btn-container {
		margin: 50px 0 0;
	}
	.service-page .service-card img{
		min-width: 238px;
	}

	.service-page .service-card:nth-child(even){
		padding-left: 100px;
	}
	.service-page .service-card:nth-child(odd){
		padding-right: 50px;
	}
	.why-choose-sec {
		padding: 80px 0;
	}
	.contact-sec {
		padding: 50px 0;
	}
	.contact-sec-left img {
		top: -170px;
		max-width: 444px !important;
	}
	.contact-sec-right {
		padding: 30px 0 15px;
	}
	.contact-sec-heading {
		font-size: 30px;
		line-height: 35px;
		margin-bottom: 20px;
	}
	.testimonial-sec {
		padding: 50px 0 80px;
	}
	.testimonial-container {
		margin-top: 25px;
	}
	.f-contact-container {
		padding-left: 15px;
	}
	.f-service-container {
		padding-left: 0px;
	}
	.f-service-container-2 {
		padding-left: 15px;
	}
	.page .entry-header, .blog_page_header {
/* 		padding: 85px 0 85px !important; */
		margin: 100px 0 50px !important;
	}
	.hentry {
		margin: 0 auto 0px !important;
	}
}
/* iPad Pro 10.5 inch */
@media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {

}

/* iPad Pro 12.9 inch */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {

}
@media (min-width: 1025px) and (max-width: 1199px){
	.header-info-container {
		gap: 30px;
	}
	.header-info::before {
		right: -16px;
	}
	.main-header ul li {
		margin-right: 36px;
	}
	.main-header ul li::before {
		right: -20px;
	}
}

@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) {

}



