.slide-content {
	position: relative;
	max-height: 763px;
}

.slide-content img {
	width: 100%;
	height: 100%;
}
.slide-content .overlay {
	position: absolute;
	top: 0;
	padding: 45px;
	display: block;
	background-color: transparent;
  background-image: linear-gradient(180deg, #FFFFFF 0%, #182240A6 0%);
	width: 100%;
	height: 100%;
}
.banner-title {
	max-width: 1208px;
	margin: 0 auto;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	align-content: center;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.banner-title h1 {
	color: var(--beige);
	
}

.banner-title p {
	max-width: 928px;
	font-size: 21px;
	color: var(--beige);
}

/* === SWIPER PAGINATION (RIGHT VERTICAL) === */
.zheader-swiper .swiper-pagination {
	position: absolute !important;
	left: auto !important;
	right: 6% !important;
	top: 45% !important;
	transform: translateY(-40%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 17px;
	z-index: 3;
	width: auto;
}

.zheader-swiper .swiper-pagination-bullet {
	width: 3px;
	height: 80px;
	background: #BABDC6;
	border-radius: 0;
	opacity: 1;
	transition: all 0.3s ease;

}

.zheader-swiper .swiper-pagination-bullet-active {
	opacity: 1;
	transform: scale(1.2);
	background: #182240;
}
.scroll-down-arrow {
	position: absolute;
	bottom: 40px;
	right: 95px;
	z-index: 10;
	cursor: pointer;
	animation: bounce 2s infinite;
	border: 2px solid #182240;
	padding: 4px;
	transition: all .3s;
}

.scroll-down-arrow svg {
    stroke: #F3EFE8;
}
.scroll-down-arrow:hover {
      background: #182240;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}

@media only screen and (max-width: 767px) {
	.banner-title h1 {
	font-size: 40px;
		line-height: 43px;
		padding: 20px;
}
	.slide-content {
	position: relative;
	height: 100vh;
}
	.zheader-swiper .swiper-pagination-bullet {
    width: 80px;            
    height: 3px;
   
}

.zheader-swiper .swiper-pagination {
	flex-direction: row !important;
	top: 96% !important;
	left: auto !important;
	right: 0% !important;
	width: 100% !important;
	justify-content: center;
}
}

