/*reset styles*/
html {
	-ms-text-size-adjust: 100%; /* 2 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

* {
	box-sizing: border-box;
}

:root {
	--primary-color: #187cb5;
	--primary-rgb: 24, 124, 181;
	--secondary-color: #093147;
	--tertiary-color: #801220;
	--light-color: #fff;
	--dark-color: #ccc;
	--text-color: #111;
	--shadow: 0 2rem 3rem rgba(51, 51, 51, .1);
}

*:focus {
	outline: 2px dotted var(--tertiary-color);
}

body {
	margin: 0;
	padding: 0;
	color: var(--text-color);
	background-color: var(--light-color);
	font-family: 'Merriweather Sans', 'Helvetica', 'Arial', sans-serif;
	font-weight: 400;
	font-size: 1.15rem;
}

/* HTML5 display definitions
   ========================================================================== */

/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */

audio,
canvas,
progress,
video {
	display: inline-block; /* 1 */
	vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */

audio:not([controls]) {
	display: none;
	height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
 */

[hidden],
template {
	display: none;
}

/* Links
   ========================================================================== */

/**
 * Remove the gray background color from active links in IE 10.
 */

a {
  -webkit-transition: color .3s ease-in-out, background .3s ease-in-out;
  transition: color .3s ease-in-out, background .3s ease-in-out;
  text-decoration: none;
}

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */

a:active,
a:hover {
	outline: 0;
}

/* Text-level semantics
   ========================================================================== */

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */

b,
strong {
	font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */

dfn {
	font-style: italic;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -.5em;
}

sub {
	bottom: -.25em;
}

/* Embedded content
   ========================================================================== */

/**
 * Correct overflow not hidden in IE 9/10/11.
 */

/*svg:not(:root) {
	overflow: hidden;
}*/

/* Grouping content
   ========================================================================== */

/**
 * Address differences between Firefox and other browsers.
 */

hr {
	box-sizing: content-box;
	height: 0;
}

/**
 * Contain overflow in all browsers.
 */

pre {
	overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

/* Forms
   ========================================================================== */

/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */

button,
input,
optgroup,
select,
textarea {
	color: inherit; /* 1 */
	font: inherit; /* 2 */
	margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */

button {
	overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */

button,
select {
	text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button; /* 2 */
	cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */

button[disabled],
html input[disabled] {
	cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */

input {
	line-height: normal;
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */

input[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	box-sizing: content-box; /* 2 */
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: .35em .625em .75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */

legend {
	border: 0; /* 1 */
	padding: 0; /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */

textarea {
	overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */

optgroup {
	font-weight: bold;
}

/* Tables
   ========================================================================== */

/**
 * Remove most spacing between table cells.
 */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #d32833;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #d32833;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #d32833;
}
:-moz-placeholder { /* Firefox 18- */
  color: #d32833;
}

@keyframes bounce {
	0%, 100%, 20%, 50%, 80% {
		-webkit-transform: translateY(0);
		-ms-transform:     translateY(0);
		transform:         translateY(0)
	}
	40% {
		-webkit-transform: translateY(-30px);
		-ms-transform:     translateY(-30px);
		transform:         translateY(-30px)
	}
	60% {
		-webkit-transform: translateY(-15px);
		-ms-transform:     translateY(-15px);
		transform:         translateY(-15px)
	}
}

.resize-active *,
.resize-active *:before,
.resize-active *:after {
	-webkit-transition: none !important;
	transition: none !important;
}

/*icomoon styles*/
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?sjgx8m');
  src:  url('../fonts/icomoon.eot?sjgx8m#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?sjgx8m') format('truetype'),
    url('../fonts/icomoon.woff?sjgx8m') format('woff'),
    url('../fonts/icomoon.svg?sjgx8m#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"],
.fancybox-prev span,
.fancybox-next span {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-up:before {
  content: "\e900";
}
.icon-arrow-right:before {
  content: "\e901";
}
.icon-arrow-left:before {
  content: "\e902";
}
.icon-arrow-down:before {
  content: "\e903";
}

/*Site styles*/

.hidden {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hide {
	opacity: 0;
}

section,
footer
 {
	background-color: var(--light-color);
	display: flow-root;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
	display: block;
	font-weight: 700;
	margin: 0 0 .5em;
	color: var(--primary-color);
	font-family: 'Crimson Text', 'Georgia', serif;
	text-align: center;
	line-height: 1;
}

a {
	color: var(--primary-color);
}

a:hover {
	color: var(--secondary-color);
}

h1,
.h1 {
	font-size: 3.75rem;
}


h2,
.h2 {
	font-size: 2.75rem;
}

h3,
.h3 {
	font-size: 2.5rem;
}

input[type="email"] {
	padding: .5rem;
	color: var(--dark-color);
	border: none;
}

input[type="email"]::placeholder {
	color: var(--dark-color);
}

#main {
	overflow: hidden;
}

#wrapper {
	width: 100%;
}

#wrapper.pop-active {
	-webkit-filter: blur(1px);
    -moz-filter: blur(1px);
    -o-filter: blur(1px);
    -ms-filter: blur(1px);
    filter: blur(1px);
}

.wrap2 {
	overflow: hidden;
}

#header {
	width: 0;
	max-height: 0;
}

#header .clone-holder {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	visibility: hidden;
	width: 100%;
}

#header.fixed-position .clone-holder {
	position: static;
}

#header.fixed-position .container {
	padding: 0;
}

#header.fixed-position .orig-box {
	position: fixed;
	top: -140px;
	/*min-height: 5.375rem;*/
	left: 0;
	right: 0;
	z-index: 99999;
	-webkit-transition: top 500ms ease;
	transition: top 500ms ease;
	background: transparent;
}

#header.fixed-position .orig-box .logo-banner-wrap {
  width: calc(100% - 60px);
  text-align: center;
  vertical-align: top;
  color: var(--light-color);
  min-height: 5.375rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 100;
}

.logo-small p {
	margin: 0 0 0 2rem;
}

#header.fixed-position .orig-box .mini-logo {
	padding: .5rem;
}

#header .container {
	margin: 0 auto;
	padding: 0 1rem 0;
}

#header .logo-banner-wrap {
	display: none;
}

.nav-drop {
	position: fixed;
	background: var(--secondary-color);
	top: 0;
	bottom: 0;
	padding-top: 6rem;
	left: calc(-22rem - 2px);
	width: 22rem;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 99;
	visibility: hidden;
}

.nav-drop::after {
	content: '';
	background: var(--primary-color);
	opacity: 0.5;
	position: absolute;
	top: 0;
	right: 0;
	width: 2rem;
	height: 100%;
	z-index: -1;
	filter: blur(1px);
}

.nav-active .nav-drop::after {
	right: -2rem;
}

.nav-drop h1 {
	text-align:center;
}


.mobile-logo-holder {
	display: none;
}

.nav {
	position: relative;
	border-top: 1px solid var(--dark-color);
}

.nav .texture-handler {
  left: 0;
  right: 0px;
  top: -10px;
}

.nav .texture.top-texture {
	background-position: 100% 0%;
    background-size: 200%;
}

.nav a {
	display: block;
	color: var(--light-color);
	font-size: 1.3rem;
	font-weight: 300;
	border-bottom: 1px solid var(--dark-color);
	padding: 2rem;
	font-family: 'Crimson Text', 'Georgia', serif;
}

.nav a:hover {
	background: var(--tertiary-color);
}

.nav-opener {
  display: inline-block;
  position:fixed;
  left: 2rem;
  z-index:999;
  top: 2rem;
  width: 30px;
  height: 30px;
}

.nav-opener::after {
	content: '';
	position: absolute;
	width: 60px;
	height: 60px;
	background-color: var(--secondary-color);
	z-index: -1;
	top: -15px;
	left: -15px;
	filter: blur(1px);
	opacity: 0.9;
}

.nav-opener .menu-icon, 
.nav-opener .menu-icon:after, 
.nav-opener .menu-icon:before {
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 30px;
  background: var(--light-color);
}

.nav-opener .menu-icon {
  margin-right: 5px;
  margin-top: -3px;
  border-radius: 2px;
  background: var(--light-color);
  top: 50%;
  -moz-transition: background .3s .3s;
  -o-transition: background .3s .3s;
  -webkit-transition: background .3s;
  -webkit-transition-delay: .3s;
  -webkit-transition: background .3s .3s;
  -o-transition: background .3s .3s;
  transition: background .3s .3s;
}

.nav-opener .menu-icon:before {
   top: -7px;
}

.nav-opener .menu-icon:after {
    top: 7px;
}

.nav-opener .menu-icon:after, 
.nav-opener .menu-icon:before {
    border-radius: 2px;
    background: var(--light-color);
}

.nav-opener .menu-icon:after, 
.nav-opener .menu-icon:before {
    content: '';
    right: 0;
    -ms-transform: translateZ(0);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-transform-origin: 0 50%;
    -webkit-transform-origin: 0 50%;
    -o-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -o-transition: -o-transform .3s .3s;
    -webkit-transition: -webkit-transform .3s;
    -webkit-transition-delay: .3s;
    -webkit-transition: -webkit-transform .3s .3s;
    -o-transition: -o-transform .3s .3s;
    transition: transform .3s .3s;
}

.nav-active .nav-opener .menu-icon:before {
    -ms-transform: translateX(5px) translateY(-2px) rotate(50deg);
    -webkit-transform: translateX(5px) translateY(-2px) rotate(50deg);
    -o-transform: translateX(5px) translateY(-2px) rotate(50deg);
    transform: translateX(5px) translateY(-2px) rotate(50deg);
}

.nav-active .nav-opener .menu-icon:after {
    -ms-transform: translateX(4px) translateY(7px) rotate(-50deg);
    -webkit-transform: translateX(4px) translateY(7px) rotate(-50deg);
    -o-transform: translateX(4px) translateY(7px) rotate(-50deg);
    transform: translateX(4px) translateY(7px) rotate(-50deg);
}

.nav-active .nav-opener .menu-icon {
    background: transparent;
}

.side-push {
	overflow: hidden;
	position: relative;
}

.side-push.nav-active .nav-drop {
	left: 0;
	padding-top: 6rem;
	visibility: visible;
}

.nav .main-menu {
	padding: 0;
	margin: 0;
	list-style: none;
}

/*intro video styles*/

.intro-video {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	z-index: -1;
	padding: 0; 
	background-color: var(--secondary-color);
	border-bottom: 1px solid var(--dark-color);
	box-shadow: var(--shadow);
}

.intro-video:after {
  content: "";
  display: block;
  width: 0;
  min-height: 50rem; 
  z-index: -1;
}

.intro-video .video-holder {
  position: absolute;
  top: 0;
  left: -5px;
  right: -5px;
  bottom: 0;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: -1; 
}

.intro-video .video-holder:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.25);
}

.intro-video .video-holder .bg-video {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  width: 100%; 
  z-index: -99;
}
.touch-device .intro-video .video-holder .bg-video {
  display: none !important; 
}
.intro-video .video-active .bg-video {
	opacity: 1; 
}

.intro-video .hero-tagline {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 1rem;
	width: 100%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
	position: relative;
}

.intro-video .hero-tagline h1 {
	color: var(--light-color);
	margin: 0;
	font-size: 5rem;
	font-weight: 700;
	font-style: italic;
}

.hero-tagline-holder {
  position: relative;
  font-weight: 700;
  font-size: 6em;
}

.hero-tagline-holder .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
}

