/*Btn Style 3*/
.btn-style3 {
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  gap: 12px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  position: relative;
  padding: 17.8px 39.6px;
  overflow: hidden;
  color: #070707;
  border: 1px solid rgba(7, 7, 7, 0.4);
  background: transparent;
  border-radius: 60px;
  z-index: 1;
  transition: all 300ms ease;
}
.btn-style3 .btn-title {
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}
.btn-style3 svg {
  fill: #070707;
}
.btn-style3 i,
.btn-style3 img,
.btn-style3 svg {
  line-height: 1;
  transform: rotate(-45deg);
  transition: all 300ms ease;
}
.btn-style3:before {
  position: absolute;
  left: 0;
  top: 0%;
  height: 101%;
  width: 101%;
  content: "";
  background: var(--theme-color2);
  transform: scale(0, 1);
  transform-origin: bottom right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}
.btn-style3:hover:before {
  transform-origin: top left;
  transform: scale(1, 1);
}
.btn-style3:hover {
  border-color: var(--theme-color2);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.btn-style3:hover svg {
  fill: #ffffff;
}
.btn-style3:hover i,
.btn-style3:hover img,
.btn-style3:hover svg {
  transform: rotate(0deg);
}