.hero-carousel {
	--swiper-navigation-color: #fff;
	--swiper-theme-color: #fff;
	--swiper-navigation-size: 35px;
	--swiper-navigation-sides-offset: 20px;

	position: relative;
	width: 100%;
}

.hero-carousel .swiper-button-prev,
.hero-carousel .swiper-button-next {
	opacity: 0;
}

.hero-carousel:hover .swiper-button-prev,
.hero-carousel:hover .swiper-button-next {
	opacity: 1;
}

.hero-caption {
	color: #fff;
}

.hero-caption h2 {
	margin: 0;
	line-height: 1.25;
	letter-spacing: 0.05rem;
}

.hero-caption p {
	letter-spacing: 0;
	line-height: 1.5;
	overflow: auto;
	font-weight: 400;
}

.hero-caption .button {
	text-transform: uppercase;
	margin-top: 0.5rem;
	border: solid 1px #fff;
}
.swiper-button-prev,
.swiper-button-next {
	color: #fff;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
	transition: opacity .2s linear;
}

.swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.6);
	opacity: 1;
}

.swiper-pagination-bullet-active {
	background: #fff;
}

.autoplay-progress {
	position: absolute;
	right: 1rem;
	top: 1rem;
	z-index: 10;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: lighter;
	font-size: 12px;
	color: var(--swiper-theme-color);
}
.autoplay-progress svg {
	--progress: 0;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	/* stroke-width: 2px; */
	/* stroke: var(--swiper-theme-color); */
	/* fill: none;
	stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
	stroke-dasharray: 125.6;
	transform: rotate(-90deg); */
}

.autoplay-progress__button {
	position: absolute;
	z-index: 15;
	background-color: transparent;
	border: 0 none;
	width: 50px;
	height: 50px;
	cursor: pointer;
}

.autoplay-progress__loader {
	transform: rotate(-90deg);
    transform-origin: center center;
    stroke-dasharray: 250;
    fill: transparent;
    stroke-width: 3;
    stroke: rgba(255, 255, 255, 0.8);
}
.autoplay-progress__state {
    fill: rgba(255, 255, 255, 0.8);
}

@keyframes hero__slideshow{
	from {
		stroke-dashoffset: 250
	}
	to {
		stroke-dashoffset: 0
	}
}

.autoplay-progress__loader--animation {
	animation: hero__slideshow 6s linear infinite;
}

.hero-caption .button {
	border-radius: 0;
	font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
}

.hero-caption .button:hover {
	background: #fff;
    color: #000;
}

@media only screen and (min-width: 768px) {
	.hero-caption h2 {
		font-size: 2.5rem;
	}
}

@media only screen and (min-width: 1024px) {
	.hero-caption {
		position: absolute;
		z-index: 1;
		top: 50%;
		transform: translateY(-50%);
		margin: 0 5rem;
		height: auto;
		width: calc(100% - 10rem);
		color: #fff;
	}

	.hero-caption__body {
		max-width: 33%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.hero-caption p {
		font-size: 1.125rem;
	}
}

@media only screen and (max-width: 1023px) {
	.hero-caption {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 0 1rem;
		background: #000;
		flex: 1;
	}

	.hero-caption__body {
		text-align: center;
		padding-block: 2rem;
	}

	.her-caption h2 {
		display: block;
		letter-spacing: 0.1rem;
		max-width: 100%;
		margin: 1.5rem 0 1rem 0;
	}

	.hero-caption p {
		display: block;
		font-size: 1rem;
		max-width: 100%;
		margin-block: 1rem;
	}

	.hero-carousel .swiper-slide {
		height: auto;
		display: flex;
		flex-direction: column;
	}
}