.hero-tagline-holder .letters {
	width: max-content;
	display: inline-block;
}

.hero-tagline-holder .letter {
  display: inline-block;
  line-height: 1em;
  transform-origin: 0 0;
}

.intro-video:before {
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 70%, var(--text-color) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 70%, var(--text-color) 100%);
    background: linear-gradient(0deg, rgba(9, 49, 71, .3) 100%, var(--secondary-color) 0%);
    z-index: 0;
}

.intro-video .title-holder h1 {
	color: var(--light-color);
	text-shadow: 1px 1px 1px var(--dark-color);
	font-size: 2.5rem;
}

/*template styles*/

.base-section {
	padding: 2rem 2rem 6rem;
}

.base-section.thin {
	padding: 1rem 2rem;
}

.spacer-section {
	padding: 2rem;
	background: #f5f5f5;
}

.text-holder {
	line-height: 1.5em;
}

.primary {
	background-color: var(--primary-color);
}

.primary h1,
.primary .h1,
.primary h2,
.primary .h2,
.primary h3,
.primary .h3,
.primary h4,
.primary .h4,
.primary h5,
.primary .h5,
.primary h6,
.primary .h6,
.primary .text-holder {
	color: var(--light-color);
}

.secondary {
	background-color: var(--secondary-color);
}

