body {
	font-family: 'Poppins', sans-serif;
	background-color: #fff;
	color: #646464;
	font-size: 16px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	transition: 0.5s;
}

.loading {
	position: fixed;
	background-color: #fbfbfb;
	z-index: 99999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	color: #f7941e;
}

/* Start Spinner */

.spinner {
	width: 80px;
	height: 80px;
	position: relative;
	margin: 250px auto;
}

.double-bounce1,
.double-bounce2 {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: #f7941e;
	opacity: 0.6;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-animation: sk-bounce 2.0s infinite ease-in-out;
	animation: sk-bounce 2.0s infinite ease-in-out
}

.double-bounce2 {
	-webkit-animation-delay: -1.0s;
	animation-delay: -1.0s
}

@-webkit-keyframes sk-bounce {

	0%,
	100% {
		-webkit-transform: scale(0.0)
	}

	50% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes sk-bounce {

	0%,
	100% {
		transform: scale(0.0);
		-webkit-transform: scale(0.0);
	}

	50% {
		transform: scale(1.0);
		-webkit-transform: scale(1.0);
	}
}

/* End Spinner */

body,
html {
	width: 100%;
	overflow-x: hidden;
}

h1 {
	font-size: 48px;
	color: #212529;
}

h2 {
	font-size: 36px;
	color: #212529;
}

h3 {
	font-size: 32px;
	color: #212529;
}

h4 {
	font-size: 24px;
	color: #212529;
}

h5 {
	font-size: 20px;
	color: #212529;
}

h6 {
	color: #14212b;
	font-size: 18px;
}

section {
	padding: 40px 0;
}

.container {
	max-width: 1140px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 320px) and (max-width: 1024px) {
	.container {
		padding: 0 30px;
	}
}

a,
a:hover,
a:focus,
a:active {
	text-decoration: none;
	outline: none;
}

a,
a:active,
a:focus {
	color: #6f6f6f;
	text-decoration: none;
	transition-timing-function: ease-in-out;
	-ms-transition-timing-function: ease-in-out;
	-moz-transition-timing-function: ease-in-out;
	-webkit-transition-timing-function: ease-in-out;
	-o-transition-timing-function: ease-in-out;
	transition-duration: .2s;
	-ms-transition-duration: .2s;
	-moz-transition-duration: .2s;
	-webkit-transition-duration: .2s;
	-o-transition-duration: .2s;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

/* Section-title */

.section-title {
	position: relative;
	margin-bottom: 40px;
}

.section-title span {
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	color: #f7941e;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.section-title p {
	color: #777;
	font-size: 16px;
	max-width: 950px;
	margin: 0 auto;
}

.section-title h3 {
	text-transform: capitalize;
	font-size: 30px;
	position: relative;
	margin-bottom: 0px;
	font-weight: 600;
	line-height: 1.5;
}

.section-title .divider {
	position: relative;
	height: 3px;
	width: 85px;
	background: #f7941e;
	border-radius: 5px;
	overflow: hidden;
	margin-top: 10px;
	margin-bottom: 10px;
}

.section-title .divider:before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 5px;
	background: #fff;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-name: MOVE-BG;
	animation-name: MOVE-BG;
}

@-webkit-keyframes MOVE-BG {
	from {
		-webkit-transform: translateX(0);
	}

	to {
		-webkit-transform: translateX(85px);
	}
}

@keyframes MOVE-BG {
	from {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

	to {
		-webkit-transform: translateX(85px);
		transform: translateX(85px);
	}
}


/* Top header */

.top-header {
	padding: 10px 0px 0px 0px;
	background: #fff;
}

.top-header .top-header-inner {
	display: block;
}

.top-header .top-header-inner ul {
	display: flex;
	font-size: 12px;
	letter-spacing: 0.5px;
	padding-left: 0;
}

.top-header .top-header-inner li {
	margin-right: 20px;
	color: #343a40;
	font-weight: 500;
}

.top-header .top-header-inner i {
	float: left;
	margin-right: 11px;
	font-size: 20px;
}

.top-header .top-header-inner a {
	color: #343a40;
}


.top-header ul.social-icon {
	float: none;
	text-align: center;
	display: flex;
	justify-content: center;
}

.top-header ul.social-icon li {
	float: left;
	list-style: none;
	margin: 3px 7px;
	font-size: 12px;
	color: #343a40;
}

.top-header ul.social-icon li i {
	font-size: 18px;
	margin-right: 3px;
	color: #343a40;
}


@media(max-width:767px) {
	.top-header .top-header-inner ul {
		display: block;
		text-align: center;
		padding-bottom: 10px;
	}

	.top-header .top-header-inner i {
		float: none;
		text-align: center;
		display: flex;
		justify-content: center;
		margin-bottom: 8px;
		margin-right: 0px;
	}

	.top-header .top-header-inner li {
		margin-right: 0px;
	}
}


/* Main Header */

.top-navbar {
	position: relative;
	background: #fff;
	letter-spacing: 0.5px;
	transition: 0.5s ease-in;
	-webkit-transition: 0.5s ease-in;
	-moz-transition: 0.5s ease-in;
	box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.1);
	padding: 5px;
}

.top-navbar .sticky-top {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1030;
	background: #fff;
	-moz-box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.1);
	box-shadow: 10px 0px 30px rgba(0, 0, 0, 0.1);
}

.top-navbar .btn-main-nav {
	position: relative;
	color: #fff;
	background-color: #f7941e;
	padding: 8px 30px;
	margin: 0 10px;
	font-size: 16px;
}

.top-navbar .btn-main-nav:hover {
	background: #fff;
	color: #f7941e;
	border-color: #f7941e;
}

.main-nav nav {
	padding: 15px 0px;
}

