* {
    box-sizing: border-box;
    
}

.white_text {
    color: #fff !important;
}

.white_bg {
    background-color: #fff !important;
}

.white_border {
    border: 1px solid #fff !important;
}

.super_button {
    text-decoration: none;
    min-width: 350px;
    min-height: 60px;
    max-width: 280px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: FuturaPT;
    font-weight: bold;
    line-height: 1.36;
    letter-spacing: 1px;
    color: #000 !important;
    position: relative;
    transition: all 0.5s ease;
    background-color: transparent;
    border: 0;
    position: relative;
    padding: 10px 15px;
    overflow: hidden;
}

.super_button:focus,
.super_button:active {
    text-decoration: none;
    color: #000;
    outline: 0;
}

.border-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 100%;
    background-color: transparent;
    border-bottom-left-radius: 0px;
    border-top-left-radius: 0px;
    border: 1px solid #000;
    border-right: 0;
    transition: all 0.5s ease;
}

.border-top-left {
  width: 50%;
  height: 1px;
  position: absolute;
  top: 0px;
  left: 0;
  background-color: #000;
  transition: all 0.5s ease;
}

.border-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  height: 100%;
  background-color: transparent;
  border-bottom-right-radius: 0px;
  border-top-right-radius: 0px;
  border: 1px solid #000;
  border-left: 0;
  transition: all 0.5s ease;
}

.border-bottom-right {
  width: 50%;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #000;
  transition: all 0.5s ease;
}

.super_button:hover .border-top-left,
.super_button:hover .border-bottom-right {
    width: 100%;
}