.container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	color:white;
}
.text-content {
	flex: 1;
	/* order: 1;
	För att texten ska visas till vänster på skrivbord */
}
.image-content {
	flex: 1;
	order: 2;
	/* För att bilden ska visas till höger på skrivbord */
}
.image-content img {
	max-width: 100%;
	/* För att bilden inte ska bli större än sin container */
	height: auto;
}
@media (max-width: 900px) {
	.container {
		flex-direction: column;
		gap: 30px;
	}
	.text-content {
		order: 2;
		/* För att texten ska visas under bilden på mobil */
	}
	.image-content {
		order: 1;
		/* För att bilden ska visas först på mobil */
	}
}
/* Base styles for the container */
.information-platsen {
	display: flex;
	justify-content: center;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	padding-top: 20px;
	background: #0e0e0e;
	box-sizing: border-box;
	align-items: center;
}
/* Styles for the inner container */
.information-platsen > div {
	max-width: 1080px;
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
	box-sizing: border-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
/* Default styles for the columns */
.ensjua, .ensexa, .enfyra {
	width: 100%;
	padding-left: 15px;
	padding-bottom: 30px;
	padding-right: 15px;
	box-sizing: border-box;
	display: flex;
	align-items: center;
}
/* Tablet and desktop styles for the columns */
@media (min-width: 768px) {
	.ensexa, .enfyra {
		width: 50%;
	}
}
@media (min-width: 992px) {
	.enfyra {
		width: 33.33%;
	}
}
/* Styles for the info blocks */
.rutan {
	display: flex;
	align-items: center;
}
.informationbilden {
	margin-right: 15px;
	display: flex;
	align-items: center;
}
.informationtext p, .informationtext span {
	margin: 5px 0;
	color: white;
}
.informationtext p {
	font-size: 16px;
	font-weight: 400;
}
.informationtext span {
	font-size: 20px;
	font-weight: 600;
}
a {
	color: white;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