.main-nav .navbar-brand {
	margin-left: auto;
	margin-right: auto;
	font-size: 22px;
	color: #f7941e;
	font-weight: 550;
}

.main-nav .navbar-brand img {
	max-width: 350px;
}

.main-nav .navbar-nav .nav-item {
	margin: 0;
}

.main-nav .navbar-nav .nav-link {
	color: #282a33;
	font-size: 14px;
	font-weight: 600;
	padding: 15px 15px 20px 10px;
	position: relative;
}

.main-nav .navbar-nav .nav-link:before {
	content: "";
	width: 0;
	height: 2px;
	display: inline-block;
	vertical-align: top;
	background: #f7941e !important;
	transition: ease all 0.5s;
	-webkit-transition: ease all 0.5s;
	position: absolute;
	bottom: 10px;
	left: 12px;
}

.main-nav .navbar-nav .nav-item.active a.nav-link,
.main-nav .navbar-nav .nav-link:hover,
.main-nav .navbar-nav .nav-link:focus {
	color: #343a40;
	transition: 0.1s ease-in;
	-webkit-transition: 0.1s ease-in;
	-moz-transition: 0.1s ease-in;
}

/* .main-nav .navbar-nav .nav-item.active a.nav-link:before, */
.main-nav .navbar-nav .nav-link:hover:before,
.main-nav .navbar-nav .nav-link:focus:before {
	width: 50%;
	background: #3c1573;
}

.main-nav .navbar-collapse.show {
	background: #fff;
	padding-bottom: 16px;
}

.main-nav .navbar-toggler {
	border: none;
	padding: 5px 10px;
	outline: none !important;
}

.main-nav .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* Dropdown Menu */

.main-nav .navbar-nav .dropdown-menu {
	position: absolute;
	background: #fff !important;
	padding: 0;
	margin: -1px 0 0;
	overflow: hidden;
	-webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
	box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.main-nav .dropdown-item {
	color: #353535 !important;
	padding: 8px 16px;
}

.main-nav .dropdown-toggle::after {
	display: none;
}

.main-nav .dropdown-item:focus,
.main-nav .dropdown-item:hover {
	text-decoration: none;
	background-color: #fff;
	color: #353535 !important;
	transform: translateX(5px);
	transition: .5s;
}

.main-nav .dropdown:hover .dropdown-menu {
	display: block;
}

/*  RESPONSIVE MENU */

@media (max-width: 768px) {

	.main-nav .navbar-toggler {
		background: #fafafa !important;
	}
}

@media (max-width: 992px) {

	.main-nav .navbar-toggler {
		background: #fafafa !important;
	}

	.main-nav .navbar-nav .nav-link {
		margin: 0 20px;
		padding: 15px 10px;
	}

	.main-nav ul.navbar-nav {
		position: static;
		width: 100%;
		margin: 15px 0px 0px;
		align-items: unset !important;
	}

}


/* Home Slider */


#header .carousel-item {
	width: 100%;
	height: 100vh;
	max-height: 550px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

#header .carousel-item::before {
	content: '';
	/* background-color: rgba(21, 27, 26, 0.7); */
	position: absolute;
	height: 100vh;
	width: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

#header .carousel-item img {
	height: 100vh;
}

#header .carousel-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#header .carousel-content {
	text-align: center;
	margin-top: -100px;
}

#header .active .carousel-content {
	margin-top: 100px;
	transition: 0.5s;
	transform: translateY(90%);
	bottom: initial;
	top: 50%;
}

#header h2 {
	color: #fff;
	margin-bottom: 10px;
	font-size: 48px;
	font-weight: 700;
}

#header p {
	width: 80%;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
	margin: 0 auto 30px auto;
	color: #fff;
}

#header .carousel-inner .carousel-item {
	transition-property: opacity;
	background-position: center top;
}

#header .carousel-control-prev,
#header .carousel-control-next {
	width: 30px;
	font-size: 18px;
	color: #fff;
	background: #f7941e;
	border-radius: 3px;
	opacity: 2;
	height: 30px;
	top: 50%;
}

.carousel-control-prev {
	left: 20px;
}

.carousel-control-next {
	right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	height: 100px;
	width: 100px;
	outline: black;
	background-size: 100%, 100%;
	border-radius: 50%;
	border: 1px solid black;
	background-image: none;
}

.carousel-control-next-icon:after {
	content: '>';
	font-size: 55px;
	color: #f7941e;
}

.carousel-control-prev-icon:after {
	content: '<';
	font-size: 55px;
	color: #f7941e;
}


#header .carousel-indicators li {
	cursor: pointer;
	opacity: 1;
}

#header .carousel-indicators .active {
	background-color: #f7941e;
}

#header .contactus-btn {
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 50px;
	transition: 0.5s;
	line-height: 1;
	margin: 10px;
	color: #343a40;
	background-color: #fff;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	border: 2px solid #ffffff;
}

/* #header .contactus-btn:hover {
	background: #ffffff;
	color: #333333;
	text-decoration: none;
} */

/* Slider Responsive CSS  --*/
@media (max-width: 768px) {
	#header h2 {
		font-size: 24px;
	}

	#header .carousel-control-prev,
	#header .carousel-control-next {
		font-size: 24px;
	}
}

@media (min-width: 1024px) {
	#header p {
		width: 60%;
	}
}


/* off-canvas menu */

.hamburger {
	position: absolute;
	left: 20px;
	top: 20px;
	cursor: pointer;
}

.hamburger i {
	font-size: 25px;
	color: black;
}

