.quote {
  &.bordered {
    padding-top: 70px;
    border-top: 1px solid #191919;
    @media (max-width: 1024px) {
      padding-top: 50px;
    }
    @media (max-width: 768px) {
      padding-top: 40px;
    }
  }
  .section-container {
    position: relative;
    .quote-wrapper {
      display: flex;
      justify-content: space-evenly;
      align-items: center;
      .geo-paragraph {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: 56px;
        height: 40px;
        @media (max-width: 1024px) {
          display: none;
        }

        div {
          margin: 5px 10px;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background-color: #705a33;
        }
      }
      blockquote {
        max-width: 600px;
        margin: 0;
        padding: 0;
        border: none;
        padding-top: 30px;
        text-align: center;
        &::before {
          display: block;
          position: absolute;
          content: '';
          left: 50%;
          top: 0;
          transform: translateX(-50%);
          width: 30px;
          height: 3px;
          background-color: var(--c-primary-200);
        }
        p {
          font-style: italic;
        }
        cite {
          font-weight: 700;
          font-size: 18px;
        }
      }
    }
    figure {
      position: absolute;
      right: 16%;
      bottom: -70px;

      @media (max-width: 1024px) {
        bottom: -50px;
        width: 15%;
      }
    }
  }
  &.wide {
    .section-container {
      .quote-wrapper {
        blockquote {
          max-width: 770px;
        }
      }
    }
  }
}
