.bwdal_link_1 .bwdal_animated_box::after, .bwdal_link_2 .bwdal_animated_box::after, .bwdal_link_2 .bwdal_animated_box::before {
	height: 2px;
	left: 0;
	content: "";
	position: absolute;
	background: red;
	transition: .4s;
	width: 100%;
}

.bwdal_animated_box {
	text-decoration: none;
	color: #222;
	line-height: 1;
	text-transform: capitalize;
	font-size: 35px;
	display: inline-block;
	position: relative;
	padding: 20px;
}

.bwdal_animated_box:hover {
	color: #000;
}

.bwdal_link_1 .bwdal_animated_box::after {
	top: 100%;
}

.bwdal_link_1 .bwdal_animated_box:hover::after {
	top: 0;
}

.bwdal_link_2 .bwdal_animated_box::before {
	transform: scaleX(0);
	top: 0;
}

.bwdal_link_2 .bwdal_animated_box:hover::before {
	transform: scaleX(1);
}

.bwdal_link_2 .bwdal_animated_box::after {
	bottom: 0;
}

.bwdal_link_2 .bwdal_animated_box:hover::after {
	transform: scaleX(0);
}