.nav-offcanvas {
	width: 280px;
	height: 100%;
	position: fixed;
	overflow-x: hidden;
	z-index: 2000;
	padding-top: 50px;
	top: 0;
	left: -310px;
	-webkit-transition: left 500ms ease-in-out;
	transition: left 400ms ease-in-out;
	transition-duration: 0.5s;
	background-color: #fff;
	-webkit-box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.nav-offcanvas .logo {
	padding: 0 30px;
}

.nav-offcanvas .close {
	position: absolute;
	right: 15px;
	top: 30px;
	font-size: 24px;
	opacity: 1;
	padding: 0 10px;
	outline: none;
	background: transparent;
	cursor: pointer;
	transition: 0.3s ease;
}

.nav-offcanvas .close i {
	border: none;
	border-radius: 50%;
	color: #1d2124;
	display: block;
}

.nav-offcanvas .close:hover {
	transform: rotate(90deg);
}

.nav-offcanvas-menu ul {
	margin-bottom: 0;
	padding-left: 0;
	list-style: none;
	padding: 50px 30px 10px;
}

.nav-offcanvas-menu ul li {
	line-height: 24px;
}

.nav-offcanvas-menu ul li a {
	color: #1d2124;
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 20px;
	display: block;
	transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.05s;
}

.nav-offcanvas-menu ul li a:hover {
	transform: translateX(10px);
}

.nav-offcanvas.open {
	left: 0;
}

.offcanvas-overlay {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vh;
	background: #fff;
	z-index: 1999;
	transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	visibility: hidden;
	opacity: 0;
}

.offcanvas-overlay.on {
	opacity: 1;
	visibility: visible;
}

.nav-offcanvas .heading {
	font-size: 15px;
	margin-bottom: 10px;
	font-weight: 500;
	color: #acacac;
	padding-left: 30px;
}

.nav-offcanvas .contact-list {
	margin: 0;
	list-style: none;
	padding: 0px 30px 20px;
}

.nav-offcanvas .contact-list li a {
	font-size: 15px;
	display: block;
	color: #646464;
	margin-bottom: 1px;
}

.nav-offcanvas .social-icon {
	margin: 0;
	list-style: none;
	padding: 0px 30px 20px;
}

.nav-offcanvas .social-icon li {
	display: inline-block;
	padding-right: 10px;
}

.nav-offcanvas .social-icon li a {
	color: #5a49f8;
	font-size: 22px;
	transition: all 0.3s;
}

/* page Title */

.page-banner {
	height: 190px;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
	background-repeat: no-repeat;
	background-position: top;
	background-size: cover;
	position: relative;
}

.page-banner:before {
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	background: #00000052;
	width: 100% !important;
	height: 100% !important;
	margin: 0 auto;

}

.page-banner .page-title h1 {
	color: #fff;
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	text-transform: capitalize;
	padding: 70px 0 30px;

	position: relative;
}

.page-banner .page-title h1:after {

	content: "";
	height: 3px;
	width: 100px;
	border-radius: 5px;
	background-color: #f7941e;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
	display: block;
	left: 0;
	right: 0px;
	margin: auto;
}

.bread_crumb {
	text-align: left;
}

.bread_crumb a {
	font-size: 18px;
	line-height: 25px;
	color: #fff;
}

.bread_crumb a:hover {
	color: #fff;
}

.bread_crumb span {
	color: #fff;
}


.about-section {
	border-top: 3px solid #f6f5f2;
}




/* Main Service */

.services-block {
	background: #fff;
	padding: 30px 40px;
	box-shadow: 0px 0px 20px rgb(0 0 0 / 10%);
	border-radius: 5px;
	text-align: center;
	overflow: hidden;
	position: relative;
	display: block;
	margin-bottom: 30px;
	transition: 0.5s;
}

.services-block-btn {
	color: #f7941e;
	padding: 15px 30px 15px 30px;
	margin: 15px;
	border-style: solid;
	border-width: 1px;
	border-color: #f7941e;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
}

.services-block-btn:hover {
	color: #f7941e;
}

.services-block:hover {
	background: #f7941e;
	color: #fff;
	transition: 0.7s;
	transform: scale(1.03);
	-webkit-transform: scale(1.03);
}

.services-block h3 {
	/* color: #061538; */
	margin-bottom: 15px;
	margin-top: 20px;
	font-size: 20px;
	font-weight: 700;
	transition: 0.5s;
}

.services-block:hover h3 {
	color: #fff;
}

.services-block i {
	color: #f7941e;
	font-size: 45px;
	height: 80px;
	width: 80px;
	line-height: 80px;
	text-align: center;
	background: #fff;
	/* border: 1px solid #f7941e; */
	;
	border-radius: 50%;
	transition: 0.6s;
}

.services-block:hover i {
	background: #fff;
	color: #f7941e;
}


/* Why Choose */

.puja-slider-area {
	border-top: 1px solid #ebebeb;
}

.puja-slider .puja-slider-item h4 {
	font-size: 16px;
	margin: 0px;
	-webkit-transition: .5s;
	transition: .5s;
}

.puja-slider .puja-slider-item {
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 20px;
	-webkit-transition: all 0.3s linear;
	transition: all 0.3s linear;
	background: #fff;
	border-radius: 5px;
	box-shadow: 30px 30px 0px -20px #eeeeee;
	border: 1px solid #e6e6e6;
}

.puja-slider .puja-slider-item i {
	background: #f7941e;
	color: #fff;
	font-size: 25px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	margin-bottom: 20px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	transition: all 0.4s ease-in-out;
	-webkit-transition: all 0.4s ease-in-out;
}

.puja-slider .puja-slider-item .puja-info {
	padding: 15px 5px;
	/* -webkit-box-shadow: 0px 10px 10px 0px rgb(234 234 234);
		-moz-box-shadow: 0px 10px 10px 0px rgb(234 234 234);
		box-shadow: 0px 10px 10px 0px rgb(234 234 234); */
	-webkit-transition: .5s;
	transition: .5s;
}


.puja-slider .puja-slider-item p {
	padding-top: 10px;
	color: #212529;
	margin: 0;
	font-size: 13px;
}

.puja-slider-area .owl-dots {
	text-align: center;
	margin-top: 40px;
}

.puja-slider-area .owl-dot {
	width: 14px;
	height: 14px;
	background: #808080 !important;
	margin: 0 6px;
	border-radius: 14px;
	outline: none;
	transition: .3s linear;
}

.puja-slider-area .owl-theme .owl-dots .owl-dot span {
	display: none !important;
}

.puja-slider-area .owl-dot.active {
	width: 36px;
	background: #f7941e !important;
}

.puja-slider-area .owl-dot:hover {
	width: 36px;
	background: #f7941e !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
	.puja-slider .puja-slider-item {
		font-size: 20px;
	}

	.puja-slider .puja-slider-item p {
		font-size: 16px;
	}

}

/* partner Logo */

.brand-area {
	background: #fafafa;
	border-top: 1px solid #ebebeb;
}

.brand-carousel {
	padding-bottom: 0px;
}

/* Our Service */

.puja-services-area {
	padding-bottom: 30px;
}

.puja-services .service-box h4 {
	padding: 10px;
	font-size: 16px;
	margin: 0px;
}

.puja-services .service-box {
	position: relative;
	overflow: hidden;
	display: block;
	text-align: center;
	margin-bottom: 30px;
	background: #fff;
	-webkit-box-shadow: 0 0 30px rgba(0, 0, 0, .10);
	box-shadow: 0 0 30px rgba(0, 0, 0, .10);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	border: 1px solid #e6e6e6;
	border-radius: 5px;
}

.puja-services .service-box:hover img {
	transform: scale(1.1);
	will-change: transform;
	transition: all 0.5s ease;
	width: 100%;
	-webkit-box-shadow: 0 0 30px rgba(152, 152, 152, .23);
	box-shadow: 0 0 30px rgba(152, 152, 152, .23);
}

.puja-services .service-box img {
	transform: none;
	transition: all 0.5s ease;
}

.puja-services .service-box .service-img {
	/*max-height: 270px;*/
	overflow: hidden;
	border-radius: 0px;
}

.puja-services .service-box .service-img img {
	width: 100%;
	transition: 0.5s;
}

.puja-services .service-box i.fa {
	color: #f7941e;
	font-size: 30px;
	width: 75px;
	height: 75px;
	border: 1px solid #f7941e;
	background-color: #f8f9fa;
	line-height: 75px;
	margin-bottom: 25px;
	border-radius: 50px;
	-webkit-border-radius: 50px;
	-webkit-transition: .3s;
	transition: .3s
}

.puja-services .service-box:hover i.fa {
	background-color: #f7941e;
	color: #fff;
	border-color: #f7941e;
}

/* Counter Section */

.counter-area {
	margin-bottom: 10px;
	border-top: 1px solid #ebebeb;
}

.counter-wrap {
	width: 100%;
	padding: 20px 0;
	border-radius: 15px;

}

.counter-wrap .counter-box {
	display: block;
	padding: 15px 0;
	text-align: center;
	border-right: 1px solid #e7e8f1;
	transition: all 0.4s ease-in-out;
}

.counter-wrap .counter-box.last-box {
	border-right: none;
}

.counter-wrap .counter-box .counter {
	font-size: 40px;
	font-weight: 600;
	line-height: 32px;
	color: #f7941e;
}

.counter-wrap .counter-box span {
	font-size: 40px;
	font-weight: 600;
	line-height: 32px;
	margin: 0 2px;
	color: #f7941e;
}

.counter-wrap .counter-box .icon {
	padding: 5px 0;
}

.counter-wrap .counter-box i {
	font-size: 30px;
	border-radius: 50px;
	width: 50px;
	height: 50px;
	line-height: 50px;
}

.counter-wrap .counter-box p {
	font-size: 18px;
	font-weight: 500;
	margin-top: 10px;
	margin-bottom: 0;
	display: block;
	color: #212529;
}

@media (max-width: 769px) {

	.counter-wrap {
		width: 100%;
	}

	.counter-wrap .counter-box {
		border-right: none;
		padding: 10px 0;
	}

	.counter-wrap .counter-box .counter,
	.counter-wrap .counter-box span {
		font-size: 30px;
		font-weight: 400;
		margin-top: 10px;
		margin-bottom: 0;
	}

}



/* Footer Area */

.footer-area {
	background: #1a1a1a;
	padding-bottom: 0px;
}

.footer-area .quick-links {
	padding-bottom: 30px;
	padding-top: 20px;
}

@media screen and (max-width: 767px) {
	.footer-area .quick-links {
		padding-bottom: 20px;
		padding-top: 10px;
	}
}

.footer-area .quick-links h5 {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	color: #fff;
	margin-top: 0px;
	margin-bottom: 30px;
	text-transform: capitalize;
}

.footer-area .quick-links h5:after {
	content: '';
	width: 35px;
	border-bottom: 2px solid #f7941e;
	position: absolute;
	left: 0;
	bottom: -50%;
	display: block;
}

.footer-area .quick-links .footer-logo {
	margin-bottom: 25px;
}

.footer-area .quick-links .footer-logo a {
	color: #f7941e;
	font-size: 25px;
	font-weight: 500;
}

.footer-area .quick-links p {
	color: #fff;
	line-height: 26px;
	margin-bottom: 30px;
	font-size: 14px;
}

.footer-area .quick-links li {
	padding-bottom: 2px;
	color: #fff;
	font-size: 14px;
}

.footer-area .quick-links ul li a {
	color: #fff;
	line-height: 40px;
	font-size: 14px;
	transition: all 0.5s;
}

.footer-area .quick-links ul li a:hover {
	color: #f7941e;
	margin-left: 5px;
	font-weight: 700;
}

.footer-area .quick-links ul.social-icon li {
	display: inline-block;
	text-align: center;
	margin-right: 10px;
}

.footer-area .quick-links ul.social-icon li a {
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
	display: inline-block;
	font-size: 17px;
	height: 40px;
	line-height: 32px;
	padding: 4px 8px;
	width: 40px;
	transition: .5s;
}

.footer-area .quick-links ul.social-icon li a:hover {
	background: #fff;
	border-color: #fff;
	color: #f7941e;
}


.footer-area .quick-links ul.contact-detail i {
	font-size: 20px;
	display: inline-block;
	color: #adb5bd;
	padding-right: 10px;
	padding-left: 0;
	vertical-align: middle;
}


/* Newsletter Form */

.newsletter-form {
	position: relative;
	overflow: hidden;
}

.newsletter-form .form-control {
	height: 30px;
	line-height: 30px;
	margin: 0;
	padding: 8px 20px;
	width: 100%;
	position: relative;
	background: transparent;
	color: #fff;
	border-radius: 0;
}

.newsletter-form input {
	width: 100%;
	padding: 20px;
	background: #fff;
	border: 1px solid #dee2e6;
	color: #ffff;
	height: auto !important;
}

.newsletter-form input:focus {
	box-shadow: none !important;
	border-color: #5a49f8 !important;
}

.newsletter-form button:hover,
.newsletter-form button:hover {
	background: transparent;
	color: #33d286;
	opacity: .9;
}

.newsletter-form button {
	position: absolute;
	right: 0;
	top: 0;
	line-height: 33px;
	font-size: 14px;
	padding-right: 20px;
	padding-left: 20px;
	outline: none;
	background: #fff;
	color: #fff;
	border: 1px solid #fff;
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
	transition: .5s;
}

.newsletter-form ::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: #f8f8f8;
	opacity: 1
}