.secondary h1,
.secondary .h1,
.secondary h2,
.secondary .h2,
.secondary h3,
.secondary .h3,
.secondary h4,
.secondary .h4,
.secondary h5,
.secondary .h5,
.secondary h6,
.secondary .h6,
.secondary .text-holder {
	color: var(--light-color);
}

.tertiary {
	background-color: var(--tertiary-color);
}

.tertiary h1,
.tertiary .h1,
.tertiary h2,
.tertiary .h2,
.tertiary h3,
.tertiary .h3,
.tertiary h4,
.tertiary .h4,
.tertiary h5,
.tertiary .h5,
.tertiary h6,
.tertiary .h6,
.tertiary .text-holder {
	color: var(--light-color);
}

.base-section .container {
	max-width: 70rem;
	margin: 0 auto;
}

.base-section.bg-image {
	position: relative;
	min-height: 100vh;
}

.base-section.bg-image::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: -webkit-linear-gradient(bottom, #f5f5f5 0%, rgba(09, 49, 71, .5) 30%, rgba(09, 49, 71, .5) 70%, var(--light-color) 100%);
    background: linear-gradient(0deg, #f5f5f5 0%, rgba(09, 49, 71, .5) 30%, rgba(09, 49, 71, .5) 70%, var(--light-color) 100%);
}

.base-section.bg-image::after {
	content: "";
	background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    filter: grayscale(1);
 }

#section-image.base-section.bg-image::after {
	background-image: url(../images/divider.jpg);
}

