@font-face {
  font-family: 'Biennale-Regular';
  src: url('../fonts/Biennale-Regular (2) (2).otf') format('opentype');
}

@font-face {
  font-family: 'Biennale-Bold';
  src: url('../fonts/Biennale-Bold (2) (1) (1).otf') format('opentype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Biennale-Regular';
}


/* HEADER */
.top {
  width: 100%;
  height: 12vh;
  background: white;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 5vw;
}


/* LOGO */
.logo img {
  width: 10vw;
  max-width: 9rem;
  height: auto;
}


/* HEADER BUTTON */
.btn {
  background: #062b2b;
  color: white;

  padding: 2vh 2vw;
  border-radius: 0.5rem;

  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;

  cursor: pointer;
}


/* HERO SECTION */
.show {
  width: 100%;
  height: 90vh;

  background-image: url("../../assets/images/banner_2400x1000.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}


/* OVERLAY */
.show::before {
  content: "";
  position: absolute;
  inset: 0;
      background: rgb(14 14 13 / 45%);
}


/* HERO TEXT BOX */
.box {
  position: relative;
  text-align: center;
  color: white;
  max-width: 80vw;
}


/* MAIN HEADING */
.box h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2vh;
}


/* SUB HEADING */
.box h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 4vh;
}


/* HERO BUTTON */
.tap {
  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;
}


/* SECOND HEADER */
.bottom {
  width: 100%;
  height: 12vh;
  background: #e2e0d6;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 0 5vw;
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

  .show {
    background-image: url("../../assets/images/mob_banner_720 x 1280.png");
        background-size: cover;
    height: 90vh;
  }

  .logo img {
    width: 25vw;
  }

  .box {
    max-width: 90vw;
    top: 3%;
  }

  .box h1 {
    font-size: 2.5rem;
    line-height: 50px;
     margin-bottom: 0vh;
  }

  .box h2 {
    font-size: 1.4rem;
    margin-bottom: 3vh;
  }

  .tap {
    padding: 1.5vh 10vw;
    font-size: 1rem;
  }

  .btn {
    padding: 1vh 5vw;
    font-size: 0.9rem;
  }
}
