.presentation-with-quotes-slider .with-line-before {
  font-family: var(--font-20);
  font-weight: 600px;
  color: var(--black);
}

.presentation-with-quotes-container-desktop {
  display: none;
}

.presentation-green-text-content {
  display: flex;
  flex-direction: row;
}

.presentation-with-quotes-wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 20px 0 50px;
}

.profile-introduction {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.profile-name {
  font-weight: 600;
  letter-spacing: 5%;
  color: var(--green-text);
}

.profile-image {
  width: 70%;
}

.profile-image img {
  width: 100px;
  height: auto;
}

.profile-job-title {
  font-size: var(--font-size16);
  font-weight: 400;
  letter-spacing: 0%;
  color: var(--grey-700);
}

.presentation-green-text {
  font-size: var(--font-size-18);
  font-weight: 400;
  color: var(--green-text);
  line-height: 20px;
  margin-top: 10px;
}

.quote-image {
  margin-right: 20px;
  margin-top: 7px;
}

.quote-image img {
  width: 150px;
  height: auto;
}

.presentation-with-quotes-dots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4px;
}

.presentation-with-quotes-dot {
  padding: 4px;
  border-radius: 50%;
  background-color: var(--green-text);
  margin-top: 40px;
  cursor: pointer;
}

.presentation-with-quotes-dot.active {
  background-color: var(--light-green-text);
}

.presentation-with-quotes-slide {
  display: none;
}

.presentation-with-quotes-slide.active {
  display: block;
}

@media (min-width: 768px) {
  .presentation-with-quotes-wrapper {
    margin: 0 50px;
  }

  .profile-name {
    font-size: var(--font-size-24);
  }

  .profile-job-title {
    font-size: var(--font-size-22);
  }

  .presentation-green-text {
    font-size: var(--font-size-20);
  }
}

@media (min-width: 1024px) {
  .presentation-with-quotes-container-mobile {
    display: none;
  }

  .presentation-with-quotes-container-desktop {
    display: block;
    padding: 0 50px;
  }

  .presentation-with-quotes-wrapper-desktop {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .profile-name-desktop {
    font-size: var(--font-size-22);
    font-weight: 600;
    letter-spacing: 5%;
    color: var(--green-text);
    text-align: right;
    margin-right: 60px !important;
    margin: 0;
  }

  .profile-job-title-desktop {
    font-size: var(--font-size-20);
    font-weight: 400;
    letter-spacing: 0%;
    color: var(--grey-700);
  }

  .presentation-green-text-desktop {
    font-size: var(--font-size-20);
    font-weight: 400;
    color: var(--green-text);
    line-height: 20px;
    letter-spacing: 0%;
  }

  .profile-image-desktop {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .profile-image-desktop img {
    width: 60%;
    height: auto;
  }

  .quote-image-desktop img {
    width: 34px;
    height: auto;
  }

  .presentation-paragraph-desktop {
    display: flex;
    flex-direction: column-reverse;
  }

  .presentation-green-text-content-desktop {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .quote-image-desktop {
    margin-right: 20px;
    margin-top: 6px;
  }
}
