/********** Template CSS **********/
:root {
	--primary: #355EFC;
	--secondary: #E93C05;
	--tertiary: #555555;
	--light: #DFE4FD;
	--dark: #011A41;
}

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

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

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

h5,
.h5,
h6,
.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;
}

.hero-header {
	margin-top: -30px;
	background: url(../img/bg-hero.png) center center no-repeat;
	background-size: cover;
}

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

.bg-prime {
	/* background-color: #1363c6 !important; */
	background-color: #808386 !important;
}

.bg-lig {
	background-color: #f4f7fe !important;
}

.text-prime {
	color: #ff5733;
}

.btn-prime {
	color: #fff;
	background-color: #ff5733;
	border-color: #355EFC;
}

.btn-green {
	background-color: #20c997;
	color: white;
	border-color: white;
}

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

.btn-primary,
.btn-outline-primary:hover {
	color: var(--light);
}

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


/*** Navbar ***/
.fixed-top {
	transition: .5s;
}

.top-bar {
	height: 45px;
	border-bottom: 1px solid rgba(53, 94, 252, .07);
}

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

.navbar .navbar-nav .nav-link {
	padding: 25px 15px;
	color: var(--tertiary);
	font-weight: 500;
	outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
	color: var(--primary);
}

@media (max-width: 991.98px) {
	.navbar .navbar-nav {
		margin-top: 10px;
		border-top: 1px solid rgba(0, 0, 0, .07);
		background: #FFFFFF;
	}

	.navbar .navbar-nav .nav-link {
		padding: 10px 0;
	}
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		visibility: hidden;
		top: 100%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
		transition: .5s;
		opacity: 0;
	}

	.navbar .nav-item:hover .dropdown-menu {
		transform: rotateX(0deg);
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}


/*** Header ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: start;
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 3rem;
	height: 3rem;
	background-color: var(--primary);
	border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
	border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
	border-radius: 3rem 0 0 3rem;
}

@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 {
	padding-top: 12rem;
	padding-bottom: 6rem;
	background: url(../img/header.jpg) top left no-repeat;
	background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
	font-weight: 500;
}

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


/*** Facts ***/
.facts {
	background: linear-gradient(rgba(217, 220, 229, 0.95), rgba(59, 69, 111, 0.95)), url(../img/bg.png);
}


/*** Callback ***/
.callback {
	position: relative;
}

.callback::before {
	position: absolute;
	content: "";
	width: 100%;
	height: 50%;
	top: 0;
	left: 0;
	background: linear-gradient(rgba(217, 220, 229, 0.95), rgba(59, 69, 111, 0.95)), url(../img/bg.png);
	z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
	transition: .5s;
}

.feature .feature-box:hover {
	background: var(--primary);
	border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
	color: #FFFFFF !important;
}

/*** Service ***/
.service-item {
	position: relative;
	padding: 45px 30px;
	background: #FFFFFF;
	transition: .5s;
}

.service-item:hover {
	/* background: var(--primary); */
	background: #20c997;
}

.service-item .service-icon {
	margin: 0 auto 20px auto;
	width: 90px;
	height: 90px;
	color: var(--primary);
	background: var(--light);
	transition: .5s;
}

.service-item:hover .service-icon {
	background: #FFFFFF;
}

.service-item h5,
.service-item p {
	transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
	color: #FFFFFF;
}

.service-item a.btn {
	position: relative;
	display: flex;
	color: var(--primary);
	transition: .5s;
	z-index: 1;
}

.service-item:hover a.btn {
	color: var(--primary);
}

.service-item a.btn::before {
	position: absolute;
	content: "";
	width: 35px;
	height: 35px;
	top: 0;
	left: 0;
	border-radius: 35px;
	background: var(--light);
	transition: .5s;
	z-index: -1;
}

.service-item:hover a.btn::before {
	width: 100%;
	background: var(--light);
}


/*** Project ***/
.project-item,
.project-item .project-img {
	position: relative;
}

