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


/* 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% !important;
	height: auto !important;
}

.pad-0 {
	padding: 0;
}

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

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


.common-heading {
	font-size: 38px;
	color: #040404;
	font-weight: 600;
}

.common-text {
	font-size: 16px;
	line-height: 30px;
	color: #1d1d1d;
	font-weight: 400;
	text-align: center;
}

.common-btn {
	display: inline-block !important;
	position: relative;
	padding: 8px 30px;
	border-radius: 22px;
	background-color: #352c85;
	font-size: 16px;
	text-align: center;
	line-height: 30px;
	color: #ffffff;
	font-weight: 400;
	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: #b41d3c;
	transform: scaleX(0);
	transform-origin: left;
	z-index: -1;
	transition: transform 0.3s ease;
}

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

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

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

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

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

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

	to {
		transform: translateY(0);
	}
}


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

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

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

.header-info a,
.header-info strong {
	font-size: 14px;
	color: #000000;
	font-weight: 600;
	color: #000000;
}

.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: -83px;
	left: 0;
	z-index: 2;
}

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

.header-manu-container ul {}

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

.main-header ul li::before {
	content: '';
	border-right: 1px solid;
	height: 15px;
	background-color: #010101;
	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;
}

#primary-menu ul li::before {
	content: none;
}


.main-header ul li a {
	font-size: 14px;
	color: #010101;
	font-weight: 400;
	padding: 10px 0;
	text-transform: capitalize;
}

.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 .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: 118px;
	background-color: #acacac;
}

.banner-sec::before {
	content: '';
	background-color: #920824;
	clip-path: polygon(0 0, 100% 0, 100% 79%, 50% 100%, 50% 100%, 0 79%);
	position: absolute;
	bottom: -30px;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.banner-img {
	clip-path: polygon(0 0, 100% 0, 100% 83%, 50% 100%, 50% 100%, 0 83%);
	position: relative;
	z-index: 1;
}

.banner-img::before {
	content: '';
	width: 284px;
	height: 286px;
	background: url("../images/banner-shape-1.png") no-repeat;
	background-size: cover;
	position: absolute;
	left: 0;
	top: 0;
}

.banner-img::after {
	content: '';
	width: 325px;
	height: 640px;
	background: url("../images/banner-shape-2.png") no-repeat;
	background-size: cover;
	position: absolute;
	right: 0;
	bottom: 0;
}

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

.banner-container {
	width: 760px;
	position: absolute;
	top: 45%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	flex-direction: column;
	text-align: center;
	z-index: 1;
}

.banner-heading {
	font-size: 50px;
	line-height: 55px;
	text-transform: uppercase;
	color: #0e0e0e;
	font-weight: 700;
	text-align: center;
}

.banner-heading strong {
	color: #920824;
}

.banner-container .common-text {
	max-width: 698px;
	padding: 10px 0 20px;
}

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

.about-sec {
	position: relative;
	padding: 220px 0 100px;
	background-color: #acacac;
	margin-top: -105px;
}

.about-left {
	margin: 0 -30px;
	position: relative;
	z-index: 1;
}

.about-sec-right {
	padding-left: 70px;
	position: relative;
	z-index: 1;
}

.about-sec::before {
	content: "";
	background: url("../images/about-shape-1.png") no-repeat;
	background-size: cover;
	width: 564px;
	height: 536px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 0;
}

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

.about-sec .common-text {
	padding: 5px 0 25px;
}

/* service-sec */
.service-sec {
	padding: 110px 0 130px;
	background: url("../images/service-bg.png") no-repeat #ffffff;
	background-size: cover;
	position: relative;
	clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 100%, 50% 100%, 0 87%);
}

.service-sec-outer {
	position: relative;
	padding-bottom: 30px;
}

.service-sec-outer::before {
	content: '';
	background-color: #920824;
	clip-path: polygon(0 0, 100% 0, 100% 84%, 50% 100%, 50% 100%, 0 84%);
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}

.owl-carousel .owl-stage-outer {
	padding-bottom: 20px;
}

.service-card {
	background-color: #ffffff;
	box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	min-height: 389px;
}

.service-card-img {
	position: relative;
	padding-bottom: 10px;
}

.service-card-img::before {
	content: '';
	background-color: #920824;
	clip-path: polygon(0 0, 100% 0, 100% 76%, 50% 100%, 50% 100%, 0 76%);
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 0;
}