.base-section.bg-image .container {
	position: relative;
	z-index: 1;
}

.split-section {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	justify-content: center;
}

.block-holder {
	display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
	background-color: var(--primary-color);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	color: var(--light-color);
	margin: 0;
	font-weight: 600;
	font-size: 1rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	border: none;
}

.btn:hover {
	/*background: none;*/
	/*border: 2px solid var(--primary-color);*/
	color: var(--light-color);
}

.btn .btn-content {
	background-color: var(--tertiary-color);
	transform: translate(.5rem,.5rem);
    transition: transform .2s cubic-bezier(.34,1.56,.64,1);
    padding: 1rem 2rem;
    color: var(--light-color);
}

.btn:hover .btn-content {
	transform: translate(0,0);
}

.btn.secondary {
	background-color: var(--secondary-color);
}

.btn.secondary:hover {
	background: none;
	color: var(--secondary-color);
}

.btn.tertiary {
	background-color: var(--tertiary-color);
}

.btn.tertiary:hover {
	background: none;
	color: var(--tertiary-color);
}

.primary .btn:hover,
.secondary .btn:hover,
.tertiary .btn:hover {
	background: none;
	color: var(--light-color);
}

.btn-content {
	transform: translate(.5rem,.5rem);
}

/*initExpander js styles*/
.expander-content > div:first-child {
    display: none;
}

#section-mission {
	padding: 6rem 0 6rem;
}

#section-mission .mission-holder {
	max-width: 60rem;
	position: relative;
	margin: 0 auto;
}

#section-mission .mission-holder .container {
	max-width: 60rem;
	padding: 2rem;
	margin: -12rem auto 0;
	position: relative;
	box-shadow: var(--shadow);
	z-index: 1;
}

#section-mission .mission-holder::after {
	content: '';
	background: var(--primary-color);
	opacity: 0.5;
	position: absolute;
	top: -2rem;
	left: -2rem;
	width: 100%;
	height: 100%;
	z-index: 0;
	filter: blur(1px);
}

