
/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
} */

/* body, html {
  height: 100%;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #000;
} */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #B21F19;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: #fff;
}

.preloader-content {
  text-align: center;
  position: relative;
}

#loading-text {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.5;
}

#percent {
  font-size: 16vw;
  font-weight: 800;
  letter-spacing: 4px;
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(to top, white var(--fill, 0%), rgba(255,255,255,0.1) var(--fill, 0%));
  -webkit-background-clip: text;
  background-clip: text;
}

.corner {
  position: absolute;
  font-size: 12px;
  letter-spacing: 2px;
  color: #fff;
  opacity: 0.6;
}



/* Marquee style */
.page-loader_marquee {
  position: absolute;
  width: 100%;
  height: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
  padding: 10x 0;
}
.page-loader_marquee.is-top { top: 0; }
.page-loader_marquee.is-bottom { bottom: 0; }

.page-loader_marquee-track {
  /* display: flex;
  width: max-content;
  will-change: transform; */

    position: absolute;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 1rem;
    padding-bottom: 1rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    color: #fff;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.page-loader_marquee-text {
  opacity: 0.6;
  font-weight: 600;
  white-space: nowrap;
}
.page-loader_noise {
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: 0%;
  z-index: 0;
  background-image: url(../img/Grain_overlay.gif);
  background-position: 0px 0px;
  background-size: auto;
  opacity: 0.05;
}
.preloader-content
{
  max-width: 700px;
}
.preloader-content .sub-1, .preloader-content .sub-2
{   letter-spacing: 30px;
    text-align: center;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}
.preloader-content .sub-2
{
  text-align: right;
}
.preloader-content .sub-2:before
{
  display: inline-block;
  content: "";
  height: 3px;
  width: 383px;
  margin-right: 50px;
  background-color: #fff;
  position: absolute;
  bottom: 25px;
  left: 0;
  width: calc(100% - 230px);
  text-align: left;
}
@media(max-width: 1023px)
{
  .preloader-content .sub-1, .preloader-content .sub-2
  {
    letter-spacing: 4px;
  }
  .preloader-content .sub-2:before
  {
    width: calc(100% - 140px);
  }
}