/* linkWithIcon.css */
.link-with-icon-wrapper {
	margin-bottom: 0!important;
}

.link-with-icon-wrapper .link-with-icon {
	display: flex;
	align-items: center;
	position: relative;
	width: fit-content;
}

.link-with-icon-wrapper .cover {
	width: 45px;
	height: 45px;
	border-radius: 5px;
	position: absolute;
	transition: all 0.3s ease-out;
}

.link-with-icon-wrapper .icon {
	width: 45px;
	height: 45px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 13px;
	z-index: 1;
}

.link-with-icon-wrapper .title {
	font-size: 18px;
	line-height: 24px;
	font-weight: 900;
	letter-spacing: -0.18px;
	color: #333333;
	z-index: 1;
	transition: all 0.3s ease-out;
	margin-right: 10px;
}

.link-with-icon-wrapper .link-with-icon:hover {
	text-decoration: none;
}

.link-with-icon-wrapper .link-with-icon:hover .cover {
	width: 100%;
	background-color: #FCB040!important;
}

.link-with-icon-wrapper .link-with-icon:hover .title {
	transform: translate(-7px);
}
/* linkWithIcon.css end */