.project-item .project-img a {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(255, 255, 255, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	opacity: 0;
	transition: .5s;
}

.project-item:hover .project-img a {
	opacity: 1;
}

.project-item .project-title {
	position: absolute;
	top: 3rem;
	right: 0;
	bottom: 0;
	left: 3rem;
	border: 1px solid var(--light);
	border-radius: 8px;
	display: flex;
	align-items: flex-end;
	padding: 18px;
	z-index: -1;
	transition: .5s;
}

.project-item:hover .project-title {
	background: var(--primary);
	border-color: var(--primary);
}

.project-item .project-title h4 {
	transition: .5s;
}

.project-item:hover .project-title h4 {
	color: #FFFFFF;
}

.project-carousel .owl-nav {
	margin-top: 25px;
	display: flex;
	justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
	margin: 0 12px;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	background: var(--light);
	border-radius: 45px;
	font-size: 22px;
	transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
	background: var(--primary);
	color: var(--light);
}


/*** Team ***/
.team-item {
	position: relative;
	padding: 4rem 0;
}

.team-item img {
	position: relative;
	z-index: 2;
}

.team-item .team-text {
	position: absolute;
	top: 0;
	right: 3rem;
	bottom: 0;
	left: 3rem;
	padding: 15px;
	border: 1px solid var(--light);
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	transition: .5s;
	z-index: 1;
}

.team-item:hover .team-text {
	background: var(--primary);
	border-color: var(--primary);
}

.team-item .team-text h4 {
	transition: .5s;
}

.team-item:hover .team-text h4 {
	color: #FFFFFF;
}

.team-item .team-social .btn {
	background: var(--light);
	color: var(--primary);
}

.team-item:hover .team-social .btn {
	background: #FFFFFF;
}

.team-item .team-social .btn:hover {
	background: var(--primary);
	color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
	position: relative;
	text-align: center;
	padding-top: 30px;
}

.testimonial-item .testimonial-text {
	position: relative;
	text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
	position: absolute;
	width: 60px;
	height: 60px;
	top: -30px;
	left: 50%;
	transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
	position: absolute;
	content: "";
	bottom: -60px;
	left: 50%;
	transform: translateX(-50%);
	border: 30px solid;
	border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
	position: absolute;
	content: "";
	bottom: -59px;
	left: 50%;
	transform: translateX(-50%);
	border: 30px solid;
	border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
	margin: 0 auto;
	width: 100px;
	height: 100px;
}

.testimonial-carousel .owl-dots {
	margin-top: 25px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.testimonial-carousel .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: 30px;
	height: 30px;
	border: 1px solid var(--light);
	border-radius: 30px;
	transition: .5s;
}

.testimonial-carousel .owl-dot::after {
	position: absolute;
	content: "";
	width: 16px;
	height: 16px;
	top: 6px;
	left: 6px;
	border-radius: 16px;
	background: var(--light);
	transition: .5s;
}

.testimonial-carousel .owl-dot.active {
	border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
	background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: var(--light);
	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(--primary);
	letter-spacing: 1px;
	box-shadow: none;
}

.copyright {
	color: var(--light);
	background: #000B1C;
}

.copyright a {
	color: var(--light);
}

.copyright a:hover {
	color: var(--primary);
}

/* adding new css*/
.features-1 {
	padding-top: 30px;
	position: relative;
	z-index: 8;
	text-align: center;
	/* background-color: rgba(0, 32, 74, 0.05); } */
	background-color: #eef2f2;
}

.box-feature {
	background: #fff;
	border-radius: 4px;
	padding: 30px;
	margin-bottom: 30px;
}

.box-feature h3,
.box-feature .h3 {
	font-size: 16px;
	margin: 0;
	padding: 0;
}

.box-feature [class^="flaticon-"] {
	color: #00204a;
	font-size: 60px;
	margin: 0 0 10px 0;
	display: block;
	padding: 0;
	line-height: 0;
}

.blog_details {
	padding: 30px 0 20px 10px;
	box-shadow: 0px 10px 20px 0px rgba(221, 221, 221, 0.3)
}

@media (min-width: 768px) {
	.blog_details {
		padding: 60px 30px 35px 35px
	}
}

.blog_details p {
	margin-bottom: 30px
}

.blog_details a {
	color: #080808
}

.blog_details a:hover {
	color: #FF9F67
}

.blog_details h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 8px
}

@media (min-width: 768px) {
	.blog_details h2 {
		font-size: 24px;
		margin-bottom: 15px
	}
}

.blog-info-link li {
	float: left;
	font-size: 14px
}

.blog-info-link li a {
	color: #999999
}

.blog-info-link li i,
.blog-info-link li span {
	font-size: 13px;
	margin-right: 5px
}

.blog-info-link li::after {
	content: "|";
	padding-left: 10px;
	padding-right: 10px
}

.blog-info-link li:last-child::after {
	display: none
}

.blog-info-link::after {
	content: "";
	display: block;
	clear: both;
	display: table
}

.blog_item_img {
	position: relative
}

.blog_item_img .blog_item_date {
	position: absolute;
	bottom: -10px;
	left: 10px;
	display: block;
	color: #fff;
	background-color: #C86FFF;
	padding: 8px 15px;
	border-radius: 5px
}

@media (min-width: 768px) {
	.blog_item_img .blog_item_date {
		bottom: -20px;
		left: 40px;
		padding: 13px 30px
	}
}

.blog_item_img .blog_item_date h3 {
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin-bottom: 0;
	line-height: 1.2
}

@media (min-width: 768px) {
	.blog_item_img .blog_item_date h3 {
		font-size: 30px
	}
}

.blog_item_img .blog_item_date p {
	font-size: 18px;
	margin-bottom: 0;
	color: #fff
}

@media (min-width: 768px) {
	.blog_item_img .blog_item_date p {
		font-size: 18px
	}
}

.blog_right_sidebar .widget_title {
	font-size: 20px;
	margin-bottom: 40px
}

.blog_right_sidebar .widget_title::after {
	content: "";
	display: block;
	padding-top: 15px;
	border-bottom: 1px solid #f0e9ff
}

.blog_right_sidebar .single_sidebar_widget {
	background: #fbf9ff;
	padding: 30px;
	margin-bottom: 30px
}

.blog_right_sidebar .single_sidebar_widget .btn_1 {
	margin-top: 0px
}

.blog_right_sidebar .search_widget .form-control {
	height: 50px;
	border-color: #f0e9ff;
	font-size: 13px;
	color: #999999;
	padding-left: 20px;
	border-radius: 0;
	border-right: 0
}

