.page-header h1{
	display: none  !important;
}

.affix .logo img{
  width: 70%;
}


.logo img{
    animation: flashing-shadow 1.5s ease-in-out infinite;
    filter: drop-shadow(-3px 0px 30px #E64935);
  }

  @keyframes flashing-shadow {
    0% {
      filter: drop-shadow(-3px 0px 30px #E64935);
    }
    50% {
      filter: drop-shadow(-3px 0px 8px #E64935);
    }
    100% {
      filter: drop-shadow(-3px 0px 30px #E64935);
    }
  }


  .heart-image img{
  	animation: flashing-shadow 1.5s ease-in-out infinite;
  	filter: drop-shadow(-3px 0px 30px #E64935);
  }

  @keyframes flashing-shadow {
  	0% {
  		filter: drop-shadow(-3px 0px 30px #E64935);
  	}
  	50% {
  		filter: drop-shadow(-3px 0px 8px #E64935);
  	}
  	100% {
  		filter: drop-shadow(-3px 0px 30px #E64935);
  	}
  }


.typing-text h1 {
  position: relative;
  display: inline-block;
  font-size: 24px;
  overflow: hidden;
  /*border-right: .15em solid orange;*/
  white-space: nowrap;
  letter-spacing: 1px;
  animation: typing 5s steps(30) infinite;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}