/*    CSS RESET   */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*    Main Text Elements    */

p,
a,
li,
div,
span {
  font-family: "Poppins";
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Teko";
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

* {
  color: hsl(161, 28%, 10%);
}

h1 {
  font-size: 2em;
  line-height: 42px;
}

h2 {
  font-size: 1.5em;
  line-height: 36px;
}

h3 {
  font-size: 1.3em;
  line-height: 32px;
}

h4 {
  font-size: 1em;
  font-weight: 400;
}

h5 {
  font-size: 0.8em;
  font-weight: 400;
}

h6 {
  font-size: 0.7em;
}

p {
  font-size: 14px;
  line-height: 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
}

ol {
}

li {
  list-style-type: disc;
  font-size: 14px;
}

strong,
b {
  font-weight: bold;
}

body {
}

html {
  --brand-green: #104432;
}

.hidden {
  /* display: none; */
}
.mobile-only {
  display: none;
}

/*   Colors   */

.green-bg {
  background-color: var(--brand-green);
}

.green-text {
  color: var(--brand-green);
}

.lt-green-bg {
  background-color: #407262;
}

.lt-green-text {
  color: #407262;
}

.blue-bg {
  background-color: #1a2f44;
}

.blue-text {
  color: #1a2f44;
}

.lt-blue-bg {
  background-color: #868f8c;
}

.lt-blue-text {
  color: #868f8c;
}

.white-bg {
  background-color: #f9f9f9;
}

.white-text {
  color: #f9f9f9;
}

.black-bg {
  color: #212121;
}

.black-text {
  color: #212121;
}

/*   Buttons     */

.btn {
  padding: 8px 14px;
  padding-bottom: 6px;
  transition: all 0.5s;
  border-radius: 3px;
  font-size: 20px;
  text-transform: uppercase;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.12);
  position: relative;
  top: 0;
}

.btn:hover {
  transition: all 0.5s;
  top: -2px;
}

.btn-green {
  border: 2px solid var(--brand-green);
  color: #f9f9f9;
  font-family: Teko;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #ecf8f4;
  text-shadow: 0px 2px 4px #113327;
  background-color: var(--brand-green);
}

.btn-green:hover {
  background-color: #1b5542;
  border-color: #1b5542;
}

.btn-blue {
  border: 2px solid #868f8c;
  background-color: #868f8c;
  color: #f9f9f9;
}

.btn-blue:hover {
  background-color: #1a2f44;
  border-color: #1a2f44;
}

.btn-transparent {
  border: 2px solid #f9f9f9;
  background-color: transparent;
  color: #f9f9f9;
}

.btn-transparent:hover {
  background-color: #f9f9f9;
  border-color: #f9f9f9;
  color: #000000;
}

/*   Flex Container Elements  */

.flex {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-column {
  flex-direction: column;
}

.space-between {
  justify-content: space-between;
}

.container {
  width: 1170px;
  max-width: 90%;
  margin: 0 auto;
}

#mobile-nav-toggle {
  display: none;
}

.mobile-navigation {
  display: none;
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

/*   Header   */

#header {
  position: absolute;
  z-index: 999;
  width: 100%;
  padding: 24px 0;
  transition: all 0.5s;
}

#header-admin {
  top: 32px;
}

#header.header-fixed {
  position: fixed;
  background-color: var(--brand-green);
  border-bottom: 2px solid #407262;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/var(--brand-green)+36,407262+100 */
  background: var(--brand-green);
  /* Old browsers */
  /* background: -moz-linear-gradient(45deg, var(--brand-green) 36%, #407262 100%); */
  /* FF3.6-15 */
  /* background: -webkit-linear-gradient(45deg, var(--brand-green) 36%, #407262 100%); */
  /* Chrome10-25,Safari5.1-6 */
  /* background: linear-gradient(45deg, var(--brand-green) 36%, #407262 100%); */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--brand-green)', endColorstr='#407262', GradientType=1); */
  /* IE6-9 fallback on horizontal gradient */
  transition: all 0.5s;
}

#header.header-relative {
  position: relative;
  background-color: var(--brand-green);
  border-bottom: 2px solid #407262;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/var(--brand-green)+36,407262+100 */
  background: var(--brand-green);
  /* background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23001d13' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E"); */

  /* Old browsers */
  /* background: -moz-linear-gradient(45deg, var(--brand-green) 36%, #407262 100%); */
  /* FF3.6-15 */
  /* background: -webkit-linear-gradient(45deg, var(--brand-green) 36%, #407262 100%); */
  /* Chrome10-25,Safari5.1-6 */
  /* background: linear-gradient(45deg, var(--brand-green) 36%, #407262 100%); */
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  /* filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--brand-green)', endColorstr='#407262', GradientType=1); */
  /* IE6-9 fallback on horizontal gradient */
  transition: all 0.5s;
}

#header .logo {
  flex: 1;
}

#header .logo img {
  width: 250px;
}

img {
  max-width: 100%;
  height: auto;
}

#header .menu {
  display: flex;
  flex-direction: row;
}

.navigation-container {
  flex: 2;
  justify-content: flex-end;
  display: flex;
  align-items: center;
}
#header .menu li {
  margin: 0 20px;
  position: relative;
  list-style-type: none;
}
#header .menu li a {
  color: #e3e3e3;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 400;
  font-family: "Teko";
  font-size: 20px;
  letter-spacing: 0.14em;
  padding-bottom: 20px;
}

#header .menu li a:hover {
  color: #e6e6e6;
}

#header .menu li ul.sub-menu {
  /* display: flex; */
  /* position: absolute; */
  flex-direction: column;
  z-index: 10;
  transition: all 0.5s;
  border-radius: 4px;
  background-color: #f9f9f9;
  width: 250px;
  /* display: none; */
  transform: translateY(20px);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.12);
}

#header .menu li ul.sub-menu::before {
  /* content: "";
  display: block;
  height: 20px;
  position: absolute;
  top: -20px;
  width: 100%; */
}
#header .menu li ul.sub-menu::after {
  /* content: ""; */
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #fff transparent;
  border-radius: 30%;
  position: absolute;
  top: -8px;
  left: 10px;
}

#header .menu li:hover ul.sub-menu {
  /* max-height: 1000px; */
  /* transition: all 1s; */
  /* overflow: visible; */
  /* width: 250px; */
}

#header .menu li ul.sub-menu li {
  /* padding: 8px 20px; */
  /* position: relative; */
  left: 0;
  /* transition: left .25s ease-in-out; */
}

#header .menu li ul.sub-menu li a {
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
  display: flex;
  justify-content: flex-start;
  padding: 5px 0px;
  align-items: center;
  letter-spacing: 0.03em;
}