.blog_right_sidebar .search_widget .form-control::placeholder {
	color: #999999
}

.blog_right_sidebar .search_widget .form-control:focus {
	border-color: #f0e9ff;
	outline: 0;
	box-shadow: none
}

.blog_right_sidebar .search_widget .input-group button {
	background: #C86FFF;
	border-left: 0;
	border: 1px solid #f0e9ff;
	padding: 4px 15px;
	border-left: 0;
	cursor: pointer
}

.blog_right_sidebar .search_widget .input-group button i {
	color: #fff
}

.blog_right_sidebar .search_widget .input-group button span {
	font-size: 14px;
	color: #999999
}

.blog_right_sidebar .newsletter_widget .form-control {
	height: 50px;
	border-color: #f0e9ff;
	font-size: 13px;
	color: #999999;
	padding-left: 20px;
	border-radius: 0
}

.blog_right_sidebar .newsletter_widget .form-control::placeholder {
	color: #999999
}

.blog_right_sidebar .newsletter_widget .form-control:focus {
	border-color: #f0e9ff;
	outline: 0;
	box-shadow: none
}

.blog_right_sidebar .newsletter_widget .input-group button {
	background: #fff;
	border-left: 0;
	border: 1px solid #f0e9ff;
	padding: 4px 15px;
	border-left: 0
}

.blog_right_sidebar .newsletter_widget .input-group button i,
.blog_right_sidebar .newsletter_widget .input-group button span {
	font-size: 14px;
	color: #fff
}

.blog_right_sidebar .post_category_widget .cat-list li {
	border-bottom: 1px solid #f0e9ff;
	transition: all 0.3s ease 0s;
	padding-bottom: 12px
}

.blog_right_sidebar .post_category_widget .cat-list li:last-child {
	border-bottom: 0
}

.blog_right_sidebar .post_category_widget .cat-list li a {
	font-size: 14px;
	line-height: 20px;
	color: #888888
}

.blog_right_sidebar .post_category_widget .cat-list li a p {
	margin-bottom: 0px
}

.blog_right_sidebar .post_category_widget .cat-list li+li {
	padding-top: 15px
}

.blog_right_sidebar .popular_post_widget .post_item .media-body {
	justify-content: center;
	align-self: center;
	padding-left: 20px
}

.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
	font-size: 16px;
	line-height: 20px;
	margin-bottom: 6px;
	transition: all 0.3s linear
}

.blog_right_sidebar .popular_post_widget .post_item .media-body a:hover {
	color: #fff
}

.blog_right_sidebar .popular_post_widget .post_item .media-body p {
	font-size: 14px;
	line-height: 21px;
	margin-bottom: 0px
}

.blog_right_sidebar .popular_post_widget .post_item+.post_item {
	margin-top: 20px
}

.blog_right_sidebar .tag_cloud_widget ul li {
	display: inline-block
}

.blog_right_sidebar .tag_cloud_widget ul li a {
	display: inline-block;
	border: 1px solid #eeeeee;
	background: #fff;
	padding: 4px 20px;
	margin-bottom: 8px;
	margin-right: 3px;
	transition: all 0.3s ease 0s;
	color: #888888;
	font-size: 13px
}

.blog_right_sidebar .tag_cloud_widget ul li a:hover {
	background: #C86FFF;
	color: #fff !important;
	-webkit-text-fill-color: #fff;
	text-decoration: none;
	-webkit-transition: 0.5s;
	transition: 0.5s
}

.blog_right_sidebar .instagram_feeds .instagram_row {
	display: flex;
	margin-right: -6px;
	margin-left: -6px
}

.blog_right_sidebar .instagram_feeds .instagram_row li {
	width: 33.33%;
	float: left;
	padding-right: 6px;
	padding-left: 6px;
	margin-bottom: 15px
}

.blog_right_sidebar .br {
	width: 100%;
	height: 1px;
	background: #eee;
	margin: 30px 0px
}

.blog-pagination {
	margin-top: 80px
}

.blog-pagination .page-link {
	font-size: 14px;
	position: relative;
	display: block;
	padding: 0;
	text-align: center;
	margin-left: -1px;
	line-height: 45px;
	width: 45px;
	height: 45px;
	border-radius: 0 !important;
	color: #8a8a8a;
	border: 1px solid #f0e9ff;
	margin-right: 10px
}

.blog-pagination .page-link i,
.blog-pagination .page-link span{
	font-size: 13px
}

.blog-pagination .page-item.active .page-link{
	background-color: #fbf9ff;
	border-color: #f0e9ff;
	color: #888888
}

.blog-pagination .page-item:last-child .page-link {
	margin-right: 0
}

.single-post-area .blog_details {
	box-shadow: none;
	padding: 0
}

.single-post-area .social-links {
	padding-top: 10px
}

.single-post-area .social-links li {
	display: inline-block;
	margin-bottom: 10px
}

.single-post-area .social-links li a {
	color: #cccccc;
	padding: 7px;
	font-size: 14px;
	transition: all 0.2s linear
}

.single-post-area .blog_details {
	padding-top: 26px
}

.single-post-area .blog_details p {
	margin-bottom: 20px;
	font-size: 15px
}

