@font-face {
  font-family: 'Avenir';
  src: url('/assets/fonts/Avenir.woff2') format('woff2'),
       url('/assets/fonts/Avenir.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
	--black: #000000;
	--white: #ffffff;
}

body {
	font-family: Avenir, Arial, sans-serif;
	color: var(--black);
}

a {
	color: var(--black);
	text-decoration: none;
}

.navbar-brand img {
	max-height: 20px;
}

#strt-who h4 {
	font-size: 1em;
}

.strt-mt-7 {
	margin-top: 6em;
}

.strt-mb-7 {
	margin-bottom: 6em;
}

.section-label {
	display: block;
	font-size: 0.80rem;
	color: var(--white);
	text-transform: uppercase;
	letter-spacing: .1em;
	margin-top: .5rem;
}

.fade-up {
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
	opacity: 1;
	transform: translateY(0);
}

footer {
	background: var(--white);
	padding: 1.5rem 0;
	font-size: 0.85rem;
}

footer .container img {
	width: 15%;
}