.image-quote {
  margin-bottom: 66px;
}
@media (max-width: 1024px) {
  .image-quote {
    margin-bottom: 0;
  }
}
.image-quote .inner_section {
  width: var(--baseWidth);
  max-width: var(--maxWidth);
  margin: 0 auto;
  position: relative;
}
.image-quote .inner_section > img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .image-quote .inner_section > img {
    min-height: 0;
  }
}
.image-quote .inner_section .text {
  background: var(--grayColor);
  border-radius: 20px;
  padding: 30px 60px;
  box-shadow: 0px 24px 64px 0px rgba(0, 0, 0, 0.14);
  width: 85%;
  position: absolute;
  bottom: -66px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .image-quote .inner_section .text {
    position: relative;
    transform: none;
    margin: -20px auto 0;
    left: 0;
    padding: 30px 20px;
    bottom: 0;
  }
}
.image-quote .inner_section .text p {
  margin: 0;
  padding: 0;
  font-family: var(--headline);
  font-size: 23px;
  font-style: normal;
  font-weight: 300;
  line-height: 125.5%;
  display: flex;
}
@media (max-width: 768px) {
  .image-quote .inner_section .text p {
    font-size: 20px;
  }
}
.image-quote .inner_section .text p:before {
  content: "";
  width: 16px;
  height: 12px;
  flex: 0 0 16px;
  background: url("img/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  margin-top: 5px;
  margin-right: 5px;
}
.wp-block-columns .image-quote .inner_section, .px-frame-layout .image-quote .inner_section, .accordion-content .image-quote .inner_section, .tab_wrapper .image-quote .inner_section {
  width: 100%;
}
