

/*
  JARD ADD BTN CLASS
*/


*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

.btn_p,
a.btn_p,
button.btn_p {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn_r,
a.btn_r,
button.btn_r {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn_p-wrap {
  margin: 20px 0 50px 0;
  text-align: center;
}

a.btn_p-b {
  font-size: 1.8rem;
  position: relative;
  padding: 1rem 3rem;
  width: 360px;
  color: #fff;
  background: #00004a;
  -webkit-box-shadow: 0 5px 0 #000066;
  box-shadow: 0 5px 0 #000066;
  margin: 20px 20px 20px 0px;
}

a.btn_p-c,.btn_p-e {
  font-size: 2.2rem;
  position: relative;
  padding: 0.25rem 2rem 1.5rem 3.5rem;
  color: #fff;
  background: #00004a;
  -webkit-box-shadow: 0 5px 0 #000066;
  box-shadow: 0 5px 0 #000066;
}

a.btn_p-b span {
  font-size: 1.5rem;
}

a.btn_p-c span {
  font-size: 1.5rem;

  position: absolute;
  top: -1.25rem;
  left: calc(66% - 150px);

  display: block;

  width: 220px;
  padding: 0.2rem 0;

  color: #00004a;
  border: 2px solid #00004a;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn_p-c span:before,
a.btn_p-c span:after {
  position: absolute;
  left: calc(50% - 10px);

  content: "";
}

a.btn_p-c span:before {
  bottom: -10px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #00004a transparent transparent transparent;
}

a.btn_p-c span:after {
  bottom: -7px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

a.btn_p-b img {
  width: 8px;
  height: auto;
  margin-left: 15px;
  margin-right: -15px;
}

a.btn_p-d img {
  width: 8px;
  height: auto;
  margin-left: 15px;
  margin-right: -15px;
  margin-bottom: 5px;
}

a.btn_p-c img {
  width: 17px;
  height: auto;
  margin-left: 10px;
  margin-right: 15px;
  vertical-align: -4px;
}

a.btn_p-b:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #0e0e8d;
  -webkit-box-shadow: 0 2px 0 #00004a;
  box-shadow: 0 2px 0 #00004a;
}

a.btn_p-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #0e0e8d;
  -webkit-box-shadow: 0 2px 0 #00004a;
  box-shadow: 0 2px 0 #00004a;
}

a.btn_p-d {
  overflow: hidden;

  padding: 1.5rem 6rem;

  color: #fff;
  border-radius: 0;
  background: #000066;
}

a.btn_p-d span {
  position: relative;
}

a.btn_p-d:before {
  position: absolute;
  top: 0;
  left: 0;

  width: 100px;
  height: 100px;

  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-80%) translateY(-25px);
  transform: translateX(-80%) translateY(-25px);

  border-radius: 50%;
  background: #3e6dd8;
}

a.btn_p-d:hover:before {
  width: 400px;
  height: 400px;

  -webkit-transform: translateX(-1%) translateY(-175px);

  transform: translateX(-1%) translateY(-175px);
}