body{
  overflow-y: auto!important;
}
img {
  width: 100%;
  height: auto;
}

.btnwrap{
  display: grid;
  justify-content: center;
  margin: 20px auto;
  width: 100%;
}

.btn {
  border-radius: 4px;
  border: 2px solid #009CD0;
  color: #009CD0;
  display: inline-block;
  margin: 0 .25em;
  overflow: hidden;
  padding: 24px 60px 24px 16px;
  position: relative;
  text-decoration: none;
  line-height: 1;
  }
  .btn .btn-content {
  font-size: 1em;
  line-height: 1.2;
  padding: 0 26px;
  position: relative;
  right: 0;
  transition: right 300ms ease;
  display: block;
  text-align: left;
  }
  .btn .icon {
  border-left: 1px solid #009CD0;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transition: all 300ms ease;
  transform: translateY(-50%);
  width: 58px;
  height: 70%;
  padding-top: 12%;
  }
  .btn .icon i {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  }
  .btn:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: #009CD0;
  opacity: 0;
  transition: opacity 300ms ease;
  }
  .btn:hover .btn-content {
  right: 100%;
  }
  .btn:hover .icon {
  border-left: 0;
  font-size: 1.8em;
  width: 100%;
  }
  .btn:hover:after {
  opacity: .2;
  }
  .btn.btn-alt-color {
  border-color: salmon;
  color: salmon;
  }
  .btn.btn-alt-color .icon {
  border-left-color: salmon;
  }
  .btn.btn-alt-color:after {
  background-color: salmon;
  }