:root {
  --white: white;
  --black: black;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.wrapper {
  z-index: 100;
  flex-flow: row;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  display: flex;
  position: relative;
}

.location {
  color: #fff;
  text-align: center;
  cursor: pointer;
  background-color: #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 33.333%;
  height: 100%;
  padding-top: 5vh;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: relative;
}

.location.platte {
  z-index: 0;
  background-image: url('../images/platte.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.location.sixth {
  background-image: url('../images/sixth.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.location.highlands {
  background-image: url('../images/highlands.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.location-name {
  letter-spacing: .5px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Reckless, sans-serif;
  font-weight: 300;
}

.button {
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
  border: 1.5px solid #fff;
  border-radius: 3px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding: 0 20px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  transition: border-color .2s;
  display: flex;
}

.button:hover {
  border-color: rgba(255, 255, 255, .4);
}

.location-link {
  opacity: 1;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  transition: opacity .2s;
  display: block;
}

.location-link:hover {
  opacity: .7;
}

.logo {
  z-index: 200;
  pointer-events: none;
  width: 130px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.overlay {
  opacity: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.lockup {
  z-index: 100;
  position: relative;
}

.tagline {
  z-index: 300;
  pointer-events: none;
  color: #fff;
  text-align: center;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  font-family: Reckless, sans-serif;
  font-size: 20px;
  font-weight: 300;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.open-graph {
  z-index: 0;
  opacity: 0;
  width: 100px;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.loader {
  z-index: 1000;
  background-color: #000;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

@media screen and (max-width: 767px) {
  .wrapper {
    flex-flow: column;
    height: auto;
    overflow: scroll;
  }

  .location {
    text-align: left;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    height: 33.333vh;
    min-height: 280px;
    padding-bottom: 50px;
  }

  .location.platte {
    padding-top: 350px;
  }

  .logo {
    margin-top: 60px;
    position: absolute;
  }

  .overlay.platte, .overlay.sixth, .overlay.highlands {
    opacity: .2;
  }

  .tagline {
    margin-bottom: 40px;
    margin-right: 20px;
    position: fixed;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }
}

@media screen and (max-width: 479px) {
  .tagline {
    display: none;
  }
}


@font-face {
  font-family: 'Reckless';
  src: url('../fonts/RecklessTRIAL-Light.woff2') format('woff2'), url('../fonts/RecklessTRIAL-Light.eot') format('embedded-opentype'), url('../fonts/RecklessTRIAL-Light.woff') format('woff'), url('../fonts/RecklessTRIAL-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../images/') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}