.z-index-up {
  z-index: 1;
}

* {
  box-sizing: border-box;
}

.bg--blue {
  background-color: #405D93;
}

.bg--gradient {
  background-color: linear-gradient(135deg, #405D93 0%, #3A80C2 100%);
}

.bg--gray {
  background-color: #A1A3A9;
}

.bg--white {
  background-color: #FFFFFF;
}

.block--testimonials {
  background: linear-gradient(135deg, #405D93 0%, #3A80C2 100%);
  position: relative;
}
.block--testimonials:before {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: url(../../../assets/images/svg/bg-pattern-blue.svg);
  background-repeat: no-repeat;
  background-position: top 100px right;
}
.block--testimonials .row {
  margin-bottom: -30px;
  z-index: 2;
  position: relative;
}
.block--testimonials .testimonial {
  border-radius: 10px;
  background-color: #FFFFFF;
  padding: 30px;
  margin-bottom: 30px;
}
.block--testimonials .testimonial__author {
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.block--testimonials .testimonial__author h4 {
  margin-bottom: 5px;
}
.block--testimonials .testimonial__author p {
  color: #27406E;
}
.block--testimonials .testimonial:after {
  content: "";
  display: block;
  width: 24px;
  height: 22px;
  background-image: url(../../../assets/images/svg/icon-quotes.svg);
  background-repeat: no-repeat;
  background-position: center;
  margin: 30px 0 0 auto;
}
@media only screen and (max-width: 991px) {
  .block--testimonials .row {
    flex-flow: row nowrap;
    overflow: auto;
  }
  .block--testimonials .row .col {
    min-width: 300px;
  }
}
