/********** Template CSS **********/
:root {
	--primary: #FF5E14;
	--secondary: #5F656F;
	--light: #F5F5F5;
	--dark: #02245B;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 30px;
	bottom: 30px;
	z-index: 99;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
	font-weight: 700 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
	font-weight: 600 !important;
}

h5,
h6,
.h5,
.h6,
.fw-semi-bold {
	font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}


/*** Button ***/
.btn {
	transition: .5s;
	font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
	color: #FFFFFF;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
}


.topbar-right {
	position: relative;
	background: #36c792;
}

.topbar-right::before {
	position: absolute;
	content: "";
	width: 30px;
	height: 100%;
	top: 0;
	left: -15px;
	transform: skewX(-30deg);
	background: #36c792;
}


/*** Navbar ***/
.navbar.sticky-top {
	top: -100px;
	transition: .5s;
}

.navbar .navbar-brand {
	position: relative;
	padding-right: 50px;
	height: 100px;
	display: flex;
	align-items: center;
	background: #36c792;
}

.navbar .navbar-brand::after {
	position: absolute;
	content: "";
	width: 60px;
	height: 100%;
	top: 0;
	right: -25px;
	transform: skewX(-30deg);
	background: #36c792;
}

.navbar .navbar-nav .nav-link {
	margin-right: 25px;
	padding: 20px 0;
	color: var(--dark);
	font-size: 18px;
	font-weight: 500;
	outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: #36c792;
}

.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 8px;
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav .nav-link  {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar .navbar-nav {
		border-top: 1px solid #EEEEEE;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		border: none;
		margin-top: 0;
		top: 150%;
		opacity: 0;
		visibility: hidden;
		transition: .5s;
	}

	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}


/*** Header ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%);
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 3.5rem;
	height: 3.5rem;
	background-color: #36c792;
	border: 15px solid #36c792;
	border-radius: 3.5rem;
}

@media (max-width: 768px) {
	#header-carousel .carousel-item {
		position: relative;
		min-height: 450px;
	}

	#header-carousel .carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.page-header {
	background: linear-gradient(to right, rgba(2, 36, 91, 1) 0%, rgba(2, 36, 91, 0) 100%), url(../img/carousel-2.jpg) center center no-repeat;
	background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
	color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
	font-size: 18px;
	color: var(--light);
}


/*** Facts ***/
.facts {
	position: relative;
	margin: 6rem 0;
	background: var(--dark);
}

.facts .border {
	border-color: rgba(255, 255, 255, .1) !important;
}


/*** Features ***/
.btn-play {
	position: absolute;
	top: 50%;
	right: -30px;
	transform: translateY(-50%);
	display: block;
	box-sizing: content-box;
	width: 16px;
	height: 26px;
	border-radius: 100%;
	border: none;
	outline: none !important;
	padding: 18px 20px 20px 28px;
	background: var(--primary);
}

@media (max-width: 992px) {
	.btn-play {
		left: 50%;
		right: auto;
		transform: translate(-50%, -50%);
	}
}

.btn-play:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 60px;
	height: 60px;
	background: var(--primary);
	border-radius: 100%;
	animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 60px;
	height: 60px;
	background: var(--primary);
	border-radius: 100%;
	transition: all 200ms;
}

.btn-play span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	left: -1px;
	border-left: 16px solid #FFFFFF;
	border-top: 11px solid transparent;
	border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
		opacity: 0;
	}
}

.modal-video .modal-dialog {
	position: relative;
	max-width: 800px;
	margin: 60px auto 0 auto;
}

.modal-video .modal-body {
	position: relative;
	padding: 0px;
}

.modal-video .close {
	position: absolute;
	width: 30px;
	height: 30px;
	right: 0px;
	top: -30px;
	z-index: 999;
	font-size: 30px;
	font-weight: normal;
	color: #FFFFFF;
	background: #000000;
	opacity: 1;
}


