.mainHome {
  /*height: calc(100% + var(--headerHeight)) !important;*/
  height: 100dvh;
  margin: calc((var(--headerHeight) * -1)) 0 0 0;
}

.bodyHome {
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
}

.mainHome > div {
  margin: 0 !important;
  padding: 0 !important;
  background-color: rgba(0, 0, 0, 0) !important;
}

h2 {
  width: fit-content;
}

#homeSlideshowContainer {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

#homeSlideshowContainer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 3;
  display: flex;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  transition: opacity 2s ease;
  display: flex;
  opacity: 1;
  pointer-events: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #000;
  pointer-events: none;
}

.slideHidden {
  display: none !important;
}

.slideTransparent {
  opacity: 0 !important;
}

.currentSlide {
  z-index: 0 !important;
}

#homeAbout {
  z-index: 4;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 30px 30px calc(var(--footerHeight) + 30px) 30px;
  gap: 10px;

  background: linear-gradient(
  to top,
  rgba(0, 0, 0, .7) 0%,
  rgba(0, 0, 0, .5) 50%,
  rgba(0, 0, 0, 0) 100%
);
}

#homeAbout p {
  font-family: "Jost", Arial, Helvetica, sans-serif;
  white-space: normal;
  font-size: clamp(.9rem, .2rem + 1vw, 3rem);
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-style: italic;
  line-height: 1.5;
  max-width: 90%;
}

  @media (max-width: 950px) {
    .mainHome {
      height: calc(100% + var(--mobileHeaderHeight)) !important;
      margin: calc((var(--mobileHeaderHeight) * -1)) 0 0 0;
    }

    #homePageContainer {
      /*margin: var(--mobileHeaderHeight) 0 0 0;*/
      margin: 0;
    }

    #homeAbout {
      padding: 30px 30px calc(var(--footerHeight) + 50px) 30px;
    }
  }