/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero_digital {
  width: 100%;
  position: relative;
  padding: 120px 0 0 0;
}
 
#hero_digital:before {
  content: "";
  background: rgb(255, 255, 255);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero_digital h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: rgba(0, 0, 0, 0.8);
}

#hero_digital h1 span {
  background: linear-gradient(to right, #000, #f8a813, #f15a24);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  border-bottom: 4px solid #1acc8d;
}

#hero_digital h2 {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  font-size: 24px;
}

#hero_digital .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#hero_digital .hero-img svg {
  text-align: center;
  justify-content: center;
  height: 530px;
  width: 530px;
}

@media (min-width: 1024px) {
  #hero_digital {
    background-attachment: fixed;
  }
}

@media (max-width: 991px) {
  #hero_digital {
    padding-top: 80px;
  }
  #hero_digital h1 {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 10px;
  }
  #hero_digital h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  #hero_digital img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

.hero-waves {
  display: block;
  margin-top: -30px;
  width: 100%;
  height: 60px;
  z-index: 5;
  position: relative;
}

.wave1 use {
  -webkit-animation: move-forever1 10s linear infinite;
  animation: move-forever1 10s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave2 use {
  -webkit-animation: move-forever2 8s linear infinite;
  animation: move-forever2 8s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

.wave3 use {
  -webkit-animation: move-forever3 6s linear infinite;
  animation: move-forever3 6s linear infinite;
  -webkit-animation-delay: -2s;
  animation-delay: -2s;
}

@-webkit-keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }
  100% {
    transform: translate(-90px, 0%);
  }
}
 
@-webkit-keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@-webkit-keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }
  100% {
    transform: translate(85px, 0%);
  }
}

#seo_content h2
{
  text-align: center;
  justify-content: center;
  margin: 10px auto;
  font-weight: 700;
}

#seo_content h4
{
  text-align: center;
  justify-content: center;
  margin: 30px;
  font-size: large;
  font-weight: 600;
}
#seo_content p
{
  text-align: justify;
  justify-content: center;
  margin: 40px;
  font-size: small;
  font-weight: 600;
}