/* css/base.css */

/* Font Face: Proxima Nova (lokal eingebundenes Webfont-Paket) */
font-family: "proxima-nova", sans-serif;
font-weight: 400;
font-style: normal;

font-family: "proxima-nova", sans-serif;
font-weight: 400;
font-style: italic;

font-family: "proxima-nova", sans-serif;
font-weight: 700;
font-style: normal;

/* Grundtypografie */
html {
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
	font-family: "proxima-nova", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: #000000;
	background-color: #ffffff;
	text-align: justify;
	hyphens: auto;
}

h2 {
	font-weight: 400;
	padding-bottom: 1.2rem;
}

a:link, a:visited {
	color: #000000;
	transition: color 0.3s ease; /* Dauer + Timing */
}
a:hover {
	color: #f76319;
}


.spacer {
	display: block;
	height: 1.2rem;
	overflow: hidden;
}

em {
	font-style: italic;
}

img {
	width: 100%;
	display: block;
}

.pad-xl {
	padding: min(3vw, 42px);
}

.main-outer {
	width: 100%;
}
.main-inner {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.cont-row-inner {
	display: flex;
	gap: clamp(14px, 3vw, 42px);
}
.cont-banner-inner {
	display: flex;
	gap: clamp(0px, 1vw, 14px);
}


.cont-big-outer, .cont-small-outer, .cont-rectangle-outer {
	flex: 1;
}




/* Puls-Effekt bei Hover (nutzt animation-Klasse aus animations.css) */
.pulse-on-hover:hover {
	 animation: pulse 0.6s ease-out;
}

.sign {
	width: 30px;
	height: 30px;
}
