@charset "utf-8";
.cta {
  position: relative;
}
.scroll_btn {
  max-width: 660px;
  transition: 0.3s;
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  top: 0px;
  margin: 0 auto;
  animation: scale 2s ease-in-out infinite;
}
@keyframes scale {
  0% {
    transform: scale(0.85);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.85);
  }
}
.cta.two .scroll_btn {
  top: 30px;
}
.cta.three .scroll_btn {
  top: inherit;
  bottom: 10px;
}
footer {
  background-color: #DEF6FF;
  color: #136584;
  font-size: 12px;
  padding: 16px 0px;
  text-align: center;
  font-family: 'MyFont';
  position: fixed;
  width: 100%;
max-width: 550px;
  bottom: 0;
  left: 0;
    right: 0;
    margin: 0 auto;
}
footer a {
  padding: 0 12px;
}
footer a:hover {
  text-decoration: underline;
  cursor: pointer;
}
.copyright {
  margin-top: 4px;
}
@media (min-width:768px) {

  .cta.two .scroll_btn {
    top: 80px;
  }
  .cta.three .scroll_btn {
    bottom: 40px;
  }
  footer {
    padding: 40px 0px;
    text-align: center;
  }
  .copyright {
    margin-top: 8px;
  }
}