html, body{
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.hero.bg-white{
  color: #444;
}

.hero hr.small {
  background: #444;
  height: 3px;
}

#emoji_wave{
  font-size: 6em;
}

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  transition-delay: 0.5s;
  animation-name: tada;
}


input.error:hover, input.error:focus, select.error:hover, select.error:focus, textarea.error:hover, textarea.error:focus {
  border-color: #a8002d;
  transition: all 200ms ease-in-out;
  background-color: #ee495c38;
}

input.error, select.error, textarea.error {
  border-color: #a8002d;
  transition: all 200ms ease-in-out;
  background-color: #ee495c17;
}

.scroll_container {
  font-weight: 600;
  overflow: hidden;
  height: 100px;
  padding: 0 40px;
  margin-bottom: 100px;
  margin-top: 30px;
}

.scroll_list {
  margin-top: 0;
  display: inline-block;
  text-align: left;
  list-style: none;
  animation-name: change;
  animation-duration: 13s;
  animation-iteration-count: infinite;
  font-size: 30px;

}

@media(min-width:768px){
  .scroll_list {
    font-size: 70px;
  }
}

.scroll_list.delayed{
  animation-duration: 25s;
  text-align: right;
  font-weight: normal;
  padding-right: 15px;
}

.scroll_text_item {
  line-height: 110px;
  margin: 0;
}

@keyframes change {
  0%, 12.66%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  16.66%, 29.32% {
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
  }
  33.32%,45.98% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  49.98%,62.64% {
    -webkit-transform: translate3d(0, -75%, 0);
    transform: translate3d(0, -75%, 0);
  }
  66.64%,79.3% {
    -webkit-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }
  83.3%,95.96% {
    -webkit-transform: translate3d(0, -25%, 0);
    transform: translate3d(0, -25%, 0);
  }
}

.wave{
  position: relative;
  background-color: #f5d95d;
  height:10px;
}
.wave::before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background-repeat: repeat;
  height: 10px;
  background-size: 20px 20px;
  background-image: radial-gradient(circle at 10px -5px, transparent 12px, white 13px);
}

.side-top{
  transform: rotate(180deg);
}

a {
  color: #64b6e2;
}

a:hover {
  color: #5A9FC8;
  transition: color 200ms ease-in-out;
}

table.pricing-table td:not(:first-child), table.pricing-table th {
  text-align: center;
}

table.pricing-table h4 {
  color: #444444;
}