.home .site-content,
.home .content-area,
.home .site-main {
	margin: 0;
	padding: 0;
}

.home .site.grid-container {
	max-width: none;
	padding: 0;
}

.lm-homepage {
	width: 100%;
	overflow: hidden;
}

.lm-simple-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #f5f5f5;
}

.lm-simple-slider__track {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
}

.lm-simple-slider__slide {
	position: absolute;
	inset: 0;
	visibility: hidden;
	opacity: 0;
	transition: opacity 500ms ease, visibility 500ms ease;
}

.lm-simple-slider__slide.is-active {
	visibility: visible;
	opacity: 1;
}

.lm-simple-slider__link,
.lm-simple-slider picture,
.lm-simple-slider img {
	display: block;
	width: 100%;
	height: 100%;
}

.lm-simple-slider img {
	object-fit: cover;
	object-position: center;
}

.lm-simple-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	display: none;
	place-items: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: #062b63;
	background: rgba(255, 255, 255, 0.9);
	border: 0;
	border-radius: 50%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
	cursor: pointer;
	transform: translateY(-50%);
}

.lm-simple-slider__arrow svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.lm-simple-slider__arrow--prev {
	left: 24px;
}

.lm-simple-slider__arrow--next {
	right: 24px;
}

.lm-simple-slider__dots {
	position: absolute;
	right: 0;
	bottom: 15px;
	left: 0;
	z-index: 5;
	display: flex;
	justify-content: center;
	gap: 8px;
}

.lm-simple-slider__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 999px;
	cursor: pointer;
}

.lm-simple-slider__dot.is-active {
	width: 25px;
	background: #dda231;
	border-color: #dda231;
}

@media (min-width: 768px) {
	.lm-simple-slider__track {
		aspect-ratio: 1920 / 650;
	}

	.lm-simple-slider__arrow {
		display: grid;
	}
}

@media (prefers-reduced-motion: reduce) {
	.lm-simple-slider__slide {
		transition: none;
	}
}