/*** Service ***/
.service-item {
	position: relative;
	margin: 65px 0 25px 0;
	box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.service-item .service-img {
	position: absolute;
	padding: 12px;
	width: 130px;
	height: 130px;
	top: -65px;
	left: 50%;
	transform: translateX(-50%);
	background: #FFFFFF;
	box-shadow: 0 0 45px rgba(0, 0, 0, .09);
	z-index: 2;
}

.service-item .service-detail {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	z-index: 1;
}

.service-item .service-title {
	position: absolute;
	padding: 65px 30px 25px 30px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #00540a;
	transition: .5s;
	opacity: 0.8;
}

.service-item:hover .service-title {
	top: -100%;
}

.service-item .service-text {
	position: absolute;
	overflow: hidden;
	padding: 65px 30px 25px 30px;
	width: 100%;
	height: 100%;
	top: 100%;
	left: 0;
	display: flex;
	align-items: center;
	text-align: center;
	background: rgba(2, 36, 91, .7);
	transition: .5s;
}

.service-item:hover .service-text {
	top: 0;
}

.service-item .service-text::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100px;
	top: -100%;
	left: 0;
	transform: skewY(-12deg);
	background: #FFFFFF;
	transition: .5s;
}

.service-item:hover .service-text::before {
	top: -55px;
}

.service-item .btn {
	position: absolute;
	width: 130px;
	height: 50px;
	left: 50%;
	bottom: -25px;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background: #36c792;
	border: none;
	box-shadow: 0 0 45px rgba(0, 0, 0, .09);
	z-index: 2;
	border-radius: 5px
}

.service-item .btn:hover {
	color: #FFFFFF;
	background: var(--primary);
}


/*** Project ***/
.project-carousel {
	position: relative;
	background: var(--dark);
}

.project-item {
	position: relative;
	display: block;
}

.project-item img {
	transition: .5s;
}

.project-item:hover img,
.project-carousel .owl-item.center img {
	margin-top: -60px;
}

.project-item .project-title {
	position: absolute;
	padding: 0 15px;
	width: 100%;
	height: 80px;
	bottom: -110px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--dark);
	transition: .5s;
}

.project-item:hover .project-title,
.project-carousel .owl-item.center .project-title  {
	bottom: -60px;
}

.project-item .project-title::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 30px;
	top: -15px;
	left: 0;
	transform: skewY(-5deg);
	background: var(--dark);
	transition: .5s;
}

.project-carousel .owl-nav {
	position: absolute;
	width: 100%;
	height: 45px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	transition: .5s;
	opacity: 0;
	z-index: 1;
}

.project-carousel:hover .owl-nav {
	opacity: 1;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
	margin: 0 30px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: #36c792;
	border-radius: 45px;
	font-size: 22px;
	transition: .5s;
}


/*** Team ***/
.team-item .team-social {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: -100%;
	display: flex;
	align-items: center;
	background: var(--primary);
	transition: .5s;
}

.team-item:hover .team-social {
	left: 0;
}


/*** Testimonial ***/
.testimonial-carousel::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}

.testimonial-carousel::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	height: 100%;
	width: 0;
	background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
}

@media (min-width: 768px) {
	.testimonial-carousel::before,
	.testimonial-carousel::after {
		width: 200px;
	}
}

@media (min-width: 992px) {
	.testimonial-carousel::before,
	.testimonial-carousel::after {
		width: 300px;
	}
}

.testimonial-carousel .owl-nav {
	position: absolute;
	width: 350px;
	top: 55px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: space-between;
	opacity: 0;
	transition: .5s;
	z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
	width: 750px;
	opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
	position: relative;
	color: var(--primary);
	font-size: 45px;
	transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
	color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
	width: 100px;
	height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
	position: absolute;
	bottom: -19px;
	left: 50%;
	transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
	margin-bottom: 30px;
	box-shadow: 0 0 45px rgba(0, 0, 0, .08);
	transform: scale(.8);
	transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
	transform: scale(1);
}


/*** Footer ***/
.footer {
	color: #B0B9AE;
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: #B0B9AE;
	font-weight: normal;
	text-transform: capitalize;
	transition: .3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	color: var(--light);
	letter-spacing: 1px;
	box-shadow: none;
}

.copyright {
	color: #B0B9AE;
	border-top: 1px solid rgba(255, 255, 255, .1);
}

.carousel-item{
	height: 850px;
}

.display-1 {
	font-size: 55px;
}

.btn-primary {
	color: #ffffff;
	background-color: #36c792;
	border-color: #36c792 ; 
	border-radius: 30px;
}

.text-primary {
	color: #36c792 !important;
}