#header .menu li:hover > ul.sub-menu,
ul.submenu:hover {
  display: flex !important;
}

#header .menu li ul.sub-menu li a span {
  color: #686a6c;
}

#header .menu li ul.sub-menu li:hover a {
  color: #f9f9f9;
}

#header .menu li.menu-item-has-children:after {
  font-family: "FontAwesome";
  content: "\f054";
  font-size: 8px;
  transition: all 0.25s;
  margin-left: 4px;
  top: -2px;
  position: relative;
  transform: rotate(90deg);
  display: inline-block;
  color: #f9f9f9;
}

#header .menu li.menu-item-has-children:hover:after {
  transform: rotate(0deg);
  transition: all 0.25s;
}

#header .menu li ul.sub-menu li.menu-item-has-children a:after {
  font-family: "FontAwesome";
  content: "\f054";
  font-size: 8px;
  transition: all 0.25s;
}

#header .menu li ul.sub-menu li.menu-item-has-children:hover a:after {
  transform: rotate(90deg);
  transition: all 0.25s;
}

#header .menu li ul.sub-menu li.menu-item-has-children ul li a:after {
  content: "";
}

#header .menu li ul.sub-menu li.menu-item-has-children ul.sub-menu {
  left: 0px;
  top: 0px;
  padding: 0;
  z-index: -2;
  transition: all 0.25s;
  overflow: visible;
  max-height: auto;
}

#header .menu li ul.sub-menu li.menu-item-has-children:hover ul {
  left: 160px;
  transition: all 0.25s;
  overflow: visible;
  max-height: auto;
}

#header .menu li ul.sub-menu li:hover {
  position: relative;
  left: 4px;
}
#header li ul {
  position: absolute;
  left: 16px;
  top: 12px;
  z-index: 1;
}
#header li ul li {
  overflow: hidden;
  height: 0;
  -webkit-transition: height 200ms ease-in, left 200ms ease-in;
  -moz-transition: height 200ms ease-in, left 200ms ease-in;
  -o-transition: height 200ms ease-in, left 200ms ease-in;
  transition: height 200ms ease-in, left 200ms ease-in;
  display: flex;
}
#header ul > li.menu-item-has-children:hover ul li {
  height: 50px;
}

#header .menu li ul.sub-menu li:hover {
  left: 4px;
}

/*    Hero    */

.hero-background {
  height: 800px;
  display: flex;
  align-items: center;
  flex-direction: row;
  position: relative;
}

.hero-content {
  align-self: center;
  width: 55%;
}

.hero-content h1 {
  margin: 20px 0;
  color: #e3e3e3;
  text-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 36px;
  line-height: 56px;
  font-family: "Teko";
  font-weight: 500;
  font-size: 48px;
  line-height: 115.2%;
  /* or 46px */

  letter-spacing: 0.08em;
}

.hero-content p {
  margin: 20px 0;
  font-family: Poppins;
  font-style: normal;
  font-weight: 300;
  font-size: 18px;
  line-height: 160%;
  /* or 26px */

  color: #e7e7e7;

  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.25);
}

.hero-call-to-action {
  margin: 40px 0;
}

.flexslider {
  border: none !important;
}

.homepage-content .row {
  display: flex;
  flex-direction: row;
  padding: 12px 0;
}

.homepage-content h1 {
  font-weight: 700;
  color: #212121;
}

.homepage-content-row-content h2 {
  padding: 16px 0;
}

.homepage-content-row-content {
  margin-right: 40px;
}

.homepage-content {
  padding: 0 0 0 0;
}
.homepage-content-button-container {
  display: flex;
  margin: 16px 0;
}

.homepage-content-row-image img {
  max-width: 200px;
}

.homepage-content-row-image {
  align-items: center;
  display: flex;
  height: 270px;
}

.home-news-section {
  padding: 60px 0;
  background: #f8f9fc;
  border-top: 2px solid #f1f1f1;
}

/*   Default Page  */

.page {
  padding: 40px 0;
}

.page-main {
  width: 75%;
  padding-right: 80px;
}

.page-legal span {
  line-height: 2 !important;
}
.page-legal .page-content li:before {
  content: "" !important;
  margin: 0 !important;
}
.page-legal li {
  list-style-type: disc !important;
}
.page-legal ul {
  margin-left: 16px !important;
}
div.MsoNormal {
  margin-bottom: 8px;
}

.page-header {
  /* height: 360px; */
  min-height: 360px;
  background-position: 50% 50%;
  display: flex;
}

.pattern-header {
  padding-top: 68px;
  background-color: var(--brand-green);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23001d13' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.single-product-header-overlay {
  background: transparent
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9) 28%,
      rgba(0, 0, 0, 0.65) 52%,
      rgba(0, 0, 0, 0) 100%
    )
    repeat scroll 0 0;
  display: flex;
  flex: 1;
  padding: 40px 0;
}
.single-product-header-background {
  display: flex;
  flex: 1;
  padding: 40px 0;
  background-color: var(--brand-green);
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23001d13' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.transparent-page-header .single-product-header-overlay {
  /* padding-top: 124px; */
  padding-top: 150px;
  padding-bottom: 60px;
}

.transparent-page-header {
  background-size: cover;
}

.hero-overlay {
  /* background: transparent linear-gradient(to right,rgba(0,0,0,.90) 28%,rgba(0,0,0,0.65) 52%,rgba(0,0,0,0) 100%) repeat scroll 0 0; */
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  flex: 1;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  align-items: center;
}

.flex-control-nav,
.flex-direction-nav {
  display: none !important;
}

.flexslider {
  margin: 0 !important;
}

.page-header-content {
  display: flex;
  flex: 1;
}

.page-header-content * {
  color: hsl(161, 28%, 98%);
}

.page-header-content .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.4);
}

.page-header-content h1 {
  margin-bottom: 24px;
  font-weight: 400;
  text-transform: uppercase;
  max-width: 50%;
  font-size: 48px;
}

.page-header h2 {
  font-size: 16px;
  max-width: 60%;
  text-transform: none;
  font-weight: 400;
  font-family: "Poppins";
  letter-spacing: 0.03em;
}

.page-header-cta {
  margin-top: 48px;
}

.page-header-cta a {
  /* font-size: 14px; */
  /* font-weight: 700; */
  /* margin-right: 16px; */
}

.page-sidebar {
  width: 25%;
}

.page .page-title h1 {
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 400;
  color: #4c504e;
}

.page .page-content h2,
.page .page-content h3,
.page .page-content,
.page .page-content h4,
.page .page-content h5,
.page .page-content h6,
.page .page-content p {
  margin-bottom: 16px;
}