.single-post-area .quote-wrapper {
	background: rgba(130, 139, 178, 0.1);
	padding: 15px;
	line-height: 1.733;
	color: #888888;
	font-style: italic;
	margin-top: 25px;
	margin-bottom: 25px
}

@media (min-width: 768px) {
	.single-post-area .quote-wrapper {
		padding: 30px
	}
}

.single-post-area .quotes {
	background: #fff;
	padding: 15px 15px 15px 20px;
	border-left: 2px solid
}

@media (min-width: 768px) {
	.single-post-area .quotes {
		padding: 25px 25px 25px 30px
	}
}

.single-post-area .arrow {
	position: absolute
}

.single-post-area .arrow .lnr {
	font-size: 20px;
	font-weight: 600
}

.single-post-area .thumb .overlay-bg {
	background: rgba(0, 0, 0, 0.8)
}

.single-post-area .navigation-top {
	padding-top: 15px;
	border-top: 1px solid #f0e9ff
}

.single-post-area .navigation-top p {
	margin-bottom: 0
}

.single-post-area .navigation-top .like-info {
	font-size: 14px
}

.single-post-area .navigation-top .like-info i,
.single-post-area .navigation-top .like-info span {
	font-size: 16px;
	margin-right: 5px
}

.single-post-area .navigation-top .comment-count {
	font-size: 14px
}

.single-post-area .navigation-top .comment-count i,
.single-post-area .navigation-top .comment-count span {
	font-size: 16px;
	margin-right: 5px
}

.single-post-area .navigation-top .social-icons li {
	display: inline-block;
	margin-right: 15px
}

.single-post-area .navigation-top .social-icons li:last-child {
	margin: 0
}

.single-post-area .navigation-top .social-icons li i,
.single-post-area .navigation-top .social-icons li span {
	font-size: 14px;
	color: #999999
}

.single-post-area .blog-author {
	padding: 40px 30px;
	background: #fbf9ff;
	margin-top: 50px
}

@media (max-width: 600px) {
	.single-post-area .blog-author {
		padding: 20px 8px
	}
}

.single-post-area .blog-author img {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	margin-right: 30px
}

@media (max-width: 600px) {
	.single-post-area .blog-author img {
		margin-right: 15px;
		width: 45px;
		height: 45px
	}
}

.single-post-area .blog-author a {
	display: inline-block
}

.single-post-area .blog-author a:hover {
	color: #FF9F67
}

.single-post-area .blog-author p {
	margin-bottom: 0;
	font-size: 15px
}

.single-post-area .blog-author h4 {
	font-size: 16px
}

.single-post-area .navigation-area {
	border-bottom: 1px solid #eee;
	padding-bottom: 30px;
	margin-top: 55px
}

.single-post-area .navigation-area p {
	margin-bottom: 0px
}

.single-post-area .navigation-area h4 {
	font-size: 18px;
	line-height: 25px
}

.single-post-area .navigation-area .nav-left {
	text-align: left
}

.single-post-area .navigation-area .nav-left .thumb {
	margin-right: 20px;
	background: #000
}

.single-post-area .navigation-area .nav-left .thumb img {
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s
}

.single-post-area .navigation-area .nav-left .lnr {
	margin-left: 20px;
	opacity: 0;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s
}

.single-post-area .navigation-area .nav-left:hover .lnr {
	opacity: 1
}

.single-post-area .navigation-area .nav-left:hover .thumb img {
	opacity: .5
}

@media (max-width: 767px) {
	.single-post-area .navigation-area .nav-left {
		margin-bottom: 30px
	}
}

.single-post-area .navigation-area .nav-right {
	text-align: right
}

.single-post-area .navigation-area .nav-right .thumb {
	margin-left: 20px;
	background: #000
}

.single-post-area .navigation-area .nav-right .thumb img {
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s
}

.single-post-area .navigation-area .nav-right .lnr {
	margin-right: 20px;
	opacity: 0;
	-webkit-transition: .3s;
	-moz-transition: .3s;
	-o-transition: .3s;
	transition: .3s
}

.single-post-area .navigation-area .nav-right:hover .lnr {
	opacity: 1
}

.single-post-area .navigation-area .nav-right:hover .thumb img {
	opacity: .5
}

@media (max-width: 991px) {
	.single-post-area .sidebar-widgets {
		padding-bottom: 0px
	}
}
/* Podcast */
	.podcaster {
		line-height: 1;
	}

	.podcaster .small {
		font-size: 12px;
		color: #ccc;
	}

	.play-wrap {
		margin-top: -70px;
	}

	@media (max-width: 991.98px) {
		.hero h1 {
			font-size: 40px !important;
		}
	}
    .podcast-entry {
	-webkit-box-shadow: 0 5px 40px -10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 5px 40px -10px rgba(0, 0, 0, 0.1);
	border-radius: 4px;
	overflow: hidden;
}

.podcast-entry .sep {
	margin-left: 5px;
	margin-right: 5px;
	color: #ccc;
}

.podcast-entry .image {
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: 300px;
}

@media (min-width: 768px) {
	.podcast-entry .image {
		width: 300px;
		height: auto;
	}
}

.podcast-entry .text {
	width: 100%;
	padding: 40px;
}

