/*BUTTON ANIMATION */



.custom-btn {

  font-family: "DIN-light";
  color: #FFF;

	
  background: transparent;
  outline: none !important;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
	
  display: inline-block;
}

/**** BTN No. 14 ****/
.btn-14 {
  border: 2px solid #FFF;
  z-index: 1;
}
.btn-14:after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background: #FFF;
  transition: all 0.3s ease;
}
.btn-14:hover {
  color: #000;
}
.btn-14:hover:after {
  left: 0;
  width: 100%;
}
