#lastComer {
	padding: 45px 0px;
	position: relative;
}
#lastComer .head  {
	margin-bottom: 25px;
}
#lastComer .head h2 {
	font-weight: 700;
	color: var(--primaryColor);
	font-size: 30px;
	line-height: 30px;
}
#lastComer .head {
	display: flex;
}
#lastComer .more {
	background-color: var(--secondaryColor);
	border-radius: var(--radius);
	color: white;
	padding: 0px 25px;
	line-height: 40px;
	display: inline-block;
	font-weight: 500;
	font-size: 13px;
	margin-left: auto;
	float: right;
	height: fit-content;
	margin-top: 6px;
	transition: .3s;
}
#lastComer .more:hover {
	background-color: var(--primaryColor);
}

@media screen and (max-width: 992px) {
	#lastComer .head h2 {
	    font-size: 20px;
	    line-height: 20px;
	}
	#lastComer .more {
		margin-top: 0px;
	    font-size: 11px;
	    line-height: 34px;
	}
}