/* Override tf-page-title background-image when using myGrad */
.tf-page-title.myGrad {
  background-image: none !important;
  background-position: initial;
  background-repeat: initial;
  background-size: initial;
}

/* Style description content h1 */
.style-description-content h1 {
  font-size: 2rem;
  line-height: 2.25rem;
  font-weight: bold;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

/* Style description content h2 */
.style-description-content h2 {
  font-size: 1.625rem;
  line-height: 2rem;
  font-weight: bold;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

/* Style description content h3 */
.style-description-content h3 {
  font-size: 1.375rem;
  line-height: 1.75rem;
  font-weight: bold;
  margin-top: 1.25rem;
  margin-bottom: 0.875rem;
}

/* Style description content h4 */
.style-description-content h4 {
  font-size: 1.125rem;
  line-height: 1.625rem;
  font-weight: bold;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

/* Style description content h5 */
.style-description-content h5 {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: bold;
  margin-top: 0.875rem;
  margin-bottom: 0.625rem;
}

/* mixin */
.myGrad {
  width: 100%;
  height: 200px;
  margin: 20px 0;
  border-top: solid 10px #FFF;
  border-bottom: solid 10px #FFF;
  overflow: hidden;
}
.myGrad:after {
  position: relative;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 2000px;
  background: linear-gradient(0% -15%, #655bef 0%, #fa28bf 20%, #ff4665 40%, #fbde4e 60%, #00fbea 80%, #555def 100%);
  background: -moz-linear-gradient(0% -15%, #655bef 0%, #fa28bf 20%, #ff4665 40%, #fbde4e 60%, #00fbea 80%, #555def 100%);
  background: -webkit-gradient(linear, 0% -15%, 100% 100%, color-stop(0, #655bef), color-stop(0.2, #fa28bf), color-stop(0.4, #ff4665), color-stop(0.6, #fbde4e), color-stop(0.8, #00fbea), color-stop(1, #555def));
  -o-animation: anime 17.5s infinite;
  -ms-animation: anime 17.5s infinite;
  -moz-animation: anime 17.5s infinite;
  -webkit-animation: anime 17.5s infinite;
}

@-webkit-keyframes anime {
  0% {
    top: 0;
  }
  50% {
    top: -1800px;
  }
  100% {
    top: 0;
  }
}
@keyframes anime {
  0% {
    top: 0;
  }
  50% {
    top: -1800px;
  }
  100% {
    top: 0;
  }
}