.btn-style-two {
  align-items: center;
  background-color: var(--theme-color1);
  border-radius: 7px;
  color: var(--theme-color1-text-color);
  font-family: var(--heading-font-family);
  font-size: 16px;
  line-height: 1;
  gap: 7px;
  overflow: hidden;
  padding: 20px 60px 20px 31px;
  position: relative;
  white-space: nowrap;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 400ms ease;
  z-index: 0;
}
.btn-style-two:hover {
  color: var(--theme-color1-text-color);
}
.btn-style-two:hover .btn-arrow-left {
  scale: 0;
}
.btn-style-two:hover .btn-arrow-right {
  scale: 1;
}
.btn-style-two:hover .btn-title {
  transform: translateX(0);
}
.btn-style-two .btn-title {
  transition: all 400ms ease;
  transform: translateX(30px);
}
.btn-style-two .btn-arrow-left {
  align-items: center;
  background: var(--theme-color2);
  border-radius: 7px;
  color: var(--theme-color2-text-color);
  display: inline-flex;
  font-size: 16px;
  height: 40px;
  justify-content: center;
  line-height: 1;
  left: 10px;
  position: absolute;
  right: auto;
  width: 40px;
  transition: all 400ms ease;
}
.btn-style-two .btn-arrow-left svg {
  width: 15px;
  fill: #fff;
}
.btn-style-two .btn-arrow-right {
  align-items: center;
  background: var(--theme-color2);
  border-radius: 7px;
  color: var(--theme-color2-text-color);
  display: inline-flex;
  font-size: 16px;
  height: 40px;
  justify-content: center;
  left: auto;
  line-height: 1;
  position: absolute;
  right: 10px;
  width: 40px;
  scale: 0;
  transition: all 400ms ease;
}
.btn-style-two .btn-arrow-right svg {
  width: 15px;
  fill: #fff;
}