body {
	font-family: 'Work Sans', sans-serif;
}

.container-fluid {
	max-width: 1800px;
}

/* navigation */

.navbar-header {
	width: 100%;
}

.navbar-brand {
	display: block;
	margin: 2rem auto 1rem;
	text-align: center;
}

.navbar-brand h2 {
	color: #000;
	font-size: 1rem;
	font-weight: 300;
	margin: .5rem;
	text-transform: uppercase;
}

.navbar-brand img {
	display: block;
	height: 40px;
	margin: auto;
	width: auto;
}

.navbar-nav {
	flex-direction: row;
	font-size: 1.25rem;
	gap: 1rem;
	justify-content: center;
	text-transform: uppercase;
	width: 100%;
}

.navbar-nav a {
	color: #000;
	margin: 0;
	padding: .75rem 1rem;
	position: relative;
	
	-webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.navbar-nav a:hover , .navbar-nav .active a {
	color: #999;
	text-decoration: none;
}

.navbar-nav a:after {
	background: #999;
	bottom: 10px;
	content: '';
	display: block;
	height: 2px;
	opacity: 0;
	position: absolute;
	width: 100%;
	z-index: 1;
	
	-webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.navbar-nav a:hover:after , .navbar-nav .active a:after {
	bottom: 0;
	opacity: 1;
}

/* footer */

footer {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 2rem 0;
	text-align: center;
	text-transform: uppercase;
	width: 100%;
}

footer .footer-logo {
	display: inline-block;
	height: 18px;
	vertical-align: baseline;
}

/* image row */

.image-row {
	align-items: stretch;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 0;
	margin-bottom: 2rem;
	width: 100%;
}

.image-row.h400 {
	height: 400px;
}

.image-row .col-img {
	flex-basis: 65%;
	flex-grow: 0;
	flex-shrink: 0;
}

.image-row .col-txt {
	align-items: center;
	background-color: #f5f5f5;
	display: flex;
	flex-direction: row;
	flex-basis: 35%;
	flex-grow: 1;
	flex-shrink: 0;
	padding: 1rem;
}