#section-mission button.btn:focus {
	outline: none;
	background: var(--primary-color);
}

#section-mission ol {
	list-style: upper-roman;
}

#section-mission li {
	margin-bottom: 1em;
}

#section-mission li:last-child {
	margin-bottom: 0;
}

/*#section-members {
	padding: 2rem;
}*/

#section-members .card {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 2rem;
}

#section-members .card:hover {
	transform: translate(-1rem, -1rem);
	transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}

#section-members .img-holder {
	display: inherit;
}

#section-members .card-members {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#section-members .img-holder img {
	max-width: 100%;
	height: auto;
}

#section-members .card-member-description {
	width: 80%;
	border: 1px solid var(--dark-color);
	padding: 0;
	z-index: 2;
	background-color: var(--light-color);
	position: relative;
	box-shadow: var(--shadow);
}

#section-members .card-member-description .text-holder {
	padding: 0.5rem;
	background-color: var(--light-color);
}

#section-members .card-member-description h3,
#section-members .card-member-description p {
	color: var(--text-color);
	text-align: left;
	margin: 0;
	font-size: 1rem;
}

#section-members .card-member-description h3 {
	font-size: 1.5rem;
	color: var(--secondary-color);
}

#section-members .card-member-description:after {
	content: '';
	background: var(--primary-color);
	opacity: 0.5;
	position: absolute;
	top: 0;
	left: -1rem;
	width: 1rem;
	height: 100%;
	z-index: -1;
	filter: blur(1px);
}

#section-members .list-container {
	display: grid;
	padding: 10rem 0 0;
	grid-template-columns: 12.5rem 12.5rem 8rem 1fr;
	grid-template-rows: repeat(4, 100px) auto;
	grid-gap: .5rem;
}

#section-members .list-container img:first-child {
	grid-row: 1 / span 2;
	margin: -3rem;
}

#section-members .list-container img:nth-child(2) {
	grid-row: 2 / span 2;
	z-index: auto;
	margin: -2rem 0 0 0;
}

#section-members .list-container img:nth-child(3) {
	grid-row: 4 / span 2;
	margin: 0 0 0 -1rem;
	width: 300px;
}

#section-members .list-container img:nth-child(4) {
	grid-row: 6 / span 2;
	max-width: 266px;
	grid-column: 2;
	margin-top: -6rem;
}

#section-members .list-container img:nth-child(5) {
	grid-row: 7 / span 2;
	max-width: 350px;
}

#section-members .list-container img:nth-child(6) {
	grid-row: 8 / span 2;
	max-width: 266px;
	grid-column: 2;
}

#section-members .list-members {
	grid-row: 2 / span 4;
	grid-column: 4 / span 2;
	margin: 2rem 0;
	position: relative;
}

#section-members .list-members:after {
	content: '';
	background: var(--primary-color);
	opacity: 0.5;
	position: absolute;
	top: -2rem;
	left: -2rem;
	width: 100%;
	height: 100%;
	z-index: 0;
	filter: blur(1px);
}

#section-members .list-members-container {
	background: var(--secondary-color);
	position: relative;
	z-index: 1;
	height: 100%;
	padding: 2rem;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	box-shadow: var(--shadow);
	font-size: 1.25rem;
}

#section-members .list-members ul,
.tabset,
.accordion-news,
.news-slider .heading ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#section-members .list-members ul {
	margin: .5rem .5rem 0 0;
}

#section-members .list-members li a {
	color: var(--light-color);
	display: block;
	margin-bottom: 1em;
	font-size: 1rem;
}

#section-members .list-members li:last-child a {
	margin-bottom: 0;
}

#section-members .list-members li a:hover {
	transform: translate(-.5rem,-.5rem);
    transition: transform .7s cubic-bezier(.34,1.56,.64,1);
    text-decoration: underline;
    text-decoration-thickness: 1rem;
    text-underline-offset: .5em;
    text-decoration-color: var(--primary-color);
}

#section-news {
	padding: 3rem 2rem 6rem;
}

#section-news.bg-image {
	min-height: 86vh;
}

