.btn-container {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	font-family: 'Lexend', sans-serif;

}

.btn-main {
	background-color: #b1d690;
	color: #1e3a24;
	padding: 15px 20px;
	border-radius: 50px;
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 1px;
	width: min-content;
	min-width: 220px;

	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-line {
	width: 10px;
	height: 2px;
	background-color: #b1d690;
}


.btn-icon {
	width: 53px;
	height: 53px;
	background-color: #b1d690;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #1e3a24;

	position: relative;
	overflow: hidden;
	z-index: 1;
}

.btn-icon svg {
	width: 22px;
	height: 22px;
	position: relative;
	z-index: 2;
}

.btn-main::before,
.btn-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;

	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 50%;
	transform: translate(-50%, -50%) scale(0);
	transition: transform 0.4s ease-out;
	z-index: -1;
}


.btn-container:hover .btn-main::before {
	transform: translate(-50%, -50%) scale(3);
}

.btn-container:hover .btn-icon::before {
	transform: translate(-50%, -50%) scale(1.5);
}