.podcast-entry .text a {
	color: #3ca59d;
}

@media (min-width: 768px) {
	.podcast-entry .text {
		width: calc(100% - 300px);
	}
}
.text-black-opacity-05 {
    color: rgba(0, 0, 0, 0.5);
}
.player {
	position: relative;
}

.player img {
	max-width: 100px;
	border-radius: 50%;
	margin-bottom: 20px;
}

.player .team-number {
	position: absolute;
	width: 30px;
	height: 30px;
	background: #3ca59d;
	border-radius: 50%;
	color: #fff;
}

.player .team-number>span {
	position: absolute;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
}

.player h2 {
	font-size: 20px;
	letter-spacing: .2em;
	text-transform: uppercase;
}

.player .position {
	font-size: 14px;
	color: #b3b3b3;
	text-transform: uppercase;
}
.site-block-27 ul,
.site-block-27 ul li {
	padding: 0;
	margin: 0;
}

.site-block-27 ul li {
	display: inline-block;
	margin-bottom: 4px;
}

.site-block-27 ul li a {
	color: #3ca59d;
}

.site-block-27 ul li a,
.site-block-27 ul li span {
	text-align: center;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	border: 1px solid #efefef;
}

.site-block-27 ul li.active a,
.site-block-27 ul li.active span {
	background: #3ca59d;
	color: #fff;
	border: 1px solid transparent;
}

.section-heading {
	position: relative;
	z-index: 2;
	padding-top: 20px;
	margin-top: 0px;
	text-align: center;
	margin-bottom: 60px;
}

.section-heading h6 {
	font-size: 13px;
	text-transform: uppercase;
	color: #7a7a7a;
	font-weight: 600;
}

.section-heading h4 {
	margin-top: 10px;
	line-height: 40px;
	font-size: 28px;
	font-weight: 900;
	text-transform: capitalize;
	color: #111;
}

.section-heading h4 em {
	font-style: normal;
	color: #dc8cdb;
}

.section-heading p {
	margin-top: 30px;
}

section.contact-us .section-heading {
	text-align: left;
	margin-bottom: 40px;
}

section.get-info .section-heading {
	text-align: left;
}

section.our-team .section-heading p {
	padding: 0px 60px;
}

section.more-info .section-heading {
	margin-bottom: 40px;
	text-align: left;
}

.main-button-gradient a {
	font-size: 13px;
	color: #fff;
	background: rgb(219, 138, 222);
	background: linear-gradient(-145deg, rgba(219, 138, 222, 1) 0%, rgba(246, 191, 159, 1) 100%);
	padding: 12px 30px;
	display: inline-block;
	border-radius: 5px;
	font-weight: 500;
	text-transform: uppercase;
	transition: all .3s;
}

section.our-office .left-info .main-button-gradient {
	margin-top: 40px;
}

.card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-width: 0;
	word-wrap: break-word;
	background-color: #fff;
	background-clip: border-box;
	border: 1px solid #d8e0ec;
	border-radius: 0;
}

.card>hr {
	margin-right: 0;
	margin-left: 0;
}

.card>.list-group {
	border-top: inherit;
	border-bottom: inherit;
}

.card>.list-group:first-child {
	border-top-width: 0;
	border-top-left-radius: calc(0.25rem - 1px);
	border-top-right-radius: calc(0.25rem - 1px);
}

.card>.list-group:last-child {
	border-bottom-width: 0;
	border-bottom-right-radius: calc(0.25rem - 1px);
	border-bottom-left-radius: calc(0.25rem - 1px);
}

.card>.card-header+.list-group,
.card>.list-group+.card-footer {
	border-top: 0;
}

.card-body {
	flex: 1 1 auto;
	padding: 1rem 1rem;
}

.card-title {
	margin-bottom: 0.5rem;
}

.card-subtitle {
	margin-top: -0.25rem;
	margin-bottom: 0;
}

.card-text:last-child {
	margin-bottom: 0;
}

.card-link+.card-link {
	margin-left: 1rem;
}

.card-header {
	padding: 0.5rem 1rem;
	margin-bottom: 0;
	background-color: rgba(0, 0, 0, 0.03);
	border-bottom: 1px solid #d8e0ec;
}

.card-header:first-child {
	border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-footer {
	padding: 0.5rem 1rem;
	background-color: rgba(0, 0, 0, 0.03);
	border-top: 1px solid #d8e0ec;
}

.card-footer:last-child {
	border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
}

.card-header-tabs {
	margin-right: -0.5rem;
	margin-bottom: -0.5rem;
	margin-left: -0.5rem;
	border-bottom: 0;
}

.card-header-pills {
	margin-right: -0.5rem;
	margin-left: -0.5rem;
}

.card-img-overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 1rem;
	border-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
	width: 100%;
}