#section-news.base-section.bg-image::after {
	background-image: url(../images/intro-placeholder.jpg);
}

#section-news.base-section.bg-image::before {
    background: -webkit-linear-gradient(bottom, var(--light-color) 0%, rgba(255, 255, 255, .5) 30%, rgba(255, 255, 255, .5) 70%, var(--light-color) 90%);
    background: linear-gradient(0deg, var(--secondary-color) 0%, rgba(255, 255, 255, .5) 30%, rgba(255, 255, 255, .5) 70%, var(--light-color) 90%);
}

#section-callout {
	padding: 2rem 2rem 18rem;
}

#section-callout p {
	color: var(--text-color);
}

#section-callout .split-section .container {
	border: 1px solid var(--dark-color);
	box-shadow: var(--shadow);
	position: relative;
	margin: 2rem;
	max-width: 20rem;
}

#section-callout .split-section .container::after {
	content: '';
	background: var(--primary-color);
	opacity: 0.5;
	position: absolute;
	top: -2rem;
	left: -2rem;
	width: 100%;
	height: 100%;
	z-index: 0;
	filter: blur(1px);
}

#section-callout .container .container-content {
	background: var(--light-color);
	padding: 2rem;
	position: relative;
	z-index: 1;
	height: 100%;
	min-height: 31rem;
}

#section-callout .container .container-content h3 {
	color: var(--secondary-color);
	font-size: 2.1rem;
}

#section-callout ul {
	color: var(--secondary-color);
	padding: initial;
}

#section-callout .block-holder.seal {
	margin-bottom: 32px;
}

#section-callout .block-holder.text {
	flex-direction: column;
	justify-content: flex-start;
	height: calc(100% - 132px);
	position: relative;
}

#section-callout .block-holder.overlay {
	position: absolute;
	background: var(--light-color);
	width: 100%;
	height: 75%;
	align-items: flex-start;
	display: flex;
	justify-content: center;
}

#section-callout .block-holder.overlay ul {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: 1.5rem;
	line-height: 1.5em;
}

#section-callout .hideme {
	display: none;
}

#section-callout .button {
	margin-top: auto;
}

.tabset {
  text-align: center;
  padding: 0 0 4.1rem;
}

.tabset li .active {
  height: 15.9rem;
}

.tabset a {
  -webkit-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.accordion-news .opener {
  text-transform: uppercase;
  font-size: 2.4rem;
  font-weight: 700;
  display: block;
  padding: 2.5rem 1.5rem;
  color: #fff;
  text-align: center;
}

.accordion-news .holder {
	padding: .3rem;
}

.accordion-news .holder h2 {
	font-size: 2.1rem;
	text-align: left;
	line-height: 1.1em;
}

.accordion-news .buttons-holder {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.accordion-news .buttons-holder button {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
  outline: none;
  color: #767676;
  margin: 0 2rem;
  padding: 0;
  border: none;
  background: none;
}

.accordion-news .buttons-holder button:hover,
.accordion-news .buttons-holder button:focus {
  color: var(--secondary-color);
}

.accordion-news .buttons-holder [class^="icon-"] {
  font-size: 2rem;
}

.accordion-news h3 {
  font-size: 4rem;
  font-weight: 400;
  text-align: center;
  margin-bottom: 2.4rem;
}

.accordion-news .slide {
  padding: 5.2rem 0 5.6rem;
}

.news-slider {
  overflow: hidden;
}

.news-slider .slick-list {
  margin: 0 -1px;
}

.news-slider .heading {
  padding: 0 0 1.5rem;
}

.news-slider .heading a {
  outline: none;
}

.news-slider .heading ul {
  font-size: 1.5rem;
  font-weight: 700;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #7b868c;
}

.news-slider .heading li {
  padding: 0 .9rem 0 0;
  margin: 0 .7rem 0 0;
  position: relative;
}

.news-slider .heading li:after {
  content: '';
  position: absolute;
  top: .5rem;
  right: 0;
  height: 1.5rem;
  width: .2rem;
  background: #002856;
}

.news-slider .heading li:last-child:after {
  display: none;
}

.news-slider .title {
  display: block;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 2.9rem;
  letter-spacing: -.2px;
}

.news-slider .title a {
  color: #a73439;
}

.news-slider .title a:hover {
  color: #002856;
}

.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.js-tab-hidden {
  display: block !important;
  left: -9999px !important;
  position: absolute !important;
  top: -9999px !important;
}

  .tabset {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 3.4rem;
    display: none;
  }

  .tabset li {
    width: max-content;
  }

  .tabset a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 3.4rem 1rem;
    height: 10.8rem;
    color: #fff;
  }

  .accordion-news .opener {
    display: none;
  }

  .accordion-news h3 {
    margin-bottom: 4rem;
  }

  .accordion-news .slide {
    padding: 0;
  }

  .accordion-news .slide .container {
    max-width: 134.6rem;
  }

#section-news .block-holder.title,
#section-callout .block-holder.title {
	padding: 0 0 3rem;
}

