body { background-color: #004268; }

#hero { height: unset; background-color: transparent; }

@font-face {
	font-family: "MicroSquare";
	src: url("/static/fonts/microsquare/MicroSquare.ttf") format("truetype");
}

.whytitle {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	background-size: cover;
	position: relative;
	height: 50%;
	z-index: 1;
}

.whytitle > h1 {
	font-family: "MicroSquare";
	font-size: 42px;
	width: fit-content;
	transform: scaleX(1.1);
	letter-spacing: 1px;
	text-shadow: 5px 5px 8px white, -5px -5px 8px white, -5px 5px 8px white, 5px -5px 8px white, 0 0 8px white, 0 0 3px white;
	color: var(--mainblue);
	z-index: 1;
	margin-top: 40px;
}

.whytitle span {
	opacity: 0;
	display: block;
}

.whypoints {
	width: 100%;
	flex-grow: 1;
}

.whypoints ul {
	background: #0007;
	margin: 0;
	padding-left: 0;
	height: 100%;
	min-height: 150px;
	align-content: center;
	list-style-position: inside;
}

.whypoints li {
	color: white;
	margin: 10px 30px;
	line-height: 22px;
	text-shadow: 0 1px 5px #33425c, 0 0 3px #33425c;
	text-wrap: balance;
}

.slider * { box-sizing: border-box; }

.slider {
	max-width: 1060px;
	text-align: center;
	margin: auto;
}

.slides {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

.slides > div {
	scroll-snap-align: start;
	flex-shrink: 0;
	width: 100%;
	height: clamp(320px, 35vw, 80dvh);
	max-height: 371px;
	
	position: relative;
	background-position-y: 15%;
	background-size: cover;
	
	display: flex;
	align-items: center;
	flex-direction: column;
}
.whytitle > img {
	user-select: none;
	object-fit: contain;
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	height: 113px;
	filter: drop-shadow(0px 0px 5px white) drop-shadow(0px 0px 10px white) drop-shadow(0px 0px 10px white);
}

.whynav {
	background-color: #FFF3;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 4px;
	box-shadow: 0 6px 10px -5px black inset;
}

.whynav > a, .arrows > a {
	display: inline-flex;
	width: 1.5rem;
	height: 1.5rem;
	background: white;
	align-items: center;
	justify-content: center;
	border-radius: 100%;
	margin: 5px 0 20px;
	position: relative;
	color: var(--mainblue);
}
.whynav > a:hover { opacity: .75; }
.arrows > a:hover { background: #EEE; }
.whynav > a:active, .whynav > a:focus, .arrows > a:active {
	background: var(--mainblue);
	color: white;
	opacity: 1;
}

#hero + .whynav {
	box-shadow: 0 -6px 10px -5px black inset;
	height: 49px;
	color: white;
	align-items: center;
	text-wrap: balance;
	text-align: center;
	font-size: clamp(0.85rem, 2vw, 1rem);
}

.arrows {
	position: absolute;
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 91vw;
	top: clamp(160px, 17.5vw, 185px);
}

.arrows > a {
	font-size: 36px;
	margin: -1.5rem;
	width: 3rem;
	height: 3rem;
	box-shadow: 0 0 4px 1px black;
}

.arrows > a:first-child > i { margin-left: -4px; }
.arrows > a:last-child > i { margin-right: -4px; }

@media (min-width: 800px) {
	.whypoints li {
		font-size: clamp(16px, 2vw, 20px);
		line-height: clamp(19px, 2vw, 22px);
		font-weight: 300;
	}
}

@media (max-width: 700px) {
	#hero { width: 158%; left: -28.5%; }
	.whytitle { height: unset; }
	.whytitle > h1 { font-size: 32px; font-weight: 600; margin-top: 55px; }
	.whytitle > img { height: 83px; }
	.arrows { max-width: 82vw; top: 52px; }
	.arrows > a { opacity: .5; }
	.whypoints li { font-size: 15px; margin: 10px; }
	.slides > div { height: unset; max-height: unset; }
	.slides > div:nth-child(2) { background-size: cover !important; }
}