.card-img,
.card-img-top {
	border-top-left-radius: calc(0.25rem - 1px);
	border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
	border-bottom-right-radius: calc(0.25rem - 1px);
	border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-group>.card {
	margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
	.card-group {
		display: flex;
		flex-flow: row wrap;
	}

	.card-group>.card {
		flex: 1 0 0%;
		margin-bottom: 0;
	}

	.card-group>.card+.card {
		margin-left: 0;
		border-left: 0;
	}

	.card-group>.card:not(:last-child) {
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
	}

	.card-group>.card:not(:last-child) .card-img-top,
	.card-group>.card:not(:last-child) .card-header {
		border-top-right-radius: 0;
	}

	.card-group>.card:not(:last-child) .card-img-bottom,
	.card-group>.card:not(:last-child) .card-footer {
		border-bottom-right-radius: 0;
	}

	.card-group>.card:not(:first-child) {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
	}

	.card-group>.card:not(:first-child) .card-img-top,
	.card-group>.card:not(:first-child) .card-header {
		border-top-left-radius: 0;
	}

	.card-group>.card:not(:first-child) .card-img-bottom,
	.card-group>.card:not(:first-child) .card-footer {
		border-bottom-left-radius: 0;
	}
}

.stretch-card {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: stretch;
	align-items: stretch;
	-webkit-justify-content: stretch;
	justify-content: stretch;
}

.stretch-card>.card {
	width: 100%;
	min-width: 100%;
}

#proBanner .card-body-padding {
	padding-top: .55rem;
	padding-bottom: .55rem;
	padding-left: 2rem;
	padding-right: 2rem;
}

