.custom-toggle-arrow {
  font-size: 18px;
  margin-top: 1px;
  line-height: 12px;
}

.heading-1{
  position:relative;
  text-align: left;
  font-size:1.3rem;
  font-weight: 700;
}
.heading-1:before {
  content: "";
  display: block;
  border-top: solid 1px;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  z-index: 0;
}
.heading-1 span {
  background: #fff;
  padding: 0 10px 0 0;
  position: relative;
  z-index: 1;
}

.bg-g {
  background: linear-gradient(-45deg, #0C6A80FC, #12929b, #0dcaf0, #085e80);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
}

@keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}