@font-face{
  font-family:"Bella";
  src:url("/fonts/F37BellaDisplay-Bold.woff2") format('woff2');
  font-weight:800;
  font-style:regular;
  font-display: block;
}

@font-face {
  font-family: "AvenirNext";
  src: url('/fonts/AvenirNextVariableRoman.woff2') format('woff2'), url('/fonts/AvenirNextVariableRoman.woff') format('woff');
  font-display: auto;
}

:root * {
	--mod-black: #000;
	--mod-white: #fff;
	--mod-gold: gold;
}

/*
 * Redefine the rem value while keeping it proportional.
 * Useful values, with default font-size of 16px:
 * • 62.5% -> 1rem = 10px, .1rem  = 1px
 * • 125%  -> 1rem = 20px, .05rem = 1px
 */
html {
  font-size: 62.5%;
  touch-action: manipulation;
}

* {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em 0;
	font-weight: 400;
	line-height: 1.2;
}

h1 {
	font-size: 2em;
}

a {
	color: inherit;
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

@media (min-width: 400px) {
	body {
		font-size: 16px;
	}
}

.content-padding { 
  padding: 7rem 10vw;
}

.content-padding.no-pb {
  padding-bottom: 0;
}

.content-padding.no-pt {
  padding-top: 0;
}

@media (min-width: 768px) {
  .content-padding { 
    padding: 10rem 15vw;
  }
}

@media (min-width: 997px) {
  .content-padding { 
    padding: 15rem 15vw;
  }
}

.global-hero-img {
	background-color: #000;
	width: 125vh;
	height: 125vh;
	object-fit: cover;
}

*.micro { 
	font-family: AvenirNext, sans-serif;
  font-size: 1.5rem;
  font-variation-settings: "wght" 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.3rem;
  color: #656565;
}

*.display.large {
	font-family: Bella, sans-serif;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
}

*.simple {
  font-family: AvenirNext, sans-serif;
  font-size: 1.5rem;
  font-variation-settings: "wght" 300;
  letter-spacing: 0;
  line-height: 1.33;
  margin-bottom: 1.8rem;
  color: #656565;
}

*.simple-display {	
  font-family: AvenirNext, sans-serif;	
  font-size: 2rem;	
  font-variation-settings: "wght" 250;	
  letter-spacing: 0;	
  line-height: 1.33;	
  margin-bottom: 1.8rem;	
  color: #000;	
}

dt.simple {
  font-family: AvenirNext, sans-serif;
  font-variation-settings: "wght" 600;
  font-size: 1.8rem;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 1.8rem;
  color: #333;
}

*.display, h2.display.small, h3.display.small {
  font-family: Bella, sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  color: #333;
  text-transform: uppercase;
}



p.display { font-size: 1.75rem; }
p.simple, dd.simple, dt.simple, li.simple { font-size: 1.5rem; }
h2.display, h3.display { font-size: 3rem; }

@media (min-width: 768px) {
  p.simple, dd.simple, dt.simple, li.simple { font-size: 1.5rem; }
  p.display { font-size: 2rem; }
  h2.micro, h3.micro { font-size: 1.3rem; }
  h2.display, h3.display { font-size: 3.5rem; }

  *.simple-display {   
    font-size: 2.4rem;  
  }
}

@media (min-width: 997px) {
  p.display { font-size: 2.25rem; }
  p.simple, dd.simple, dt.simple, li.simple { font-size: 1.5rem; }
  h2.micro, h3.micro { font-size: 1.3rem; }
  h2.display, h3.display { font-size: 4.25rem; }
}

.center {
	text-align: center;
}

p.dark-bg.dark-bg, h2.dark-bg.dark-bg, h3.dark-bg.dark-bg, dd.dark-bg.dark-bg, li.dark-bg.dark-bg {
	color: white;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
} 

*[max-sm][max-sm][max-sm] { display: none; }

@media (max-width: 767px) {
  *[max-sm][max-sm][max-sm] { display: unset; }
}

*[lg][lg][lg],
*[md][md][md] { 
  display: none; 
}

@media (min-width: 768px) {
  *[md][md][md] { display: unset; }
}

@media (min-width: 997px) {
  *[lg][lg][lg] { display: unset; }
}

/* SLIDE IN ANIMATION */
.slide-in-element__off {
  visibility: hidden;
  height: 0;
}
.slide-in-element > * {
  visibility: visible;
  height: auto;
  animation-name: slidein;
  animation-duration: 500ms;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  opacity: 0;
}

.hero-override {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-override {
    flex-direction: column;
  }
}

.hero-override * {
  margin: 1.5rem;
}

.hero-override *:first-child {
  margin: 2.5rem 1.5rem 1.5rem 1.5rem;
}


@media (prefers-reduced-motion) {
  .slide-in-element > * {
    opacity: 1;
  }
}
.slide-in-element > *:nth-child(2) { animation-delay: 0.025s }
.slide-in-element > *:nth-child(3) { animation-delay: 0.05s }
.slide-in-element > *:nth-child(4) { animation-delay: 0.075s }
.slide-in-element > *:nth-child(5) { animation-delay: 0.1s }
.slide-in-element > *:nth-child(6) { animation-delay: 0.125s }
.slide-in-element > *:nth-child(7) { animation-delay: 0.15s }
.slide-in-element > *:nth-child(8) { animation-delay: 0.175s }
.slide-in-element > *:nth-child(9) { animation-delay: 0.2s }
.slide-in-element > *:nth-child(10) { animation-delay: 0.225s }
.slide-in-element > *:nth-child(11) { animation-delay: 0.25s }
.slide-in-element > *:nth-child(12 + n) { animation-delay: 0.275s }
@keyframes slidein {
  0% {
    transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}