.description-quote {
  padding: 105px 0;
  position: relative;
  background-color: var(--color-gray-blue);
  color: #fff;
  overflow: hidden;
}

.description-quote__decor {
  position: absolute;
  right: -6%;
  bottom: 30%;
}

.description-quote__text {
  max-width: 870px;
  margin-bottom: 75px;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.16;
}

.description-quote__person {
  display: flex;
  align-items: center;
  gap: 15px;
}

.description-quote__person-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
}

.description-quote__person-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.description-quote__person-name {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 700;
}

.description-quote__person-position {
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 1200px) {
  .description-quote {
    padding: 90px 0;
  }

  .description-quote__decor {
    bottom: 0;
  }
}

@media screen and (max-width: 768px) {
  .description-quote {
    padding: 60px 0;
  }

  .description-quote__text {
    font-size: 40px;
  }

  .description-quote__decor {
    display: none;
  }
}

@media screen and (max-width: 575px) {
  .description-quote__text {
    font-size: 36px;
  }
}
