.tcl-quote__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.tcl-quote__icon svg {
  width: auto;
  height: 71px;
}
.tcl-quote__text {
  padding-top: 71px;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .tcl-quote__text {
    margin-bottom: 40px;
  }
}
.tcl-quote__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-left: 10px;
  max-width: 300px;
  margin-left: -20px;
}
@media (max-width: 991px) {
  .tcl-quote__name {
    margin-left: 0;
    text-align: right;
  }
}
.tcl-quote__name span:nth-child(1) {
  font-weight: 600;
  font-size: 22px;
  line-height: 160%;
  color: #000000;
}
.tcl-quote__name span:nth-child(2) {
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #000000;
}
.tcl-quote__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tcl-quote__blob {
  background: linear-gradient(45deg, var(--gradient_color_start) 0%, var(--gradient_color_end) 100%);
  -webkit-animation: morph 20s ease-in-out infinite;
          animation: morph 20s ease-in-out infinite;
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  height: 150%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  width: 100%;
  opacity: 0.08;
}
@media (max-width: 991px) {
  .tcl-quote__blob {
    height: 60vh;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    background: linear-gradient(45deg, var(--gradient_color_start) 0%, var(--gradient_color_end) 100%);
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    background: linear-gradient(45deg, var(--gradient_color_start) 0%, var(--gradient_color_end) 100%);
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    background: linear-gradient(45deg, var(--gradient_color_start) 0%, var(--gradient_color_end) 100%);
  }
}
@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    background: linear-gradient(45deg, var(--gradient_color_start) 0%, var(--gradient_color_end) 100%);
  }
  50% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
    background: linear-gradient(45deg, var(--gradient_color_start) 0%, var(--gradient_color_end) 100%);
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
    background: linear-gradient(45deg, var(--gradient_color_start) 0%, var(--gradient_color_end) 100%);
  }
}