.hero {
  height: calc(100vh - 56px);
  width: 100%;
  position: relative;

  display: flex;
  flex-direction: column;
}
.hero__title-wrapper {
  padding: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__title {
  font-family: "FrulaExtravagant";
  font-size: 196px;
  color: var(--white-color);
  text-transform: uppercase;
  letter-spacing: 3%;
  font-weight: 400;
  text-align: center;
}
.hero-content {
  flex-grow: 1;
  background-image: url("../assets/images/hero-bg.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 64px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.hero-content__blur {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  z-index: -1;
}
.cta__button-arrow {
  width: 22px;
  fill: var(--white-color);
}
.hero-content__row {
  width: 100%;
  display: flex;
  justify-content: space-between;
  width: 540px;
  list-style-type: none;
}
.hero-content__quote {
  color: var(--white-color);
  font-size: 14px;
  letter-spacing: 2%;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.hero-content__quote:first-child {
  width: 260px;
}
.hero-content__quote:last-child {
  width: 190px;
}
.hero__image {
  position: absolute;
  bottom: 70px;
  right: 0;
  height: 70%;
  width: auto;
  z-index: 0;
  object-fit: contain;
  object-position: bottom;
}

/***** RESPONSIVE *****/

@media screen and (max-width: 1460px) {
  .hero__title-wrapper {
    padding: 40px 64px;
  }
  .hero__title {
    font-size: 156px;
  }
  .hero__image {
    height: 65%;
    max-width: 60%;
    
  }
}

@media screen and (max-width: 1200px) {
  .hero__title-wrapper {
    padding: 40px 40px;
  }
  .hero__title {
    font-size: 120px;
  }
}

@media screen and (max-width: 560px) {
  .hero-content {
    padding: 50px 20px;
    justify-content: flex-start;
  }
  .hero__title-wrapper {
    margin-top: 56px;
    padding: 32px 0;
  }
  .hero__title {
    font-size: 48px;
  }
  .cta__button-arrow {
    width: 12px;
  }
  .hero-content__row {
    display: flex;
    margin-top: 50px;
    width: 100%;
  }
  .hero-content__quote {
    font-size: 10px;
  }
  .hero-content__quote:first-child {
    width: 55%;
  }
  .hero-content__quote:last-child {
    width: 35%;
  }
  .hero__image {
    bottom: 44px;
    height: 40%;
    width: 100%;
    object-fit: contain;
    object-position: bottom;
  }
}