.service-card-img img {
	z-index: 2;
	clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 50% 100%, 0 80%);
}

.service-card-text-container {
	padding: 0 10px 30px;
}

.service-card-heading-container {
	display: flex;
	align-items: center;
	gap: 7px;
}

.service-card-icon {
	width: 49px;
	height: 50px;
	padding: 5px;
	background-color: #352c85;
	display: flex;
	align-items: center;
	justify-content: center;
	clip-path: polygon(0 0, 100% 20%, 100% 100%, 0% 100%);
}

.service-card-icon img {
	width: fit-content !important;
}

.service-card-heading {
	font-size: 18px;
	color: #000000;
	font-weight: 700;
}

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

.service-card-link {
	font-size: 14px;
	line-height: 24px;
	text-decoration: underline;
	color: #920824;
	font-weight: 700;
	text-underline-offset: 5px;
	transition: all 0.5s ease;
}

.service-card-link:hover {
	text-underline-offset: 2px;
}

.service-slider .owl-next span,
.service-slider .owl-prev span {
	display: none;
}

.service-slider .owl-next {
	position: absolute;
	right: -40px;
	top: 50%;
	transform: translateY(-50%);
}

.service-slider .owl-next::before {
	content: '';
	background: url("../images/service-right-arrow.png") no-repeat;
	position: absolute;
	width: 18px;
	height: 31px;
}

.service-slider .owl-prev {
	position: absolute;
	left: -60px;
	top: 50%;
	transform: translateY(-50%);
}

.service-slider .owl-prev::before {
	content: '';
	background: url("../images/service-left-arrow.png") no-repeat;
	position: absolute;
	width: 18px;
	height: 31px;
}

/* why-choose-sec */
.why-choose-sec {
	padding: 90px 0;
	background: url("../images/why-choose-img.jpg") no-repeat;
	background-size: cover;
	position: relative;
}

.why-choose-sec::before {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #b41d3c;
	position: absolute;
	bottom: 40.3%;
	left: 0;
}

.why-choose-sec-card {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 26px;
	min-height: 100%;
}

.why-choose-sec-card-icon-outer {
	padding: 7px;
	border: 1px dashed #bd3c57;
	border-radius: 50px;
	min-height: 94px;
}

.why-choose-sec-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 78px;
	height: 78px;
	border-radius: 39px;
	background-color: #352c85;
}

/* .why-choose-sec-card-boll-outer{
min-height: 100px;
} */
.why-choose-sec-card-boll {
	width: 21px;
	height: 21px;
	border-radius: 11px;
	background-color: #f8f8f8;
	border: 1px solid #b41d3c;
	position: relative;
}

.why-choose-sec-card-heading {
	font-size: 20px;
	color: #000000;
	font-weight: 600;
	text-align: center;
	min-height: 94px;
}

.why-choose-sec .col-lg-3:nth-child(even) .why-choose-sec-card {
	flex-direction: column-reverse;
}

.why-choose-sec .col-lg-3:nth-child(even) .why-choose-sec-card-heading {
	display: flex;
	align-items: end;
}

.why-choose-sec-card-icon img {
	transition: 0.5s;
}

.why-choose-sec-card:hover img {
	transform: rotateY(360deg);
}

/* testimonial sec  */
.testimonial-sec {
	padding: 100px 0;
	/* height: 512px; */
	background-color: #920824;
	position: relative;
}

.testimonial-sec::before {
	content: '';
	background: url("../images/testimonial-shape-1.png") no-repeat;
	background-size: cover;
	width: 557px;
	height: 536px;
	position: absolute;
	left: 0;
	top: 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;
}

#sp-testimonial-free-wrapper-67 .sp-testimonial-free-section,
#sp-testimonial-free-wrapper-66 .sp-testimonial-free-section {
	margin: 0 !important;
}

.sp-testimonial-free-section .sp-testimonial-client-testimonial p {
	padding: 0 !important;
	font-size: 14px !important;
	line-height: 23px !important;
	color: #0f0f0f !important;
	font-weight: 400 !important;
	text-align: left !important;
	margin: 0 !important;
}

.sp-testimonial-free-section .sp-testimonial-client-image {
	margin: 0 !important;
	position: absolute;
	bottom: 10px;
}

#sp-testimonial-free-wrapper-67 .sp-testimonial-free-section .sp-testimonial-client-name,
#sp-testimonial-free-wrapper-66 .sp-testimonial-free-section .sp-testimonial-client-name {
	position: absolute;
	left: 75px;
	bottom: 20px;
	margin: 0;
}

