.nest-button-module {
	text-align: center;
	background-color: #faf8f6;
	position: relative;
	padding: 30px 0px 0px;
}
.nest-button-module a {
	font-size: inherit;
	position: relative;
	vertical-align: middle;
	border-color: #5ec286;
	color: #5ec286;
	transition: color .25s;
	box-shadow: inset 0 0 0 2px #5ec286 !important;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	padding: 15px 20px;
	background-color: transparent;
	display: inline-block;
	font-weight: 600;
	border-width: 2px;
	z-index: 999;
}
.nest-button-module a:hover {
  color: #fff;
  transition: color .25s ease-in 1.1s;
  background-color: #3a36e3;
  transition: background-color .5s ease-in 1s,color .25s ease-in 1.1s;
}
.nest-button-module a::before,
.nest-button-module a::after {
  content: '';
  position: absolute;
  border: 2px solid transparent;
  width: 0;
  height: 0;
}
.nest-button-module a::before {
	top: 0;
	left: 0;
}
.nest-button-module a::after {
  bottom: 0;
  right: 0;
}
.nest-button-module a:hover::before,
.nest-button-module a:hover::after {
	width: 100%;
	height: 100%;
}
.nest-button-module a:hover::before {
  border-top-color: #3a36e3;
  border-right-color: #3a36e3;
  transition: width .25s ease-out,height .25s ease-out .25s,background-color .25s ease-out 1.1s;
}
.nest-button-module a:hover::after {
  border-bottom-color: #3a36e3;
  border-left-color: #3a36e3;
  transition: border-color 0s ease-out .5s,width .25s ease-out .5s,height .25s ease-out .75s;
}

@media (max-width: 767px) {
  .nest-button-module {
    text-align: left;
    padding: 0px 0px 0px;
    margin-left: 35px;
  }
}