.home-slider .slide-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #ff0;
}
.home-slider .slide-image {
  aspect-ratio: 1;
  margin: 0;
  overflow: hidden;
}
.home-slider .slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-slider .slide-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 10vw 10vw 15vw;
}
.home-slider .slide-text > * {
  margin: 0;
}
.home-slider .slide-title {
  font-size: 1.5em;
  color: #039;
}
.home-slider .slide-button {
  margin-top: 1em;
}
.home-slider .splide__arrow {
  background: rgba(0, 0, 0, 0.1);
}

.home-slider .splide__pagination__page {
  background: #039;
  opacity: 0.2;
}
.home-slider .splide__pagination__page.is-active {
  background: #039;
  opacity: 1;
}
@media (min-width: 750px) {
  .home-slider .slide-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 1.2em;
  }
  .home-slider .slide-text {
    justify-content: center;
    padding: 5vw;
  }
}
@media (min-width: 960px) {
  .home-slider .slide-image {
	max-width: 100svh;
  }
  .home-slider .slide-title {
    font-size: 1.8em;
  }
}
@media (min-width: 1280px) {
	.home-slider {
		height: 100svh;
	}
	.logged-in .home-slider {
		height: calc(100svh - 32px);
	}
	.home-slider .slide-content {
	    grid-template-columns: auto 1fr;
	}
	.home-slider .slide-image {
		max-width: 100svh
	}
	.logged-in .home-slider .slide-image {
		max-width: calc(100svh - 32px);
	}
	
}

.white-section {
	background: linear-gradient(#fafafa, #fff) 0 0 / 100% 50svh no-repeat;
}
