.button-wrapper {
  display: inline-block;
  position: relative;
  padding-bottom: 5px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  border-left: #fff 2px solid;
  border-bottom: #000000 3px solid;
  transition: 0.3s;
}


.custom-button {
  background-color: #000;      /* Dark red */
  color: #fff;
  padding: 12px 24px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  z-index: 1;
}


.button-wrapper:hover {
  background-color: #8B0000;      /* Slightly lighter red on hover */
  border: #8B0000 2px solid; /* Keep the border color consistent */
  padding-bottom: 0px;
	margin-bottom:5px;
}
.button-wrapper:hover .custom-button {
  background-color: #8B0000;      /* Slightly lighter red on hover */
}
