.floating_text {
  background: #fffec8;
  /* height: 75px; */
  text-align: center;
  padding: 20px 0;
}

.floating_text_item {
  margin-bottom: 15px;
}

.floating_text_item a {
  margin: auto;
}

.floating_text_item a:hover {
  background-color: #c8ecac;
}

.floating_text_item span {
  font-size: 24px;
  font-weight: 700;
  text-decoration: underline;
  color: #ff0000 !important;
}

.floating_btn_item a {
  position: relative;
  padding: 12px 40px;
  min-height: 50px;
  border-radius: 50px;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  width: 500px;
  margin: 20px auto 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  outline: 0;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  background: #0b5bce;
  background: -webkit-linear-gradient(top,#0b5bce 0,#0f82b8 100%);
  background: linear-gradient(to bottom,#0b5bce 0,#0f82b8 100%);
  border: none;
  color: #fff !important;
  font-size: 24px;
  font-weight: 700;
}

.floating_btn_item a::before {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  content: "";
  display: block;
  height: 8px;
  margin: auto;
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 8px;
}

.floating_btn_item a:hover {
  text-decoration: none;
  opacity: .9;
  background-color: #78a0d9;
}

.floating_btn_item a:hover::before {
  -webkit-animation: moveing-arrow .4s 2;
    animation: moveing-arrow .4s 2;
}

.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}

.fixed-menu {
  top: 60px;
}

@-webkit-keyframes moveing-arrow {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg)
  }
  50% {
    -webkit-transform: translate3d(30%, 0, 0) rotate(45deg);
    transform: translate3d(30%, 0, 0) rotate(45deg)
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg)
  }
}
@keyframes moveing-arrow {
  0% {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg)
  }
  50% {
    -webkit-transform: translate3d(30%, 0, 0) rotate(45deg);
    transform: translate3d(30%, 0, 0) rotate(45deg)
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
    transform: translate3d(0, 0, 0) rotate(45deg)
  }
}