* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  font-family: "Grotesk";
}

@font-face {
  font-family: "Grotesk";
  src: url("../fonts/Grotesk/Grotesk.ttf");
}
.box {
  height: 100dvh;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.box.box-1 {
  background-image: url("../images/banner-bg-1.png");
}
.box.box-2 {
  background-image: url("../images/banner-bg-2.png");
  position: relative;
  display: none;
}

.box .logo-box img {
  max-width: 320px;
  width: 100%;
}
.box-1 .logo-box img {
  mix-blend-mode: multiply;
}

.box.box-1 h1 {
  text-transform: uppercase;
  color: rgba(255, 200, 100, 1.2);
  mix-blend-mode: overlay;
  letter-spacing: 4px;
  font-size: 12vw;
  font-weight: 900;
}

.box.box-2 h1 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 9vw;
  color: white;
  font-weight: 900;
  position: relative;
  z-index: 9;
}
.box-2 .logo-box img {
  max-width: 240px;
  width: 100%;
  margin-bottom: 50px;
}
.box-2 .banner-design {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.box-2 .banner-design img {
  max-width: 90%;
  display: flex;
  margin: 0 auto;
}

/* responsive */

@media screen and (max-width: 1499px) {
  .box-2 .banner-design img {
    max-width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .box .logo-box img {
    max-width: 280px;
  }
  .box.box-2 h1 {
    font-size: 12vw;
  }
}
@media screen and (max-width: 767px) {
  .box .logo-box img {
    max-width: 180px;
  }
  .box-2 .banner-design img {
    max-width: 500px;
  }
}
