:root {
  --primary: #FFFFFF;
  --secondary: #40321C;
  --purple: #cb57ce;
  --orange: #DD7D33;
  --content_size: 1.5rem;
  --tagline_size: 2rem;
  --marquee_size: 3rem;
  --font_heading: "Oswald", serif;
  --font-body: "Roboto Condensed", sans-serif;
}

* {
  padding: 0px;
  margin: 0px;
}

html {
  font-size: 16px;
}

body {
  background: var(--primary);
  color: var(--secondary);
  font-size: var(--content_size);
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  padding: 0px;
  margin: 0px;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

#holding-page {
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background: var(--primary);
  z-index: 9999;
}
#holding-page .page-top {
  padding: 3% 40px 5% 40px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#holding-page .page-btm {
  padding-bottom: 20px;
}
#holding-page .holding__logo {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
#holding-page .holding__logo img {
  width: 100%;
}
#holding-page .holding__tagline {
  text-align: center;
  padding-top: 40px;
}
#holding-page .holding__tagline h3 {
  font-family: var(--font-heading);
  font-size: var(--tagline_size);
  color: var(--purple);
  font-weight: 700;
  margin-bottom: 40px;
  padding: 10px 20px;
  text-transform: uppercase;
  background: #FFE5FD;
  display: inline-block;
}
#holding-page .holding__tagline p {
  font-family: var(--font-body);
  padding-bottom: 20px;
}
#holding-page .holding__contact {
  font-size: var(--content_size);
  text-align: center;
  padding-top: 40px;
  color: rgba(221, 125, 51, 0.25);
}
#holding-page .holding__contact a.button {
  color: var(--orange);
  background: rgba(255, 168, 101, 0.25);
  padding: 10px 40px;
  text-transform: uppercase;
  font-weight: 700;
}
#holding-page .holding__social {
  padding-top: 20px;
  font-size: 40px;
  text-align: center;
}
#holding-page .marquee {
  padding-top: 40px;
}
#holding-page .marquee__inner {
  animation: marquee 180s linear infinite;
  -webkit-animation: marquee 180s linear infinite;
}
#holding-page .marquee__inner span {
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  padding: 0px !important;
  font-size: var(--marquee_size);
  font-family: var(--font_heading);
  letter-spacing: 2px;
}

@media (max-width: 1023px) {
  #holding-page .page-top {
    max-width: 80%;
  }
}
@media (max-width: 990px) {
  #holding-page .holding__tagline br {
    display: none;
  }
}
@media (max-width: 575.98px) {
  :root {
    --marquee_size: 2rem;
  }
  #holding-page {
    justify-content: space-evenly;
  }
  #holding-page .page-top {
    padding: 0px 40px;
  }
  #holding-page .holding__tagline br {
    display: none;
  }
  #holding-page .holding__contact a {
    display: block;
    padding: 10px 0px;
  }
  #holding-page .holding__contact a.underlined:after {
    display: none;
  }
  #holding-page .holding__contact span {
    display: none;
  }
  #holding-page .holding__social i {
    font-size: 24px;
  }
}
@media (max-width: 400px) {
  :root {
    --content_size: 1.5rem;
    --tagline_size: 2rem;
    --marquee_size: 2rem;
  }
  #holding-page .page-top {
    max-width: 80% !important;
    padding: 0px 20px !important;
  }
}
.underlined {
  display: inline-block;
  position: relative;
  color: var(--orange);
}
.underlined:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--orange);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}
.underlined:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.marquee {
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}
.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  animation-play-state: running;
  opacity: 1;
  transition-duration: 0.4s;
  transform: translate3d(calc(-25% + 20vw), 0, 0);
  -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
  -moz-transform: translate3d(calc(-25% + 20vw), 0, 0);
  -ms-transform: translate3d(calc(-25% + 20vw), 0, 0);
  -o-transform: translate3d(calc(-25% + 20vw), 0, 0);
  transition: opacity 0.1s;
  -webkit-transition: opacity 0.1s;
  -moz-transition: opacity 0.1s;
  -ms-transition: opacity 0.1s;
  -o-transition: opacity 0.1s;
}
.marquee__inner span {
  white-space: nowrap;
  padding: 0 1vw;
}

@keyframes marquee {
  0% {
    transform: translate3d(calc(-25% + 20vw), 0, 0);
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -moz-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -ms-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -o-transform: translate3d(calc(-25% + 20vw), 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% + 20vw), 0, 0);
    -webkit-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -moz-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -ms-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -o-transform: translate3d(calc(-50% + 20vw), 0, 0);
  }
}
@keyframes -webkit-marquee {
  0% {
    transform: translate3d(calc(-25% + 20vw), 0, 0);
    -webkit-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -moz-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -ms-transform: translate3d(calc(-25% + 20vw), 0, 0);
    -o-transform: translate3d(calc(-25% + 20vw), 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% + 20vw), 0, 0);
    -webkit-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -moz-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -ms-transform: translate3d(calc(-50% + 20vw), 0, 0);
    -o-transform: translate3d(calc(-50% + 20vw), 0, 0);
  }
}/*# sourceMappingURL=styles.css.map */