@charset "UTF-8";
.button {
  width: 80%;
  margin: 0 auto 0;
  text-align: center;
  margin-top: 50px;
}

.button a {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 15px 10px;
  color: #fff;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 1vw;
  background: #f39c12;
  border-radius: 8px;
  border-bottom: solid 5px #e67e22;
  text-decoration: none;
}

.button p {
  color: #313131;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04rem;
  display: inline-block;
  position: relative;
}

.button p:before,
.button p:after {
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 20px;
  height: 3px;
  border-radius: 5px;
  background-color: #313131;
  content: "";
}

.button p:before {
  left: -20px;
  -webkit-transform: rotate( 50deg );
  transform: rotate( 50deg );
}

.button p:after {
  right: -20px;
  -webkit-transform: rotate( -50deg );
  transform: rotate( -50deg );
}

.button a:hover {
  border-bottom: solid 2px #ececec;
  transform: translateY(3px);
}

.button--blue {
  margin-top: 30px;
}

.button--blue a {
  background: #f39c12;
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 280px;
  padding: 10px 25px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: bold;
}
.button--blue a:after {
content: "";
position: absolute;
top: 50%;
bottom: 0;
right: 2rem;
font-size: 90%;
display: flex;
justify-content: center;
align-items: center;
transition: right 0.3s;
width: 6px;
height: 6px;
border-top: solid 2px currentColor;
border-right: solid 2px currentColor;
transform: translateY(-50%) rotate(45deg);
}
.button--blue a:hover {
background: #eee;
color: #313131;
}
.button--blue a:hover:after {
right: 1.4rem;
}

#header .button--blue a {
  margin: 0;
}