.newsletter-form ::-moz-placeholder {
	/* Firefox 19+ */
	color: #f8f8f8;
	opacity: 1
}

.newsletter-form :-ms-input-placeholder {
	/* IE 10+ */
	color: #f8f8f8;
	opacity: 1
}

.newsletter-form button i {
	color: #3c1573;
	font-size: 22px;
	transform: rotate(-6deg);
}

.footer-bar {
	background-color: #242424;
	text-align: center;
	padding-top: 20px;
	padding-bottom: 10px;
	border-top: 1px solid #adb5bd52;
}

.footer-bar a {
	color: #fff;
	margin: 0 10px;
	font-size: 14px;
}

.footer-bar .copyright {
	color: #fff;
	font-size: 15px;
}

.footer-bar .footer-bar-links {
	position: relative;
	text-align: right;
}

.footer-bar .footer-bar-links li {
	padding-right: 10px;
	margin-right: 10px;
	line-height: 1.1em;
	display: inline-block;
	border-right: 1px solid #8a8d91;
}

.footer-bar .footer-bar-links li:last-child {
	padding-right: 0px;
	margin-right: 0px;
	border-right: none;
}

@media (max-width: 970px) {
	.footer-bar .footer-bar-links {
		text-align: center;
		padding: 0;
	}

	.footer-bar .copyright p {
		text-align: center;
	}
}




