.pre-loader {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  will-change: transform;
}

.pre-loader-bg-1 {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: top;
  will-change: transform;
}

.pre-loader-bg-2 {
  position: absolute;
  display: block;
  top: 0;
  width: 100%;
  height: 100%;
  background: #ce9577;
  transform-origin: top;
  z-index: -1;
  will-change: transform;
}

.loader-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  z-index: 2;
  color: #fff;
  font-family: "Italiana";
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  overflow: hidden;
  display: none;
}

.loader-content span {
  display: inline-block;
  line-height: 1em;
  transform: translateY(100%);
  will-change: transform;
}

.loader-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.site-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  min-height: 100vh;
  z-index: -2;
}
