.three-image-block {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background-color);
  position: relative;
}
.three-image-block .row {
  align-items: center;
}
.three-image-block .arrow-above {
  display: none;
}
@media (min-width: 1200px) {
  .three-image-block .arrow-above {
    display: block;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }
  .three-image-block .arrow-above svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .three-image-block.is-preview .arrow-above svg {
    display: none;
  }
}
.three-image-block .arrow-below {
  display: none;
}
@media (min-width: 1200px) {
  .three-image-block .arrow-below {
    display: block;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
  }
  .three-image-block .arrow-below svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .three-image-block.is-preview .arrow-below svg {
    display: none;
  }
}
.three-image-block.has-3-images {
  margin-top: 244px;
  margin-bottom: 80px;
}
@media (min-width: 1200px) {
  .three-image-block.has-3-images {
    margin-block: 244px;
  }
}
.three-image-block .content {
  position: relative;
  padding: 64px 0px;
  text-align: center;
  z-index: 10;
}
@media (min-width: 1200px) {
  .three-image-block .content {
    text-align: left;
    margin-top: unset;
    padding: 80px 0px;
    height: 100%;
    display: flex;
    align-items: center;
  }
}
.three-image-block .svg, .three-image-block svg {
  position: absolute;
  width: 0;
  height: 0;
}
.three-image-block .shapes {
  display: flex;
  justify-content: center;
  position: relative;
}
@media (min-width: 1200px) {
  .three-image-block .shapes {
    position: relative;
    min-height: 320px;
  }
}
.three-image-block .shapes img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.three-image-block .shapes .shape-01 {
  width: 320px;
  -webkit-clip-path: var(--clip, url(#three-image-block-1));
  background-color: #6d8d63;
  clip-path: var(--clip, url(#three-image-block-1));
  aspect-ratio: var(--aspect-ratio, 1/1);
  margin-top: -160px;
  margin-bottom: 0px;
  transform: none;
}
@media (min-width: 1200px) {
  .three-image-block .shapes .shape-01 {
    transform: unset;
    position: absolute;
    right: 0;
    margin: 0px;
  }
}
.three-image-block .shapes .shape-02 {
  width: 320px;
  -webkit-clip-path: var(--clip, url(#three-image-block-2));
  background-color: #6d8d63;
  clip-path: var(--clip, url(#three-image-block-2));
  aspect-ratio: var(--aspect-ratio, 1/1);
  display: none;
}
@media (min-width: 1200px) {
  .three-image-block .shapes .shape-02 {
    display: block;
    position: absolute;
    right: 320px;
    top: 8px;
    transform: translateY(50%);
  }
}
.three-image-block .shapes .shape-03 {
  width: 320px;
  -webkit-clip-path: var(--clip, url(#three-image-block-3));
  background-color: #6d8d63;
  clip-path: var(--clip, url(#three-image-block-3));
  aspect-ratio: var(--aspect-ratio, 1/1);
  display: none;
}
@media (min-width: 1200px) {
  .three-image-block .shapes .shape-03 {
    display: block;
    position: absolute;
    right: 320px;
    transform: translateY(-50%);
  }
}
.three-image-block .shapes .circle {
  border-radius: 50%;
  overflow: hidden;
  height: 220px;
  width: 220px;
  border: 4px solid var(--theme-color);
  display: flex;
  justify-content: center;
  align-content: end;
}
@media (min-width: 992px) {
  .three-image-block .shapes .circle {
    height: 420px;
    width: 420px;
  }
}
.three-image-block .shapes .circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.three-image-block .shapes .blob .blob-shape {
  height: 100%;
  width: 320px;
  -webkit-clip-path: var(--clip, url(#blob-shape));
  background-color: #6d8d63;
  clip-path: var(--clip, url(#blob-shape));
  aspect-ratio: var(--aspect-ratio, 1/1);
}
@media (min-width: 1200px) {
  .three-image-block .shapes .blob .blob-shape {
    width: 420px;
  }
}
.three-image-block .shapes .blob .blob-shape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}