.btn-1 {
  position: relative;
  margin: 0;
  width: fit-content;
 text-align: center;
  padding: 0.8em 1em;
  outline: none;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  background-color: #eb3e32;
  border-radius: 10px;
  color: #fff;
  font-weight: 300;
  font-size: 15px;
  font-family: inherit;
  z-index: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.btn-1:hover {
  animation: sh0 0.5s ease-in-out both;
}
.btn-1:hover{
color: #f0f4f4;
}
@keyframes sh0 {
  0% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }

  25% {
    transform: rotate(7deg) translate3d(0, 0, 0);
  }

  50% {
    transform: rotate(-7deg) translate3d(0, 0, 0);
  }

  75% {
    transform: rotate(1deg) translate3d(0, 0, 0);
  }

  100% {
    transform: rotate(0deg) translate3d(0, 0, 0);
  }
}

.btn-1:hover span {
  animation: storm 0.7s ease-in-out both;
  animation-delay: 0.06s;
}

.btn-1::before,
.btn-1::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: transform 0.15s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.15s cubic-bezier(0.02, 0.01, 0.47, 1);
  z-index: -1;
  transform: translate(100%, -25%) translate3d(0, 0, 0);
}

.btn-1:hover::before,
.btn-1:hover::after {
  opacity: 0.15;
  transition: transform 0.2s cubic-bezier(0.02, 0.01, 0.47, 1), opacity 0.2s cubic-bezier(0.02, 0.01, 0.47, 1);
}

.btn-1:hover::before {
  transform: translate3d(50%, 0, 0) scale(0.9);
}

.btn-1:hover::after {
  transform: translate(50%, 0) scale(1.1);
}

.btn-2 {
  display: block;
  width: fit-content;
  padding: 15px 32px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(130deg, #eb3e32, #c94d4d, #8e3636);
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  border-style: solid;
  border-width: 2px;
  transition: transform 0.3s ease-in-out;
}

.btn-2:before,
.btn-2:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  pointer-events: none;
  
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.btn-2:before {
  left: 100%;
  background: linear-gradient(130deg, #eb3e32, #c94d4d, #8e3636);
  z-index: -1;
}

.btn-2:hover:before {
  transform: translateX(-50%);
  opacity: 1;
}

.btn-2:after {
  right: 100%;
  background: linear-gradient(130deg, #eb3e32, #c94d4d, #8e3636);
  z-index: -1;
}

.btn-2:hover:after {
  transform: translateX(50%);
  opacity: 1;
}

.btn-2:hover .button-text {
  transform: translateY(-3px);
}




.btn-3 {
  display: inline-block;
  
 text-align: center;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #ffffff;
  background-color: #ff5f5f;
  border-style: none;
  border-radius: 8px;
  padding: 16px 20px;
  transform: scale(1);
  transition: 0.2s;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.btn-3:hover {
  background-color: #eb3e32;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2);
}

.btn-3:active {
  transform: scale(0.95);
  box-shadow: none;
}





.btn-4 {
    background: #4328b7;
    padding: 12px 30px;
    border: 2px solid #4328b7;
    color: #fff;
    border-radius: 5px;
    font-size: 15px;
    display: block;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
}



.btn-4:hover,.btn-4:focus {
  background: #1b2032;
 color: #fff;
border: 2px solid #1b2032;
}
.btn-5 {
  border: 1.5px solid rgb(34, 30, 30);
  padding: 10px; 
  width: fit-content;
  text-align: center;
  display: block;  
  color: #f5f0f0;
  background-color: #2F2519;
  box-shadow: 3px 3px 6px #2F2519;
  transition: transform 0.3s ease-in-out;
}

.btn-5:hover {
  background-color: #eb3e32;
 color: #f5f0f0;
  transform: scale(1.07);
}