@font-face {
  font-family: 'Biennale-Regular';
  src: url('../fonts/Biennale-Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Biennale-Bold';
  src: url('../fonts/Biennale-Bold (2).otf') format('opentype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Biennale-Regular';
}

/* HEADER TOP */
.x9k-header-top {
  width: 100%;
  height: 12vh;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
}

/* HEADER BOTTOM */
.x9k-header-bottom {
  width: 100%;
  height: 12vh;
  background: #e2e0d6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
}

/* LOGO */
.x9k-logo img {
  width: 10vw;
  max-width: 9rem;
  height: auto;
}

/* BUTTON */
.x9k-btn-main {
  background: #062b2b;
  color: white;
  padding: 2vh 2vw;
  border-radius: 0.5rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

/* HERO */
.x9k-hero {
  width: 100%;
  height: 90vh;
  background-image: url("../../assets/images/Sedona, AZ_Desktop.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* OVERLAY */
.x9k-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
}

/* HERO BOX */
.x9k-hero-box {
  position: relative;
  text-align: center;
  color: white;
  max-width: 80vw;
}

/* HEADING */
.x9k-hero-box h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2vh;
}

.x9k-hero-box h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 4vh;
}

/* HERO BUTTON */
.x9k-btn-hero {
  display: inline-block;
  background: #062b2b;
  color: white;
  border: 1px solid #fff;
  padding: 2vh 2vw;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

  .x9k-hero {
    background-image: url("../../assets/images/Sedona, AZ_Mob.png");
    background-size: unset;
  }

  .x9k-logo img {
    width: 25vw;
  }

  .x9k-hero-box {
    max-width: 90vw;
    top: 3%;
  }

  .x9k-hero-box h1 {
    font-size: 2.5rem;
    line-height: 50px;
    margin-bottom: 0;
  }

  .x9k-hero-box h2 {
    font-size: 1.4rem;
    margin-bottom: 3vh;
  }

  .x9k-btn-hero {
    padding: 1.5vh 10vw;
    font-size: 1rem;
  }

  .x9k-btn-main {
    padding: 1vh 5vw;
    font-size: 0.9rem;
  }
}