#sp-testimonial-free-wrapper-67 .sp-testimonial-free-section .sp-testimonial-client-rating,
#sp-testimonial-free-wrapper-66 .sp-testimonial-free-section .sp-testimonial-client-rating {
	display: flex !important;
	position: absolute;
	top: 23px;
}

#sp-testimonial-free-wrapper-67 .sp-testimonial-free,
#sp-testimonial-free-wrapper-66 .sp-testimonial-free {
	background: #ffffff !important;
	padding: 55px 15px 0px;
	min-height: 300px;
	position: relative;
}

#sp-testimonial-free-wrapper-67 .sp-testimonial-free::before,
#sp-testimonial-free-wrapper-66 .sp-testimonial-free::before {
	content: '';
	width: 100%;
	height: 1px;
	background-color: #cccccc;
	position: absolute;
	bottom: 70px;
	left: 0;
}

#sp-testimonial-free-wrapper-67 .sp-testimonial-free::after,
#sp-testimonial-free-wrapper-66 .sp-testimonial-free::after {
	content: '';
	width: 23px;
	height: 21px;
	background: url("../images/quotation-mark-img.png") no-repeat;
	background-size: cover;
	position: absolute;
	top: 17px;
	right: 23px;
}
.sp-testimonial-free-wrapper {
	overflow: visible !important;
}
.sp-testimonial-free-section .testimonial-nav-arrow {
	font-size: 45px !important;
	transform: translateY(0%) !important;
}
.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next {
	right: -55px !important;
}
.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
	left: -55px !important;
}

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

.footer-outer {
	background: url("../images/footer-bg.png") repeat-x left bottom #352c85;
	padding: 80px 0 0;
}

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

.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: #e10a35;
	padding-left: 2px;
}

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

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

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

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

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

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

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

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


/* scroll to top  */
.scroll-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	cursor: pointer;
	z-index: 1000;
	width: 50px;
	height: 50px;
	border-radius: 29px;
	background: #920824;
	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: 250px 0 150px !important;
	margin: 0 0 50px !important;
	position: relative;
	overflow: hidden;
	text-align: center;
}

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

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

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

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

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

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

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

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

.inner_title strong {
	color: #352c85;
}

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

.inner_txt {
	font-size: 16px;
	color: #2b2b2b;
	font-weight: normal;
	margin-top: 20px;
}

.margin-top {
	margin-top: 48px;
}

.inner_list_txt {
	margin-top: 20px;
}

.inner_list_txt ul {
	padding: 0;
	margin: 0;
}

.inner_list_txt ul li {
	background: url("../images/list-img.png");
	background-position: top 4px left;
	padding-left: 28px;
	background-repeat: no-repeat;
	background-size: 18px;
	font-size: 16px;
	color: #2b2b2b;
	font-weight: normal;
	list-style: none;
	padding-bottom: 6px;
}

.inner_bottm_sec {
	background: #b41d3c;
	padding: 30px 20px;
	text-align: center;
}

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

.core-box {
	box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
	padding: 30px 20px;
	background: #fff;
	border-radius: 5px;
	min-height: 100%;
}

.core-box img {
	width: 80px;
	padding-bottom: 20px;
}

.core-box_title {
	color: #131313;
	font-size: 20px;
	line-height: 1.2;
	font-weight: bold;
	position: relative;
	padding-bottom: 12px;
}

.core-box_title strong {
	color: #194d87;
}

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

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

.contact_page_heading strong {
	color: #352c85;
}

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

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

