.header-banner {
	position: relative;
	width: 100%;
}

.sticky-navbar {
	position: sticky;
	width: 100%;
	background: #fff;
	top: 0;
	z-index: 99;
}

.sticky-navbar.sticky {
	position: fixed;
	top: 0;
	width: 100%;
	box-shadow: 0px 0px 5px #ccc;
}

.sticky-navbar nav {
	position: relative;
	width: 100%;
	height: auto;
	background: transparent;
}

.sticky-navbar nav ul {
	justify-content: start;
	position: relative;
	height: auto;
	left: inherit;
	display: flex;
	list-style-type: none;
	padding: 0;
	margin: 0;
	white-space: nowrap;
	overflow-x: auto;
	top: inherit;
	transition: none;
	width: 100%;
	background: transparent;
}

.sticky-navbar nav ul li {
	margin: 0;
	padding: 0px;
	height: auto;
}

.sticky-navbar nav ul li:before {
	display: none;
}

.sticky-navbar nav ul li:after {
	display: none;
}

.sticky-navbar nav ul li a {
	display: block;
	padding: 10px 20px;
	color: #000;
	text-decoration: none;
}

.sticky-navbar nav ul li a.active {
	background: #d65353;
	color: #fff;
}

@media (max-width: 768px) {
	.sticky-navbar nav ul {
		justify-content: start;
		position: relative;
		height: auto;
		left: inherit;
	}
}

/*============================================
Nested owl carousel css start here
==============================================*/
.owl-carousel-nested {
	position: relative;
	width: 100%;
	background: #fff;
	padding: 50px;
	box-sizing: border-box;
}

.outer-item {
	position: relative;
}

.inner-item {
	padding: 10px;
	margin: 5px;
}

.inner-slider .owl-dots {
	position: relative;
	width: 100%;
	text-align: center;
}

.inner-slider .owl-dot span {
	width: 10px;
	height: 10px;
	background: #ccc;
	display: inline-block;
	border-radius: 50%;
	margin: 2px;
}

.inner-slider .owl-dot.active span {
	width: 10px;
	height: 10px;
	background: #000;
	display: inline-block;
	border-radius: 50%;
	margin: 2px;
}

.outer-slider .owl-nav {
	position: absolute;
	top: 45%;
	width: 100%;
}

.outer-slider .owl-nav .owl-prev {
	position: absolute;
	left: 0;
}

.outer-slider .owl-nav .owl-next {
	position: absolute;
	right: 0;
}

.outer-slider .owl-nav .owl-prev span {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 24px;
	font-size: 30px;
	background: #0a0a0a4d;
	color: #fff;
	border-radius: 50%;
}

.outer-slider .owl-nav .owl-next span {
	display: inline-block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 24px;
	font-size: 30px;
	background: #0a0a0a4d;
	color: #fff;
	border-radius: 50%;
}