body {
	font-family: Roboto, Arial, Helvetica;
	background: #f9f9f9;
	margin: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.softime-background {
	background: url('../images/SoftimeBackground.png');
	background-size: 90%;
	background-position: bottom center;
	background-repeat: no-repeat;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 992px) {
	.softime-background {
		background-size: 140%;
	}
}

h2 {
	font-size: 34px;
	font-weight: bold;
	letter-spacing: 0px;
	margin: 0;
}

p {
	font-size: 20px;
	font-weight: 400;
	color: #575757;
	letter-spacing: 0px;
	margin: 0;
}

@media screen and (max-width: 992px) {
	h2 {
		font-size: 60px;
	}
	p {
		font-size: 30px;
	}
}

.cards-software {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px;
}

@media screen and (max-width: 992px) {
	.cards-software {
		flex-direction: column;
		gap: 50px;
	}
}

.card {
	height: 100%;
	background: #fff;
	padding: 0 60px 120px;
	box-sizing: border-box;
	transition: .3s ease-in-out;
}

.card:hover {
	box-shadow: 0px 0px 24px rgba(0,0,0,.07);
	transform: translateY(-6px);
	transition: .3s ease-in-out;
}

.card-image {
	height: 340px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.card-image > img {
	width: 100%;
	max-width: 310px;
	height: auto;
}

@media screen and (max-width: 992px) {
	.card-image > img {
		width: 100%;
		max-width: 450px;
		height: auto;
	}
}

.card-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.card-content > a {
	font-size: 16px;
	font-weight: 900;
	color: #575757;
	letter-spacing: 0px;
	margin: 0;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 18px;
	transition: .3s ease-in-out;
}

.card-content > a > svg {
	width: 18px;
	height: 18px;
}

@media screen and (max-width: 992px) {
	.card-content > a {
		font-size: 24px;
	}
	.card-content > a > svg {
		width: 24px;
		height: 24px;
	}
}

.card-content > #linkKipo:hover {
	text-decoration: none;
	color: #ee7d00;
	transition: .3s ease-in-out;
}

.card-content > #linkReSys:hover {
	text-decoration: none;
	color: #2a81b8;
	transition: .3s ease-in-out;
}