@font-face {
  font-family: "Helvetica-bold";

  src: url("fonts/HelveticaNowDisplay-Bold.woff") format("woff");

  font-weight: bold;

  font-style: normal;
}

@font-face {
  font-family: "Helvetica-Light";

  src: url("fonts/HelveticaNowDisplay-Light.woff") format("woff");

  font-weight: 400;

  font-style: normal;
}

* {
  margin: 0;

  padding: 0;
}

.fz-6 {
  font-size: 6rem;
}

.fz-1_6 {
  font-size: 1.6rem;
}

.text-white {
  color: #fff;
}

.logo {
  width: 115px;
  position: absolute;
  top: 3rem;
  left: 5rem;
}

.logo img {
  width: 100%;
  object-fit: contain;
}

section {
  height: 100vh;
  background-image: url("image/background.jpg");
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.arrow {
  position: absolute;
  bottom: -0.5rem;
  right: 8rem;
  max-width: 50rem;
}

.arrow img {
  object-fit: contain;
  width: 100%;
}

.text-area {
  display: grid;
  max-width: 530px;
  width: auto;
  padding: 3rem;
  margin-left: 2rem;
  margin-right: auto;
  margin-top: 10rem;
  margin-bottom: auto;
  gap: 1rem;
  z-index: 9;
}

.text-footer {
  max-width: 200px;
  width: 100%;
  padding: 1rem;
  margin-left: 5rem;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: 4rem;
  z-index: 9;
}

h1 {
  font-size: 52px;
  font-family: "Helvetica-bold";
  line-height: 1em;
  margin-bottom: 0.5rem;
}

p {
  font-family: "Helvetica-Light";

  font-size: 15px;
}

.flex {
  display: flex;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

@media (max-width: 768px) {
  .text-footer {
    position: absolute;
    margin: auto;
    bottom: 2rem;
    left: 2rem;
  }

  .fz-6 {
    font-size: 3.5rem;
  }
}

@media (max-width: 460px) {
  .text-area {
    max-width: 100%;
    margin-right: 0;
    margin-left: auto;
  }

  section {
    background-position-x: 30%;
  }

  .logo {
    left: 3rem;
  }

  .arrow {
    right: auto;
  }

  .text-footer {
    bottom: 10rem;
  }

  .fz-6 {
    font-size: 2.6rem;
  }
}