.desc {
	font-size: 22px;
	font-weight: 500;
}
.box-texto {
	font-size: 20px;
}
.link a {
	position: relative;
	transition: all 0.3s ease 0s;
}
.link a:hover {
	color: #676767;
}
.link a:before {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	height: 2px;
	width: 0;
	background-color: #000;
	transition: all 0.3s ease 0s;
}
.link > a:hover:before {
	width: 100%;
}

@media (max-width: 1180px) {
	.box-texto {
		font-size: 18px;
	}
}