.btn-secondary {
	background: #e1fb2f;
	border: 1px solid var(--branding);
	min-width: 244px;
	height: 70px;
	border-radius: 50%;
	color: var(--secondary);
	font-family: "Noto Sans";
	font-weight: bold;
	transition: all 0.3s ease;
}

.btn-secondary:hover {
	background: #c7e602;
	color: var(--secondary);
}

.btn-secondary-ghost {
	height: 70px;
	border-radius: 50%;
	color: var(--primary);
	min-width: 244px;
	font-family: "Noto Sans";
	border: 1px solid var(--primary);
	background-color: transparent;
	transition: all 0.3s ease;
}

.btn-secondary-ghost:hover {
	background-color: rgba(255, 255, 255, 0.25);
}

.btn-shop-now {
	background: var(--primary);
	min-width: 244px;
	height: 70px;
	border-radius: 50%;
	color: var(--secondary);
	font-family: "Noto Sans";
	font-weight: bold;
	border: 1px solid rgba(18, 107, 66, 0.1);
	transition: all 0.3s ease;
}

@media (max-width: 991px) {
	.btn-shop-now img {
		height: 24px;
		width: 24px;
	}
}

@media (min-width: 991px) {

	.btn-secondary,
	.btn-secondary-ghost {
		font-size: 22px;
	}

	.btn-secondary-ghost {
		width: 324px;
	}

	.btn-shop-now {
		border: 5px solid rgba(18, 107, 66, 0.1);
		width: 427px;
		height: 104px;
		background-color: transparent;
		border-radius: 50%;
		font-size: 56px !important;
	}

	.btn-shop-now span {
		min-width: 400px;
		top: 0;
		bottom: 0;
		margin: auto;
		left: 165px;
	}
}
@media (min-width: 1200px){
	.btn-shop-now {
		margin-right: 250px;
	}
	.position-absolute-xl {
		position: absolute;
	}
}

.btn-branding {
	background: var(--secondary);
	color: var(--primary);
	font-family: "Arial";
	border-radius: 0;
	min-width: 290px;
	padding: 12px 0px;
	text-transform: uppercase;
}

.btn-branding:hover {
	background: var(--secondary);
	color: var(--primary);
}

.play-btn {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	border: 0;
	background-color: var(--primary);
	box-shadow: 0 0 0 15px rgba(255, 255, 255, 0.25);
	background: rgba(255, 255, 255, 0.6);
	cursor: pointer;
}