/* Styles for section-defauly-style section-heading-1 */

.section-heading-1.heading-light .heading-wrap .heading-title {
  color: #ffffff;
}

.heading-wrap .singnal-symbol .item-circle {
    border-color: #ffffff;
  }

.singnal-symbol {
    display: block;
    position: absolute;
    top: 61px;
    left: 15px;
    width: 30px;
    height: 30px;
    margin-top: -37.5px;
    transform: rotate(-95deg) translate(-100px);
}

.singnal-symbol .item-circle {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-color: #ec1c24;
  border-style: solid;
  border-width: 1em 1em 0 0;
  border-radius: 0 100% 0 0;
  opacity: 0;
  animation: signalanimation 2s infinite;
}

.singnal-symbol .item-circle.circle-1 {
  animation-delay: 800ms;
}

.singnal-symbol .item-circle.circle-2 {
  width: 6.5em;
  height: 6.5em;
  animation-delay: 400ms;
}

.singnal-symbol .item-circle.circle-3 {
  width: 3em;
  height: 3em;
  animation-delay: 0ms;
}

@keyframes signalanimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.1;
  }
}

@media only screen and (max-width: 575px) {
  .singnal-symbol {
    left: -12px;
  }
}
