.button{
  display: flex;
  justify-content: center;
  align-items: center;
	cursor: pointer;
	border-radius: 50px;
  transition: 0.2s;
  letter-spacing: 0;
  font-size: 15px;
  line-height: 21px;
}
@media (min-width: 768px){
  .button{
  font-size: 18px;
  line-height: 26px;
}
}

.button-blue {
	color: #fff;
	padding-top: 22px;
  padding-bottom: 22px;
  border: 1px #114B95 solid;
	width: 100%;
	max-width: 480px;
	background: #114B95;
}
.button-blue:hover {
	background: none;
	color: #114B95;
	border: 1px #114B95 solid;
}

.button-lightBlue {
	color: #114B95;
	padding-top: 22px;
  padding-bottom: 22px;
  border: 1px #EAF4F8 solid;
	width: 100%;
	max-width: 480px;
	background: #EAF4F8;
}
.button-lightBlue:hover {
	background: none;
	border: 1px #114B95 solid;
}

.button-borderPink{
	color: #E4468A;
	padding-top: 15px;
  padding-bottom: 15px;
  border: 1px #E4468A solid;
	width: 200px;
}
@media (max-width: 1023px){
  .button-borderPink{
    width: 100%;
  }
}
.button-borderPink:hover {
	background-color: #E4468A;
	color: #fff;
	border: 1px #E4468A solid;
}

.button-borderWhite{
	color: #fff;
	padding-top: 15px;
  padding-bottom: 15px;
  border: 1px #fff solid;
	width: 100%;
}
@media (min-width: 768px){
  .button-borderWhite{
	width: 180px;
}
}
.button-borderWhite:hover {
	background-color: #fff;
	color: #114B95;
	border: 1px #fff solid;
}

.button-white{
	color: #E4468A;
	background-color: #fff;
	padding-top: 15px;
  padding-bottom: 15px;
  border: 1px #fff solid;
	width: 100%;
  font-size: 15px;
}
@media (min-width: 768px){
  .button-white{
	width: 180px;
}
}
.button-white:hover {
	background-color: #E4468A;
	color: #fff;
	border: 1px #E4468A solid;
}


.button_arrow {
  position: relative;
}

.button_arrow::before,
.button_arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 20px;
  width: 12px;
  height: 2px;
  border-radius: 9999px;
  transform-origin: calc(100% - 1px) 50%;
  transition: 0.2s;
}
.button_arrow::before {
  transform: rotate(42.9deg);
}
.button_arrow::after {
  transform: rotate(-42.9deg);
}

.button_arrow-white::before,
.button_arrow-white::after{
  background-color: #fff;
}
.button_arrow-white:hover::before,
.button_arrow-white:hover::after {
  background-color: #114B95;
}

.button_arrow-blue::before,
.button_arrow-blue::after{
  background-color: #114B95;
}


.button_icon {
  position: relative;
}
.button_icon::before{
  content: "";
  position: absolute;
  transition: 0.2s;
}

.button_icon-mail{
  padding-left: 22px;
}
.button_icon-mail::before{
  top: calc(50% - 6px);
  left: calc(50% - 3.7em);
  width: 18px;
  height: 14px;
  mask-image: url(../images/icon_envelope.svg) ;
  background-color: #E4468A;
}
.button_icon-mail:hover::before{
  mask-image: url(../images/icon_envelope.svg);
  background-color: #fff;
}

.button_icon-lock{
  padding-left: 16px;
}
.button_icon-lock::before{
  top: calc(50% - 6px);
  left: calc(50% - 2.5em);
  width: 12px;
  height: 13px;
  mask-image: url(../images/icon_lock.svg);
  mask-repeat: no-repeat;
  background-color: #fff;
}
.button_icon-lock:hover::before{
  mask-image: url(../images/icon_lock.svg);
  mask-repeat: no-repeat;
  background-color: #114B95;
}