/* Footer Top */

.footer-top-info {
	position: relative;
	background-color: #301458;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-top: 50px;
	margin-bottom: -50px;
	border-radius: 10px;
}

.footer-top-info .info-item {
	display: flex;
	padding-top: 10px;
	padding-bottom: 10px;
}

.footer-top-info .info-item i {
	color: #f7941e;
	font-size: 40px;
	float: left;
	margin-top: 8px;
}

.footer-top-info .info-box {
	padding-left: 20px;
	display: inline-block;
}

.footer-top-info .info-box h4 {
	color: #fff;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 2px;
}

.footer-top-info .info-box p {
	color: #fff;
}

/* Go to Top Arrow */

.goTop-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: #f7941e;
	border: 1px solid #fff;
	width: 50px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	-webkit-border-radius: 35px;
	-moz-border-radius: 35px;
	border-radius: 35px;
	display: none;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 999;
}

.goTop-btn span {
	color: #fff;
	margin: 0;
	position: relative;
	font-size: 19px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	justify-content: space-around;
}

.goTop-btn:hover span {
	color: #fff;
	top: 5px;
}





/*Btn */

.btn-main {
	padding: 10px 30px !important;
	font-size: 18px;
	background-color: #f7941e;
	color: #fff !important;
	border-radius: 5px;
	border: 1px solid;
	position: relative;
	z-index: 1;
	transition: .3s ease-in;
}

.btn-main:hover {
	background: #fff !important;
	color: #f7941e !important;
}

.btn-main-outline {
	padding: 10px 30px !important;
	font-size: 18px;
	border: 1px solid #f7941e;
	border-radius: 5px;
	position: relative;
	z-index: 1;
	transition: .3s ease-in;
}

.btn-main-outline:hover {
	background: #f7941e;
	color: #fff;
}


.title-divider:after {
	content: "";
	height: 4px;
	width: 33px;
	border-radius: 5px;
	background-color: #f7941e;
	position: absolute;
	left: 0;
	bottom: -50%;
	z-index: 1;
}



/* Contact Form */


.contact-area {
	background-color: #fff;
}


