.ax-quote-row {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0;
}

.ax-quote-content {
  border-left: 1px solid rgba(0, 0, 0, 0.15);
  padding: 30px 50px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  min-height: 650px;
  opacity: 0 !important;
  transform: translateX(100%);
  transition:
    transform 0.8s ease-out,
    opacity 0.8s ease-out;
  visibility: hidden;
}

.ax-quote-content .col-inner {
  display: flex;
  flex-direction: column;
  min-height: 650px;
  height: 100%;
}

.ax-quote-content.is-in-view {
  opacity: 1 !important;
  transform: translateX(0) !important;
  visibility: visible;
}

.ax-quote-text,
.ax-quote-text h3 {
  text-transform: none;
}

.ax-quote-text h3 {
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  color: #000;
  margin-bottom: 30px;
}

.ax-quote-author {
  margin-top: auto;
  margin-bottom: 0;
}

.ax-quote-author p {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 0;
}

@media (max-width: 849px) {
  .ax-quote-row>.col:not(.ax-quote-content) {
    display: none !important;
  }

  .ax-quote-row>.col.ax-quote-content {
    width: 100% !important;
    max-width: 100% !important;
    flex-basis: 100% !important;
  }

  .ax-quote-row {
    padding: 0;
  }

  .ax-quote-content {
    border-left: none;
    padding: 50px 30px !important;
    min-height: auto;
    text-align: center;
  }

  .ax-quote-content .col-inner {
    min-height: auto;
    height: auto;
    max-width: 580px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }

  .ax-quote-author {
    margin-top: 0;
  }

  .ax-quote-text h3 {
    font-size: 26px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 0;
    color: #111;
  }

  .ax-quote-author p {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0;
  }
}

@media (max-width: 549px) {
  .ax-quote-content {
    padding: 40px 20px !important;
  }

  .ax-quote-content .col-inner {
    gap: 25px;
  }

  .ax-quote-text h3 {
    font-size: 20px;
    line-height: 1.55;
  }

  .ax-quote-author p {
    font-size: 13px;
    letter-spacing: 1.5px;
  }
}