.btn-style-two {
  display: inline-flex;
  align-items: center;
  gap: 0px;
  position: relative;
  transition: all 300ms ease;
}
.btn-style-two:hover .left-arrow {
  scale: 1;
}
.btn-style-two:hover .right-arrow {
  scale: 0;
}
.btn-style-two:hover .btn-title {
  transform: translateX(46px);
}
.btn-style-two .left-arrow,
.btn-style-two .right-arrow {
  width: 46px;
  height: 46px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #000000;
  border-radius: 50%;
  transition: all 300ms ease;
}
.btn-style-two .left-arrow i,
.btn-style-two .right-arrow i {
  rotate: -30deg;
  transition: all 300ms ease;
}
.btn-style-two .left-arrow {
  scale: 0;
  left: 0;
  right: auto;
  position: absolute;
}
.btn-style-two .btn-title {
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 8px 30px;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border-radius: 40px;
  transition: all 300ms ease;
}