/* carousel navigation styles */
.sw-nav, .n-hover:hover .sw-nav {
	display: block;
	position: absolute;
	left: 20px;
	top: 50%;
	width: 50px;
	height: 50px;
	background:  #002129;
	opacity: .8;
	border-radius: 50%;
	margin-top: -25px;
	z-index: 10;
	cursor: pointer;
	text-align: center;
	outline: none;
	transition: all 0.1s ease-in-out;
}
.sw-nav.next, .n-hover:hover .sw-nav.next {
	transform: rotate(180deg);
	right: 20px;
	left: auto;
	opacity: .8;
}
.sw-nav:before {
	content: '';
	display: inline-block;
	width: 10px;
	height: 10px;
	border: 2px solid #e5f6fa;
	transform: rotate(45deg);
	border-width: 0 0 2px 2px;
	margin-top: 20px;
	margin-left: 2px;
}
.sw-nav:hover, .n-hover:hover .sw-nav:hover {
	background: #004252;
	opacity: 1;
}
.n-hover .sw-nav {
	left: 0;
	right: auto;
	opacity: 0;
}
.n-hover .sw-nav.next {
	right: 0;
	left: auto;
	opacity: 0;
}
.sw-pgn, .p-hover:hover .sw-pgn {
	margin-top: 15px;
	display: block;
	text-align: center;
	z-index: 10;
	transition: all 0.1s ease-in-out;
	opacity: 1;
}
.sw-pgn-bullet {
	display: inline-block;
	width: 14px;
	height: 14px;
	background: #004252;
	border: 2px solid #fff;
	border-radius: 100%;
	margin: 0 3px;
	opacity: 0.2;
	outline: none;
	cursor: pointer;
}
.sw-pgn-bullet.active {
	opacity: 1;
}
.p-hover .sw-pgn {
	bottom: 0;
	opacity: 0;
}
.cb .cb-wrapper .hidden {
	display: none;
}
/* home slider navigation buttons */
.home-slider .sw-nav, .home-slider.n-hover:hover .sw-nav {
	top: auto;
	bottom: 15px;
	width: 50px;
	height: 50px;
}
.home-slider .sw-nav.prev {
	left: auto;
	right: 85px;
}
.home-slider .sw-nav.next {
	right: 20px;
}
/* home slider texts */
.home-slider .custom-html {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	gap: 24px;
	top: unset;
	bottom: 0;
	left: 0;
	padding: 40px;
	margin: 0;
	width: 400px;
}
.home-slider .custom-html p {
	max-width: 350px;
	line-height: 1.5;
	color: #FFF;
}
.home-slider .custom-html h2 {
	font-weight: 500;
	font-size: 36px;
	line-height: 125%;
	text-align: left;
	color: #fff;
}
.home-slider img {
	width: 100%;
}
@media (max-width: 991px) {
	.home-slider .custom-html h2 {
		font-size: 1.5em;
	}
	.home-slider .custom-html p {
		display: none;
	}
}
@media (max-width: 767px) {
	.home-slider .sw-nav {
		display: none;
	}
}