.page .page-content h3 {
  font-size: 1.1em;
}

.page .page-content h3 {
  font-family: Teko;
  color: #363636;
  font-weight: 300;
  font-size: 24px;
}

.page .page-content h4 {
  font-size: 24px;
}

.page .page-content li {
  list-style-type: none;
  line-height: 24px;
}

.page .page-content ul {
  padding: 8px 0;
}

.page .page-content li:before {
  font-family: "FontAwesome";
  content: "\f00c";
  color: #407262;
  font-size: 12px;
  margin-right: 8px;
}

.page .page-content li ul li:before {
  content: "\f05d";
}

.page .page-content li ul li {
  /* list-style-type: disc; */
  margin-left: 40px;
  font-size: 14px;
}

.page .page-content img {
  /* box-shadow: 0 8px 31px 0 rgba(0, 0, 0, 0.1); */
  filter: drop-shadow(0 8px 31px rgba(0, 0, 0, 0.1));
}

.page .page-content h2.section-header {
  font-weight: 400;
  text-transform: uppercase;
  padding-top: 30px;
  font-size: 32px;
}

.separator {
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  height: 1px;
}

.separator:after {
  height: 1px;
  background: #d1d1d1;
  background: -moz-linear-gradient(
    left,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.12) 35%,
    rgba(0, 0, 0, 0.05) 70%,
    transparent 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(0%, rgba(0, 0, 0, 0.18)),
    color-stop(35%, rgba(0, 0, 0, 0.12)),
    color-stop(70%, rgba(0, 0, 0, 0.05)),
    color-stop(100%, transparent)
  );
  background: -webkit-linear-gradient(
    left,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.12) 35%,
    rgba(0, 0, 0, 0.05) 70%,
    transparent 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.12) 35%,
    rgba(0, 0, 0, 0.05) 70%,
    transparent 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.12) 35%,
    rgba(0, 0, 0, 0.05) 70%,
    transparent 100%
  );
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.12) 35%,
    rgba(0, 0, 0, 0.05) 70%,
    transparent 100%
  );
  position: absolute;
  bottom: -1px;
  left: 0px;
  content: "";
  width: 100%;
}

blockquote {
  /* background: #f9f9f9; */
  /* border-left: 5px solid #407262; */
  /* margin: 1.5em 10px; */
  /* padding: 0.5em 10px; */
  margin: 1em 0;
  padding: 1em 0;
}

blockquote:before {
  color: #407262;
  content: "\f10d";
  font-family: FontAwesome;
  font-size: 14px;
  line-height: 0.1em;
  margin-right: 16px;
}

blockquote:after {
  color: #407262;
  content: "\f10e";
  font-family: FontAwesome;
  font-size: 14px;
  line-height: 0.1em;
  margin-left: 16px;
}

blockquote p {
  display: inline;
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
}

.page-content blockquote p {
  font-size: 18px;
  /* color: #8C9AA6; */
  color: #686a6c;
}

.page-sidebar h2 {
  text-transform: uppercase;
  font-weight: 400;
}

.sidebar-widget {
  margin-bottom: 32px;
}

/*   Single Product  */

.single-product h3 {
  font-size: 32px !important;
  /* color: var(--brand-green); */
  font-weight: 400;
  margin-bottom: 24px;
  text-transform: uppercase;
  color: #4c504e;
}

.single-product p {
  line-height: 2;
  font-size: 15px;
  margin-bottom: 24px;
}

.single-product h4 {
  font-size: 24px;
  font-weight: 400;
  padding: 16px 0;
  color: #4c504e;
}
.single-product h5 {
  font-size: 18px;
  padding: 16px 0;
  color: #8c9aa6;
}
.single-product-overview img {
  border-radius: 4px;
  /* box-shadow: 0px 2px 25px rgba(0,0,0,.1); */
  filter: drop-shadow(0px 2px 25px rgba(0, 0, 0, 0.1));
}
.single-product-overview img.alignright {
  float: right;
  margin-left: 24px;
  margin-top: 24px;
}
.single-product-overview img:after {
  clear: both;
}
.single-product-overview .wp-caption-text {
  margin-top: 8px;
  font-size: 12px;
  color: #686a6c;
  font-style: italic;
  font-weight: 400;
}
p + img {
  margin-bottom: 0 !important;
}

.single-product a {
  color: var(--brand-green);
  font-weight: 700;
}

.single-product ul {
  padding-left: 15px;
}

.single-product ul.features-list {
  padding-left: 0;
}

.single-product ul li {
  padding: 16px 0;
  line-height: 24px;
  font-size: 15px;
}

.single-product-feature {
  display: flex;
  flex-direction: row;
  /* align-items: flex-start; */
  align-items: center;
}
.single-product-feature .ngg-imagebrowser-simple {
  display: none;
}

