/*Jobs Button Navigation*/
	.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap .buttons {
  min-width: 100%;
  min-height: 60px;
  display: inline-flex;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  color: #FFFFFF;
  background: #AF1219;
background: linear-gradient(90deg, #FF6601 0%, #FF8F46 100%);
  border: none;
  border-radius: 1000px;
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px 20px;
	margin: 10px;
  }


@media (min-width: 992px) {
	.wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap .buttons {
  min-width: 100%;
  min-height: 60px;
  display: inline-flex;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  text-align: center;
  font-weight: 500;
  color: #FFFFFF;
  background: #AF1219;
background: linear-gradient(90deg, #FF6601 0%, #FF8F46 100%);
  border: none;
  border-radius: 1000px;
  box-shadow: 0px 0px 24px rgba(175,18,25,0.65);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  padding: 10px 20px;
  }

.wrap .buttons::before {
content: '';
  border-radius: 1000px;
  min-width: calc(100% + 12px);
  min-height: calc(60px + 12px);
  border: 3px solid #FC7A00;
  *box-shadow: 0 0 60px rgba(175,18,25,0.65);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .5s ease-in-out 0s;
}

.wrap .buttons:hover, 
.wrap .buttons:focus {
  color: #FFFFFF;
  transform: translateY(0px);
}

.wrap .buttons:hover::before, 
.wrap .buttons:focus::before {
  opacity: 1;
}

.wrap .buttons::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #FC7A00;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 1.5s infinite;
}

.wrap .buttons:hover::after, 
.wrap .buttons:focus::after {
  animation: none;
  display: none;
}

}
@keyframes ring {
  0% {
    width: 30px;
    height: 30px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}