.block-bubble {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1500px;
  margin: 0 auto;
}
.block-bubble--left {
  flex-direction: row;
}
.block-bubble--right {
  flex-direction: row-reverse;
}
.block-bubble .bubble {
  background: #fff;
  box-sizing: border-box;
  padding: 1rem;
  margin: 25px;
  width: calc(100% - 50px);
  min-height: 100px;
  border-radius: 0.5rem;
  border: 25px solid;
  border-image-source: url("src/bubble_border_a.png");
  border-image-slice: 49%;
  border-image-width: 6rem;
  border-image-outset: 1;
  border-image-repeat: stretch;
  margin-bottom: 3rem;
  position: relative;
}
.block-bubble .bubble:nth-of-type(odd) {
  border-image-source: url("src/bubble_border_b.png");
}
.block-bubble .bubble .arrow {
  width: 2rem;
  height: 4rem;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: -25px;
  transform: scaleY(-1);
}
.block-bubble .bubble .arrow--left {
  background-image: url(src/bubble_hook.svg);
  left: -77px;
}
.block-bubble .bubble .arrow--right {
  background-image: url(src/bubble_hook--flipped.svg);
  right: -77px;
}
.block-bubble .bubble--use-speaker-left {
  margin-left: 2rem;
}
.block-bubble .bubble--use-speaker-right {
  margin-right: 2rem;
}
.block-bubble .bubble p, .block-bubble .bubble h2, .block-bubble .bubble h3, .block-bubble .bubble h4 {
  color: #5A91CC;
}
.block-bubble .bubble h2 {
  margin-bottom: 1.5rem;
}
@media (max-width: 756px) {
  .block-bubble {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
  .block-bubble .bubble {
    margin: 0px;
    margin-bottom: 2rem;
    margin-top: 4rem;
    padding: 0rem;
  }
  .block-bubble .bubble .arrow {
    display: none;
  }
  .block-bubble .bubble--use-speaker-left, .block-bubble .bubble--use-speaker-right {
    margin-right: 0rem;
  }
  .block-bubble .bubble--use-speaker-left .arrow, .block-bubble .bubble--use-speaker-right .arrow {
    display: block;
    width: 4rem;
    height: 4rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
    top: -5.5rem;
    background-image: url(src/bubble_hook_center.svg);
    left: calc(50% - 2rem);
    right: unset;
    transform: scaleY(0.75);
  }
}
.block-bubble .speaker {
  width: 30%;
  justify-self: auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  align-self: stretch;
}
@media (max-width: 756px) {
  .block-bubble .speaker {
    padding-top: 100%;
    width: 100% !important;
    background-size: cover;
  }
}

/*# sourceMappingURL=style.css.map */