.btn-style2 {
  background-color: #fff;
  border-radius: 40px;
  color: var(--theme-color3);
  font-weight: 600;
  height: 56px;
  overflow: hidden;
  position: relative;
  gap: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  z-index: 0;
  transition: all 300ms ease;
}
.btn-style2:hover {
  background-color: var(--theme-color3);
  color: #fff;
}
.btn-style2:hover .left-arrow {
  transform: scale(1);
}
.btn-style2:hover .btn-title {
  transform: translateX(37px);
}
.btn-style2:hover .right-arrow {
  transform: scale(0);
}
.btn-style2 .btn-title {
  font-family: var(--heading-font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: -0.02em;
  padding: 0px 60px 0 28px;
  position: relative;
  display: flex;
  align-items: center;
  transition: all 300ms ease;
}
.btn-style2 .left-arrow,
.btn-style2 .right-arrow {
  background-color: var(--theme-color1);
  border-radius: 50%;
  color: var(--theme-color3);
  font-size: 16px;
  height: 40px;
  line-height: 40px;
  position: absolute;
  text-align: center;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease;
}
.btn-style2 .left-arrow i,
.btn-style2 .right-arrow i {
  transform: rotate(-45deg);
}
.btn-style2 .left-arrow {
  left: 10px;
  transform: scale(0);
}
.btn-style2 .right-arrow {
  left: auto;
  right: 10px;
  transform: scale(1);
}