.client-quotes-container {
  background-color: #12d678;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.open-quote img {
  height: 180px;
  left: 0;
  position: absolute;
  top: 0;
}

.close-quote img {
  color: #ffffff;
  bottom: 0;
  height: 180px;
  position: absolute;
  right: 0;
  transform: rotate(180deg);
}

#single-quote-container {
  align-items: center;
  display: flex;
  height: 400px;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.25s ease-in-out, transform 0.5s ease-in-out;
}

.centered-quote-container {
  margin-bottom: auto;
  margin-top: auto;
}

.centered-quote-inside {
  margin-left: auto;
  margin-right: auto;
}

.quote-container {
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1em;
  width: 100%;
}

.client-info-container {
  align-items: center;
  display: flex;
  justify-content: right;
}

.client-photo-cropped {
  border: 2px solid #ffffff;
  border-radius: 50%;
  height: 50px;
  overflow: hidden;
  text-align: center;
  width: 50px;
}

.client-photo {
  height: 100%;
  margin: 0 -100%;
  vertical-align: middle;
  width: auto;
}

.client-info {
  margin-left: 10px;
}

.client-info p {
  color: #ffffff;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.1em;
  margin: 0px;
}

@media screen and (max-width: 950px) {
  .quote-container{
	font-size: 30px;
  }
  
  .centered-quote-inside {
	margin-left: 10vw;
	margin-right: 10vw;
  }
}

@media screen and (max-width: 680px) {
  .quote-container{
	font-size: 24px;
  }
}