.update-holder {
	display: flex;
	min-height: 40rem;
}

.update-content {
	flex-grow: 1;
	padding: 3rem 0 3rem 1rem;
	position: relative;
	width: 33%;
}.

.update-content h2 {
	font-size: 2rem;
	text-align: left;
}

.update-content p {
	font-size: 1.1rem;
	line-height: 1.5em;
}

.update-content .date {
	color: var(--secondary-color);
}

.update-content .read-more {
	/*color: var(--secondary-color);*/
}

.update-content .read-more:hover {
	color: var(--tertiary-color);
	text-decoration: underline;
}

.update-content .tabset {
	height: 3rem;
	font-size: 1rem;
}

.update-content .tabset a {
	height: unset;
	padding: 0rem;
	width: min-content;
}

.update-content .tabset a:hover {
	background-color: var(--secondary-color);
}

.update-content-holder:after {
	content: '';
	background: var(--primary-color);
	opacity: 0.5;
	position: absolute;
	top: 0;
	left: -1rem;
	width: 1rem;
	height: 100%;
	z-index: 0;
	filter: blur(1px);
}

.update-content-holder {
	border: 1px solid var(--dark-color);
	padding: 2rem;
	height: 100%;
	position: relative;
	box-shadow: var(--shadow);
	background: var(--light-color);
}

.update-content-holder h2 a {
	color: var(--tertiary-color);
}

.update-content-holder h2 a:hover {
	color: var(--secondary-color);
}

.update-photo {
	width: 66%;
	background-color: var(--secondary-color);
	background-image: url('../images/news.jpg');
	background-repeat: no-repeat;
	background-position: 50% 0%;
	background-size: cover;
}

#section-footer {
	min-height: 40rem;
	color: var(--light-color);
	padding: 2rem 0 6rem;
}

#section-footer.bg-image:after {
	background-image: url('../images/footer3.jpg');
	background-position: 30% 20%;
	background-size: cover;
	background-repeat: no-repeat;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	filter: grayscale(100%);
}

#section-footer.base-section.bg-image::before {
	background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 70%, var(--secondary-color) 100%);
	background: linear-gradient(0deg, rgba(128, 18, 32, .5) 70%, var(--secondary-color) 100%);
	background: none;
}

#section-footer .container {
	flex-direction: column;
	margin-top: 6rem;
}

#section-footer .tagline {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    box-shadow: var(--shadow);
    font-size: 1.25rem;
}

#section-footer .footer-tagline-holder {
	position: relative;
	margin: -7rem auto 2rem;
	max-width: 60rem;
}

#section-footer .footer-tagline-holder::after {
	content: '';
    background: var(--primary-color);
    opacity: 0.5;
    position: absolute;
    top: -2rem;
    left: -2rem;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: blur(1px);
}

#section-footer .footer-offices-holder {
	width: 100%;
}

#section-footer .office-locations-holder {
	display: flex;
	justify-content: space-evenly;
	gap: 2rem;
	flex-wrap: wrap;
}

#section-footer .office-location {
	padding: 0;
	z-index: 2;
	position: relative;
	box-shadow: var(--shadow);
	margin-left: 1rem;
	min-width: 100%;
}