.bg-primary {
	background-color: #36c792 !important;
}

.p-5{

	border: 2px dotted #36c792;
}

h3.mb-0{
	margin-bottom: 0 !important;
	color: #fff;
	opacity: 1;
}

a {
	color: #36c792;
	text-decoration: none;
}


.box {
	align-self: flex-end;
	animation-duration: 5s;
	animation-iteration-count: infinite;

	margin: 0 auto 0 auto;
	transform-origin: bottom;

}
.bounce-1 {
	animation-name: bounce-1;
	animation-timing-function: linear;
}
@keyframes bounce-1 {
	0%   { transform: translateY(0); }
	50%  { transform: translateY(-20px); }
	100% { transform: translateY(0); }
}

.display-3  {
	color: #fff !important;
	font-size: 38px;
}

ul.subpage li{
	margin-bottom: 16px;
}

h1.display0{
	font-size: 30px;
}

.blog-post .blog-img .overlay,
.blog-post .blog-img .post-meta {
	position: absolute;
	opacity: 0;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.blog-post .blog-img .overlay {
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.blog-post .blog-img .post-meta {
	bottom: 5%;
	right: 5%;
	z-index: 1;
}

.blog-post .blog-img .post-meta .read-more:hover {
	color: #6dc77a !important;
}

.blog-post .content h1, .blog-post .content h2, .blog-post .content h3, .blog-post .content h4, .blog-post .content h5, .blog-post .content h6 {
	line-height: 1.2;
}

.blog-post .content .title {
	font-size: 18px;
}

.blog-post .content .title:hover {
	color: #6dc77a !important;
}

.blog-post .content .author .name:hover {
	color: #6dc77a !important;
}

.blog-post:hover {
	-webkit-transform: translateY(-7px);
	transform: translateY(-7px);
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
}

.blog-post:hover .blog-img .overlay {
	opacity: 0.65;
}

.blog-post:hover .blog-img .post-meta {
	opacity: 1;
}

.blog-post .post-meta .like i,
.profile-post .like i {
	-webkit-text-stroke: 2px #dd2427;
	-webkit-text-fill-color: transparent;
}

.blog-post .post-meta .like:active i, .blog-post .post-meta .like:focus i,
.profile-post .like:active i,
.profile-post .like:focus i {
	-webkit-text-stroke: 0px #dd2427;
	-webkit-text-fill-color: #dd2427;
}

.avatar.avatar-ex-sm {
	height: 36px;
}
.shadow {
	-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
}

.text-muted {
	color: #8492a6 !important;
}


.para-desc {
	max-width: 600px;
}
.text-muted {
	color: #8492a6 !important;
}

.section-title .title {
	letter-spacing: 0.5px;
	font-size: 30px;
}

.gray-bg {
	background-color: #f5f5f5;
}
/* Blog 
---------------------*/
.blog-grid {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	margin-top: 15px;
	margin-bottom: 15px;
}
.blog-grid .blog-img {
	position: relative;
}
.blog-grid .blog-img .date {
	position: absolute;
	background: #fc5356;
	color: #ffffff;
	padding: 8px 15px;
	left: 10px;
	top: 10px;
	border-radius: 4px;
}
.blog-grid .blog-img .date span {
	font-size: 22px;
	display: block;
	line-height: 22px;
	font-weight: 700;
}
.blog-grid .blog-img .date label {
	font-size: 14px;
	margin: 0;
}
.blog-grid .blog-info {
	padding: 20px;
}
.blog-grid .blog-info h5 {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 10px;
}
.blog-grid .blog-info h5 a {
	color: #20247b;
}
.blog-grid .blog-info p {
	margin: 0;
}
.blog-grid .blog-info .btn-bar {
	margin-top: 20px;
}


/* Blog Sidebar
-------------------*/
.blog-aside .widget {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	margin-top: 15px;
	margin-bottom: 15px;
	width: 100%;
	display: inline-block;
	vertical-align: top;
}
.blog-aside .widget-body {
	padding: 15px;
}
.blog-aside .widget-title {
	padding: 15px;
	border-bottom: 1px solid #eee;
}
.blog-aside .widget-title h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fc5356;
	margin: 0;
}
.blog-aside .widget-author .media {
	margin-bottom: 15px;
}
.blog-aside .widget-author p {
	font-size: 16px;
	margin: 0;
}
.blog-aside .widget-author .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	overflow: hidden;
}
.blog-aside .widget-author h6 {
	font-weight: 600;
	color: #20247b;
	font-size: 22px;
	margin: 0;
	padding-left: 20px;
}
.blog-aside .post-aside {
	margin-bottom: 15px;
}
.blog-aside .post-aside .post-aside-title h5 {
	margin: 0;
}
.blog-aside .post-aside .post-aside-title a {
	font-size: 18px;
	color: #20247b;
	font-weight: 600;
}
.blog-aside .post-aside .post-aside-meta {
	padding-bottom: 10px;
}
.blog-aside .post-aside .post-aside-meta a {
	color: #6F8BA4;
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 10px;
}
.blog-aside .latest-post-aside + .latest-post-aside {
	border-top: 1px solid #eee;
	padding-top: 15px;
	margin-top: 15px;
}
.blog-aside .latest-post-aside .lpa-right {
	width: 90px;
}
.blog-aside .latest-post-aside .lpa-right img {
	border-radius: 3px;
}
.blog-aside .latest-post-aside .lpa-left {
	padding-right: 15px;
}
.blog-aside .latest-post-aside .lpa-title h5 {
	margin: 0;
	font-size: 15px;
}
.blog-aside .latest-post-aside .lpa-title a {
	color: #20247b;
	font-weight: 600;
}
.blog-aside .latest-post-aside .lpa-meta a {
	color: #6F8BA4;
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
	margin-right: 10px;
}

