.quote {
  width: 100%;
  max-width: 330px;
  margin: 20px 0;
  border: 2.5px dotted var(--color-primary);
  position: relative;
  box-shadow: 0 0 10px rgb(0 0 0 / 20%);
  padding: 1.5rem;
  margin-top: 5rem;

  &__image {
    border-radius: 50%;
    padding: 5px;
    position: absolute;
    top: -5rem;
    background-color: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    left: 50%;
    transform: translateX(-50%);

    picture {
      display: flex;
      overflow: hidden;
    }

    img {
      transition: scale $anim-medium;
      border-radius: 50%;
      height: 9rem;
      width: 9rem;
      max-width: unset;
    }
  }

  &__title {
    margin: 0;
    color: ();
  }

  &__body {
    margin-top: 5rem;

    &__title {
      text-transform: uppercase;
      color: var(--color-primary);
      font-size: 1.4rem;
      font-family: Oswald, sans-serif;
      font-weight: 500;
      margin: 10px 0;
      text-align: center;
    }

    &__subtitle {
      color: var(--color-tertiary);
      font-size: 1.1rem;
      font-weight: 500;
      margin: 10px 0;
      text-align: center;
    }

    &__text {
      text-align: justify;
      font-size: 1.1rem;
      font-weight: 300;
    }

    &__quotation-mark {
      position: absolute;
      font-size: 11rem;
      font-weight: 700;
      color: var(--color-primary);
      font-family: Oswald, sans-serif;
    }
  }

  &__ellipsis {
    border: none;
    background: none;
    outline: none;
    cursor: pointer;
    font-size: 1rem;
    display: inline-flex;
    transition: scale $anim-medium;
  }
}

/* First */

.quote:nth-child(3n-2) {

  .quote {

    &__body {

      &__quotation-mark {
        top: 2.5rem;
        left: -0.5rem;
      }
    }
  }
}

/* Second */

.quote:nth-child(3n-1) {

  .quote {

    &__body {

      &__quotation-mark {
        top: 9.5rem;
        left: -2rem;
      }
    }
  }
}

/* Third */

.quote:nth-child(3n) {

  .quote {

    &__body {

      &__quotation-mark {
        top: 6.5rem;
        left: -2rem;
      }
    }
  }
}
