/*Two links*/

.two-links {
	margin-top: 30px;
	margin-bottom: 150px;
}

.two-links-item {
	position: relative;
	border-radius: 8px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	height: 16.5em;
	padding: 57px;
	box-sizing: border-box;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	color: #FFF;
	text-align: center;
	font-family: "Work Sans";
	font-size: 18px;
	font-weight: 600;
	line-height: 159%;
	overflow: hidden;
}

.two-links-item::before {
	content: "";
	display: block;
	width: 100%;
	height: 69%;
	position: absolute;
	left: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 124, 194, 0.00) 0%, #007CC2 100%);
}

.two-links-item > * {
	position: relative;
	z-index: 1;
}

.two-links .row > .col-md-6:nth-child(2) .two-links-item::before {
	background: linear-gradient(180deg, rgba(198, 0, 111, 0.00) 0%, #C6006F 100%);
}

@media (max-width: 767px){
	.two-links .col-md-6 {
		margin-bottom: 2em;
	}

	.two-links-item {
		height: 13.5em;
		padding: 25px;
	}
}