@charset "utf-8";

.home_hero {
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 64px auto 0;
  padding: 0 32px;
}
.home_hero_text {
  margin-right: 100px;
}
.home_hero_title {
  font-family: var(--bebas-neue);
  font-size: 108px;
  line-height: 0.9;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.home_hero_title_line {
  display: block;
  opacity: 0;
}
.home_hero_title_line:nth-child(1) {
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.2s;
}
.home_hero_title_line:nth-child(2) {
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.4s;
}
.home_hero_title_line:nth-child(3) {
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.6s;
}
.home_hero_subtitle {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 700;
  opacity: 0;
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.8s;
}
.home_hero_images {
  display: flex;
  justify-content: space-between;
  margin-left: auto;
}
.home_hero_img {
  width: 128px;
  height: auto;
  margin-right: 24px;
  opacity: 0;
}
.home_hero_img:nth-child(1) {
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 0.8s;
}
.home_hero_img:nth-child(2) {
  animation: showDown 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 1s;
}
.home_hero_img:nth-child(3) {
  animation: showUp 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 1.2s;
}
.home_hero_img:nth-child(4) {
  animation: showDown 1.2s cubic-bezier(0.21, 0.42, 0.23, 1) forwards 1.4s;
}
.home_hero_img:last-child {
  margin-right: 0;
}

@media screen and (max-width: 1040px) {
  .home_hero_text {
    margin-right: 64px;
  }
  .home_hero_title {
    font-size: 88px;
  }
  .home_hero_subtitle {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .home_hero {
    display: block;
    padding: 0 20px;
  }
  .home_hero_text {
    margin-right: 0;
  }
  .home_hero_images {
    width: 100%;
    margin-top: 40px;
  }
  .home_hero_img {
    width: calc(25% - 12px);
    margin-right: 0;
  }
}

@media screen and (max-width: 480px) {
  .home_hero {
    display: block;
    margin: 40px auto 0;
  }
  .home_hero_title {
    font-size: 64px;
  }
  .home_hero_subtitle {
    font-size: 18px;
  }
}