/* 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 #352c85;
	outline: none;
}

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

.contact-form-sec select {
	width: 100%;
	padding: 12px;
	border-radius: 7px;
	color: #515151;
	font-size: 16px;
	text-transform: capitalize;
	border: 1px solid #352c85;
	outline: 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 #352c85;
}

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

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

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

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


/* 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;
	}
	.animate{
		animation: none;
	}
	.common-heading {
		font-size: 26px;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.banner-sec {
		margin-top: 95px;
	}
	.banner-sec::before {
		clip-path: polygon(0 0, 100% 0, 100% 83%, 50% 100%, 50% 100%, 0 83%);
	}
	.banner-img {
		clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 100%, 50% 100%, 0 87%);
	}
	.banner-img::before {
		display: none;
	}
	.banner-img::after {
		display: none;
	}
	.banner-container {
		width: 100%;
		padding: 0 10px;
	}
	.banner-img {
		height: 500px;
	}
	.banner-img img {
		width: 100%;
		height: 100% !important;
		object-fit: cover;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 34px;
	}
	.about-sec {
		padding: 190px 0 50px;
	}
	.about-sec::before {
		width: 300px;
		height: 300px;
	}
	.about-sec::after {
		width: 300px;
		height: 300px;
	}
	.about-left {
		margin: 0;
	}
	.about-sec-right {
		padding-left: 0px;
	}
	.service-sec-outer::before {
		clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 50% 100%, 0 91%);
	}
	.service-sec {
		padding: 50px 0 70px;
		clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 50% 100%, 0 93%);
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-sec .col-lg-3:nth-child(even) .why-choose-sec-card {
		flex-direction: column;
	}
	.why-choose-sec-card {
		gap: 15px;
	}
	.why-choose-sec-card-boll-outer {
		display: none;
	}
	.why-choose-sec-card-heading {
		min-height: auto;
	}
	.why-choose-sec::before {
		content: none;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.testimonial-sec::before {
		width: 300px;
		height: 300px;
	}
	.testimonial-sec::after {
		width: 300px;
		height: 300px;
	}
	.footer-outer {
		padding: 50px 0 0;
	}
	.f-contact-container {
		padding-left: 13px;
	}
	.f-service-container {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 12px;
	}
	.lower-footer {
		padding: 12px 0 60px;
		margin-top: 30px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 170px 0 80px !important;
	}
}

/* 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;
	}
	.animate{
		animation: none;
	}
	.common-heading {
		font-size: 26px;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.banner-sec {
		margin-top: 95px;
	}
	.banner-sec::before {
		clip-path: polygon(0 0, 100% 0, 100% 83%, 50% 100%, 50% 100%, 0 83%);
	}
	.banner-img {
		clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 100%, 50% 100%, 0 87%);
	}
	.banner-img::before {
		display: none;
	}
	.banner-img::after {
		display: none;
	}
	.banner-container {
		width: 100%;
		padding: 0 10px;
	}
	.banner-img {
		height: 500px;
	}
	.banner-img img {
		width: 100%;
		height: 100% !important;
		object-fit: cover;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 34px;
	}
	.about-sec {
		padding: 190px 0 50px;
	}
	.about-sec::before {
		width: 300px;
		height: 300px;
	}
	.about-sec::after {
		width: 300px;
		height: 300px;
	}
	.about-left {
		margin: 0;
	}
	.about-sec-right {
		padding-left: 0px;
	}
	.service-sec-outer::before {
		clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 50% 100%, 0 91%);
	}
	.service-sec {
		padding: 50px 0 70px;
		clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 50% 100%, 0 93%);
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-sec .col-sm-12 {
		flex: 0 0 auto;
		width: 50%;
	}
	.why-choose-sec .col-lg-3:nth-child(even) .why-choose-sec-card {
		flex-direction: column;
	}
	.why-choose-sec-card {
		gap: 15px;
	}
	
	.why-choose-sec-card-boll-outer {
		display: none;
	}
	.why-choose-sec-card-heading {
		min-height: auto;
	}
	.why-choose-sec::before {
		content: none;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.testimonial-sec::before {
		width: 300px;
		height: 300px;
	}
	.testimonial-sec::after {
		width: 300px;
		height: 300px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.footer-outer {
		padding: 50px 0 0;
	}
	.f-contact-container {
		padding-left: 13px;
	}
	.f-service-container {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 12px;
	}
	.lower-footer {
		padding: 12px 0 60px;
		margin-top: 30px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 170px 0 80px !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;
	}
	.animate{
		animation: none;
	}
	.common-heading {
		font-size: 26px;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.banner-sec {
		margin-top: 95px;
	}
	.banner-sec::before {
		clip-path: polygon(0 0, 100% 0, 100% 83%, 50% 100%, 50% 100%, 0 83%);
	}
	.banner-img {
		clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 100%, 50% 100%, 0 87%);
	}
	.banner-img::before {
		display: none;
	}
	.banner-img::after {
		display: none;
	}
	.banner-container {
		width: 100%;
		padding: 0 10px;
	}
	.banner-img img {
		width: 100%;
		height: 100% !important;
		object-fit: cover;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 34px;
	}
	.about-sec {
		padding: 190px 0 50px;
	}
	.about-sec::before {
		width: 300px;
		height: 300px;
	}
	.about-sec::after {
		width: 300px;
		height: 300px;
	}
	.about-left {
		margin: 0;
	}
	.about-sec-right {
		padding-left: 0px;
	}
	.service-sec-outer::before {
		clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 50% 100%, 0 91%);
	}
	.service-sec {
		padding: 50px 0 70px;
		clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 50% 100%, 0 93%);
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-sec .col-sm-12 {
		flex: 0 0 auto;
		width: 50%;
	}
	.why-choose-sec .col-lg-3:nth-child(even) .why-choose-sec-card {
		flex-direction: column;
	}
	.why-choose-sec-card {
		gap: 15px;
	}
	
	.why-choose-sec-card-boll-outer {
		display: none;
	}
	.why-choose-sec-card-heading {
		min-height: auto;
	}
	.why-choose-sec::before {
		content: none;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.testimonial-sec::before {
		width: 300px;
		height: 300px;
	}
	.testimonial-sec::after {
		width: 300px;
		height: 300px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.footer-outer {
		padding: 50px 0 0;
	}
	.f-contact-container {
		padding-left: 13px;
	}
	.f-service-container {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 12px;
	}
	.lower-footer {
		padding: 12px 0 60px;
		margin-top: 30px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 170px 0 80px !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;
	}
	.animate{
		animation: none;
	}
	.common-heading {
		font-size: 26px;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.banner-sec {
		margin-top: 95px;
	}
	.banner-sec::before {
		clip-path: polygon(0 0, 100% 0, 100% 83%, 50% 100%, 50% 100%, 0 83%);
	}
	.banner-img {
		clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 100%, 50% 100%, 0 87%);
	}
	.banner-img::before {
		display: none;
	}
	.banner-img::after {
		display: none;
	}
	.banner-container {
		width: 100%;
		padding: 0 10px;
	}
	.banner-img img {
		width: 100%;
		height: 100% !important;
		object-fit: cover;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 34px;
	}
	.about-sec {
		padding: 190px 0 50px;
	}
	.about-sec::before {
		width: 300px;
		height: 300px;
	}
	.about-sec::after {
		width: 300px;
		height: 300px;
	}
	.about-left {
		margin: 0;
	}
	.about-sec-right {
		padding-left: 0px;
	}
	.service-sec-outer::before {
		clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 50% 100%, 0 91%);
	}
	.service-sec {
		padding: 50px 0 70px;
		clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 50% 100%, 0 93%);
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-sec .col-sm-12 {
		flex: 0 0 auto;
		width: 50%;
	}
	.why-choose-sec .col-lg-3:nth-child(even) .why-choose-sec-card {
		flex-direction: column;
	}
	.why-choose-sec-card {
		gap: 15px;
	}
	
	.why-choose-sec-card-boll-outer {
		display: none;
	}
	.why-choose-sec-card-heading {
		min-height: auto;
	}
	.why-choose-sec::before {
		content: none;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.testimonial-sec::before {
		width: 300px;
		height: 300px;
	}
	.testimonial-sec::after {
		width: 300px;
		height: 300px;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.footer-outer {
		padding: 50px 0 0;
	}
	.f-contact-container {
		padding-left: 13px;
	}
	.f-service-container {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 12px;
	}
	.lower-footer {
		padding: 12px 0 60px;
		margin-top: 30px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
	.page .entry-header, .blog_page_header {
		padding: 170px 0 80px !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;
	}
	.animate{
		animation: none;
	}
	.common-heading {
		font-size: 26px;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.banner-sec {
		margin-top: 95px;
	}
	.banner-sec::before {
		clip-path: polygon(0 0, 100% 0, 100% 83%, 50% 100%, 50% 100%, 0 83%);
	}
	.banner-img {
		clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 100%, 50% 100%, 0 87%);
	}
	.banner-img::before {
		display: none;
	}
	.banner-img::after {
		display: none;
	}
	.banner-container {
		width: 100%;
		padding: 0 10px;
	}
	.banner-img img {
		width: 100%;
		height: 100% !important;
		object-fit: cover;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 34px;
	}
	.about-sec {
		padding: 190px 0 50px;
	}
	.about-sec::before {
		width: 300px;
		height: 300px;
	}
	.about-sec::after {
		width: 300px;
		height: 300px;
	}
	.about-left {
		margin: 0;
	}
	.about-sec-right {
		padding-left: 0px;
	}
	.service-sec-outer::before {
		clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 50% 100%, 0 91%);
	}
	.service-sec {
		padding: 50px 0 70px;
		clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 50% 100%, 0 93%);
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.why-choose-sec .col-sm-12 {
		flex: 0 0 auto;
		width: 50%;
	}
	.why-choose-sec .col-lg-3:nth-child(even) .why-choose-sec-card {
		flex-direction: column;
	}
	.why-choose-sec-card {
		gap: 15px;
	}
	
	.why-choose-sec-card-boll-outer {
		display: none;
	}
	.why-choose-sec-card-heading {
		min-height: auto;
	}
	.why-choose-sec::before {
		content: none;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.testimonial-sec::before {
		width: 300px;
		height: 300px;
	}
	.testimonial-sec::after {
		width: 300px;
		height: 300px;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next {
		right: -30px !important;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
		left: -30px !important;
	}
	.footer .col-sm-12 {
		width: 50%;
	}
	.footer-outer {
		padding: 50px 0 0;
	}
	.f-contact-container {
		padding-left: 13px;
	}
	.f-service-container {
		padding-left: 0;
	}
	.f-service-container-2 {
		padding-left: 12px;
	}
	.lower-footer {
		padding: 12px 0 60px;
		margin-top: 30px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
}

/* 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;
	}
	.animate{
		animation: none;
	}
	.common-heading {
		font-size: 26px;
	}
	.logo-container img {
		position: relative;
		top: 0;
		width: 80px;
	}
	.banner-sec {
		margin-top: 95px;
	}
	.banner-sec::before {
		clip-path: polygon(0 0, 100% 0, 100% 83%, 50% 100%, 50% 100%, 0 83%);
	}
	.banner-img {
		clip-path: polygon(0 0, 100% 0, 100% 87%, 50% 100%, 50% 100%, 0 87%);
	}
/* 	.banner-img::before {
		display: none;
	}
	.banner-img::after {
		display: none;
	} */
	.banner-container {
		width: 100%;
		padding: 0 10px;
	}
	.banner-img img {
		width: 100%;
		height: 100% !important;
		object-fit: cover;
	}
	.banner-heading {
		font-size: 26px;
		line-height: 34px;
	}
	.about-sec {
		padding: 190px 0 50px;
	}
	.about-sec::before {
		width: 300px;
		height: 300px;
	}
	.about-sec::after {
		width: 300px;
		height: 300px;
	}
	.about-left {
		margin: 0;
	}
	.about-sec-right {
		padding-left: 0px;
	}
	.service-sec-outer::before {
		clip-path: polygon(0 0, 100% 0, 100% 91%, 50% 100%, 50% 100%, 0 91%);
	}
	.service-sec {
		padding: 50px 0 70px;
		clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 100%, 50% 100%, 0 93%);
	}
	.service-slider .owl-next {
		right: -20px;
	}
	.service-slider .owl-prev {
		left: -35px;
	}
	.why-choose-sec {
		padding: 50px 0;
	}
	.testimonial-sec {
		padding: 50px 0;
	}
	.testimonial-sec::before {
		width: 300px;
		height: 300px;
	}
	.testimonial-sec::after {
		width: 300px;
		height: 300px;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next {
		right: -30px !important;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
		left: -30px !important;
	}
	.footer-outer {
		padding: 50px 0 0;
	}
	.f-contact-container {
		padding-left: 13px;
	}
	.f-service-container {
		padding-left: 40px;
	}
	.f-service-container-2 {
		padding-left: 12px;
	}
	.lower-footer {
		padding: 12px 0;
		margin-top: 30px;
	}
	.scroll-top {
		bottom: 7rem;
		right: 1rem;
	}
}
/* 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 {
		margin-left: -40px;
	}
	.main-header ul li {
		margin-right: 60px;
	}
	.main-header ul li::before {
		right: -35px;
	}
	.service-slider .owl-next {
		right: -25px;
	}
	.service-slider .owl-prev {
		left: -35px;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-next {
		right: -40px !important;
	}
	.sp-testimonial-free-section .testimonial-nav-arrow.swiper-button-prev {
		left: -40px !important;
	}
	.f-service-container-2{
		padding-left: 100px;
	}
	.f-service-container {
		padding-left: 78px;
	}
}

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

}

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

}

@media screen and (min-width: 1920px) {
	.banner-sec::before {
		clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 50% 100%, 0 80%);
	}
}

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

}

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

}



