.project-section{
	height: 100dvh;
	width: 100%;
}

.p-section{
	height: unset;
	width: 80%;
}

.wrapper,
.slide{
	position: relative;
	width: 100%;
	height: 100%;
}

.slide{
	overflow: hidden;
}

.slide::before{
	content: "";
	position: absolute;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.4);
	z-index: 10;
}

.slide .image {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.slide .image-data{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	z-index: 100;
}

.image-data span.text{
	font-size: 15px;
	font-weight: 400;
	color: #fff;
}

.image-data h2{
	font-size: 45px;
	font-weight: 600;
	color: #fff;
}

a.button{
	display: inline-block;
	padding: 10px 20px;
	border-radius: 25px;
	color: var(--primary);
	background: #fff;
	text-decoration: none;
	margin-top: 25px;
	transition: all 0.3s ease;
}

a.button:hover {
	color: var(--text);
	background-color: var(--primary);
}


.swiper-button-next {
	right: 50px;
}

.swiper-button-prev {
	left: 50px;
}

.s_nav-btn::before,
.s_nav-btn::after{
	font-size: 25px;
	color: #fff;
}

.swiper-pagination-bullet{
	opacity: 1;
	height: 12px;
	width: 12px;
	background-color: #fff;
	visibility: hidden;
}

.swiper-pagination-bullet-active{
	border: 2px solid var(--primary);
	background-color: var(--primary);
}

@media screen and (max-width: 768px){
	
	.s_nav-btn{
		visibility: hidden;
	}

	.swiper-pagination-bullet{
		visibility: visible;
	}
}