.hero-slider {
	position: relative;
}

.hero-slide {
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	color: #fff;
	padding: 224px 0 120px;
}

.hero-slide .slide-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
linear-gradient(0deg, rgba(0, 81, 156, 0.2), rgba(0, 81, 156, 0.2)),
linear-gradient(0deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
	top: 0;
	left: 0;
}

.hero-slide .slide-deco img {
	position: absolute;
	height: 79%;
	max-height: 699px;
	width: auto;
	transform: translateX(-50%);
	top: 0;
	left: 50%;
}

.hero-slide-content {
	position: relative;
	width: 100%;
}

.hero-slide .main-heading {
	font-size: 110px;
	line-height: 1.0909;
	transition: all 2s ease;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-transform: capitalize;
}

.heading-scroll {
	display: flex;
	position: relative;
	width: 100%;
	height: 130px;
	margin: auto;
	overflow: hidden;
	z-index: 10;
	margin-bottom: 29px;
}

.heading-scroll__title {
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	align-items: center;
	justify-content: flex-start;
	width: 100%;
	height: 100%;
	white-space: nowrap;
	transition: all 1s ease;
}

.heading-scroll__title > div {
	display: flex;
	gap: 2.4em;
	-webkit-animation: scrollText 33s infinite linear;
          animation: scrollText 33s infinite linear;
}

@-webkit-keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes scrollText {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-slide-desc p,
.hero-slide-desc ul,
.hero-slide-desc,
.hero-slide-desc li,
.hero-slide-desc a {
	color: #fff;
}

.hero-slider .swiper-pagination-bullet-active,
.hero-slider .swiper-pagination-bullet {
	background: none;
}

.hero-slider .swiper-pagination {
	max-width: 1312px;
	padding: 0 30px;
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	padding-bottom: 86px;
}

.hero-slider .swiper-pagination .swiper-pagination-bullet {
	width: 25%;
	margin: 0;
	text-align: left;
	height: auto;
	color: #fff;
	opacity: 0.5;
	font-size: 16px;
	transition: all 0.5s ease;
}

.hero-slider .swiper-pagination .swiper-pagination-bullet:nth-child(3),
.hero-slider .swiper-pagination .swiper-pagination-bullet:nth-child(4) {
	text-align: right;
}

.hero-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	opacity: 1;
}

.scroll-to-explore {
	position: absolute;
	bottom: -50px;
	z-index: 12;
	left: 50%;
	transform: translateX(-50%);
	text-align: center;
}

.scroll-to-explore .scroll-text {
	text-transform: capitalize;
	color: #fff;
	margin-bottom: 40px;
}


.hero-slide-desc {
	max-width: 289px;
}

.hero-slide-desc ul {
	padding-left: 14px;
}

.hero-slide-desc ul li {
	padding-left: 12px;
}

.scroll-to-explore .scroll-down {
	display: inline-block;
	border-radius: 50%;
	transition: all 0.3s ease;
	cursor: pointer;
}

.scroll-to-explore .scroll-down:hover {
	box-shadow: 5px 5px 15px 0px rgba(0, 0, 0, 0.1);
	background-color: rgba(255,255,255,0.5);
}

.hero-slide .hero-slide-content {
	opacity: 0;
	transition: all 2s ease;
}

.hero-slide.swiper-slide-active .hero-slide-content {
	opacity: 1;
}

@media (max-width: 991px) {
	.hero-slide .main-heading {
		font-size: 48px;
	}
	.heading-scroll {
		height: 60px;
	}
	.hero-slider .swiper-pagination {
		padding: 0 20px 160px 20px;
		display: flex;
		justify-content: space-between;
	}
	.hero-slider .swiper-pagination .swiper-pagination-bullet,
	.hero-slider .swiper-pagination .swiper-pagination-bullet:nth-child(3), 
	.hero-slider .swiper-pagination .swiper-pagination-bullet:nth-child(4) {
		text-align: center;
		width: 40px;
	}
	.scroll-to-explore .scroll-text {
		margin-bottom: 63px;
	}
	.hero-slide {	  
		padding: 120px 0 190px;
	}
	.heading-scroll {
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.hero-slide-desc {
		line-height: 1.4666;
	}
}