.content-image-block {
  position: relative;
  background-color: #F0E3D4;
  margin-top: 244px;
  margin-bottom: 80px;
}
@media (min-width: 1200px) {
  .content-image-block {
    margin-block: 220px;
  }
}
.content-image-block .row {
  align-items: center;
}
.content-image-block .content {
  position: relative;
  padding: 40px 0px;
  text-align: center;
  z-index: 10;
}
@media (min-width: 1200px) {
  .content-image-block .content {
    text-align: left;
    margin-top: unset;
    padding: 80px 0px;
  }
}
.content-image-block .shapes {
  display: flex;
  justify-content: center;
}
@media (min-width: 1200px) {
  .content-image-block .shapes {
    position: relative;
    min-height: 320px;
  }
}
.content-image-block .shapes .shape-01 {
  position: absolute;
  transform: translateY(-50%);
  width: 320px;
  -webkit-clip-path: var(--clip, url(#my-clip-path));
  background-color: #6d8d63;
  clip-path: var(--clip, url(#my-clip-path));
  aspect-ratio: var(--aspect-ratio, 1/1);
  z-index: 10;
}
@media (min-width: 1200px) {
  .content-image-block .shapes .shape-01 {
    top: 50%;
    transform: translateY(-50%);
    width: 700px;
    z-index: unset;
  }
}
.content-image-block .shapes .shape-01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-image-block .shapes .shape-02 {
  z-index: 20;
}
@media (min-width: 1200px) {
  .content-image-block .shapes .shape-02 {
    display: block;
    position: absolute;
    bottom: 0;
    right: 20px;
  }
}
.content-image-block .shape-03 {
  display: none;
}
@media (min-width: 1200px) {
  .content-image-block .shape-03 {
    display: block;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
  }
  .content-image-block .shape-03 svg {
    width: 100%;
    height: auto;
    display: block;
  }
}
.content-image-block .shape-04 {
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.content-image-block .shape-04 svg {
  width: auto;
  height: 100%;
  display: block;
}
.content-image-block .arrow-above {
  display: none;
}
@media (min-width: 1200px) {
  .content-image-block .arrow-above {
    display: block;
    position: absolute;
    transform: translateY(-50%);
    top: -80px;
    right: -120px;
    width: 80px;
  }
  .content-image-block .arrow-above svg {
    width: 100%;
    height: auto;
    display: block;
  }
}
.content-image-block .arrow-below {
  display: none;
}
@media (min-width: 1200px) {
  .content-image-block .arrow-below {
    display: block;
    position: absolute;
    transform: translateY(50%);
    bottom: -56px;
    right: -120px;
    width: 80px;
  }
  .content-image-block .arrow-below svg {
    width: 100%;
    height: auto;
    display: block;
  }
}