.cust-quotes {
  max-width: 800px;
  width: 100%;
  min-height: 150px;
  position:relative;
  display: block;
}

.cust-quotes blockquote {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  text-align: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.5s ease-out 0s, transform 0.5s ease-in 0s;
}

/* IE < 10 fallback */
.no-csstransitions .cust-quotes blockquote,
.no-csstransforms .cust-quotes blockquote {
   position:relative;
}

.cust-quotes blockquote:first-child {
    opacity: 0;
    transform: translateY(-10px) scale(1.1);
}
.cust-quotes blockquote:first-child + blockquote {
    opacity: 1;
    z-index: 1;
    transition: opacity 1.6s ease 0s;
}
.cust-quotes blockquote .the-quote {
  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 30px;
  margin-bottom: 10px;
}
.cust-quotes blockquote p:before {
   content: '\201C';
}
.cust-quotes blockquote p:after {
   content: '\201D';
}
.cust-quotes blockquote cite {
    text-align: center;
    font-weight: 600;
    color: #ccc;
    font-style: normal;
}

.cust-quotes blockquote cite a {
  font-size:16px;
  font-weight: 600;
}


@media screen and (max-width: 30.6em) { 
  .cust-quotes {
    display: none;
  }
}