
.full-width-content:nth-child(2n) {background-color: var(--background-full-alternate);}

.herow-carusell {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;

	flex-direction: column;
	height: auto;
	overflow: hidden;

	& .oriCarouselIndicatorDots {
		top: -35px;
		position: absolute;
	}

	& .carousel {
		--gal-height: calc(100vh / 1.4);
		grid-auto-columns: 100%;
		width: 100%;
		margin: 0;
		padding: 0;
		gap: 0;

		&>li {
			aspect-ratio: auto;
			height: var(--gal-height);
			margin: 0;
			padding: 0;
			position: relative;
			background-repeat: no-repeat;
		    background-position: center center;
		    background-size: cover;
			& img,
			picture {
				width: 100%;
				height: 100%;
				display: block;
				user-select: none;
				-webkit-user-drag: none;
				margin: 0;
				padding: 0;
				box-sizing: border-box;
				object-fit: cover;
			}
		}

	}

	& .centered-content {
		height: 0;
	}

	& .carouselControls {
		position: relative;
		float: left;
		height: 0;
		top: -50px;
		background-color: aqua;
		grid-auto-columns: 100%;
		margin: 0;

		& .oriCarouselIndicatorDots {
			height: 0;
			top: -1em;
		}

		& .carousel-dot {

			background-color: rgba(50, 50, 50, 0.5);
			border: 1px solid #FFF;
		}

		& .carousel-dot:hover {
			background: transparent;
		}

		& .carousel-dot.visible {
			background-color: #05050577;

		}

		& .carousel-dot.active {
			background-color: #FFF;
		}

		& .oriCarouselPrevNext {
			position: relative;
			float: right;
			top: -1em;

			& button {
				color: #fff;
			}

			& button:disabled {
				color: #26313a;
				cursor: default;
			}
		}
	}
}

.carousel-herow-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	text-align: center;
	padding: 0 1rem;
	box-sizing: border-box;
	color: white;
	pointer-events: auto;
	flex-wrap: nowrap;
	& h2 {
		font-size: clamp(0.8rem, 1rem + 2vw, 2.2rem);
		padding: 20px;
		text-shadow: 2px 2px 10px #000000;
		text-align: left;
		font-weight: 600;

	}

	& .buttonFlipper {
		--element-height: 45px;
		--button-hover-bg-color: #000;
		--button-bg-color: #00000033;
		--border-inner-hover: 1px solid #fff;
		min-width:600px;

		@media (max-width: 740px) {
			min-width:100%;
			--element-height: 44px;
			width: 100%;
			--border-inner-hover: 1px solid #fff;
			font-size: 0.9rem;
		}
	}
}