@charset "UTF-8";

*,
*:after,
*::before {
    box-sizing: border-box;
}

/* Effect 4: bottom border enlarge */
.cl-effect-4 a {
	padding: 0;
}

.cl-effect-4 a::after {
	position: absolute;
	top: 100%;
	left: -5px;
	width: 100%;
	height: 1px;
	background: #fff;
	content: '';
	opacity: 0;
	transition: height 0.3s, opacity 0.3s, transform 0.3s;
	transform: translateY(-10px);
}

.cl-effect-4 li:last-child a::after {
	left: 0;
}

.cl-effect-4 a:hover::after,
.cl-effect-4 a:focus::after {
	height: 3px;
	opacity: 1;
	transform: translateY(0px);
}
