*,
*:after,
*:before {
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}

.clearfix:after {
  clear: both;
}

body {
  color: #222;
  background: #000;
  padding: 2%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section {
	margin: 60px 0;
}

h1 {
	font-family: sans-serif;
	color: #fff;
	letter-spacing: 0.1em;
	margin: 40px 0;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}

.svg-filters {
  position: absolute;
  visibility: hidden;
  width: 1px;
  height: 1px;
}

.button--1,
.button--1 .button__bg {
  -webkit-font-smoothing: antialiased;
  background: #fff;
  border: none;
		font-family: XBRoyaBold,sans-serif;
		text-align: center;
  display: block;
		margin: 0 auto;
  font-size: 1em;
  font-weight: 700;
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;

  color: #000;
  padding: 20px 40px;
  text-transform: uppercase;
  transition: background-color 0.1s ease-out;
}

.button--1:hover,
.button--1 .button__bg:hover {
  background-color: #2cd892;
  color: #000;
}

.button--1:focus,
.button--1 .button__bg:focus {
  outline: none;
  color: #000;
}

.button--1 {
  position: relative;
  background: none;
  z-index: 0;
}

.button--1:hover {
  background: none;
}

.button--1:hover .circle {
  background: #FF1EAD;
}

.button--1:hover .button__bg {
  background: #FF1EAD;
}

.button--1 .button__container {
  position: absolute;
  display: block;
  width: 200%;
  height: 400%;
  top: -150%;
  left: -50%;
  pointer-events: none;
  z-index: -1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: all 0.1s ease-out;
}


.button--1 .button__bg {
  position: absolute;
  width: 50%;
  height: 25%;
  top: 50%;
  left: 25%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.button--1 .circle {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 15px;
  background: #fff;
  transition: background-color 0.1s ease-out;
}

.button--1 .circle.top-left {
  top: 40%;
  left: 27%;
}

.button--1 .circle.bottom-right {
  bottom: 40%;
  right: 27%;
}

