@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes wave-effect {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes slide-effect {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.fp-heading {
  position: relative;
  text-align: left;
  margin-bottom: 15px;
  background: #04a66c;
  padding: 10px 20px;
  border-radius: 2px;
  border-left: 4px solid #191919;
  background: linear-gradient(90deg, #04a66c, #024e1b, #04a66c);
  animation: wave-effect 6s ease-in-out infinite;
  overflow: hidden;
}
.fp-heading h1, .fp-heading h2 {
  position: relative;
  margin: 0;
  color: #FFF !important;
  z-index: 2;
}
.fp-heading h3 {
  position: relative;
  font-size: 90%;
  color: #FFF !important;
  margin: 0;
  z-index: 2;
}
.fp-heading:before {
  z-index: 1;
  content: "";
  position: absolute;
  width: 4px;
  height: 80%;
  top: 10%;
  left: 0;
  background: linear-gradient(to right, #04a66c, rgba(20, 105, 55, 0.56), #04a66c);
  animation: fp-heading-animation 8s ease-in-out infinite;
  animation-direction: alternate;
}
.fp-heading:after {
  z-index: 1;
  content: "";
  position: absolute;
  width: 4px;
  height: 80%;
  top: 10%;
  left: 0;
  background: linear-gradient(to right, #04a66c, rgba(20, 105, 55, 0.56), #04a66c);
  animation: fp-heading-animation 8s ease-in-out infinite;
  animation-direction: alternate;
  animation-delay: 1s;
}

@keyframes fp-heading-animation {
  0% {
    width: 4px;
  }
  50% {
    top: 5px;
    left: 4px;
    transform: rotate(20deg) scale(5);
    border-radius: 20%;
  }
  100% {
    left: 0;
    width: 100%;
    border-radius: 50%;
    transform: rotate(15deg) scale(3);
  }
}
section.fp-ttts .banner {
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 1px 0 1px rgba(103, 103, 103, 0.54);
  transition: all 0.2s ease-in-out;
}
section.fp-ttts .banner:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.27);
}

section.fp-ncdcq .box {
  border: 1px solid #F1F1F1;
  border-radius: 2px;
  transition: all 0.6s ease;
}
section.fp-ncdcq .box .box-image {
  border-bottom: 1px solid #F1F1F1;
  transition: all 0.6s ease-in-out;
}
section.fp-ncdcq .box .box-image img {
  transition: all 0.6s ease-in-out;
}
section.fp-ncdcq .box .box-text {
  padding: 10px;
  color: #191919;
  transition: all 0.6s ease-in-out;
}
section.fp-ncdcq .box:hover {
  box-shadow: 0 0 10px rgba(58, 58, 58, 0.17);
}
section.fp-ncdcq .box:hover .box-image {
  border-bottom: 1px solid #04a66c;
}
section.fp-ncdcq .box:hover .box-image img {
  transform: scale(0.8) rotate(2deg);
}
section.fp-ncdcq .box:hover .box-text {
  color: #04a66c;
}

section.fp-dnlk .fp-heading {
  margin-bottom: 15px;
}
section.fp-dnlk div.img {
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #F1F1F1;
}

/*# sourceMappingURL=frontpage.css.map */
