#MagicLine {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 40px;
}
#MagicLine li {
	position: relative;
	list-style: none;
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	box-shadow: 0 15px 35px rgb(0 0 0 / 10%);
	cursor: pointer;
}
#MagicLine li .fa-brands {
	font-size: 6em;
	-webkit-text-stroke: 2px var(--clr);
	text-stroke: 2px var(--clr);
	color: transparent;
}
#MagicLine li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	overflow: hidden;
	border-bottom: 4px solid var(--clr);
	transition: 0.5s ease-in-out;
	font-family: fontAwesome;
	text-align: center;
	line-height: 120px;
	font-size: 6em;
	color: var(--clr);
}
#MagicLine li:hover::before {
	height: 100%;
}
#MagicLine li:nth-child(1)::before {
	content: "\f099";
}
#MagicLine li:nth-child(2)::before {
	content: "\f16d";
}
#MagicLine li:nth-child(3)::before {
	content: "\f232";
}
#MagicLine li:nth-child(4)::before {
	content: "\f167";
}
