.btn-style3 {
  background: transparent;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1px;
  position: relative;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.btn-style3:hover .theme-btn-arrow-left {
  scale: 1;
  background-color: var(--theme-color2);
  color: var(--theme-color2-text-color);
}
.btn-style3:hover .theme-btn-arrow-right {
  scale: 0;
}
.btn-style3:hover .theme-btn {
  -webkit-transform: translateX(56px);
  transform: translateX(56px);
  background-color: var(--theme-color2);
  color: var(--theme-color2-text-color);
}
.btn-style3 .theme-btn-arrow-left {
  width: 56px;
  height: 56px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-color1);
  border-radius: 50%;
  color: var(--theme-color1-text-color);
  scale: 0;
  left: 0;
  right: auto;
  position: absolute;
  transition: 0.4s;
}
@media (max-width: 575.98px) {
  .btn-style3 .theme-btn-arrow-left {
    height: 50px;
    width: 50px;
  }
}
.btn-style3 .theme-btn-arrow-left i {
  transform: rotate(225deg);
}
.btn-style3 .theme-btn {
  color: var(--theme-color2-text-color);
  background: var(--theme-color2);
  font-weight: 500;
  font-size: 16px;
  padding: 15px 39.72px;
  font-family: var(--heading-font-family);
  display: inline-flex;
  align-items: center;
  gap: 30px;
  border-radius: 100px;
  text-transform: capitalize;
  transition: 0.4s;
}
@media (max-width: 575.98px) {
  .btn-style3 .theme-btn {
    font-size: 15px;
    padding: 12px 34px;
  }
}
.btn-style3 .theme-btn-arrow-right {
  width: 56px;
  height: 56px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: -1px;
  border-radius: 50%;
  transition: 0.4s;
  color: var(--theme-color2-text-color);
  background: var(--theme-color2);
}
@media (max-width: 575.98px) {
  .btn-style3 .theme-btn-arrow-right {
    width: 48px;
    height: 48px;
  }
}
.btn-style3 .theme-btn-arrow-right i {
  transform: rotate(-45deg);
}