/* .contact-info {
	background: #fff;
	border-radius: 10px;
	text-align: left;
	padding: 20px 10px;
    margin: 20px 0;
   border: 1px solid #f7941e ; 
	-webkit-transition: 0.3s;
	transition: 0.3s;
 	-webkit-box-shadow: 0 0 11px 3px rgba(0,0,0,.05);
	box-shadow: 0 0 20px 3px rgba(0,0,0,.05); 
}

/* .contact-info:hover {
	-ms-transform: scale(1.04);
	transform: scale(1.04);
	-webkit-transform: scale(1.04);
	-webkit-font-smoothing: antialiased;
	-webkit-box-shadow: 0px 5px 10px rgba(115, 128, 157, 0.1);
	box-shadow: 0px 10px 30px rgba(115, 128, 157, 0.2);
} */

/* .contact-info:hover i.fa {
	background: #f7941e ;
	color: #fff;
	font-size: 20px;
	-webkit-transition: .3s;
	transition: .3s;
}

.contact-info i.fa {
	position: relative;
	color: #f7941e ;
	font-size: 20px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	margin-bottom: 20px;
	border: 1px dashed #f7941e ;
	border-radius: 50%;
	-webkit-transition: .3s;
	transition: .3s;
}

.contact-info p {
	font-size: 16px;
	font-weight: 400;
	padding: 0px 5px;
} */

.contact .maps iframe {
	width: 100%;
	height: 400px;
}

@media only screen and (max-width: 768px) {
	.contact .maps iframe {
		width: 90%;
		height: 400px;
	}
}


.contact-details {
	position: relative;
	padding: 10px 0px;
}

.contact-details h4 {
	font-size: 30px;
	font-weight: 600;
	position: relative;
	margin-bottom: 40px;
}


.contact-details ul.contact-info {
	margin-top: 30px;
}

.contact-details .contact-info li {
	position: relative;
	padding-left: 50px;
	line-height: 24px;
	font-weight: 400;
	margin-bottom: 30px;
}

.contact-details .contact-info h5 {
	font-size: 18px;
	color: #212121;
}

.contact-details .contact-info li i {
	font-size: 25px;
	line-height: 25px;
	color: #f7941e;
	position: absolute;
	left: 0;
	top: 0;
}