.tag-cloud a {
	padding: 4px 15px;
	font-size: 13px;
	color: #ffffff;
	background: #20247b;
	border-radius: 3px;
	margin-right: 4px;
	margin-bottom: 4px;
}
.tag-cloud a:hover {
	background: #fc5356;
}

.blog-single {
	padding-top: 30px;
	padding-bottom: 30px;
}

.article {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	padding: 15px;
	margin: 15px 0 30px;
}
.article .article-title {
	padding: 15px 0 20px;
}
.article .article-title h6 {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 20px;
}
.article .article-title h6 a {
	text-transform: uppercase;
	color: #fc5356;
	border-bottom: 1px solid #fc5356;
}
.article .article-title h2 {
	color: #20247b;
	font-weight: 600;
}
.article .article-title .media {
	padding-top: 15px;
	border-bottom: 1px dashed #ddd;
	padding-bottom: 20px;
}
.article .article-title .media .avatar {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	overflow: hidden;
}
.article .article-title .media .media-body {
	padding-left: 8px;
}
.article .article-title .media .media-body label {
	font-weight: 600;
	color: #fc5356;
	margin: 0;
}
.article .article-title .media .media-body span {
	display: block;
	font-size: 12px;
}
.article .article-content h1,
.article .article-content h2,
.article .article-content h3,
.article .article-content h4,
.article .article-content h5,
.article .article-content h6 {
	color: #20247b;
	font-weight: 600;
	margin-bottom: 15px;
}
.article .article-content blockquote {
	max-width: 600px;
	padding: 15px 0 30px 0;
	margin: 0;
}
.article .article-content blockquote p {
	font-size: 20px;
	font-weight: 500;
	color: #fc5356;
	margin: 0;
}
.article .article-content blockquote .blockquote-footer {
	color: #20247b;
	font-size: 16px;
}
.article .article-content blockquote .blockquote-footer cite {
	font-weight: 600;
}
.article .tag-cloud {
	padding-top: 10px;
}

.article-comment {
	box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
	border-radius: 5px;
	overflow: hidden;
	background: #ffffff;
	padding: 20px;
}
.article-comment h4 {
	color: #20247b;
	font-weight: 700;
	margin-bottom: 25px;
	font-size: 22px;
}
img {
	max-width: 100%;
}
img {
	vertical-align: middle;
	border-style: none;
}

/* Contact Us
---------------------*/
.contact-name {
	margin-bottom: 30px;
}
.contact-name h5 {
	font-size: 22px;
	color: #20247b;
	margin-bottom: 5px;
	font-weight: 600;
}
.contact-name p {
	font-size: 18px;
	margin: 0;
}

