

.buttons {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.container-btn {
  /* align-items: center; */
  /* display: flex; */
  /* flex-direction: column; */
  /* justify-content: center; */
  /* padding: 1em; */
  /* text-align: center; */
}





.buttons p {
  color: green;
  font-size: 12px;
}

.buttons p a {
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid;
  color: green;
  line-height: 1.4;
  padding: 0.25em;
  text-decoration: none;
}
.buttons p a:hover {
  background: black;
  color: #E1332D;
}

.buttons .btn {
  color: #fff;
  cursor: pointer;
  font-size: 17px;
  font-weight: 400;
  line-height: 45px;
  margin: 14px;
  max-width: 160px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  padding: 0px;
  height: 55px;
  padding: 8px;
  transition: all 1s;
}

.buttons .btn-1:hover {
    color: #9b7aff;
}



.buttons .btn-1 {
  background: #9b7aff;
  font-weight: 100;
  border: navajowhite;
}
.buttons .btn-1 svg {
  height: 55px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.buttons .btn-1 rect {
  fill: none;
  stroke: #9b7aff;
  stroke-width: 2;
  stroke-dasharray: 422, 0;
  transition: all 0.35s linear;
}

.buttons .btn-1:hover {
  background: rgba(225, 51, 45, 0);
  font-weight: 900;
  letter-spacing: 1px;
}
.buttons .btn-1:hover rect {
  stroke-width: 5;
  stroke-dasharray: 15, 310;
  stroke-dashoffset: 48;
  transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}



.buttons .btn-2 {
  letter-spacing: 0;
  background: #DCD4BF;
  border-radius: 0px;
  /* color: #fff; */
  border: 1.5px solid #000;
  padding: 4px;
}

.buttons .btn-2:hover,
.buttons .btn-2:active {
  letter-spacing: 0px;
}

.buttons .btn-2:after,
.buttons .btn-2:before {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  transition: all 280ms ease-in-out;
  width: 0;
}

.buttons .btn-2:hover:after,
.buttons .btn-2:hover:before {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  border-color: green;
  transition: width 350ms ease-in-out;
  width: 70%;
}

.buttons .btn-2:hover:before {
  bottom: auto;
  top: 0;
  width: 70%;
}

.buttons .btn-3 {
  background: #e3403a;
  border: 1px solid #da251f;
  box-shadow: 0px 2px 0 #d6251f, 2px 4px 6px #e02a24;
  font-weight: 900;
  letter-spacing: 1px;
  transition: all 150ms linear;
}

.buttons .btn-3:hover {
  background: #e02c26;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
  color: #ec817d;
  text-decoration: none;
  text-shadow: -1px -1px 0 #c2211c;
  transition: all 250ms linear;
}

.buttons .btn-4 {
  border: 1px solid;
  overflow: hidden;
  position: relative;
}
.buttons .btn-4 span {
  z-index: 20;
}
.buttons .btn-4:after {
  background: green;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}

.buttons .btn-4:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.buttons .btn-5 {
  border: 0 solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0);
  outline: 1px solid;
  outline-color: rgba(255, 255, 255, 0.5);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1250ms cubic-bezier(0.19, 1, 0.22, 1);
}

.buttons .btn-5:hover {
  border: 1px solid;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.2);
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  text-shadow: 1px 1px 2px #427388;
}