a.btn.btnsecondry {
	height: auto;
	border-radius: 0;
	border: none;
	color: #1c3258;
	font-size: 20px;
	font-weight: 400;
	display: inline-flex;
	align-items: center;
	padding: 0 30px 0 0;
	position: relative;
	text-decoration: none;
	box-sizing: border-box;
}

a.btn.btnsecondry:hover,
a.btn.btnsecondry:focus-visible {
	border: none;
	color: #1c3258;
}

a.btn.btnsecondry::before {
	content: "";
	width: 16px;
	height: 14px;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	background: url("../../images/blocks/icon-arrow-teal.svg") no-repeat center;
	transition: all ease-in-out 250ms;
}

a.btn.btnsecondry:hover::before,
a.btn.btnsecondry:focus-visible::before {
	right: -3px;
}

a.btn.btnsecondry.white,
a.btn.btnsecondry.white:hover,
a.btn.btnsecondry.white:focus-visible {
	color: #fff;
}

a.btn.btnsecondry.white::before {
	background: url("../../images/blocks/icon-arrow-white.svg") no-repeat center;
}

a.btn.btnsecondry.green::before {
	background: url("../../images/blocks/icon-arrow-green.svg") no-repeat center;
}

@media only screen and (max-width: 991px) {
	a.btn.btnsecondry {
		font-size: 16px;
		padding: 0 22px 0 0;
	}

	a.btn.btnsecondry::before {
		width: 13px;
		height: 11px;
		background-size: 13px auto;
	}
}