#section-footer .office-location::after {
	content: '';
	background: var(--primary-color);
	opacity: 0.5;
	position: absolute;
	top: 0;
	left: -1rem;
	width: 1rem;
	height: 100%;
	z-index: -1;
	filter: blur(1px);
}

#section-footer .offices h2 {
	margin: 2rem 6rem 6rem;
	/*color: var(--secondary-color);*/
}

#section-footer .office-location .text-holder {
	padding: 2rem;
}

#section-footer .office-location .text-holder h3 {
	font-size: 1.5rem;
	margin: 0 0 .3em;
	font-weight: normal;
	font-family: 'Merriweather Sans', 'Helvetica', 'Arial', sans-serif;
	text-align: left;
}

#section-footer .office-location .text-holder address {
	font-style: normal;
	line-height: 1.5;
}

@media (min-width: 48rem) {
	h2, .h2 {
		font-size: 3rem;
	}

	.intro-video .title-holder h1 {
		font-size: 3rem;
		width: max-content;
	}
	#section-members .card-member-description h3 {
		font-size: 2rem;
	}
	#section-members .card-member-description p {
		font-size: 1.25rem;
	}
	#section-footer .office-location {
		min-width: 26rem;
	}
	.nav a {
		font-size: 1.9rem;
	}
}

@media screen and (prefers-reduced-motion: reduce) { 
	.btn .btn-content,
	.btn-content,
	.btn:hover .btn-content,
	#section-members .card:hover,
	#section-members .list-members li a:hover,
	#section-callout .split-section .container,
	#section-members .list-container img,
	.update-content,
	.card-members,
	#section-callout .container,
	#section-members .list-members,
	.update-photo
	 {
		transform: none !important;
		transition: none !important;
	}
	#section-members .list-members li a:hover {
		text-decoration: none;
	}
}

/*64 rem = 1024px*/
@media (min-width: 64rem) {
	.intro-video .title-holder h1 {
		font-size: 4rem;
	}
}

@media (min-width: 80rem) {
	.intro-video .title-holder h1 {
		font-size: 5rem;
	}
}

@media (max-width: 63.9rem) {
	.intro-video:after {
	  min-height: 37.5rem; 
	}

	h1, 
	.h1 {
		font-size: 3rem;
		line-height: 1em;
	}
	#section-members .list-container {
		grid-template-columns: 1fr;
		grid-template-rows: 1fr repeat(3, .5fr);
	}
	/*#section-members .list-container img:first-child,
	#section-members .list-container img:nth-child(2),
	#section-members .list-container img:nth-child(3)*/
	#section-members .list-container img {
		grid-column: 1;
		place-self: center;
		max-width: 100%;
	}

	#section-members .list-container img:first-child {
		grid-row: 2;
		margin: -2rem;
	}
	#section-members .list-container img:nth-child(2) {
		grid-row: 3;
		margin: 0;
	}
	#section-members .list-container img:nth-child(3) {
		grid-row: 4;
		width: unset;
		margin: -1rem 0 1rem 3rem;
	}
	#section-members .list-container img:nth-child(n+4) {
		display: none;
	}
	#section-members .list-members {
		grid-column: 1;
		grid-row: 1;
	}
	.update-holder {
		flex-direction: column-reverse;
	}
	.update-content {
		width: 100%;
		padding: 0 0 0 1rem;
	}
	.update-photo {
		width: 100%;
		min-height: 50vh;
	}
}

@media (max-width: 47.9rem) {
	#header.fixed-position .orig-box .mini-logo {
    	display: block;
	}
}

@media (max-width: 35rem) {
	.nav-drop {
		width: 100%;
		left: -100%;
	}

	.nav-active .mobile-logo-holder {
		position: absolute;
		top: 32px;
		height: 32px;
		left: 6rem;
		z-index: 100;
		transition: all 5s ease-in-out;
		display: flex;
		align-items: center;
		color: var(--light-color);
		width: calc(100% - 8rem);
	}

	.mobile-logo-holder p {
		font-size: 1.5rem;
		font-weight: 700;
		font-style: italic;
	}
	.intro-video .hero-tagline h1 {
		font-size: 3rem;
	}
}