.social-share a {
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	color: #ffffff;
	text-align: center;
	margin-right: 10px;
}
.social-share .dribbble {
	box-shadow: 0 8px 30px -4px rgba(234, 76, 137, 0.5);
	background-color: #ea4c89;
}
.social-share .behance {
	box-shadow: 0 8px 30px -4px rgba(0, 103, 255, 0.5);
	background-color: #0067ff;
}
.social-share .linkedin {
	box-shadow: 0 8px 30px -4px rgba(1, 119, 172, 0.5);
	background-color: #0177ac;
}

.contact-form .form-control {
	border: none;
	border-bottom: 1px solid #20247b;
	background: transparent;
	border-radius: 0;
	padding-left: 0;
	box-shadow: none !important;
}
.contact-form .form-control:focus {
	border-bottom: 1px solid #fc5356;
}
.contact-form .form-control.invalid {
	border-bottom: 1px solid #ff0000;
}
.contact-form .send {
	margin-top: 20px;
}
@media (max-width: 767px) {
	.contact-form .send {
		margin-bottom: 20px;
	}
}

.section-title h2 {
	font-weight: 700;
	color: #20247b;
	font-size: 45px;
	margin: 0 0 15px;
	border-left: 5px solid #fc5356;
	padding-left: 15px;
}
.section-title {
	padding-bottom: 45px;
}
.contact-form .send {
	margin-top: 20px;
}
.px-btn {
	padding: 0 50px 0 20px;
	line-height: 60px;
	position: relative;
	display: inline-block;
	color: #20247b;
	background: none;
	border: none;
}
.px-btn:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	border-radius: 30px;
	background: transparent;
	border: 1px solid rgba(252, 83, 86, 0.6);
	border-right: 1px solid transparent;
	-moz-transition: ease all 0.35s;
	-o-transition: ease all 0.35s;
	-webkit-transition: ease all 0.35s;
	transition: ease all 0.35s;
	width: 60px;
	height: 60px;
}
.px-btn .arrow {
	width: 13px;
	height: 2px;
	background: currentColor;
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 25px;
}
.px-btn .arrow:after {
	width: 8px;
	height: 8px;
	border-right: 2px solid currentColor;
	border-top: 2px solid currentColor;
	content: "";
	position: absolute;
	top: -3px;
	right: 0;
	display: inline-block;
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* Apurba Code */
ul#menu-main-menu li.active a {
	color: #36c792!important;
}
.topbar-right a {
	color: #fff;
}
.footer-menu ul{list-style:none;padding: 0px;}
.footer-menu ul li .dropdown-item {
	position: relative;
	bottom: 25px;
	color: #fff;
	padding: 0px 0px 0px 15px;
}
.dropdown-item:hover, .dropdown-item:focus{background-color: #e9ecef00!important;}
ul.sub-ul li a{padding:5px 0px 5px 15px!important;}

.testimonial-item blockquote {
	border: 0;
	margin: 0;
	padding: 0;
	background: none;
	font-family: Georgia, serif;
	box-sizing: border-box;
	line-height: 1.4 !important;
	margin: 0;
	position: relative;
	text-shadow: 0 1px white;
	z-index: 600;
}
.testimonial-item blockquote p:first-child:before {
	content: '\201C';
	color: #36c792;
	font-size: 7.5em;
	font-weight: 700;
	opacity: .3;
	position: absolute;
	top: -.4em;
	left: -.2em;    
	text-shadow: none;
	z-index: -300;
}

#menu-item-39{
	    color: #000;
    font-size: 20px;
    padding-top: 19px;
    margin-right: 18px;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .navbar.sticky-top {
    width: 100%;
  }
	
	.navbar-brand::after{
		display:none
	}
	.navbar .navbar-brand{
		    width: 290px;
	}
	
	.navbar-light .navbar-toggler{
		position: absolute;
    right: 0px;
    top: 30px;
	}
	
	#menu-item-39{
		    padding-top: 0;
	}
	
	.navbar .navbar-nav .nav-link{
		font-size:15px;
	}
	#menu-item-39 a{
		font-size:15px;
	}
	
	.display-1 {
    font-size: 35px;
}
	
	.slick-slide {
    margin: 0px 5px;
}
}


a.whastapp_no {
   float: right;
    position: fixed;
    right: 30px;
    bottom: 20px;
}
