/* splash screen */

.splash-wrapper {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  font-family: "Kumbh Sans";
  font-weight: 400;
}

.splash-main {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
	padding: 0 4%;
}

.splash-item {
  position: relative;
  width: 100%;
  height: 70%;
}

.splash-item__overlay {
  transition: all 0.5s ease;
}

.splash-item:hover .splash-item__overlay {
  opacity: 0;
}

.splash-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.splash-item__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6;
}

.splash-item__heading {
  position: absolute;
  bottom: 0rem;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  width: 100%;
  padding: 0 0 4rem 4rem;
}

.splash-item__heading > h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  padding: 0;
  margin: 0;
  line-height: 1;
  text-shadow: 0 0 20px #000;
}

.splash-item__heading > p {
  color: #fff;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
}