.single-product-feature i {
  font-size: 28px;
  color: hsl(161, 28%, 95%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product-feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: -moz-linear-gradient(45deg, var(--brand-green) 36%, #407262 100%);
  background: -webkit-linear-gradient(
    45deg,
    var(--brand-green) 36%,
    #407262 100%
  );
  background: linear-gradient(45deg, var(--brand-green) 36%, #407262 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='var(--brand-green)', endColorstr='#407262', GradientType=1);
}

.single-product-feature-name p {
  margin-left: 24px;
  margin-bottom: 0 !important;
}

.single-product-feature li p {
  font-size: 15px;
}

.single-product ul li ul li {
  list-style-type: circle;
  padding: 8px 0;
}

.single-product-content {
  margin-top: 48px;
}

.single-product-content-content {
  padding-bottom: 48px;
}
.single-product-personnel {
  padding-bottom: 48px;
}

.single-product-overview {
  padding-bottom: 32px;
}

.case-study-section {
  margin-bottom: 32px;
}
.case-study-section p {
  font-size: 13px;
  color: #4c504e;
}

.employee-card-container {
  display: flex;
  flex-direction: row;
  margin-top: 32px;
  flex-wrap: wrap;
}

.employee-card {
  background: #fff;
  border-radius: 2px;
  display: inline-block;
  width: 300px;
  position: relative;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.1); */
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  transition: all 0.5s;
  margin-right: 16px;
  margin-bottom: 16px;
  border-radius: 4px;
}

.employee-card:hover {
  /* box-shadow: 0 2px 40px rgba(0, 0, 0, 0.08), 0 5px 5px rgba(0, 0, 0, 0.1); */
  box-shadow: 0px 2px 40px rgba(0, 0, 0, 0.25);
  transition: all 0.5s;
  transform: translateY(-2px);
}

.single-employee-name {
  /* font-weight: 700; */
  font-size: 12px !important;
  margin-bottom: 0 !important;
}

.single-employee-title {
  font-size: 12px !important;
  font-weight: 400;
  color: #363636;
  margin-bottom: 0 !important;
}

.employee-card:first-child {
  margin-left: 0;
}

.employee-card-headshot {
  margin-right: 16px;
  width: 75px;
  height: 75px;
  overflow: hidden;
  border-radius: 100%;
  margin-left: 8px;
  align-self: center;
  margin-top: 8px;
  margin-bottom: 8px;
}

.employee-card-headshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.employee-card-info {
  padding: 8px;
  flex: 1;
}

.page-sidebar h3 {
  font-size: 24px !important;
  color: var(--brand-green);
  font-weight: 400;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.industry-partner-logos {
  display: flex;
  margin-top: 32px;
}
.industry-partner-single {
  padding-right: 24px;
}
.industry-partner-single img {
  width: 200px;
  height: auto;
}

/* Single Service */

.single-service h1 {
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.single-service h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.single-service h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  margin-top: 24px;
}

.single-service p {
}

.single-service ul {
  padding-left: 24px;
  padding-top: 16px;
}

.single-service li {
  line-height: 24px;
  margin: 8px 0;
}

/* Single Personnel */

.single-personnel {
  display: flex;
  flex-direction: row;
  flex: 1;
  margin-right: 0 !important;
  padding-right: 0 !important;
}

.single-personnel-headshot {
  max-width: 250px;
  margin-right: 48px;
  flex: 1;
}

.single-personnel-headshot img {
  border-radius: 100%;
  max-width: 200px;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.single-personnel-info {
  flex: 2;
}

.single-personnel-info h1 {
  padding-bottom: 0px;
  font-weight: 400;
  margin-bottom: 0;
}

.single-personnel-info h2 {
  padding-bottom: 12px;
  font-size: 22px;
  font-weight: 400;
  color: var(--brand-green);
  color: #868f8c;
}

.single-personnel h3 {
  font-weight: 400;
}

.single-personnel-info ul {
  margin-left: 15px;
}

.single-personnel-info ul li {
  line-height: 30px;
}

.single-personnel-info-section {
  padding: 16px 0;
}

.single-personnel-contact-info-row {
  display: flex;
  flex-direction: row;
  padding: 8px 0;
}

.single-personnel-contact-info-row i {
  color: var(--brand-green);
}

.single-personnel-contact-info-row p,
.single-personnel-contact-info-row a {
  font-size: 13px;
  margin-left: 8px;
}

.single-personnel-contact-info {
  padding: 16px 0;
}

/*   Team Members   */

.team-members-single {
  padding: 8px 16px;
}

.team-members-single:first-child {
  padding-left: 0;
}

.team-members-single:last-child {
  padding-right: 0;
}

.team-members-single-name {
  text-transform: uppercase;
  text-align: center;
  font-weight: 300;
  font-size: 16px;
  margin-top: 24px;
}

.team-members-single-title {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  margin: 8px 0;
}

.team-members-single-tagline {
  font-size: 13px;
  color: #1a2f44;
  text-align: center;
  font-weight: 500;
}

/*   Career Opportunities   */

.job-openings-single {
  margin-bottom: 16px;
  border-bottom: 1px solid #e6e6e6;
}
.job-openings-single.open {
  border-bottom: 0;
  border-color: #e6e6e6 !important;
}

.job-openings-panel-content {
  /* padding-top: 8px; */
  padding-bottom: 24px;
}
.job-openings-panel-content.open {
  margin-bottom: 40px;
}
.job-openings-panel-content div {
  line-height: 1.6;
  margin-bottom: 8px;
}
.job-openings-panel-content span {
  line-height: 1.6;
}

.job-openings-panel-content h5 {
  font-weight: bold;
  text-transform: uppercase;
}

.job-openings-single-button-container {
  display: flex;
  margin-top: 16px;
}

.job-openings-toggle {
  align-items: center;
  display: flex;
  transition: all 0.5s;
  font-size: 14px;
  color: var(--brand-green);
  cursor: pointer;
}

.job-openings-toggle i {
  transition: all 0.5s;
}

.job-openings-toggle.open i {
  transform: rotate(90deg);
  transition: all 0.5s;
}
.job-openings-panel-content .btn {
  font-size: 18px;
  font-weight: 400;
  padding: 5px 10px 4px 10px;
}

h3.job-openings-single-title {
  font-weight: 400;
  font-size: 24px !important;
  color: #212121 !important;
  margin-bottom: 4px !important;
}
p.job-openings-single-location {
  color: #868f8c !important;
  font-family: Poppins;
  font-size: 14px !important;
}
.job-openings-panel-content h5 {
  font-size: 20px;
  font-weight: 400;
}

.job-title {
  margin-bottom: 0px;
}
.job-location {
  color: #868f8c !important;
  font-family: Poppins;
  font-size: 14px !important;
}
.job-content {
  margin-top: 40px;
  margin-bottom: 40px !important;
}
.job-content ul li {
  text-indent: -20px;
  margin-left: 20px;
  margin-bottom: 12px;
}
.job-content h3 {
  font-size: 24px;
  font-weight: 300;
}
.job-content strong {
  font-weight: 300 !important;
  font-size: 20px;
  color: #212121;
  font-family: Teko;
  text-transform: uppercase;
}
.job-content h6 {
  font-family: Poppins;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.6;
  color: #686a6c;
  margin-top: 48px;
  text-transform: none;
}
.job-content h3 {
  margin-top: 40px;
  color: #686a6c !important;
}
.job-content a {
  color: #1b5542;
  transition: all 0.5s;
}
.job-content a:hover {
  color: #113327;
  text-decoration: underline;
}

/*   Contact Us   */

#map {
  height: 400px;
  border-bottom: 5px solid var(--brand-green);
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  -webkit-appearance: none;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  border: 1px solid #e6e6e6;
  color: #212121;
  height: 40px;
  border-radius: 5px;
  padding-left: 8px;
  width: 100%;
  font-family: Poppins;
  font-size: 13px;
}

.wpcf7 textarea {
  height: 80px;
  padding-top: 8px;
}

.wpcf7 {
  max-width: 70%;
}

.wpcf7 p {
  margin: 0;
}

.wpcf7 p.label {
  font-size: 13px;
  margin-bottom: 8px;
  color: #868f8c;
}

.wpcf7 p.label span.required {
  color: #e53e3e;
}

.page-content p {
  color: #363636;
  font-size: 16px;
  line-height: 2;
}

.page .page-content li {
  font-size: 16px;
  line-height: 2;
}

.form-group {
  display: block;
  padding: 8px 0;
}

.wpcf7-submit {
  cursor: pointer;
  padding: 4px 20px;
  padding-bottom: 3px;
  transition: all 0.5s;
  border-radius: 3px;
  font-size: 20px;
  text-transform: uppercase;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  border: 2px solid var(--brand-green);
  color: #f9f9f9;
  font-family: Teko;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #ecf8f4;
  text-shadow: 0px 2px 4px #113327;
  background-color: var(--brand-green);
}

.page-contact-locations-single {
  padding: 8px 0;
  margin-bottom: 16px;
}

.page-contact-locations-single h3 {
  font-size: 1.1em;
}

.sidebar-social {
  display: flex;
  flex-direction: row;
}

.sidebar-social-single {
  color: #d1d1d1;
  border: 1px solid #d1d1d1;
  background: transparent;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: all 0.5s;
  -vendor-animation-duration: 3s;
}

.sidebar-social-single:last-child {
  margin-right: 0;
}

.sidebar-social-single i {
  color: #d1d1d1;
}

.sidebar-social-single.facebook:hover {
  color: #f9f9f9;
  background-color: #3b5999;
  border-color: #3b5999;
  transition: all 0.5s;
}

.sidebar-social-single.linkedin:hover {
  color: #f9f9f9;
  background-color: #0077b5;
  border-color: #0077b5;
  transition: all 0.5s;
}

.sidebar-social-single.twitter:hover {
  color: #f9f9f9;
  background-color: #1da1f2;
  border-color: #1da1f2;
  transition: all 0.5s;
}

.sidebar-social-single:hover i {
  color: #f9f9f9;
  transition: all 0.5s;
}

/*    Footer    */

/*  Footer Widgets  */

.footer-widgets {
  /* background-color: #407262; */
  /* background-color: var(--brand-green); */
  background-color: #001d13;
  padding: 24px 0;
  padding-top: 40px;
  /* border-top: 2px solid var(--brand-green); */
}

.footer-widgets .container {
  border-bottom: 1px solid var(--brand-green);
  /* background-color: var(--brand-green); */
  background-color: #001d13;
  padding-bottom: 24px;
}

.footer-widgets-single {
  flex: 1;
  /* padding: 0 32px; */
  margin: 0 32px;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  align-items: flex-start;
}

.footer-widgets-single:first-child {
  margin-left: 0;
}

.footer-widgets-single:last-child {
  margin-right: 0;
}

.last-footer-widget-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-widgets-single p {
  font-size: 12px;
  color: #f9f9f9;
}

.footer-widgets-single h4 {
  color: #f9f9f9;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 16px;
}

.footer-widgets-single ul {
  /* padding-left: 15px; */
  padding-left: 0;
}

.footer-widgets-single li {
  /* list-style-type: none; */
  color: #ffffff;
  line-height: 24px;
  list-style: none;
  padding: 2px 0;
}

p.footer-location-name {
  padding-top: 0px;
  /* color: #212121; */
  color: #d2efe5;
  font-family: Teko;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
}

.footer-location {
  padding-bottom: 16px;
}

.footer-about {
  padding-top: 16px;
}

.footer-widgets-single li a {
  color: #d2efe5;
  font-weight: 300;
  font-size: 13px;
  transition: all 0.25s;
}

.footer-widgets-single li a:hover {
  color: #fff;
}

/*   Footer Copyright    */

.footer-copyright {
  /* background-color: var(--brand-green); */
  background-color: #001d13;
  padding: 8px 0;
  padding-bottom: 24px;
}

.footer-copyright-left,
.footer-copyright-right {
  align-items: center;
  display: flex;
  flex-direction: row;
}

.footer-copyright-right a {
  align-items: center;
  margin-right: 15px;
}

.footer-copyright-right a:hover {
  color: #e6e6e6;
}

.footer-copyright-right a:last-child {
  margin-right: 0;
}

.footer-copyright p,
.footer-copyright a {
  color: #f9f9f9;
  font-size: 16px;
}

.footer-copyright a i {
  font-size: 20px;
  color: #d2efe5;
}

.footer-copyright p {
  font-size: 13px;
  font-weight: 200;
}

/*  Single Blog Post  */

.single-post {
  display: flex;
}

.single-post .post-content {
  /* margin-right: 80px; */
  max-width: 80%;
}

.single-post p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 2;
}

.single-post .page-title h1 {
  font-size: 48px;
  line-height: 1.2;
  font-weight: 300;
  margin-bottom: 60px;
}

.post-categories li {
  list-style: none;
}

.single-post .post-date {
  /* text-transform: uppercase; */
  font-weight: 700;
  font-size: 12px;
  color: #333;
  /* margin-left: 16px; */
}

.single-post .post-date span {
  margin-right: 4px;
  color: #686a6c;
  font-weight: 400;
}

.post-meta {
  display: flex;
  margin-top: 20px;
  padding: 24px 0 px;
  /* background-color: #f9f9f9; */
  margin-bottom: 24px;
  color: #333;
}

/* .single-post .separator {
  margin-bottom: 60px;
} */

.post-meta * {
  color: #333;
}

.post-meta-section {
  display: flex;
  align-items: center;
  margin-right: 24px;
}

.post-categories {
  display: flex;
}

.post-categories span {
  margin-right: 8px;
  font-size: 12px;
  font-weight: 400;
  /* text-transform: uppercase; */
  color: #686a6c;
}

.post-categories a {
  color: #407262;
  font-size: 14px;
  font-weight: 600;
  /* text-decoration: underline; */
}

.post-categories a:hover {
  text-decoration: underline;
}

.related-content ul li {
  list-style-type: none;
}

.related-content ul {
  margin: 12px 0;
}

.related-content ul li:before {
  font-family: "FontAwesome";
  content: "\f00c";
  color: #407262;
  font-size: 12px;
  margin-right: 8px;
}

.related-content ul li a {
  padding: 4px 0;
  display: inline-block;
  color: var(--brand-green);
  text-decoration: underline;
}

.post-tags {
  padding-bottom: 16px;
}

.post-tags h3 {
  padding-bottom: 12px;
  font-weight: 300;
  font-size: 24px;
}

.post-tags a {
  background-color: #407262;
  border-radius: 3px;
  padding: 4px 8px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 400;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: all 0.25s;
}

.post-tags a:hover {
  background-color: var(--brand-green);
}

.post-body {
  display: flex;
}

.post-body p a {
  color: #407262;
  text-decoration: underline;
}

.post-body img {
  float: right;
  margin-top: 12px;
  margin-left: 12px;
  border-radius: 3px;
}

/*   Sidebar   */

.widget {
  margin-bottom: 24px;
}

.widget ul li {
  list-style-type: none;
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  position: relative;
  left: 0;
  transition: all 0.25s;
}

.widget ul li:before {
  content: "\f054";
  font-family: "FontAwesome";
  color: #407262;
  font-size: 10px;
  margin-right: 8px;
  line-height: 2;
  position: relative;
  top: 4px;
}

.widget ul li a {
  display: inline-block;
  line-height: 2;
}

.widget ul li:hover {
  left: 2px;
}

/*   Archive Page   */

.archive-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.taxonomy-description p {
  font-style: italic;
}

.archive-page {
  display: flex;
  justify-content: space-between;
}

.archive-list {
}

.archive-list li {
  list-style-type: none;
  display: flex;
  align-items: flex-start;
  padding: 16px 0;
}

.archive-list li img {
  max-width: 150px;
  height: auto;
}

.archive-featured-image {
  padding-right: 16px;
  height: 150px;
  width: 150px;
  padding-right: 24px;
}

.archive-post-content {
  width: 80%;
}

.archive-featured-image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
}

.archive-date {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #686a6c;
}

.archive-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.archive-excerpt {
  color: #363636;
  margin-bottom: 24px;
}

.archive-tags p b,
.archive-categories span {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  color: #1a2f44;
}

.archive-tags a,
.archive-categories a {
  color: #407262;
  font-size: 12px;
  font-weight: 600;
  /* text-decoration: underline; */
}

.archive-tags {
  margin-top: 12px;
}

.archive-tags a {
  display: inline-block;
  /* background-color: #1b5542; */
  /* border-radius: 10px; */
  /* padding: 2px 12px; */
  /* color: #F8F9FC; */
  text-decoration: none;
  font-weight: 400;
  /* margin-bottom: 8px; */
  /* margin-right: 8px; */
}

.read-more-link {
  font-size: 14px;
  color: #407262;
  font-weight: 600;
  text-decoration: underline;
}

/*   2020 Update  */
.home__news_container {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
}
.home__single-news-container {
  background-color: #fcfcfc;
  height: 450px;
  width: 325px;
  box-shadow: 0px 4px 20px rgba(66, 94, 165, 0.12);
  border-radius: 4px;
  position: relative;
  list-style-type: none;
  transition: all 0.5s;
}
.home__single-news-container:hover .home__single-news-readmore i {
  margin-left: 8px;
}
.home__single-news-content {
  padding-left: 16px;
  padding-right: 16px;
  position: absolute;
  background-color: #fcfcfc;
  top: 200px;
  height: 250px;
  transition: all 0.5s;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.home__single-news-featured-image {
  height: 200px;
}
.home__single-news-featured-image img {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.home__single-news-content.open {
  top: 0;
  transition: all 0.5s ease-in-out;
  bottom: 0;
  height: 450px;
  border-radius: 4px;
}

.home__single-news-container:hover {
  top: -2px;
  box-shadow: 0px 4px 20px rgba(66, 94, 165, 0.25);
  transition: all 0.5s;
}

.home__single-news-category {
  font-family: "Teko";
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #212121;
  line-height: 24px;
  margin-top: 6px;
  text-transform: uppercase;
}
.home__single-news-title h3 {
  color: #363636;
  font-family: "Poppins";
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 16px;
}
.home__single-news-divider {
  margin-left: 8px;
  margin-right: 8px;
  line-height: 24px;
}
.home__single-news-date {
  color: #8c9aa6;
  font-family: "Poppins";
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
.home__single-news-meta {
  display: flex;
  align-items: center;
  line-height: 24px;
  margin-top: 12px;
  margin-bottom: 16px;
}
.home__single-news-readmore {
  font-family: "Poppins";
  font-size: 14px;
  color: var(--brand-green);
  font-weight: 500;
  text-decoration: none;
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 99;
  display: block;
}
.home__single-news-readmore i {
  margin-left: 4px;
  transition: all 0.25s;
}
.home__single-news-excerpt p {
  color: #212121;
  font-family: "Poppins";
  font-size: 14px;
  line-height: 1.8;
}
.home__section_heading h4 {
  font-family: Teko;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  /* identical to box height, or 32px */
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8c9aa6;
  text-align: center;
}
.home__section_heading {
  margin-bottom: 40px;
}
.home__section_heading h4::before,
.home__section_heading h4::after {
  width: 150px;
  border-bottom: 1px solid #8c9aa6;
  content: "";
  position: relative;
  top: -6px;
  margin-right: 24px;
  margin-left: 24px;
  display: inline-block;
}

.videoContainer .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
}

.videoContainer {
  position: relative;
  width: 100%;
  /* height: 100%; */
  /* height: 800px; */
  height: 100%;
  background-attachment: scroll;
  overflow: hidden;
}

.videoContainer video {
  object-fit: cover;
  height: 100%;
}

.expertise-list {
  display: flex;
  list-style-type: none;
}

.expertise-list li {
  list-style-type: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expertise-list li i {
  font-size: 48px;
}

.expertise-list li h2 {
  font-size: 28px;
  text-align: center;
  font-weight: 300;
}
.expertise-list li {
  margin-right: 36px;
}

.expertise-list li:last-of-type {
  margin-right: 0px;
}

.home-expertise-section {
  padding: 60px 0 60px 0;
}
.expertise-list li i {
  color: var(--brand-green);
  margin-bottom: 24px;
}

.expertise-list li a.btn {
  box-shadow: none;
  text-shadow: none;
  border: 2px solid var(--brand-green);
  display: inline-block;
  margin-top: 24px;
  color: #113327;
  padding: 4px 20px;
  padding-bottom: 3px;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  outline: 0;
  overflow: hidden;
  background: none;
  z-index: 1;
  cursor: pointer;
  transition: 0.14s ease-in;
  -o-transition: 0.14s ease-in;
  -ms-transition: 0.14s ease-in;
  -moz-transition: 0.14s ease-in;
  -webkit-transition: 0.14s ease-in;
}
.expertise-list li a.btn::before {
  content: "";
  position: absolute;
  background: var(--brand-green);
  bottom: 0;
  left: 0;
  right: 0;
  top: 100%;
  z-index: -1;
  -webkit-transition: top 0.15s ease-in;
}

.expertise-list li a.btn:hover:before {
  top: 0;
}

.expertise-list li a.btn:hover {
  color: #ecf8f4;
}

.expertise-item p {
  text-transform: none;
  color: #1a2f44;
  margin-top: 16px;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 2;
  font-weight: 300;
  flex: 1;
}

.expertise-item {
  transition: all 0.25s;
  height: 330px;
}

.expertise-item:hover {
  /* box-shadow: 0px 44px 40px 0px rgba(0, 0, 0, 0.06); */
}

.home-expertise-section .home__section_heading {
  margin-bottom: 40px;
}
._mi._before._image {
  width: 24px !important;
}
.single-expertise-content p {
  font-size: 15px;
  line-height: 2;
}
.single-expertise-related-products h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}
.single-expertise-related-products {
  margin-top: 40px;
}
.single-related-product {
  margin-top: 24px;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  width: 300px;
  margin-right: 24px;
}
.single-related-product:last-of-type {
  margin-right: 0;
}
.single-related-product-thumbnail {
  width: 300px;
  height: 220px;
  object-fit: cover;
}
.single-related-product a {
  font-family: Teko;
  font-size: 24px;
  color: var(--brand-green);
  margin-bottom: 12px;
  margin-top: 12px;
  transition: all 0.25s;
}
.single-related-product a:hover {
  color: #407262;
  text-decoration: underline;
}
.single-related-product h2 {
  font-family: Poppins;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.03em;
  font-weight: 300;
  color: #001d13;
  text-transform: none;
}
.related-product-list {
  display: flex;
  flex-wrap: wrap;
}

/*    Work Page   */
.select-css {
  display: inline-block;
  font-size: 14px;
  font-family: sans-serif;
  font-weight: 400;
  color: #113327;
  line-height: 1.3;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #e3e3e3;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.5em;
  font-family: Poppins !important;
  padding: 4px 8px;
  margin-left: 16px;
  position: relative;
  top: -2px;
}
.select-css::-ms-expand {
  display: none;
}
.select-css:hover {
  border-color: #d3d3d3;
}
.select-css:focus {
  border-color: #aaa;
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}
.select-css option {
  font-weight: normal;
}

.select-css:after {
  content: "\f054";
  font-family: FontAwesome;
}

option {
  font-family: Poppins, sans-serif;
}

.filter-container span {
  font-family: Teko;
  font-weight: 300;
  color: #686a6c;
  font-size: 28px;
  text-transform: uppercase;
}

.page-full {
  padding: 60px 0;
}

.filter-container {
  margin-bottom: 48px;
}

.work-products-list {
  /* display: grid; */
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  columns: 300px 3;
  column-gap: 16px;
  overflow: visible !important;
}
.work-single-product,
.related-single-product {
  width: 32%;
  /* width: 100%; */
  /* width: 380px; */
  margin-bottom: 20px;
  box-shadow: 0px 4px 20px rgba(66, 94, 165, 0.12);
  border-radius: 4px;
  position: relative;
  /* transition: top ease .5s!important; */
  top: 0;
  list-style-type: none;
}
.related-single-product {
  width: 45%;
  transition: top ease 0.25s;
  margin-right: 24px;
}
.shuffle-sizer {
  width: 32%;
  margin-left: 16px;
}
.work-single-product:hover,
.related-single-product:hover {
  top: -4px !important;
  box-shadow: 0px 8px 20px rgba(66, 94, 165, 0.12);
}
.work-single-product-image,
.related-single-product-image {
  height: 180px;
  position: relative;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.work-single-product-image img,
.related-single-product-image img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.work-single-product-image-overlay,
.related-single-product-image-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding-left: 16px;
  padding-right: 16px;
  /* background-color: rgba(0,0,0,.35); */
  background-color: rgba(8, 26, 39, 0.6);
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.personnel-work-item-image-overlay {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.personnel-work-item-image-overlay p {
  color: #fff;
}
ul.personnel-work-items {
  margin-left: 0 !important;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
.work-single-product-image-overlay h3,
.related-single-product-image-overlay h2 {
  font-weight: 400;
  color: #fff;
  font-size: 28px;
  max-width: 70%;
  text-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
}
.work-single-product-text,
.related-single-product-text {
  /* background-color: #686A6C; */
  height: 150px;
}
.work-single-product-text p,
.related-single-product-text p {
  padding: 16px;
  color: #212121;
}

.page-content img.alignright {
  max-width: 500px;
  float: right;
  margin-left: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.page-content img.alignright:after {
  clear: both;
  content: "";
}

.page-content .wp-caption.alignright {
  max-width: 500px;
  float: right;
  margin-left: 16px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.page-content p.wp-caption-text {
  font-size: 12px;
  color: #686a6c;
  font-style: italic;
  margin-top: 8px;
}

/* .page-content-with-thumbnail {
  float: left;
}
.page-content-featured-image {
  float: right;
}
.page-content-featured-image img {
  width: 50%;
} */

.category-slider-item {
  list-style-type: none;
  margin-right: 24px;
}
.category-slider-item a {
  /* font-family: Teko!important;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: .13em; */

  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  color: #8c9aa6;
}
.category-slider-item.selected a {
  border-bottom: 2px solid var(--brand-green) !important;
  color: var(--brand-green);
  font-weight: 700;
}

.category-slider-item:hover a {
  border-bottom: 2px solid #8c9aa6;
}

.category-slider-item:last-of-type {
  margin-right: 0;
}
.category-slider {
  display: flex;
  margin-bottom: 48px;
}

.single-news {
  margin-bottom: 20px;
  width: 32%;
}
.news-container {
  overflow: visible !important;
}

.wp-block-image img {
  margin-left: 0;
  float: none;
  margin-top: 0;
}
figcaption {
  font-size: 12px;
  font-weight: 300;
  color: #686a6c;
  margin-top: 8px;
  font-style: italic;
}
.banner {
  /* background-color: var(---green); */
  background-color: #001d13;
  padding: 16px 0;
  text-align: center;
  color: #f9f9f9;
}
.banner a {
  max-width: 90%;
  margin: 0 auto;
  display: block;
}

@media screen and (max-width: 767px) {
  .mobile-only {
    display: block;
  }
  .category-slider {
    display: none;
  }
  #header {
    padding: 12px 0;
  }
  .pattern-header {
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23001d13' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='4' cy='4' r='4'/%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-overlay {
    padding-top: 34px;
  }
  .home__section_heading h4 {
    font-size: 18px;
  }
  .home__section_heading h4::before,
  .home__section_heading h4::after {
    width: 12px;
  }
  .home__section_heading h4::before {
    margin-right: 4px;
    /* width: 0; */
    /* border: 0; */
  }
  .home__section_heading h4::after {
    margin-left: 4px;
    /* content: ""; */
    /* border: 0; */
    /* width: 0; */
  }
  .expertise-list {
    flex-direction: column;
  }
  .expertise-item {
    margin-bottom: 48px;
    margin-right: 0;
  }

  .expertise-list li {
    margin-right: 0;
  }

  .expertise-list:last-of-type {
    margin-bottom: 0;
  }
  .home__news_container {
    flex-direction: column;
  }
  .home__single-news-container {
    margin-bottom: 48px;
  }
  .home__single-news-container:last-of-type {
    margin-bottom: 0;
  }
  .footer-widgets-single {
    margin-left: 0;
  }
  .page-main {
    width: 100%;
    padding-right: 0;
  }
  ._mi._before._image {
    display: none;
  }
  .mobile-navigation .child-open ul.sub-menu li a span {
    color: #d2efe5 !important;
  }
  /* #wpadminbar {
            display:none;
        }
        html {
            position: relative;
            top:-46px;
        } */
  .page-news .container.flex-row {
    flex-direction: column;
  }
  .page-news .page-main {
    width: 100%;
  }
  .archive-featured-image {
    width: 100%;
    margin-bottom: 16px;
    max-height: initial;
  }
  .archive-list li img {
    width: 100%;
    max-width: 100%;
  }
  .archive-list li {
    flex-direction: column;
  }
  .page-sidebar,
  .post-sidebar {
    margin-top: 40px;
    width: 100%;
  }
  .archive-page {
    flex-direction: column;
  }
  .single-post {
    flex-direction: column;
  }
  .single-post .post-content {
    width: 100%;
    margin-right: 0;
    max-width: 100%;
  }
  .single-post .post-meta {
    flex-direction: column;
  }
  .single-post .post-meta .post-date {
    margin-bottom: 12px;
    color: #686a6c;
  }
  .page .page-title h1 {
    font-size: 1.5em;
    line-height: 1.5;
  }
  #header {
    align-items: center;
    display: flex;
    flex-direction: row;
    background-color: var(--brand-green);
    /* border-bottom: 2px solid #407262; */
    transition: all 0.5s;
  }
  #header .container {
    align-items: center;
  }
  .mobile-navigation {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -1000px;
    height: 100%;
    width: 80%;
    background: var(--brand-green);
    z-index: 999;
    padding: 16px 16px;
    box-shadow: 10px 0 16px -2px rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
  }
  .mobile-navigation.open {
    left: 0;
    transition: all 0.5s;
  }
  .mobile-navigation .child-open ul.sub-menu {
    display: block;
    padding-top: 16px;
    padding-left: 16px;
    font-size: 13px;
  }
  .mobile-navigation ul li {
    font-size: 16px;
    list-style-type: none;
    padding: 16px 0;
  }
  .mobile-navigation ul li a {
    color: #ffffff;
  }
  .mobile-navigation ul.sub-menu {
    display: none;
  }
  .mobile-navigation ul li.menu-item-has-children a:after {
    content: "\f054";
    font-family: "FontAwesome";
    color: #ffffff;
    font-size: 12px;
    margin-left: 24px;
    transition: all 0.5s;
    display: inline-block;
  }
  .mobile-navigation ul li.menu-item-has-children.child-open a:after {
    transform: rotate(90deg);
  }
  .mobile-navigation ul.sub-menu li a:after {
    content: "";
  }
  #mobile-nav-close {
    color: #ffffff;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
  }
  #mobile-nav-toggle {
    display: flex;
    font-size: 25px;
    color: #ffffff;
    margin-right: 18px;
  }
  #mobile-nav-toggle i {
    color: #fff;
  }
  #header .logo img {
    width: 200px;
  }
  .navigation-container {
    display: none;
  }
  .hero-content {
    width: 100%;
  }
  .homepage-content .row {
    flex-direction: column;
    padding: 24px 0;
  }
  .homepage-content-row-content {
    margin-right: 0;
  }
  .homepage-content-row-image {
    justify-content: center;
    margin-top: 16px;
  }
  .hero-background {
    height: 525px;
    margin-top: 64px;
  }
  .single-product-header-overlay {
    max-width: 100%;
  }
  .page-header-content {
    max-width: 100%;
    padding: 24px 0;
  }
  .internal-page-header {
    height: auto;
    /* background-size: cover; */
  }
  .page-header h1 {
    /* text-align: center; */
    /* font-size: 24px; */
    line-height: 1.2;
  }
  .page-header-content .container {
    /* align-items: center; */
  }
  .page-header h2 {
    /* text-align: center; */
    max-width: 100%;
    font-size: 14px;
  }
  .page-header-cta {
    flex-direction: column;
    display: flex;
  }
  .page-header-cta a {
    margin-bottom: 16px;
  }
  .page-main.single-product {
    width: auto;
    padding-right: 0;
  }

  .single-product-feature {
    flex-direction: column;
    align-items: center;
  }
  .single-product-feature-name {
    margin-left: 0;
    margin-top: 24px;
  }
  .single-product-feature-name p {
    text-align: center;
  }
  .single-product h3 {
    text-align: center;
  }
  .single-product ul {
    padding-left: 0;
  }
  .employee-card-container {
    flex-direction: column;
  }
  .employee-card {
    margin-bottom: 24px;
    width: 100%;
  }
  .team-members-container {
    flex-direction: column;
  }
  .team-members-single {
    padding: 8px 0;
  }
  .page-contact .container {
    flex-direction: column;
  }
  .page-contact .page-main {
    width: auto;
    padding-right: 0;
  }
  .page-contact .page-sidebar {
    width: auto;
    margin-top: 48px;
  }
  .page-contact .wpcf7 {
    max-width: 100%;
  }
  .footer-widgets .container {
    flex-direction: column;
  }
  .footer-widgets-single {
    flex: 0;
    display: block;
    padding: 24px 0;
  }
  .footer-copyright .container {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
  }
  .footer-copyright-left {
    text-align: center;
  }
  .related-single-product {
    width: 100%;
  }
  .page-header-cta {
    align-items: flex-start;
  }
  .product-case-study.flex-row {
    flex-direction: column-reverse;
  }
  .home__single-news-container {
    width: 100%;
  }
  #category-select {
    margin-bottom: 40px;
  }
  .page-content .wp-caption.alignright {
    max-width: 100%;
  }
  .job-openings-toggle {
    align-items: flex-start;
  }
  .job-openings-single {
    align-items: center;
  }
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .expertise-item {
    min-height: 270px;
  }
  .expertise-item .btn {
    min-height: 28px;
  }
  .work-single-product {
    width: 100%;
  }
  .work-single-product-text,
  .related-single-product-text {
    height: 170px;
  }
  .page-header-content h1 {
    max-width: 100%;
  }
  .select-css {
    margin-top: 12px;
    margin-left: 0;
  }
  .wp-caption {
    max-width: 100%;
  }
  .related-single-product {
    margin-right: 0;
  }
  iframe {
    max-width: 100%;
  }
  .single-product-feature-name p {
    margin-left: 0;
  }
  .single-personnel {
    flex-direction: column;
  }
}
