.hr-btn {
	padding: 16px 44px;
	font-size: 17px;
	font-weight: var(--weight-400);
	border-radius: 45px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	position: relative;
	font-family: var(--font-02);
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 10px;
}
.btn-main {
	color: var(--white);
	background: #E85205;
	background: linear-gradient(90deg, rgba(232, 82, 5, 0.98) 0%, rgba(250, 170, 130, 1) 100%);
}
.btn-main:hover {
  color: var(--white);
  background-color: var(--color-4);
}
/*.btn-main::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  border: 4px solid #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
}*/
.btn-main-1 {
  color: var(--white);
  background-color: var(--color-4);
}
.btn-main-1:hover {
  color: var(--white);
  background-color: var(--color-43);
}
.btn-main-1::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  border: 4px solid #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
}
.btn-main-2 {
  color: var(--white);
  background-color: var(--color-3);
}
.btn-main-2:hover {
  color: var(--white);
  background-color: var(--color-4);
}
.btn-main-2::before {
  position: absolute;
  content: "";
  height: 15px;
  width: 15px;
  border: 4px solid #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
}
@media (max-width: 1400px) {
  .hr-btn {
    font-size: 13px;
  }
}
.btn-default {
  position: relative;
  display: inline-flex;
  line-height: 1.2em;
  background: #e5eaec;
  text-transform: capitalize;
  border-radius: 100px;
  padding: 2px 25px 2px 2px;
  border: none;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.btn-default:hover {
  background-color: #fff0;
}
.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
  background-image: url(https://www.sterlingphysiotherapy.com/public/assets/images/icons/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
  transform: translate(-10px, -50%);
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.btn-default:hover:before {
  filter: brightness(0) invert(1);
  transform: translate(-10px, -50%);
}
.btn-default span {
  position: relative;
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  background-color: var(--color-3);
  color: #e5eaec;
  border-radius: 100px;
  padding: 15px 20px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.btn-default:hover span {
  background-color: #fff0;
  color: var(--color-3);
}
.btn-default span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  border-radius: 100px;
  background: #e5eaec;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-default:hover span::after {
  width: 100%;
}
.btn-default::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  border-radius: 100px;
  background: var(--color-3);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.btn-default:hover::after {
  width: 100%;
}

@media(max-width:991.98px){
  
  .hr-btn {
  padding: 10px 23px;
  font-size: 17px;
  height: auto;
  line-height: 20px;
  margin-right: 0 !important;
}
}