@media (max-width: 766px) {
	#proBanner .card-body-padding {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

.card {
	box-shadow: none;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	-ms-box-shadow: none;
}

.card .card-body {
	padding: 1.4rem 1.875rem;
}

.card .card-body+.card-body {
	padding-top: 1rem;
}

.card .card-title {
	color: #001737;
	margin-bottom: .6rem;
	text-transform: capitalize;
	font-size: 1rem;
	font-weight: 600;
}

.card .card-description {
	margin-bottom: .875rem;
	font-weight: 400;
	color: #76838f;
}

@media (min-width: 576px) {
	.card-columns {
		column-count: 3;
		column-gap: 1.25rem;
		orphans: 1;
		widows: 1;
	}

	.card-columns .card {
		display: inline-block;
		width: 100%;
		margin-bottom: 0.75rem;
	}
}

.card-inverse-primary {
	background: rgba(102, 64, 178, 0.2);
	border: 1px solid theme-color-level(#6640b2, 1);
	color: theme-color-level(#6640b2, 3);
}

.card-inverse-secondary {
	background: rgba(163, 164, 165, 0.2);
	border: 1px solid theme-color-level(#a3a4a5, 1);
	color: theme-color-level(#a3a4a5, 3);
}

.card-inverse-success {
	background: rgba(0, 208, 130, 0.2);
	border: 1px solid theme-color-level(#00d082, 1);
	color: theme-color-level(#00d082, 3);
}

.card-inverse-info {
	background: rgba(28, 188, 205, 0.2);
	border: 1px solid theme-color-level(#1cbccd, 1);
	color: theme-color-level(#1cbccd, 3);
}

.card-inverse-warning {
	background: rgba(255, 191, 54, 0.2);
	border: 1px solid theme-color-level(#ffbf36, 1);
	color: theme-color-level(#ffbf36, 3);
}

.card-inverse-danger {
	background: rgba(248, 62, 55, 0.2);
	border: 1px solid theme-color-level(#f83e37, 1);
	color: theme-color-level(#f83e37, 3);
}

.card-inverse-light {
	background: rgba(248, 249, 250, 0.2);
	border: 1px solid theme-color-level(#f8f9fa, 1);
	color: theme-color-level(#f8f9fa, 3);
}

.card-inverse-dark {
	background: rgba(40, 47, 58, 0.2);
	border: 1px solid theme-color-level(#282f3a, 1);
	color: theme-color-level(#282f3a, 3);
}

.table-responsive {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
	.table-responsive-sm {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 767.98px) {
	.table-responsive-md {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 991.98px) {
	.table-responsive-lg {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 1199.98px) {
	.table-responsive-xl {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

@media (max-width: 1399.98px) {
	.table-responsive-xxl {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
}

.table {
	--bs-table-bg: transparent;
	--bs-table-accent-bg: transparent;
	--bs-table-striped-color: #212529;
	--bs-table-striped-bg: rgba(0, 0, 0, 0.05);
	--bs-table-active-color: #212529;
	--bs-table-active-bg: rgba(0, 0, 0, 0.1);
	--bs-table-hover-color: #212529;
	--bs-table-hover-bg: #eaeaf1;
	width: 100%;
	margin-bottom: 1rem;
	color: #001737;
	vertical-align: top;
	border-color: #f3f3f3;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
	--bs-table-accent-bg: var(--bs-table-striped-bg);
	color: var(--bs-table-striped-color);
}

.table-primary {
	--bs-table-bg: #cfe2ff;
	--bs-table-striped-bg: #c5d7f2;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #bacbe6;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #bfd1ec;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #bacbe6;
}

.table-secondary {
	--bs-table-bg: #e2e3e5;
	--bs-table-striped-bg: #d7d8da;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #cbccce;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #d1d2d4;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #cbccce;
}

.table-success {
	--bs-table-bg: #d1e7dd;
	--bs-table-striped-bg: #c7dbd2;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #bcd0c7;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #c1d6cc;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #bcd0c7;
}

.table-info {
	--bs-table-bg: #cff4fc;
	--bs-table-striped-bg: #c5e8ef;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #badce3;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #bfe2e9;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #badce3;
}

.table-warning {
	--bs-table-bg: #fff3cd;
	--bs-table-striped-bg: #f2e7c3;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #e6dbb9;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #ece1be;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #e6dbb9;
}

.table-danger {
	--bs-table-bg: #f8d7da;
	--bs-table-striped-bg: #eccccf;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #dfc2c4;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #e5c7ca;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #dfc2c4;
}

.table-light {
	--bs-table-bg: #f8f9fa;
	--bs-table-striped-bg: #ecedee;
	--bs-table-striped-color: #000;
	--bs-table-active-bg: #dfe0e1;
	--bs-table-active-color: #000;
	--bs-table-hover-bg: #e5e6e7;
	--bs-table-hover-color: #000;
	color: #000;
	border-color: #dfe0e1;
}

.table-dark {
	--bs-table-bg: #212529;
	--bs-table-striped-bg: #2c3034;
	--bs-table-striped-color: #fff;
	--bs-table-active-bg: #373b3e;
	--bs-table-active-color: #fff;
	--bs-table-hover-bg: #323539;
	--bs-table-hover-color: #fff;
	color: #fff;
	border-color: #373b3e;
}

.progress-md {
	height: 8px;
}

progress {
	vertical-align: baseline;
}

@keyframes progress-bar-stripes {
	0% {
		background-position-x: 1rem;
	}
}

.progress {
	display: flex;
	height: 1rem;
	overflow: hidden;
	font-size: 0.75rem;
	background-color: #e9ecef;
	border-radius: 0.25rem;
}

.progress-bar {
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	background-color: #0d6efd;
	transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
	.progress-bar {
		transition: none;
	}
}

.progress-bar-striped {
	background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
	background-size: 1rem 1rem;
}

.progress-bar-animated {
	animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
	.progress-bar-animated {
		animation: none;
	}
}

.table td img {
	width: 36px;
	height: 36px;
	border-radius: 100%;
}

.grid-margin {
	margin-bottom: 1.875rem;
}

@media (min-width: 576px) {
	.grid-margin-sm-0 {
		margin-bottom: 0;
	}
}

@media (min-width: 768px) {
	.grid-margin-md-0 {
		margin-bottom: 0;
	}
}

@media (min-width: 992px) {
	.grid-margin-lg-0 {
		margin-bottom: 0;
	}
}

@media (min-width: 1200px) {
	.grid-margin-xl-0 {
		margin-bottom: 0;
	}
}

.content-wrapper {
	background: #f6f7fb;
	padding: 1.937rem 1.437rem;
	width: 100%;
	-webkit-flex-grow: 1;
	flex-grow: 1;
}

@media (max-width: 767px) {
	.content-wrapper {
		padding: 1.5rem 1.5rem;
		flex-grow: 0;
	}
}

.sidebar .nav .nav-item .nav-link .menu-title {
	color: inherit;
	display: inline-block;
	font-size: 0.937rem;
	line-height: 1;
	vertical-align: middle;
	font-weight: bold;
}

.sidebar-icon-only .sidebar .nav .nav-item .nav-link .menu-title,
.sidebar-icon-only .sidebar .nav .nav-item .nav-link .badge,
.sidebar-icon-only .sidebar .nav .nav-item .nav-link .menu-sub-title {
	display: none;
}

.sidebar-icon-only .sidebar .nav .nav-item .nav-link .menu-title {
	border-radius: 0 5px 5px 0px;
}

/**adding free courses css**/

section.our-courses {
	position: relative;
}

section.our-courses .section-heading p {
	padding: 0px 60px;
}
  
section.our-courses:before {
	position: absolute;
	content: '';
	background-image: url(../img/freecourse/our-courses-left-dec.png);
	left: 45px;
	top: -140px;
	width: 291px;
	height: 231px;
	z-index: 1;
}

section.our-courses:after {
	position: absolute;
	content: '';
	background-image: url(../img/freecourse/our-courses-right-dec.png);
	right: 45px;
	top: -140px;
	width: 291px;
	height: 231px;
	z-index: 1;
}  

section.our-courses .naccs {
	position: relative;
}

section.our-courses .naccs .menu div {
	padding: 15px 30px;
	text-align: center;
	border-radius: 5px !important;
	margin-bottom: 40px;
	font-size: 20px;
	color: #111;
	background-color: #fff;
	cursor: pointer;
	vertical-align: middle;
	font-weight: 900;
	transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
	border: 3px solid rgba(219, 138, 222, 0.5);
}

section.our-courses .naccs .menu div.active {
	color: #dc8cdb;
	border: 3px solid rgba(219, 138, 222, 1);
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
}

section.our-courses ul.nacc {
	margin-left: 10px !important;
	position: relative;
	min-height: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

section.our-courses ul.nacc li {
    background-color: #fff;
	overflow: hidden;
	opacity: 1;
	transform: translateX(50px);

	list-style: none;
	transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
	border-radius: 15px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.05);
	padding: 20px; /* Adjust padding for better content spacing */
	width: 100%; /* Allow the list item to take full width */
	box-sizing: border-box; /* Include padding in width calculations */
	margin:1px;
}

section.our-courses ul.nacc li .left-image {
	position: absolute;
	margin-right: 50px;
	top: 50%;
	transform: translateY(-50%);
}

section.our-courses ul.nacc li .left-image img {
	border-top-left-radius: 15px;
	border-bottom-left-radius: 15px;
}

section.our-courses ul.nacc li .left-image .price h6 {
	position: absolute;
	background: rgb(219, 138, 222);
	background: linear-gradient(-145deg, rgba(219, 138, 222, 1) 0%, rgba(246, 191, 159, 1) 100%);
	color: #fff;
	top: 20px;
	left: 20px;
	font-size: 20px;
	font-weight: 700;
	width: 50px;
	height: 50px;
	border-radius: 3px;
	display: inline-block;
	text-align: center;
	line-height: 50px;
}

section.our-courses ul.nacc li .right-content {
    display: flex;
	flex-direction: column; /* Arrange content vertically */
	gap: 10px; /* Add space between elements */
	overflow-wrap: break-word; /* Allow long words to break */
	word-wrap: break-word; /* Older compatibility */
	word-break: break-word; /* Ensure text doesn't overflow */
}

section.our-courses ul.nacc li .right-content h4 {
	margin-bottom: 10px;
	font-size: 20px;
	color: #111;
	font-weight: 800;
}

section.our-courses ul.nacc li .right-content p {
	font-size: 1em;
	line-height: 1.5;
	margin-bottom: 10px;
}

/*section.our-courses ul.nacc li .right-content .image {*/
/*	position: absolute;*/
/*	margin-right: 50px;*/
/*	top: 50%;*/
/*}*/

section.our-courses ul.nacc li .right-content  .image img {
    max-width: 100%; /* Ensure images fit the container */
	height: auto; /* Maintain aspect ratio */
	border-radius: 10px; /* Optional: Add rounded corners */
}

section.our-courses ul.nacc li .right-content ul {
	margin-top: 20px;
	margin-bottom: 20px;
}

section.our-courses ul.nacc li .right-content span {
	font-size: 14px;
	font-weight: 600;
	margin-right: 30px;
	padding-right: 30px;
	border-right: 2px solid #111;
}

section.our-courses ul.nacc li .right-content .last-span {
	margin-right: 0px;
	padding-right: 0px;
	border-right: none;
}

section.our-courses ul.nacc li .right-content p {
	margin-bottom: 20px;
}

section.our-courses ul.nacc li .right-content .text-button {
	margin-top: 20px;
}

section.our-courses ul.nacc li.active {
	position: relative;
	transition-delay: 0.3s;
	z-index: 2;
	opacity: 1;
	transform: translateX(0px);
}



section.our-courses section.our-courses ul.nacc li p {
	margin: 0;
}
/*new added*/
.ourcourses {
    margin: 15% 5%;
    
}

.menu {
    background-color: #f4f4f4;
    padding: 15px;
    border-radius: 5px;
}

.menu-item {
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.menu-drop:hover,
.menu-drop.active,
.submenuItem-link:hover,
.submenuItem-link.active
{
    background-color: #007bff; /* Highlight color */
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
}

.section {
    margin-bottom: 20px;
}

.section img {
    width: 30%;
    height:30%;
}

.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.submenuItem-link {
    margin: 0 5px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    cursor: pointer;
    display: block;
    background-color: #fff;
    border: 1px solid #dee2e6;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;    
}

.page-link{
    margin: 0 5px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.page-link:hover,
.page-link.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}



@media (max-width: 1330px) {
	.services .owl-nav .owl-next {
		right: -30px;
	}

	.services .owl-nav .owl-prev {
		left: -25px;
	}

	.our-courses .owl-nav .owl-next {
		right: -30px;
	}

	.our-courses .owl-nav .owl-prev {
		left: -25px;
	}
}

@media (max-width: 1200px) {
	.our-courses .owl-nav .owl-next {
		right: -70px;
	}

	.our-courses .owl-nav .owl-prev {
		left: -65px;
	}
}

@media (max-width: 1085px) {
	.our-courses .owl-nav .owl-next {
		right: -30px;
	}

	.our-courses .owl-nav .owl-prev {
		left: -25px;
	}
}

@media (max-width: 992px) {
	section.our-courses ul.nacc {
		margin-left: 0px !important;
	}

	section.our-team ul.nacc li .left-content span a,
	section.our-courses ul.nacc li .right-content span {
		margin-right: 15px;
		padding-right: 15px;
	}
}

@media (max-width: 767px) {
	.header-area .main-nav .nav li.has-sub ul.sub-menu {
		display: none;
	}
	section.our-courses ul.nacc li .left-image,
	section.our-team ul.nacc li .right-image {
		position: relative;
		margin-right: 0px;
		margin-left: 0px;
		transform: translateY(-0%);
	}
	section.our-courses ul.nacc li .left-image img,
	section.our-team ul.nacc li .right-image img {
		border-radius: 15px;
	}
	section.our-courses ul.nacc li,
	section.our-team ul.nacc li {
		padding: 0px;
	}
	section.our-courses ul.nacc li .right-content {
		margin-left: 0px;
		padding: 30px;
	}
}
.bg-darken{
    background-color:#659cd6;
}