@charset "UTF-8";
@media (max-width: 991px) {
  .quote {
    margin: 1rem 0; } }

@media (min-width: 992px) {
  .quote {
    margin: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center; } }

.quote__image {
  height: 170px;
  width: 170px;
  border-radius: 50%;
  overflow: hidden; }
  @media (max-width: 991px) {
    .quote__image {
      width: 170px;
      margin: 0 auto 1rem; } }
  @media (min-width: 992px) {
    .quote__image {
      min-width: 170px;
      margin-right: 1rem; } }
  .quote__image img {
    max-width: none; }
    @media (max-width: 991px) {
      .quote__image img {
        margin: 0 auto; } }

.quote__quote {
  position: relative; }
  @media (max-width: 575px) {
    .quote__quote {
      padding: 0 4rem;
      text-align: center; } }
  @media (min-width: 576px) and (max-width: 991px) {
    .quote__quote {
      padding: 0 2.5rem;
      text-align: center; } }
  @media (min-width: 992px) {
    .quote__quote {
      padding: 0 6.5rem; } }

.quote__text {
  color: #4a6075;
  margin-bottom: .5rem;
  position: relative;
  quotes: '“' '”'; }
  .quote__text::before, .quote__text::after {
    display: block;
    position: absolute;
    color: #d1dae3;
    font-size: 13rem;
    font-family: "Calibre", Arial, sans-serif;
    z-index: -1; }
  .quote__text::before {
    content: open-quote;
    top: 2rem; }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .quote__text::before {
        top: 3.5rem; } }
    @media (max-width: 991px) {
      .quote__text::before {
        left: -2rem; } }
    @media (min-width: 992px) {
      .quote__text::before {
        left: -6rem; } }
  .quote__text::after {
    content: close-quote;
    bottom: -5.5rem; }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .quote__text::after {
        bottom: -6.5rem; } }
    @media (max-width: 991px) {
      .quote__text::after {
        right: -2rem; } }
    @media (min-width: 992px) {
      .quote__text::after {
        right: -5rem; } }

.quote__subline {
  color: #02bcf0;
  font-weight: 700; }
