/*------------------------------------------------------------------------------*/
/*  Hero slide (OWL Carousel) — RevSlider əvəzi, 2026-09-05
/*------------------------------------------------------------------------------*/
.hero-slide-wrapper {
	position: relative;
}
.hero-slide.owl-carousel {
	display: block;
}
.hero-slide .owl-stage-outer,
.hero-slide .owl-stage,
.hero-slide .owl-item {
	height: 100%;
}
.hero-slide-item {
	position: relative;
	min-height: 700px;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.hero-slide-content {
	max-width: 650px;
	padding: 40px 0;
}
.hero-slide-content .hero-sub-title {
	display: block;
	font-size: 16px;
	line-height: 20px;
	font-weight: 700;
	color: #9dca00;
	margin-bottom: 18px;
}
.hero-slide-content .hero-title {
	font-size: 60px;
	line-height: 68px;
	font-weight: 400;
	color: #262d33;
	margin-bottom: 20px;
}
.hero-slide-content .hero-title strong {
	font-weight: 700;
	color: #60b145;
}
.hero-slide-content .hero-desc {
	font-size: 18px;
	line-height: 29px;
	font-weight: 400;
	color: #6f787e;
	margin-bottom: 30px;
	max-width: 480px;
}
.hero-slide-content .hero-btns .ttm-btn {
	margin-right: 15px;
	margin-bottom: 10px;
}
/* nav arrows */
.hero-slide.owl-theme .owl-nav {
	margin-top: 0;
}
.hero-slide.owl-theme .owl-nav div {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	line-height: 44px;
	text-align: center;
	border: 2px solid rgba(38, 45, 51, 0.25);
	border-radius: 50%;
	color: #262d33;
	background: transparent;
	font-size: 0;
	transition: all 0.3s ease;
}
.hero-slide.owl-theme .owl-nav div::before {
	color: #262d33;
}
.hero-slide.owl-theme .owl-nav div:hover {
	background-color: #60b145;
	border-color: #60b145;
	color: #fff;
}
.hero-slide.owl-theme .owl-nav div:hover::before {
	color: #fff;
}
.hero-slide.owl-theme .owl-nav .owl-prev {
	left: 20px;
	left: max(20px, calc(50% - 600px));
}
.hero-slide.owl-theme .owl-nav .owl-next {
	right: 20px;
	right: max(20px, calc(50% - 600px));
}
/* dots */
.hero-slide.owl-theme .owl-dots {
	position: absolute;
	bottom: 25px;
	left: 0;
	right: 0;
	text-align: center;
}
.hero-slide.owl-theme .owl-dots .owl-dot span {
	width: 10px;
	height: 10px;
	margin: 5px;
	background: rgba(38, 45, 51, 0.3);
}
.hero-slide.owl-theme .owl-dots .owl-dot.active span {
	background: #60b145;
}
@media (max-width: 991px) {
	.hero-slide-item {
		min-height: 520px;
	}
	.hero-slide-content .hero-title {
		font-size: 40px;
		line-height: 50px;
	}
	.hero-slide-content .hero-desc {
		font-size: 15px;
		line-height: 24px;
	}
	.hero-slide.owl-theme .owl-nav div {
		display: none !important;
	}
}
@media (max-width: 575px) {
	.hero-slide-item {
		min-height: 480px;
	}
	.hero-slide-content .hero-title {
		font-size: 30px;
		line-height: 38px;
	}
}
