@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';
}

/* HIDDEN */
.x9-hidden {
  display: none;
}

/* HEADER */
.x9-header-top,
.x9-header-bottom {
  width: 100%;
  height: 12vh;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 5vw;
}

.x9-header-top {
  background: #fff;
}

.x9-header-bottom {
  background: #e2e0d6;
}

/* LOGO */
.x9-logo img {
  width: 10vw;
  max-width: 9rem;
}

/* BUTTON */
.x9-btn {
  background: #062b2b;
  color: #fff;

  padding: 2vh 2vw;
  border-radius: 0.5rem;

  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
}

/* HERO */
.x9-hero {
  width: 100%;
  height: 90vh;

  background: url("../../assets/images/desk.png") center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

/* OVERLAY */
.x9-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

/* CONTENT */
.x9-hero-box {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 80vw;
}

/* DOT */
.x9-dot {
  font-size: 0;
}

/* TEXT */
.x9-hero-box h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2vh;
}

.x9-hero-box h2 {
  font-size: 2rem;
  margin-bottom: 4vh;
}

/* CTA */
.x9-cta {
  display: inline-block;
  background: #062b2b;
  color: #fff;

  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) {

  .x9-hero {
        background: url(../../assets/images/mob.png) no-repeat;
        background-size: cover;
        background-position: bottom;
  }

  .x9-logo img {
    width: 25vw;
  }

  .x9-hero-box {
    max-width: 90vw;
    top: 5%;
    
  }

  .x9-hero-box h1 {
    font-size: 2.5rem;
    line-height: 50px;
    margin-bottom: 0;
  }

  .x9-hero-box h2 {
    font-size: 1.4rem;
  }

  .x9-cta {
    padding: 1.5vh 10vw;
    font-size: 1rem;
  }

  .x9-btn {
    padding: 1vh 5vw;
    font-size: 0.9rem;
  }
}