/**
    Fonts
 */
/**
    Colors
 */
/* Font size */
.quote {
  --quote-accent: #121384;
  --quote-accent-soft: rgb(231.3, 231.4, 242.7);
  display: block;
  width: 100%;
  min-width: 0;
  container: quote/inline-size;
}
.quote .quote__slider {
  position: relative;
  container: quote-inner/inline-size;
}
.quote .quote__item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  justify-items: center;
  text-align: left;
}
.quote .quote__media {
  flex: 0 0 auto;
  width: 18.125rem;
  height: 18.125rem;
  max-width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.quote .quote__media img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.quote .quote__body {
  display: flex;
  flex-direction: column;
  align-self: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 36.25rem;
}
.quote .quote__text {
  margin: 0;
  padding: 0;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-size: 2.1875rem;
  font-weight: 500;
  line-height: 2.625rem;
  color: var(--theme-text, #000000);
}
@media only screen and (max-width: 768px) {
  .quote .quote__text {
    font-size: 1.5625rem;
    line-height: 2.0625rem;
  }
}
.quote .quote__text > :first-child {
  margin-top: 0;
}
.quote .quote__text > :last-child {
  margin-bottom: 0;
}
.quote .quote__text > p {
  font-size: 2.1875rem;
  line-height: 2.625rem;
}
@media only screen and (max-width: 768px) {
  .quote .quote__text > p {
    font-size: 1.5625rem;
    line-height: 2.0625rem;
  }
}
.quote .quote__copyright {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin: 0;
  color: var(--theme-text, #000000);
}
.quote .quote__author {
  margin: 0;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.875rem;
}
.quote .quote__position {
  margin: 0;
  font-family: "Outfit", Helvetica, Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 200;
  line-height: 1.75rem;
}
.quote .quote__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 9.375rem;
  height: 9.375rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
  color: var(--quote-accent);
  font-size: 9.375rem;
  line-height: 1;
  transition: opacity 0.2s ease, color 0.2s ease;
}
@media only screen and (max-width: 1400px) {
  .quote .quote__arrow {
    width: 6.25rem;
  }
}
.quote .quote__arrow i {
  width: 100%;
  display: inline-block;
  font-size: inherit;
  line-height: 1;
}
.quote .quote__arrow:hover, .quote .quote__arrow:focus-visible {
  opacity: 0.7;
  outline: none;
}
.quote .quote__arrow.quote__arrow--prev {
  left: 1.25rem;
}
.quote .quote__arrow.quote__arrow--next {
  right: 1.25rem;
}
@media only screen and (max-width: 1400px) {
  .quote .quote__arrow.quote__arrow--prev {
    left: 0;
  }
  .quote .quote__arrow.quote__arrow--next {
    right: 0;
  }
}
.quote .slick-list,
.quote .slick-track {
  outline: none;
}
.quote .slick-track {
  display: flex !important;
  align-items: stretch;
}
.quote .slick-slide {
  height: inherit;
}
.quote .slick-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 0.625rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  line-height: 0;
  text-align: center;
}
.quote .slick-dots li {
  display: inline-block;
  line-height: 0;
  margin: 0 0.3125rem;
}
.quote .slick-dots button {
  width: 1.3125rem;
  height: 1.3125rem;
  padding: 0;
  border: 0.125rem solid var(--quote-accent);
  border-radius: 0.125rem;
  background-color: var(--quote-accent-soft);
  font-size: 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.quote .slick-dots .slick-active button {
  background-color: var(--quote-accent);
}
@container quote-inner (max-width: 749px) {
  .quote .quote__arrow {
    display: none !important;
  }
  .quote .quote__item {
    padding: 0;
  }
}
@container quote-inner (max-width: 399px) {
  .quote .quote__media {
    width: 100%;
    height: auto;
  }
}
@container quote-inner (min-width: 750px) {
  .quote .quote__slider {
    padding: 2.5rem 6.875rem;
  }
  .quote .quote__item {
    flex-direction: row;
    gap: 3.75rem;
    align-items: flex-start;
    justify-content: center;
  }
  .quote .quote__media {
    align-self: flex-start;
    width: 21.25rem;
    height: 21.25rem;
  }
  .quote .quote__body {
    flex: 0 1 36.25rem;
  }
  .quote .slick-dots {
    display: none;
  }
}
@container quote-inner (min-width: 1280px) {
  .quote .quote__slider {
    padding: 5rem 9.375rem;
  }
  .quote .quote__item {
    gap: 7.5rem;
  }
  .quote .quote__text {
    font-size: 2.1875rem;
    line-height: 2.625rem;
  }
}
.theme--blue .quote, .sub-theme--blue .quote {
  --quote-accent: #ffffff;
  --quote-accent-soft: rgba(255, 255, 255, 0.15);
}