* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	height: auto;
}


/* Fonts */

/* league-spartan-700 - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'League Spartan';
	font-style: normal;
	font-weight: 700;
	src: url('../fonts/league-spartan-v15-latin-700.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* poppins-regular - latin */
@font-face {
	font-display: swap;
	/* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
	/* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* LANDINGPAGE */

body {
	position: relative;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	background-image: url("mobil_elemente/titlebild_mobile.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.logo {
	display: block;
	margin: auto;
}

/* CONTACT */

.contact-box {
	text-align: center;
	padding: 6rem 4rem 8rem;
}

.contact-box p {
	color: white;
	font-size: 1rem;
	line-height: 1.35;
}

a {
	color: white;
	text-decoration: none;
	transition: all 0.2s ease;
}

a:hover {
	color: #f33a25;
}

a img {
	transition: all 0.2s ease;
}

a:hover img {
	transform: scale(1.2);
}

.title-strong {
	font-family: 'League Spartan';
	font-weight: 700;
	font-size: 3rem;
	line-height: 1.05;
	display: block;
	letter-spacing: .15rem;
	text-transform: uppercase;
}

.title-sub {
	text-transform: uppercase;
	font-size: 1.25rem;
	margin-bottom: 2rem;
	display: inline-block;
	line-height: 1.25;
	letter-spacing: .15rem;
	font-family: 'Poppins';
}

.contact-box p:not(.contact-title) {
	font-family: 'Poppins';
	margin-top: 1rem;
}

/* BUTTON */

.cta-button {
	display: inline-block;
	margin-top: 4rem;
	padding: 0.75rem 1.5rem;
	background-color: #f33a25;
	color: white;
	border: 4px solid white;
	border-radius: 4rem;
	text-decoration: none;
	font-size: 1rem;
	font-weight: 700;
	font-family: 'Poppins', sans-serif;
	transition: all 0.2s ease;
	text-transform: uppercase;
}

.cta-button:hover {
	background-color: white;
	color: #f33a25;
}

/* IMAGE SLIDER */

.image-slider {
	padding-bottom: 2rem;
	overflow: hidden;
}

.slider-row {
	width: 100%;
	margin-bottom: 1rem;
}

.slider-track {
	display: flex;
	width: max-content;
}

.slider-track img {
	width: 200px;
	height: 150px;
	object-fit: cover;
	margin: 0 .5rem;
}

footer {
	font-size: 1rem;
	font-family: 'Poppins';
	padding: 1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
}

/* SLIDER ANIMATION */

.slider-top .slider-track {
	animation: slideRight 200s linear infinite;
}

.slider-bottom .slider-track {
	animation: slideLeft 200s linear infinite;
}

@keyframes slideLeft {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

@keyframes slideRight {
	from {
		transform: translateX(-50%);
	}

	to {
		transform: translateX(0);
	}
}

/* ========================= */
/* DESKTOP */
/* ========================= */

@media screen and (min-width:991px) {

	body {
		background-image: url("desktop_elemente/titlebild_desktop.webp");
	}

	.slider-row {
		margin-bottom: 2rem;
	}

	.slider-track img {
		width: 400px;
		height: 225px;
		margin: 0 1rem;
	}

	.title-strong {
		font-size: 6rem;
	}

	.title-sub {
		font-size: 2rem;
	}

	.contact-box p,
	.cta-button {
		font-size: 1.5rem;
	}
}