.home-header {
  position: relative;
  background-color: #6d8d63;
  padding: 40px 0;
}
@media (min-width: 1200px) {
  .home-header {
    padding: 0;
  }
}
.home-header .content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.home-header .content h1, .home-header .content p {
  color: white;
}
@media (min-width: 1200px) {
  .home-header .content {
    align-items: flex-start;
    text-align: start;
    min-height: 620px;
  }
}
.home-header .images {
  position: relative;
  display: flex;
}
@media (min-width: 1200px) {
  .home-header .images {
    min-height: 620px;
    justify-content: flex-end;
    align-items: center;
  }
}
.home-header .images img {
  border-radius: 20px;
  object-fit: cover;
}
.home-header .images .image01 {
  height: 320px;
  width: 100%;
}
@media (min-width: 1200px) {
  .home-header .images .image01 {
    height: 420px;
    width: 480px;
    z-index: 10;
    animation: floatImage01 8s ease-in-out infinite;
  }
}
.home-header .images .image02 {
  display: none;
}
@media (min-width: 1200px) {
  .home-header .images .image02 {
    display: block;
    position: absolute;
    bottom: 140px;
    left: -120px;
    width: 439px;
    height: 258px;
    z-index: 15;
    animation: floatImage02 6s ease-in-out infinite;
  }
}
.home-header .images .header-shape-01 {
  position: absolute;
  display: none;
}
@media (min-width: 1400px) {
  .home-header .images .header-shape-01 {
    top: 144px;
    left: -56px;
    display: block;
  }
}
.home-header .images .header-shape-02 {
  position: absolute;
  right: 0;
  bottom: -144px;
}
.home-header .images .header-shape-02 svg {
  width: 120px;
}
.home-header .images .header-shape-02 p {
  display: none;
}
@media (min-width: 1200px) {
  .home-header .images .header-shape-02 {
    right: 0;
    bottom: -64px;
    z-index: 20;
    display: block;
  }
  .home-header .images .header-shape-02 svg {
    width: 344px;
  }
  .home-header .images .header-shape-02 p {
    position: absolute;
    display: block;
    top: 38%;
    left: 4%;
    width: 80%;
    font-family: "franklin-gothic-std", sans-serif;
    font-size: 26px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-align: center;
    color: #fff;
    transform: rotate(15deg);
  }
}
.home-header .header-shape-03 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
}
@media (min-width: 1200px) {
  .home-header .header-shape-03 {
    width: 220px;
  }
}
.home-header .header-shape-04 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
}
@media (min-width: 1200px) {
  .home-header .header-shape-04 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: unset;
  }
}
@keyframes floatImage01 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}
@keyframes floatImage02 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}