.contact-details .contact-info li a {
	color: #777777;
	display: inline-block;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.contact-details .social-icon {
	position: relative;
	display: block;
}

.contact-details .social-icon h5 {
	position: relative;
	font-size: 20px;
	line-height: 26px;
	color: #002121;
	font-weight: 600;
	margin-bottom: 40px;
}

.contact-details .social-icon li {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 24px;
	margin-right: 5px;
}

.contact-details .social-icon li:last-child {
	margin-right: 0;
}

.contact-details .social-icon li a {
	border: 1px solid #14212b;
	border-radius: 50%;
	color: #f7941e;
	background-color: #fff;
	display: inline-block;
	font-size: 14px;
	height: 35px;
	width: 35px;
	line-height: 35px;
	text-align: center;
	margin-bottom: 20px;
	-webkit-transition: all 300ms ease;
	transition: all 300ms ease;
}

.contact-details .social-icon li a:hover {
	background: #f7941e;
	color: #fff;
}

.maps {
	padding-top: 40px;
	text-align: center;
}

.maps iframe {
	max-width: 1200px;
	width: 100%;
	height: 400px;
}

@media only screen and (max-width: 768px) {
	.maps iframe {
		width: 100%;
		height: 400px;
	}
}


.contact-form h4 {
	font-weight: 600;
	font-size: 28px;
	position: relative;
	margin-bottom: 30px;
}

.contact-form p {
	margin: 0;
	padding: 0;
}

.contact-form {
	position: relative;
	text-align: left;
	width: 100%;
	padding: 40px;
	border-radius: 10px;
	border-radius: 2px;
	-webkit-box-shadow: 0 0 20px rgba(158, 158, 158, 0.16);
	box-shadow: 0 0 20px rgba(158, 158, 158, 0.16);
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="email"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group textarea,
.contact-form .form-group select {
	position: relative;
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 20px;
	color: #343a40;
	font-weight: 400;
	height: 45px;
	padding: 15px 30px;
	background-color: #f8f9fa;
	border: 1px solid #dddddd;
	border-radius: 15px;
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
}

.contact-form .form-group textarea {
	height: 100px;
	border-radius: 15px;
	resize: none;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
	border-color: #ff9f14;
	outline: none;
}

.contact-form .form-group input[type=submit],
.contact-form .form-group button {
	margin-top: 10px;
}

.contact-form .btn-send {
	font-size: 16px;
	font-weight: 600;
	margin-top: 50px;
	padding: 10px 28px;
	background-color: #f7941e;
	position: relative;
	line-height: 24px;
	color: #fff;
}

.contact-form .help-block.with-errors {
	color: #ff5050;
	margin-top: 5px;
	font-size: 13px;
}

/* Home banner Section */

.banner-area {
	overflow: hidden;
	width: 100%;
	z-index: 1;
	background-image: url("images/1.jpg");
	background-size: cover;
	background-position: center top;
}

.banner-content {
	padding: 20px 0;
}

.banner-content h1 {
	font-size: 50px;
	padding: 10px 0;
	font-weight: 600;
	line-height: 60px;
	margin-bottom: 20px;
}

.banner-content span {
	text-transform: uppercase;
	color: #f7941e;
	font-weight: 700;
	font-size: 14px;
	padding-left: 5px;
	letter-spacing: 0.6px;
}

.banner-content p {
	font-size: 17px;
	font-weight: 400;
	line-height: 30px;
	margin-bottom: 30px;
}

.banner-content .title span {
	border-bottom: 3px solid #2cdd9b;
}

.banner-content .btn-md {
	padding: 10px 20px;
	margin-top: 0.5rem;
	margin-right: 1rem;
	font-size: 16px;
}

@media (max-width: 767px) {
	.banner-content .title {
		font-size: 30px;
		padding: 15px 0;
	}

	.banner-content img {
		padding: 30px 0;
	}

	.banner-area {
		padding: 10px 0 10px 0;
	}
}



/*-- counter --*/

.counter {
	position: relative;
	display: inline-block;
	margin-top: 2px;
}


.counter .single-counter {
	float: left;
	width: 25%;
	text-align: center;
}

.counter .single-counter h2 {
	font-size: 30px;
	color: #ff2222;
	line-height: 24px;
	margin-bottom: 8px;
}

.counter .single-counter p {
	font-size: 16px;
	font-weight: 400;
	margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
	.counter .single-counter {
		width: 50%;
	}

	.counter .single-counter+.single-counter {
		border-left: none
	}

	.counter .single-counter h2 {
		font-size: 25px;
		line-height: 24px;
		margin-bottom: 8px;
	}

	.counter .single-counter p {
		font-size: 16px;
		margin-bottom: 0;
	}
}




/* Call Action */

.call-action-wrap {
	margin: 0 4%;
	text-align: center;
	border-radius: 5px;
	background-color: #f7941e;
}

.call-action-wrap h5 {
	font-size: 25px;
	line-height: 1.5;
	color: #fff;
	font-weight: 500;
	padding: 5px 0;
	text-transform: capitalize;
}

.call-action-wrap i {
	color: #495057;
	background: #fff;
	height: 50px;
	width: 50px;
	font-size: 30px;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	margin-right: 18px;
	margin-top: 0px;
	margin-left: 18px;
}

.call-action-wrap a {
	font-size: 25px;
	color: #fff;
	font-weight: 500;
	box-sizing: border-box;
	margin-top: 10px;
}

.call-action-wrap p {
	color: #fff;
	text-align: center;
}

.call-action-wrap span {
	color: #fff;
}

.call-action-wrap .btn-contact {
	padding: 8px 20px !important;
	margin: 5px 0;
	font-size: 16px;
	border-radius: 50px;
	color: #fff !important;
	background: #242f3d;
}

@media (max-width: 768px) {
	.call-action-wrap h5 {
		font-size: 20px;
		text-align: center;
	}

	.call-action-wrap i {
		font-size: 20px;
		height: 40px;
		width: 40px;
		line-height: 40px;
	}

	.call-action-wrap a {
		font-size: 20px;
		margin-top: 15px;
	}

	.call-action-wrap .btn-contact {
		font-size: 16px;
	}
}


/* Testimonial Section */


.testimonial-area {
	position: relative;
	padding: 50px 0;
	border-top: 1px solid #ebebeb;
}


.testimonial-main:before1 {
	content: "";
	background-color: #f9fbfe;
	position: absolute;
	top: 50%;
	left: 0;
	width: 50%;
	height: 50%;
}

.testimonial-main:after1 {
	content: "";
	background-color: #f9fbfe;
	position: absolute;
	top: 50%;
	right: 0;
	width: 50%;
	height: 50%
}


.testimonial-main .testimonial-content img {
	margin-top: -8%;
	margin-left: auto;
	margin-right: auto;
	width: 94px;
	height: 94px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	border: 5px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.testimonial-main .testimonial-content {
	margin-top: 2px;
}

.testimonial-main .testimonial-item {
	position: relative;
	padding: 10px;
	text-align: center;
	border-radius: 20px;
	transition: all 0.5s;
	-webkit-transition: ease all 0.55s;
	/* box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1); */
}

.testimonial-main .testimonial-item .testimonial-author:after {
	position: absolute;
	content: "''";
	font-size: 200px;
	line-height: 0;
	bottom: -25px;
	right: 30px;
	color: #5d5d5d;
	font-weight: 700;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0.1;
}

.testimonial-main .testimonial-item .fa-quote-left {
	font-size: 40px;
	line-height: 80px;
	height: 80px;
	border-radius: 50px;
	width: 80px;
	color: #f8f9fa;
	background: #f7941e;
	font-weight: 700;
	margin-bottom: 30px;
}

.testimonial-main .testimonial-item .testimonial-quote {
	padding: 0 20px;
	max-width: 700px;
	margin-top: 10px;
	line-height: 28px;
	font-size: 18px;
	font-weight: 500;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.testimonial-main .testimonial-item .testimonial-author {
	margin-top: 10px;
	position: relative;
}

.testimonial-main .testimonial-item .author-name {
	font-size: 20px;
	margin-top: 10px;
	line-height: 20px;
	font-weight: 600;
	margin-bottom: 6px;
	margin-right: 5px;
	display: inline-block;
}

.testimonial-main .testimonial-item .author-post {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 4px;
}

.testimonial-main .testimonial-item .author-rating {
	color: #ffb02b;
	font-size: 18px;
	margin-top: 4px;
}

.testimonial-main .dot-shape {
	position: absolute;
	right: -20%;
	bottom: -10%;
	z-index: 1;
	width: 10%;
	height: 60%;
}


/*
 
 .testimonial-main .testimonial-quote:before {
	position: absolute;
    content: "\f10d";
    font-family: 'Font Awesome 5 Free';
    font-size: 35px;
	font-weight: 800;
	color:#5a49f8;
	top: 10%;
    right: 0;
    left: 0;
}

.testimonial-main .testimonial-content:after {
    position: absolute;
    content: "\f10e";
    font-family: 'Font Awesome 5 Free';
    font-size: 50px;
	color:#5a49f8;
    font-weight: 700;
    right: 30px;
    bottom: 20px;
} */

.testimonial-main .line {
	background: #5a49f8;
	height: 1px;
	width: 15%;
	position: relative;
	border-radius: 1px;
	overflow: hidden;
	display: inline-block;
}

.testimonial-main .owl-nav {
	-webkit-transition: ease all 0.55s;
	transition: ease all 0.55s;
	margin: 0 5px;
}

.testimonial-main .owl-nav button {
	background: #fff !important;
	margin: 10px;
	width: 50px;
	height: 50px;
	line-height: 50px;
	outline: none;
	top: 50%;
	border: 1px solid #e0e4ed !important;
	border-radius: 50% !important;
	border: 1px solid #f3f5f8;
	box-shadow: 0 20px 30px 0 rgba(12, 0, 46, .06);
}

.testimonial-main .owl-nav button span {
	font-size: 30px;
	line-height: 30px;
	color: #495057;
}

.testimonial-main .owl-nav button:hover {
	background: #f7941e !important;
	transition: all .5s;
}

.testimonial-main .owl-nav button:hover span {
	color: #fff;
}

.testimonial-main .owl-theme .owl-controls {
	position: absolute;
	top: 38%;
	width: 100%;
	opacity: 1;
}

.testimonial-main .owl-prev {
	position: absolute;
	left: -10%;
}

.testimonial-main .owl-next {
	position: absolute;
	right: -10%;
}

@media screen and (max-width: 480px) {
	.owl-theme .owl-controls {
		top: 48%;
	}
}

@media (max-width: 767px) {

	.testimonial-main .testimonial-item {
		margin: 5px;
		padding: 30px 1px;
		box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	}

	.testimonial-main .owl-dots {
		position: relative;
		top: 0px;
		left: 0px;
	}

	.owl-prev {
		left: 0;
	}

	.owl-next {
		right: 0;
	}
}

@media only screen and (max-width: 479px) {
	.testimonial-main .testimonial-item .testimonial-author:after {
		content: "";
	}
}

/* About */

.content-img {
	margin: 0px;
	width: 100%;
	overflow: hidden;
	position: relative;
}

.content-img:before {
	content: '';
	background: #f7941e;
	display: block;
	height: 100%;
	z-index: -1;
	position: absolute;
	width: 100%;
	left: -100px;
	top: -80px;
}

.content-img img {
	padding: 20px;
	padding-right: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.content-img {
		margin-bottom: 30px;

		float: none;
	}

	.content-img img {
		padding-right: 0px;
	}
}

@media only screen and (max-width: 767px) {
	.content-img {
		margin-bottom: 30px;
		margin-right: 0;
		float: none;
		width: auto;
	}
}




.list-style-one {
	position: relative;
}

.list-style-one li {
	position: relative;
	font-size: 16px;
	line-height: 26px;
	color: #4f4e4e;
	font-weight: 400;
	padding-left: 35px;
	margin-bottom: 12px;
}

.list-style-one li:before {
	content: "\f192";
	position: absolute;
	left: 0;
	top: 0px;
	display: block;
	font-size: 18px;
	padding: 0px;
	color: #f7941e;
	font-weight: 600;
	-moz-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1.6;
	font-family: "Font Awesome 5 Free";
}

.btn-style-one {
	position: relative;
	display: inline-block;
	font-size: 16px;
	line-height: 25px;
	color: #ffffff;
	padding: 10px 30px;
	font-weight: 600;
	margin: 15px 0;
	letter-spacing: 0.02em;
	background-color: #f7941e;
}

.btn-style-one:hover {
	color: #fff;
}


.list-item {
	margin: 0px 0;
}

.list-items li {
	margin-bottom: 25px;
	padding-left: 80px;
	position: relative;
}

.list-items li i {
	margin-right: 17px;
	font-size: 35px;
	position: absolute;
	left: 0;
	top: 0;
	color: #f7941e;
}

.list-items li h4 {
	margin-bottom: 10px;
	font-size: 22px;
}

.list-items li p {
	line-height: 26px;

}


/* Contect Details */

.content-details {
	max-width: 800px;
	margin: 0 auto;
	padding-right: 60px;

}

.content-details h3 {
	font-size: 30px;
	font-weight: 600;
	position: relative;
	padding-bottom: 5px;
	line-height: 1.5;
}

.content-details .line {
	position: relative;
	height: 3px;
	width: 55px;
	background: #f7941e;
	border-radius: 5px;
	overflow: hidden;
	margin-top: 10px;
	margin-bottom: 10px;
}

.content-details span {
	color: #f7941e;
	font-size: 15px;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 15px;
}

.content-details p {
	padding-bottom: 10px;
	color: #4f4e4e;
	/*	letter-spacing: 0.4px; */
	font-size: 16px;
	font-weight: 400;
	line-height: 28px;
}


@media (max-width:576px) {
	.content-details {
		padding-right: 0;
	}

	.content-details h3 {
		font-size: 30px;
		line-height: 30px;
	}

	.content-details p {
		font-size: 16px;
	}
}



.grecaptcha-badge {
	visibility: hidden;
}

.modal-open {
	padding-right: 0px !important;
}


/* Gallery */

#gallery .gallery-thunb {
	position: relative;
	overflow: hidden;
	display: block;
	max-height: 200px;
	margin-bottom: 30px;
}

.page-link {
	color: #232323;
}

.pagination a.current {
	background: #f7941e;
	color: #fff;
}

/* Whatsapp Icon */

.floating_btn {
	position: fixed;
	bottom: 20px;
	right: 10px;
	width: 100px;
	height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}

@keyframes pulsing {
	to {
		box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
	}
}

.contact_icon {
	background-color: #42db87;
	color: #fff;
	width: 60px;
	height: 60px;
	font-size: 30px;
	border-radius: 50px;
	text-align: center;
	box-shadow: 2px 2px 3px #999;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: translatey(0px);
	animation: pulse 1.5s infinite;
	box-shadow: 0 0 0 0 #42db87;
	-webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	-moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	-ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
	font-weight: normal;
	font-family: sans-serif;
	text-decoration: none !important;
	transition: all 300ms ease-in-out;
}