.quote {
  font-size: 38px;
  line-height: 60px;
  font-weight: 400;
  color: #295281;
  display: block;
  padding: 0 0 0 130px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
}

.quote::before{
  display: block;
  content: '';
  width: 100px;
  height: 1px;
  background: #BA5857;
  position: absolute;
  left: 0;
  top: 30px;
}

.buttonCircle {
  text-decoration: none;
  font-weight: 700;
  color: #295281;
  text-transform: uppercase;
  padding: 14px 50px 14px 20px;
  position: relative;
  transition: width 0.5s ease;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
  z-index: 1;
}

.buttonCircle::before{
  display: block;
  content: '';
  height: 100%;
  width: 48px;
  border-radius: 24px;
  background: rgba(195, 210, 230, .4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: width 0.5s ease;
}

.buttonCircle::after,
.buttonSolid::after{
  display: block;
  content: '\f178';
  font-family: 'Font Awesome 5 Pro';
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  font-size: 14px;
}

.buttonSolid {
  text-decoration: none;
  font-weight: 700;
  color: #295281;
  text-transform: uppercase;
  padding: 14px 50px 14px 20px;
  position: relative;
  transition: width 0.5s ease;
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
  z-index: 1;
}

.buttonSolid::before{
  display: block;
  content: '';
  height: 100%;
  width: 100%;
  border-radius: 24px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  transition: width 0.5s ease;
  background-image: linear-gradient(to right, #B7CAD7 45%, rgba(195, 210, 230, .4) 45%);
  background-size: 230% 100%;
  background-position: right;
  transition: all 0.5s ease;
}
