.breakpointWrapper {
  position: relative;
}
.breakpointWrapper::after {
  content: "desktop";
  position: fixed;
  bottom: 7.5%;
  right: 0;
  background-color: black;
  color: white;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .breakpointWrapper::after {
    content: "mobile";
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .breakpointWrapper::after {
    content: "tablet";
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .breakpointWrapper::after {
    content: "desktop";
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .breakpointWrapper::after {
    content: "widescreen";
  }
}
@media screen and (min-width: 1408px) and (max-width: 1919px) {
  .breakpointWrapper::after {
    content: "fullhd (1440p)";
  }
}
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .breakpointWrapper::after {
    content: "ultrahd (1080p+)";
  }
}
@media screen and (min-width: 2560px) {
  .breakpointWrapper::after {
    content: "qhd (1440p+)";
  }
}
.breakpointWrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 999998;
  opacity: 0.25;
}
@media screen and (max-width: 768px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(255, 0, 0, 0.9) calc(8.333% - 1px), rgba(255, 0, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(0, 0, 255, 0.9) calc(8.333% - 1px), rgba(0, 0, 255, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(0, 255, 0, 0.9) calc(8.333% - 1px), rgba(0, 255, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(255, 165, 0, 0.9) calc(8.333% - 1px), rgba(255, 165, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1408px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(128, 0, 128, 0.9) calc(8.333% - 1px), rgba(128, 0, 128, 0.9) 8.333%);
  }
}

.leaf-quote-block {
  width: 100%;
  padding: 4rem 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
  background-color: transparent;
  overflow: hidden;
}
@media screen and (max-width: 1400px) {
  .leaf-quote-block {
    overflow: visible;
  }
}
.leaf-quote-block .sehu-container {
  position: relative;
}
.leaf-quote-block .leaf-quote-bubble {
  padding: 3rem 3rem 1.5rem 3rem;
  position: relative;
  z-index: 1;
  max-width: calc(100% - 320px);
  box-sizing: border-box;
  margin-left: auto;
  margin-right: 0;
}
.leaf-quote-block .leaf-quote-bubble .leaf-quote-decoration {
  position: absolute;
  width: 307px;
  height: 112px;
  z-index: 2;
  top: 0;
  left: -275px;
  border-radius: 0 31.25rem 0 31.25rem;
}
@media screen and (max-width: 1400px) {
  .leaf-quote-block .leaf-quote-bubble .leaf-quote-decoration {
    width: 210px;
    height: 85px;
    top: -2.75rem;
    left: auto;
    right: -2rem;
    transform: scaleX(-1);
  }
}
@media screen and (max-width: 768px) {
  .leaf-quote-block .leaf-quote-bubble .leaf-quote-decoration {
    right: 0rem;
  }
}
@media screen and (min-width: 1126px) and (max-width: 1400px) {
  .leaf-quote-block .leaf-quote-bubble .leaf-quote-decoration {
    right: 0;
  }
}
@media screen and (min-width: 1401px) {
  .leaf-quote-block .leaf-quote-bubble--left {
    margin-left: 280px;
    margin-right: auto;
  }
  .leaf-quote-block .leaf-quote-bubble--center {
    margin-left: auto;
    margin-right: auto;
  }
  .leaf-quote-block .leaf-quote-bubble--right {
    margin-left: auto;
    margin-right: 0;
  }
}
@media screen and (max-width: 1400px) {
  .leaf-quote-block .leaf-quote-bubble {
    padding: 3rem 2rem 1.5rem 2rem;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.leaf-quote-block .leaf-quote-title {
  margin: 0 0 1.5rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 1rem;
}
.leaf-quote-block .leaf-quote-title .quote-image {
  height: 36px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .leaf-quote-block .leaf-quote-title {
    flex-direction: column;
    gap: 0.75rem;
  }
  .leaf-quote-block .leaf-quote-title .quote-image {
    height: 28px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .leaf-quote-block .leaf-quote-title .quote-image {
    height: 32px;
  }
}
@media screen and (min-width: 1216px) {
  .leaf-quote-block .leaf-quote-title .quote-image {
    height: 40px;
  }
}
.leaf-quote-block .leaf-quote-text {
  text-align: left;
  margin: 0;
}
.leaf-quote-block .leaf-quote-bubble--has-icon .leaf-quote-text {
  margin-left: calc(36px + 1rem);
}
@media screen and (max-width: 1023px) {
  .leaf-quote-block .leaf-quote-bubble--has-icon .leaf-quote-text {
    margin-left: 0;
  }
}
.leaf-quote-block.alignwide .sehu-container {
  max-width: 95% !important;
}
.leaf-quote-block.alignfull .sehu-container {
  max-width: 100% !important;
  padding: 0 2rem;
}
@media (prefers-contrast: high) {
  .leaf-quote-block .leaf-quote-decoration {
    border: 2px solid #000000;
  }
  .leaf-quote-block .leaf-quote-bubble {
    border: 2px solid #000000;
    background-color: #FFFFFF;
  }
  .leaf-quote-block .leaf-quote-title,
  .leaf-quote-block .leaf-quote-text {
    color: #000000;
  }
}
