/*-------------------------------Allgemein */
@font-face {
	font-family: 'PT Serif';
	src: url(../font/PT Serif/PTSerif-Regular.ttf) format('ttf');
}

body {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
	background-color: #F9F6F3;
	font-family: "PT Serif";
}

@media (min-width: 769px) {
	body {
		padding: 50px 20px;
	}
}

a {
	color: #000;
	text-decoration: none;
}


/*-------------------------------Hero */
.hero-image-element {
	position: relative;
	min-height: 400px;
	margin-bottom: 50px;
}

.hero-image-element::after {
	position: absolute;
	width: 100%;
	content: '';
	height: 100%;
	top: 0;
	left: auto;
	right: 0;
	background-color: #dbcbce;
	border-radius: 20px;
	z-index: -1;
}

.hero-image-container {
	padding-top: 20px;
	text-align: center;
}

.hero-image {
  max-width: 90%;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.hero-text {
	padding: 40px 20px;
}

.hero-title {
	font-size: 40px;
}

.row {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.row span:first-child {
	min-width: 100px;
}

.social-media {
	margin-top: 30px;
}

.social-media a + a {
	margin-left: 15px;
}

@media (min-width: 769px) {
	.hero-image-element {
		display: flex;
	}

	.hero-image-element::after {
		width: 85%;
	}

	.hero-image-container {
		position: relative;
		width: 50%;
		padding-top: 0;
		text-align: left;
	}

	.hero-image {
		position: absolute;
		top: 50%;
		left: 0;
		transform: translateY(-50%);
		max-width: 500px;
	}

	.hero-text {
		width: 50%;
		padding: 80px 40px;
	}
}


/*-------------------------------Navigation */
.navigation-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.navigation-link .icon {
	width: 15px;
	height: 15px;
}

.link-next .icon {
	margin-left: 10px;
}

.link-back .icon {
	margin-right: 10px;
}


/*-------------------------------Icons */
.icon-wrapper {
	display: flex;
	align-items: center;
}

.icon {
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

.social-icon {
	width: 35px;
	height: 35px;
}


/*-------------------------------Footer */
.copyright-column {
	margin-top: 25px;
	text-align: center;
}