a.btn-arrow.btn-arrow {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	border: 0;
	box-shadow: none;
	cursor: pointer;
	outline: none;
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	background-color: #000;
	border-radius: 40px;
	padding: 24px 36px;
	transition-property: color, background-color;
	transition-duration: .4s;
	transition-timing-function: ease;
}

a.btn-arrow.btn-arrow:after {
	content: '';
	display: block;
	flex-shrink: 0;
	width: 18px;
	aspect-ratio: 1;
	background-color: currentColor;
	mask-repeat: no-repeat;
	mask-size: cover;
	mask-position: center center;
	mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.40436 1.6543L14.75 7.99995L8.40436 14.3456' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.7499 8L1.25 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	-webkit-mask-position: center center;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.40436 1.6543L14.75 7.99995L8.40436 14.3456' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M14.7499 8L1.25 8' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

a.btn-arrow.btn-arrow:hover {
	background: #fff;
	color: #000;
}

@media screen and (max-width: 767px) {
	a.btn-arrow.btn-arrow {
		font-size: 15.3px;
		padding: 21px 32px;
	}

	a.btn-arrow.btn-arrow:after {
		width: 12px;
	}
}

/*  Btn Arrow Down  */

a.btn-arrow.btn-arrow--down:after {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.3 9.4 9 15.7 2.7 9.4M9 15.7V2.3'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M15.3 9.4 9 15.7 2.7 9.4M9 15.7V2.3'/%3E%3C/svg%3E");
}

/*  Btn Arrow White  */

a.btn-arrow.btn-arrow--white {
	color: #000;
	background-color: #fff;
}

a.btn-arrow.btn-arrow--white:hover {
	background: #000;
	color: #fff;
}

/*  Btn Arrow Border  */

a.btn-arrow.btn-arrow--border,
a.btn-arrow.btn-arrow--border-white {
	color: #000;
	background-color: transparent;
}

a.btn-arrow.btn-arrow--border:before,
a.btn-arrow.btn-arrow--border-white:before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	border-radius: inherit;
	border: 1px solid #000;
}

a.btn-arrow.btn-arrow--border:hover {
	background: #000;
	color: #fff;
}

/*  Btn Arrow Border White  */

a.btn-arrow.btn-arrow--border-white {
	color: #fff;
}

a.btn-arrow.btn-arrow--border-white:before {
	border-color: #fff;
}
