.hero-section {
	height: 87.5vh;
}

.slider {
	position: relative;
}
.slider,
.slider-list,
.slide {
	height: 100%;
}

.slider-list {
	position: relative;
}
.slide img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.slide {
	position: absolute;
	visibility: hidden;
	opacity: 0;
	transition: all 1s ease;

	width: 100%;
}

.slide-text {
	position: absolute;
	color: white;

	top: 15%;
	left: 15%;
	font-weight: bold;
	text-shadow: rgba(8, 2, 2, 0.6) 0px 0px 10px;
}

.abs-text {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 0.8rem;
}

.slide-text h1 {
	position: relative;
	display: inline-block;
	/* font-size: calc(1rem + 5vw); */
}

.slide-text p {
	line-height: 2.4rem;
	/* font-size: calc(0.25vw + 1.3rem); */
	width: 70%;
	margin-bottom: 20px;
}
.slide.active {
	visibility: visible;

	opacity: 1;
}

.slide a {
	font-size: 1.2rem;
	text-transform: uppercase;
}




@media only screen and (max-width: 600px) {
	.slide-text {
		left: 10px;
	}
	.slide-text h1 {
		/* font-size: 2.5rem; */
	}

	.slide-text p {
		line-height: 2rem;
		font-size: 1rem;
		width: 100%;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 350px) {
	/*.slide-text {*/
	/*	left: 10px;*/
	/*}*/
	.slide-text h1 {
		font-size: 1.9rem;
	}

	.slide-text p {
		
		font-size: 1.5rem;
		
	}
}

.bullet-list {
	position: absolute;
	bottom: 20px;
	left: 50%;
	display: flex;
	transform: translateX(-50%);
}
.bullet {
	width: 1.5rem;
	height: 1.5rem;
	margin: 10px;
	background-color: rgba(245, 245, 245, 0.4);
	cursor: pointer;
	border-radius: 50%;

	position: relative;
}

.slide .btn:hover a {
	color: rgb(2, 189, 2);
}
.slide .btn:hover {
	border: 2px solid rgb(2, 189, 2);
}

.bullet:hover {
	background-color: transparent;
	border: 3px solid white;
}

.bullet:hover::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background-color: white;
}

.bullet.active {
	background-color: transparent;
	border: 3px solid white;
}
.bullet.active::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background-color: white;
}

.abs-text {
	overflow: hidden;
}
.slide h1 {
	overflow: hidden;
	white-space: nowrap;
}

.slide.active .abs-text .slideIn {
	animation: slideIn 0.3s ease-out;
	animation-delay: 0.5s;
	transform: translateX(-150px);
	animation-fill-mode: forwards;
	display: inline-block;
}

.slide-text p {
	overflow: hidden;
}

.slideInWrapper {
	overflow: hidden;
}

.slide.active .slideIn {
	animation: slideIn 0.3s ease-out;
	animation-delay: 0.5s;
	transform: translateX(-150px);
	animation-fill-mode: forwards;
	display: inline-block;
	position: relative;
}

.slide.active .slideIn::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 80%;
	height: 100%;
	background-color: rgb(245, 245, 250);

	animation: reveal 0.7s forwards;
	animation-delay: 0.5s;
}

.abs-text {
	overflow: hidden;
}

@keyframes slideIn {
	0% {
		transform: translateX(-150px);
	}
	100% {
		transform: translateX(0px);
	}
}

@keyframes reveal {
	0% {
		width: 80%;
	}

	100% {
		width: 0%;
	}
}

.slide-text {
	pointer-events: none;
}

.slide-text a,
.slide-text .btn {
	pointer-events: all;
}
