/* -----------------------------------

  FONTS

------------------------------------- */

/*@font-face {
	font-family: 'Karla;
	src: url(../font/Karla-Regular.ttf);
	font-weight: normal;
}
@font-face {
	font-family: 'Karla;
	src: url(../font/Karla-Bold.ttf);
	font-weight: bold;
}*/
/*@font-face {
	font-family: 'MinionPro;
	src: url(../font/MinionPro.ttf);
	font-weight: normal;
}*/
@font-face {
	font-family: 'Din2014';
	src: url(../font/DIN2014-Regular.ttf);
	src: url(../font/DIN2014-Regular.woff);
	font-weight: normal;
}
@font-face {
	font-family: 'Din2014';
	src: url(../font/DIN2014-Light.ttf);
	src: url(../font/DIN2014-Light.woff);
	font-weight: 300;
}
@font-face {
	font-family: 'Gotham-Light';
	src: url(../font/Gotham-Light-Regular.otf);
	font-weight: 300;
}

/* -----------------------------------

  Reset default browser styles

------------------------------------- */

@viewport{user-zoom: fixed;}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
      box-sizing: border-box;
}

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

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

iframe{width: 100%;}

b, strong{font-weight: bold !important;}

ul,
ol{
  list-style: none;
}

q{quotes: none;}

table, table td{ 
  padding: 0;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
}

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

embed{ vertical-align: top;}

/*input,
button{
  -webkit-appearance: none;
  outline: none;
}*/


button::-moz-focus-inner{border: 0;}

html{
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,body{height: 100%;}

/* -----------------------------------

  2. Global 

------------------------------------- */

body{
  font-family:'Roboto', sans-serif;
	font-size: 16px;
	line-height: 32px;
	font-weight: 400;
	letter-spacing:0.8px;
	color: #444;
	position:relative;
}

#wrapper{
	-webkit-transition: all .25s ease;
	-o-transition: all .25s ease;
	transition: all .25s ease;
	position: relative;
	overflow: hidden;
	max-width: 1920px;
	margin: auto;
	background-color: #fff;
	box-shadow: 0 0 39px 1px rgba(0, 0, 0, 0.1);
}


.wrapper-container{
  position: relative;
}

::selection{
  background: #7f322e;
  color: #fff;
}

::-moz-selection{
  background: #7f322e;
  color: #fff; 
}

::-o-selection{
  background: #7f322e;
  color: #fff; 
}

::-ms-selection{
  background: #7f322e;
  color: #fff;
}

.selected-type-1{
  background: #7f322e;
  color: #fff;
}

img{
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
}

.clearfix:after,
.row:after{
  clear: both;
  display: block;
  visibility: hidden;
  height: 0;
  content: ".";
}

input{
	font-family:'Roboto', sans-serif;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder{
  font-weight: 300;
  color: #333334;
  -webkit-transition:text-indent .5s ease,color .5s ease;
}

input::-moz-placeholder,
textarea::-moz-placeholder{
  color: #333334;
  font-weight: 300;
  opacity: 1;
  -webkit-transition:text-indent .5s ease,color .5s ease;
}

[placeholder]:focus::-webkit-input-placeholder{
  text-indent:10em;
  color:transparent;
}

[placeholder]:focus::-webkit-textarea-placeholder{
  text-indent:10em;
  color:transparent;
}

.bounce {
  display: inline-block;
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -moz-transform: translateY(-1px);
    transform: translateY(-1px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  60% {
    -webkit-transform: translateY(-);
    transform: translateX(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  40% {
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  60% {
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* ------------------------------------------------------
  
  3. General classes
  
------------------------------------------------------ */

.wrapper{overflow: hidden;}

.row{
	position:relative;
	margin: 0 auto;
	/*padding-left:15px;
	padding-right:15px;*/
	width:100%;
	max-width:1000px;
}

.row.wide-width{
	max-width:1280px;
}

.row.default-width{
	max-width:1100px;
}

.row.slim-width{
	max-width:930px;
}

.row.narrow-width{
	max-width:760px;
}

.row.full-width{
	max-width:100%;
}

.row.no-gutter{
	padding-left:0;
	padding-right:0;
}

.text-block-flex{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content: space-between;
	/*margin-top:30px;*/
}

.text-block-flex > div{
	width:100%;
}

/*#post-content > section:not(.text-block-multi) .row{
	padding-top:30px;
	padding-bottom:30px;
}*/

/*#post-content > section .row .col{
	padding-top:30px;
	padding-bottom:30px;
	padding-left: 15px;
  padding-right: 15px;
}*/

#post-content.no-sections .row{
	padding-top:30px;
	padding-bottom:30px;
	padding-left: 15px;
  padding-right: 15px;
}

.row .col-full{
	width:100%;
	padding-top:30px;
	padding-bottom:30px;
	padding-left: 15px;
  padding-right: 15px;
}

.row .col-half{
	width:100%;
	padding-top:30px;
	padding-bottom:30px;
}

#post-content > section .row .col-half{
	padding-left:30px;
	padding-right:30px;
}

.row .col-one-third{
	width:100%;
	padding-top:30px;
	padding-bottom:30px;
}

.row .col-two-third{
	width:100%;
	padding-top:30px;
	padding-bottom:30px;
}

.row col-one-quarter{
	width:100%;
	padding-top:30px;
	padding-bottom:30px;
}

.text-block .before-title,
.text-block .after-title{
	font-size:16.5px;
}

#post-content > section.text-block-multi .row +.row:last-child{
	padding-bottom:30px;	
}

#post-content > section.text-block-multi .row + .row:first-child{
	padding-top:30px;	
}

#post-content > section.text-block-multi .row:not(:last-child) .col{
	padding-bottom:15px;
}

#post-content > section.text-block-multi .row + .row:not(:first-child) .col{
	padding-top:15px;	
}

.relative{position: relative;}

.align-left,.text-left{text-align: left;}

.align-center,.text-center{text-align: center;}

.align-right,.text-right{text-align: right;}

.f-left{float: left;}

.f-right{float: right;}

.hide{display: none;}

.show{display: block;}

.invisible{visibility: hidden;}

img[class*="align"]{
  margin-bottom: 15px;
}

img.alignleft{
  float: left;
  margin-right: 30px;
}

img.alignright{
  float: right;
  margin-left: 30px;
}

#main{
	padding: 0;
}

.home #main{
	padding-top:0;
	padding-bottom:0;
}

.extra{width: 100%;}

[class*="flex-row"]{
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
}

[class*="flex-row"]:after{
  display: none;
}

[class*="flex-row"] > *{
  float: none;
}

[class*="flex-row"].flex-justify{
  justify-content: space-between;
}

[class*="flex-row"].flex-center{
  align-items: center;
}

[class*="flex-row"].flex-bottom{
  align-items: flex-end;
}


.grid{
	display: grid;
}

.grid-3-col{
  display: grid;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.grid-cg-15{
	column-gap: 15px;
}

.grid-col{
	margin-bottom:15px;
}

/* Responsive iframe */

.responsive-iframe{
  position: relative;
  z-index: 1;
  height: 0px;
  padding-bottom: 56.2%;
}

.responsive-iframe > iframe{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.responsive-iframe.fix-size > iframe{
	top: -45%;
	height: 180%!important;
}

address{
	font-style:normal;
}

.mb-only{
	display:none;
}

/* -----------------------------------

  4. Typography

------------------------------------- */

.tiny-text{
	font-size:12px;
	line-height:16px;
}

.small-text{
	font-size:16px;
	line-height:20px;
}

.large-text{
	font-size:22px;
	line-height:32px;
}

.xl-text{
	font-family: 'Smooch Sans', sans-serif;
	font-size:34px;
	line-height: 48px;
}

.xxl-text{
	font-family: 'Smooch Sans', sans-serif;
	font-size:44.5px;
	line-height: 58px;
}

h1,h2,h3,h4,h5,h6,p.heading{
	font-family: 'Smooch Sans', sans-serif;
  /*color: #57668b;*/
  font-weight: 400;
  line-height: 1.3;
}

h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child),
h6:not(:last-child){
  margin-bottom: 15px;
}

h1{
  font-size: 58px;
}

h2{
  font-size: 35px;
}

h3{
  font-size: 21px;
}

h4{
  font-size: 18px;
}

h5{
  font-size: 16px;
}

h6{
  font-size: 14px;
}

p.heading{
	font-size: 46px;
}

p{
  padding: 0;
}

small{
	font-size:70%;
}

#post-content p:not(:last-child){
  margin-bottom: 10px;
}


a{
  margin: 0;
  padding: 0;
  outline: none;
  text-decoration: none;
  background: transparent;
  vertical-align: baseline;
	color:inherit;
}

a, a > *{
  text-decoration: none;
  outline: none !important;
}

a,
button{
  -webkit-transition: all .3s ease;
          transition: all .3s ease;
}

[class^="icon-"]:before, 
[class*="icon-"]:before{
  width: auto;
  margin: 0;
  padding: 0;
}

hr {
    border-color: rgba(97, 114, 138, 0.2);
    border-width: 2px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 27px;
    margin-bottom: 30px;
}

.em{
	font-style:italic;
}

.dark-text,
p.dark-text ,
.dark-text a{
	color: #393839!important;
}

.text-buttons.multi-buttons{
	margin-top:30px;
	margin-left:auto;
	margin-right:auto;
	max-width:500px;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	align-content:space-around;
	justify-content:space-between;
}

/* -----------------------------------

  5. Header

------------------------------------- */

/*#header{
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  max-width:1920px;
	background:transparent;
}*/

#header-top{
	background-color: rgba(255,255,255,1);
	text-align:right;
	font-family:'Roboto', sans-serif;
	font-weight:bold;
	font-size:16px;
	position:relative;
	display:flex;
	flex-direction:row;
	justify-content:flex-end;
	align-items:center;
  transition: transform 200ms linear;
	padding:1px 15px 1px;
	overflow:visible;
}


.simple-header #header-top{
	background-color:#837a18;
}


.home .simple-header #header-top{
	background-color: rgba(255,255,255,0.7);
}



.header-notice{
	font-weight:normal;
	text-align:left;
	flex-grow:1;
}

.header-notice,
.header-contact,
.header-search{
	display:block;
}

.header-notice,
.header-contact,
.header-search,
.search-form{
	line-height:20px;
}
.header-notice,
.header-contact,
.top-navigation{
	margin-right:20px;
}

/*.header-contact img,
.header-search img,
.search-submit img{
	width:20px;
	height:auto;
	vertical-align:middle;
	margin-right:5px;
}*/

.home .simple-header .header-search i,
.header-search i{
	color:#837a18;
}

.simple-header .header-search i{
	color:#fff;
}

.header-search.inactive,
.search-form.inactive{
	display:none;	
}

.search-field{
	width:200px;
	border-radius:3px;
	background-color:#7f322e;
	border:2px solid #eee;
	border-radius:20px;
	padding:2px 10px!important;
	color:#fff;
}

.search-field::placeholder{
	color:#fff;
}

.search-submit{
	background-color:transparent;
	cursor:pointer;
}

#header-bottom{
	padding-left: 15px;
  padding-right: 15px;
	transition:250ms all;
	background-color:rgba(255,255,255,0.7);
}


#header-bottom.mobile-menu-open{
	background-color:rgba(255,255,255,0.9);
}

#header.solid #header-bottom{
		background-color:rgba(250,250,250,1)
}


#header-bottom-inner{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:end;
}

/*#header-bottom.simple-header{
	background-color:rgba(6,24,45,0.95);
}*/

/*#header-bottom.simple-header #header-bottom-inner{
	border-bottom:0;
}*/

/* HEADROOM */
.sticky-header {
	position: fixed;
	top: 0;
	width: 100%;
	max-width:1920px;
	z-index: 100;
	will-change: transform;
	transition: transform 300ms linear;
}

.admin-bar .sticky-header{
    margin-top:32px;
}
.sticky-header.slideDown {
    transform: translateY(0%);
}
.sticky-header.slideUp {
    transform: translateY(-100%);
}

.sticky-header.headroom--not-top.headroom--not-bottom{
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.1);
    /*background-color: rgba(0,15,25,0.95)!important;*/
}

.sticky-header.headroom--not-top #header-bottom-inner{
	border-bottom-color:transparent;	
}

.sticky-header.headroom--not-top #header-top{
	display:none;
}

#logo-wrap{
  position: absolute;
  z-index: 1;
  top: 15px;
}

#logo-wrap a{
	display:block;
}

.logo-img{
	max-height:118px;
	height:auto;
}


#mobile-icons{
	margin-left:auto;
}

/* Main Navigation */
#mobile-menu-icon{
	font-size:24px;
	cursor:pointer;
}

#mobile-menu-icon i{
	color:#871c2f;
}
	
#mobile-menu-icon.is-active i:before {
	content: '\f2d3';
}

#top-navigation ul li{
	display:inline-block;
	text-align:right;
}

#top-navigation ul li:last-child{
	margin-left:20px;
}

#top-navigation ul li a{
	font-size:12px;
}

.simple-header #top-navigation ul li a{
	color:#fff;
}

.home .simple-header #top-navigation ul li a,
.image-header #top-navigation ul li a{
	color:#837a18;
}
	
#vep-menu{
  position: relative;
	/*text-align:right;*/
}

.main-navigation{
  display: inline-block;
  vertical-align: middle;
  /*text-align: left;*/
}

.main-navigation > ul > li{
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin: 0 10px;
  padding: 5px 15px 0;
	font-size:16px;
}

/*.main-navigation > ul > li.current-menu-item,
.main-navigation > ul > li.current-menu-ancestor{
	background-color:#f2f2f2;
}
.main-navigation > ul > li.current-menu-item > a,
.main-navigation > ul > li.current-menu-ancestor > a{
	color: #2F4192;
}*/

.main-navigation > ul > li a{
	font-size:15px;
}

.main-navigation > ul > li > a{
  position: relative;
  text-decoration: none;
	font-weight:bold;
	padding-left:3px;
	padding-right:3px;
}

.main-navigation > li:hover > .sub-menu{
  opacity: 1;
  visibility: visible;
}

.main-navigation > ul > li:hover > a{
	color:#837a18;	
}

.main-navigation > ul > li.active > a,
.main-navigation > ul > li.current-menu-ancestor > a{
	border-bottom:5px solid #837a18;
}

.sub-menu li.current-menu-item > a,
.sub-menu > li > a:hover{
	color: #837a18;
}

/*.main-navigation > ul > li.dropdown > a .holder:after{
	content: '\e811';
	display: inline-block;
	font-family: wb-icons;
	font-size:16px;
	margin: 0 0 0 6px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}*/


.sub-menu .sub-menu.sub-menu-inner{
	left: 100%;
	background: #f2f3f6;
	top: 0;
	margin-left: 4px;
	margin-top: -15px;
}

.sub-menu .sub-menu.sub-menu-inner:before{
	right: 100%;
	left: auto;
	width: 4px;
	top: 0;
	bottom: auto;
	height: 100%;
}

.main-navigation > ul > li:hover > .sub-menu:not(.sub-menu-inner), 
.sub-menu li:hover .sub-menu.sub-menu-inner{
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	opacity: 1;
	visibility: visible;
}




/* ------------------------------------------------------
    
    6. Content Elements
    
------------------------------------------------------ */

#content,#main{
  position: relative;
}

#post-header{
	-webkit-transition: padding 250ms ease;
	-moz-transition: padding 250ms ease;
	-o-transition: padding 250ms ease;
	transition: padding 250ms ease;
}


#post-header.banner{
	position:relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	/*-webkit-clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);	*/
	min-height:400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-wrap: wrap;
	padding-left: 15px;
  padding-right: 15px;
}

#post-header.banner .overlay {
	width: 100%;
	/*height: calc(100% - 90px);*/
	height:100%;
	position: absolute;
	top: 0;
	left: 0;
	/*background-color:rgba(0,0,0,0.3);*/
	/*-webkit-clip-path: polygon(0 0, 100% 0, 100% 89%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 89%, 0 100%);*/
	background:linear-gradient(45deg, RGBA(0,0,0,0.63) 0%,RGBA(0,0,0,0.09) 100%);
}


#post-header.banner #post-header-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 160px 15px 240px;*/
		padding-top:60px;
    position: relative;
		z-index:1;
}

/*#post-header.work-banner{
	position:relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

#post-header.work-banner .overlay {
	width: 100%;
	height: 280px;
	position: absolute;
	top: 0;
	left: 0;
	background-color:#7f322e;
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);	
}*/

#post-header.bg-color-none .overlay,
#post-header.bg-color-none .overlay{
	background-color:transparent!important;
}

/*#post-header.work-banner #post-header-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 160px 15px 20px;
		min-height: 70vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
		position: relative;
}

#post-header.work-banner .overlay-2{
	position:absolute;
	width:100%;
	height:15%;
	bottom:0;
	left:0;
	background:transparent;
	background: linear-gradient(to bottom, transparent 0%, #7f322e 100%);
	opacity:0.75;
}*/


#post-header .post-title {
	font-family: 'Smooch Sans', sans-serif;
	/*font-weight:bold;*/
	font-size: 24px;
	line-height: 1;
	letter-spacing: 1px;
	text-transform:uppercase;
	word-break: break-word;
	display:inline-block;
	padding-bottom:3px;
	align-self: flex-start;
	margin-bottom:0;
}


#post-header .intro{
	font-family: 'Roboto', serif;
	font-size:34px;
	line-height:45px;
	font-weight:500;
}

#post-header.text-only {
	padding-top:160px;
}

#post-header.text-only .post-title{
	color:#000;
	font-size:53px;
}

#breadcrumbs{
	color:#eee;
	font-size:18px;
	margin-top:30px;
}

#breadcrumbs .bc-sep{
	font-size:20px;
	color:#870000;
	margin-left:3px;
	margin-right:3px;
}

.close-popup{
  position: absolute;
  top: 30px;
  right: 30px;
  left: auto;
  color: #49494a;
}

section{
	position:relative;
}

.title-wrap{
	margin-bottom:10px;
}

/*.section-title{
  font-weight: bold;
}

.section-title span,
.gradient-text{
		line-height: 1;
    padding: 0 6px 1px 5px;
    transform: skew(-14deg);
    color: #fff;
    background: linear-gradient(to top, #B00000 0%, #D90000 69%, #FC2323 100%);
    display: inline-block;
    font-weight: 500;
    letter-spacing: 0;
    position: relative;
}

.sub-title{
	font-weight:300;
	color:#06182d;
}*/

/*.cursive{
	font-family: 'Parisienne', cursive!important;
}

.lato{
	font-family: 'Lato', sans-serif;
}*/

.separator{
	border-bottom:1px solid #666666;
}

/*.alt-font{
	font-family: 'Lato', sans-serif;
}*/

/*#post-content{
	padding-right:15px;
	padding-left:15px;
}*/


#post-content ul{
	/*list-style-type:disc;
	list-style-position: outside;*/
  margin-left: 20px;
}

#post-content ul.two-cols{
	columns:2;
}

#post-content section ul li{
	position:relative;
	overflow:visible;
	text-indent: -7px;
  margin-left: 5px;
}

#post-content section ul li:before{
	content:'';
	width:7px;
	height:7px;
	background-color:#afbb22;
	display:inline-block;
	transform:translate(-15px,-2px);
}

input[type=text],
input[type=password],
input[type=email],
input[type=number],
input[type=url],
input[type=tel],
input[type=phone],
input[type=search],
select,
textarea{
	border:1px solid #aaa;
}

/*----------- Buttons --------------*/

.button-wrapper{
	display:block; 
	margin-top: 5px;
  margin-bottom: 5px;
}

.btn{
	position:relative;
	border-width: 1px;
	border-style:solid;
	padding: 12px 16px;
	/*display: inline-block;*/
	font-size:17px;
	line-height:32px;
	font-weight:500;
	display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
	flex-wrap:nowrap;
	min-width:200px;
}

.btn:after{
	content:'\f105';
	font-family: wb-icons;
	font-size:24px;
	margin-left:16px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
}


.btn-style-1{
	border-color:#8a0e04;
	color:#8a0e04;
	background: linear-gradient(to right, #8a0e04 50%, transparent 50%) right bottom/200% 100%;
}



.dark-bg .btn-style-1{
	border-color:#fff;
	color:#fff;
	background: linear-gradient(to right, #ffffff 50%, transparent 50%) right bottom/200% 100%;
}


.dark-bg .btn-style-1:hover{
	color:#8a0e04;
}

.btn-style-2{
	border-color:#837a18;
	color:#fff;
	background: linear-gradient(to right, #5e570d 50%, #837a18 50%) right bottom/200% 100%;
}

.btn-style-1:hover,
.btn-style-2:hover{
  background-position: left bottom;
}

#home-banner div#n2-ss-2 .n2-style-4fd2559c67b9405642a07ddc18c0c71f-heading{
		background: linear-gradient(to right, #ffffff 50%, transparent 50%) right bottom/200% 100%;
	  -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

#home-banner div#n2-ss-2 .n2-style-4fd2559c67b9405642a07ddc18c0c71f-heading:hover{
		color:#8a0e04;
	  background-position: left bottom;
}


/*** CF7 ***/

.wpcf7 label{
	font-weight:bold;
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea{
	width:100%;
	border-radius:5px;
	margin-bottom:30px;
	padding:20px 10px;
	border:2px solid #878787;
	font-size:18px;
}

.wpcf7 input[type=submit]{
	cursor:pointer;
}


.gform_button.button{
	position:relative;
	border-width: 1px;
	border-style:solid;
	padding: 12px 16px;
	display: inline-block;
	font-size:17px;
	line-height:32px;
	font-weight:500;
	border-color:#837a18;
	background-color:#837a18;
	color:#fff;
	letter-spacing:1.25px;
	cursor:pointer;
}

/*----------- Table --------------*/

.wb-table{
	font-size:16px;
	font-weight:normal;
}

.wb-table tr th,
.wb-table tr td{
	padding:3px;
}

.wb-table tr th{
	text-align:left;
	font-weight:normal;
	text-transform:uppercase;
	letter-spacing:3px;
	padding-bottom:10px;
	font-size:18px;
}

.wb-table{
	width:100%;
}

.wb-table tbody tr{
	border-top:1px solid #fff;
	margin-bottom:20px;
}

.wb-table tbody tr:not(:last-child) td{
	height:80px;
	vertical-align:top;
}


/*** 

====================================================================
	HOME
====================================================================

***/

/*#home-banner{
	min-height:80vh;
	max-height:700px;
	padding: 200px 0 100px;
	position: relative;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center top;
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 50% 100%, 0 95%);
	clip-path: polygon(0% 0%, 100% 0%, 100% 95%, 50% 100%, 0 95%);
}

#home-banner .overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
	overflow:hidden;
}

#hb-content{
	position:relative;
	max-width:1100px;
	padding-left:15px;
	padding-right:15px;
	z-index:1;
	height:100%;
	margin:0 auto;
	display:flex;
	flex-direction:column;
	flex-wrap:nowrap;
	justify-content:center;
	align-items:flex-end;
}

#hb-content p{
	font-family: 'Calluna', serif;
	font-size:36px;
	font-weight:bold;
	line-height:52px;
	margin-bottom:30px;
}*/

/*** 

====================================================================
	CONTENT / SECTIONS / GENERAL
====================================================================

***/

#post-content section{
	position:relative;
}

/*#post-content section > .row{
	padding-top:30px;
	padding-bottom:30px;
}*/

.section-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: transparent;
}


/*** Image Slider ***/
#post-content section.image-slider .row{
	padding-top:0;
}

.img_overlay{
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
}

.img_overlay.parallax{
	background-attachment: scroll;
}

/*** 

====================================================================
	TESTIMONIAL SLIDER
====================================================================

***/


#tt-slider{
	min-height:100%;
	padding-bottom:80px;
}

.tt-left-col{
	width:100%;
}

.tt-right-col{
	width:100%;
	padding:30px 15px 0 20px;
	position:relative;
}

#tt-slider .tt-box{
	/*max-height:380px;*/
	overflow:hidden;
}

#tt-slider .tt-box .tt-content{
	font-family:'Roboto', sans-serif;
	font-weight: bold;
	font-size:26px;
	line-height:1.4;
	margin-bottom:20px;
	/*max-height:300px;*/
	text-overflow:ellipsis;
}

#tt-slider .tt-box .tt-name{
	font-size:22px;
	font-family:'Roboto', sans-serif;
	font-weight:bold;
	color:#999632;
}


#tt-slider.owl-theme .owl-dots{
	position: absolute;
  bottom: -10px;
	height:auto;
}

#tt-slider.owl-theme .owl-dots .owl-dot span,
#tt-slider.owl-theme .owl-dots .owl-dot span{
	border-radius:0;
	border:1px solid #999632;
	background: transparent;
	width: 12px;
  height: 12px;
  margin: 3px 4px;
}

#tt-slider.owl-theme .owl-dots .owl-dot.active span,
#tt-slider.owl-theme .owl-dots .owl-dot:hover span{
	background: #999632;
}

#tt-slider.owl-theme .owl-nav{
	position:absolute;
	bottom:-10px;
	right:0;
	height:auto;
}

#tt-quotes{
  position: absolute;
  transform: translate(-15px,-80px);
}


/*** 

====================================================================
	CONTACT SHORTCODE
====================================================================

***/
.gform_title,
.gform_required_legend{
	display:none;
}


/*** 

====================================================================
	MAP / ADDRESSES
====================================================================

***/

.map-address-block{
	padding-bottom:30px;
}

.map-address-block > .row.default-width{
	max-width:1170px;
}

.map-address-block > .row > .col{
	padding-bottom:0;
}

#map-grid-1{
	display:grid;
	grid-template-columns: repeat(3, 1fr);
}

#map-grid-2{
		display:grid;
		grid-template-columns: repeat(1, 1fr);
}

#map-grid-1 .cell-1{
	padding-left:10px;
}

#map-grid-1 .cell-2{
	grid-row-start: 1;
	grid-row-end: span 2;
	overflow:visible;
	margin-top: -60px;
}

#map-image-wrap{
  position: relative;
}

#map-image{
  position: relative;
}

#map-image-grid-overlay{
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.addresses-title{
	font-weight:bold;
	font-size:21px;
}

#map-grid-ph .addresses-title{
	padding-left:10px;
	margin-top:10px;
}

#map-grid-2{
	column-gap:10px;
}

#map-grid-2 img{
	width:100%;
	height:auto;
}

#map-image-grid-overlay{
	display:grid;
	grid-template-columns: repeat(60, 1fr);
  grid-template-rows: repeat(30, 1fr);
	z-index:1;
}

#map-image-grid-overlay:after {
    display:none;
}

.map-point{
	background-color: #8a0e04;
	border-radius:50%;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  transform: scale(1.1);
	height:85%;
	cursor:pointer;
	transition: all .3s ease-out;
	background-clip: padding-box;
}

.map-point:hover{
  transform: scale(1.5);
  border: 2px solid rgba(138,14,4,0.6);
	
}

.office-address-wrap{
	padding:20px 20px 20px 10px;
	transition: all .3s ease-out;
}

.office-address-wrap.active,
.office-address-wrap.clicked{
	background-color:rgba(175,187,34,0.5);
}

.office-address-wrap span{
	display:block;
	line-height:1.6;
}

.office-name{
	font-weight:500;
}

.office-directions{
	color:#989532;
}



/*** 

====================================================================
	CAREERS
====================================================================

***/

.sc-locations{
	margin-bottom:60px;
}

.sc-tabs{
	display:flex;
	flex-direction:row;
	justify-content:flex-start;
	flex-wrap:wrap;
	border-bottom:1px dashed #444;
}

.sc-tab{
	padding:20px;font-family: 'Smooch Sans',sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #afbb22;
  padding-bottom: 10px;
  transform: translateY(2px);
  cursor: pointer;
}

.sc-tab:first-child{
	margin-right:20px;
}

.sc-tab.active{
	border-bottom:3px solid #989532;
}

#sc-overview-section .career-block{
	margin-bottom:40px;
}

#sc-apply-section{
	display:none;
}

#sc-apply-section .gform_title,
#sc-apply-section .gform_description{
	display:none;
}

#sc-disclaimer a{
	text-decoration:underline;
}

#sc-disclaimer a:hover{
	color:#837a18;
}

.show-for-professionals{
	display:none;
}


/*** 

====================================================================
	PAGE GRID
====================================================================

***/

.pg-wrap{
	display:grid;
	grid-template-columns:repeat(1, 1fr);
	grid-column-gap:30px;
	grid-row-gap:30px;
	margin-top:60px;
}

.pg-grid-item{
	display:block;
	position:relative;
}

.pg-overlay{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	transition: all .3s ease-out;
}

.pg-overlay a{
	font-family: 'Roboto',sans-serif;
  font-weight: bold;
  font-size: 23px;
  color: #fff;
	position: relative;
  justify-content: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
}

.pg-grid-item .pg-overlay{
		background-color:rgba(0,0,0,0.3);
}

.pg-grid-item:hover .pg-overlay{
	background-color:rgba(138,14,4,0.9);
}


/*** 

====================================================================
	MARKET GRID
====================================================================

***/

.mkg-wrap{
	display:grid;
	grid-template-columns:repeat(1, 1fr);
	margin-top:30px;
}

.mkg-grid-item{
	display:block;
	position:relative;
}

.mkg-overlay{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	transition: all .3s ease-out;
}

.mkg-overlay a{
	font-family: 'Roboto',sans-serif;
  font-weight: bold;
  font-size: 30px;
	line-height:42px;
  color: #fff;
	position: relative;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
	text-align:center;
}

.mkg-grid-item .mkg-overlay{
		background-color:rgba(0,0,0,0.3);
}

.mkg-grid-item:hover .mkg-overlay{
	background-color:rgba(138,14,4,0.9);
}

.mkg-grid-item .mkg-title,
.mkg-grid-item .mkg-subtitle{
	display:block;
}

.mkg-grid-item .mkg-title{
	font-size:43px;
	font-weight:500;
}

.mkg-grid-item .mkg-subtitle{
	font-family: 'Smooch Sans', sans-serif;
	font-size:24px;
	font-weight:400;
	margin-top:10px;
	text-transform:uppercase;
}

/*** 

====================================================================
	MARKET TABS (EXPERTISE)
====================================================================

***/

.market-tabs .col-full{
	padding-top:0;
	padding-left:0;
	padding-right:0;
}

.market-tabs .title-wrap{
	background-color:#fff;
	margin-bottom:0;
}

.market-tabs .title-wrap .heading{
	max-width:1250px;
	padding:30px 15px;
	margin:0 auto;
}

.mt-wrap{
	background-color:#fff;
}

.mt-wrap .main-tabs{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-around;
	align-items:center;
	max-width:1250px;
	margin:0 auto;
}

.mt-wrap .main-tabs .mt-tab{
	font-size:16px;
	font-weight:bold;
	letter-spacing:2px;
	color:#6b6969;
	padding:5px 10px;
	cursor:pointer;
	display: flex;
  flex-direction: column;
  justify-content: center;
}

.mt-wrap .main-tabs .mt-tab.active{
	background-color:#f3f2ee;
}

.mt-tab-wraps{
	max-width:1100px;
	margin:0 auto;
}

.mt-tab-wraps .mt-tab-wrap{
	background-color:#f3f2ee;
	display:none;
}

.mt-tab-wraps .mt-tab-wrap.active{
	display:block;
}


.mt-tab-wraps .subtabs-wrap{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-around;
	align-items:center;
	max-width:1000px;
	margin:0 auto;
	padding-bottom:30px;
	padding-top:30px;
}

.mt-tab-wraps .subtabs-wrap .subtab{
	font-size:14px;
	font-weight:normal;
	color:#989532;
	padding:5px 0 0;
	margin-left:5px;
	margin-right:5px;
	margin-bottom:5px;
	cursor:pointer;
}

.mt-tab-wraps .subtabs-wrap .subtab.active{
	border-bottom:3px solid #989532;
	font-weight:bold;
}

.subtab-content{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	position:relative;
}

.subtab-content .sub-left,
.subtab-content .sub-right{
	width:100%;
}

.subtab-content .sub-right{
	padding:30px 15px;
	display:flex;
	flex-direction:column;
	align-items: flex-start;
}

.subtab-content .sub-right .mt-content{
	flex-grow:1;
}


/*** 

====================================================================
	CTA 2 - Image left / text right
====================================================================

***/

.cta-1{
	overflow:visible;
	padding-top:20px;
	padding-bottom:20px;
}

.cta-1-image{
	margin-top:-100px;
}

.cta-1-content p.heading{
	font-size:32px;
}


.cta-1-buttons{
	margin-top:30px;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	align-content:flex-start;
	justify-content:space-between;
}

.cta-1-buttons a{
	min-width:auto;
	font-size:17px;
}

/*** 

====================================================================
	CTA 2 - Text left / buttons right
====================================================================

***/

.cta-2{
	padding-top:100px;
	padding-bottom:100px;
}

#post-content > section.cta-2 .row .col.cta-2-content {
	padding-top:10px;
	padding-bottom:20px;
	padding-right:0;
}

#post-content > section.cta-2 .row .col.cta-2-content{
	padding-left:20px;
	border-left:20px solid #837a18;
}

.cta-2 .text-content{
	line-height:2;
}

.cta-2-buttons{
	display:flex;
	flex-direction:column;
	flex-wrap:wrap;
	align-content:space-around;
	justify-content:center;
}

.cta-2-buttons a{
	width:100%;
}

.cta-2-buttons > .button-wrapper:not(:first-child){
	margin-top:20px;
}

.cta-2-buttons.multi-buttons{
	justify-content:flex-end;
}
	.cta-2 p.heading{
		font-size:42px;
	}

	.cta-2 .text-content p{
		font-size:18px;
	}


/*.cta-2 .col-two-third{
	width:67%;
}*/

/*** 

====================================================================
	CTA 3 - Image left / text right
====================================================================

***/

.cta-3-content{
	padding:45px 55px 45px 25px;
	margin-right:-40px;
	position:relative;
	overflow:visible;
}

.cta-3-content:after{
	content:'';
	background-color:#a99e4e;
	position:absolute;
	width:90px;
	height:90px;
	top:-24px;
	right:-24px;
	z-index:-1;
}
	

.cta-3-menu{
	padding:25px 20px 25px;
}

.cta-3 .row .col-one-third,
.cta-3 .row .col-two-third{
	padding:0;
}

.cta-3 .row .col-two-third{
	width:100%;
}

.cta-3 .row .col-one-third{
	width:100%;
}

.cta-3-content p.heading{
	font-size:28px;
}

.cta-3-content .text-content{
	max-width:500px;
}

.cta-3-buttons{
	margin-top:40px;
}

.cta-3-menu{
	height:100%;
	display:flex;
	flex-direction:column;
	justify-content:space-between;
}

.cta-3-mi-wrap{
	display:block;
}

.cta-3-mi-wrap:not(:last-child){
	border-bottom:2px solid #afbb22;
}

.cta-3-menu a{
	display:block;
	font-size:20px;
	text-transform:uppercase;
	padding-top:10px;
	padding-bottom:10px;
}
	
	

/*** 

====================================================================
	CTA 4 - Text left / image right
====================================================================

***/

.cta-4-content{
	padding:55px 25px;
	position:relative;
	overflow:visible;
}


.cta-4 .row .col-one-third,
.cta-4 .row .col-two-third{
	padding:0;
}

.cta-4 .row .col-two-third{
	width:94%;
}

.cta-4 .row .col-one-third{
	width:96%;
}

.cta-4-content p.heading{
	font-size:28px;
}

.cta-4-content .text-content{
	max-width:500px;
}

.cta-4-buttons{
	margin-top:40px;
}

.cta-4-image:after{
	content:'';
	background-color:#a99e4e;
	position:absolute;
	width:90px;
	height:90px;
	top:-24px;
	right:-24px;
	z-index:-1;
}
	

/*** 

====================================================================
	RECRUITING SCHEDULE / CAREER FAIR
====================================================================

***/

.rs-table{
	border-top:1px solid #e0dedd;
	margin-top:40px;
}

.rs-table .rs-row{
	padding-top:20px;
	padding-bottom:20px;
	border-bottom:1px solid #e0dedd;
}

.rs-row{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	padding-left:5px;
	padding-right:5px;
}
.rs-date{
	margin-bottom:10px;
}
.rs-date,
.rs-content{
	width:100%;
}
.rs-date{
	font-size:21px;
	font-weight:bold;
}
.rs-content{
	font-size:16px;
}

/*** 

====================================================================
	CAREER OPPORTUNITIES
====================================================================

***/

#careers-filter-wrap{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
}

#careers-filter-wrap label{
	font-family: 'Smooch Sans', sans-serif;
	font-size:24px;
	display:block;
}

.select_box{
  width: 200px;
  overflow: hidden;
  border: 1px solid #000;
  position: relative;
  padding: 10px 0;
}

#careers-filter-wrap select{
	min-width:300px;	
	padding:5px;
	font-size:18px;
	border:1px solid #898989;
	position:relative;
	overflow:hidden;
	background: none;
}

#careers-table{
	margin-top:60px;
}


#ct-head,.career-row{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
}

.cth-left-col,.cth-right-col{
	width:50%;
	font-family: 'Smooch Sans', sans-serif;
	font-size:32px;
	text-transform:uppercase;
	padding:20px 30px;
}

.ctr-left-col,.ctr-right-col{
	width:100%;
	padding:5px 0 5px;
}

.ct-title{
	font-family: 'Roboto', sans-serif;
	font-weight:bold;
	font-size: 30px;
	margin-bottom:0!important;
}

.ct-learnmore{
	display:block;
	text-align:right;
	color:#999632;
}

.ct-learnmore i{
	font-size:24px;
  transform: translateY(2px);
  display: inline-block;
	margin-left:5px;
}

.career-row.hidden{
	display:none;
}

#no-careers{
	margin-top:20px;
	display:none;
}

/*** 

====================================================================
	FLIP GRID
====================================================================

***/

.fg-wrap{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
}

.fg-item{
	position:relative;
	width:100%;
	text-align:center;
	min-height:360px;
	perspective: 1000px;
}

/*.fg-content{
	display:none;
}*/
	

.fg-title{
	font-family:'Smooch Sans', sans-serif;
	font-size:24px;
	text-transform:uppercase;
	margin-bottom:20px;
}

.fg-nav{
	text-align:right;
	position:absolute;
	bottom:30px;
	right:30px;
	margin-top:0;
}

.fg-img{
	padding-top:10px;
}

/*.fg-item.active{
	background-color:#f3f2ed;
}

.fg-item.active .fg-img{
	display:none;
}

.fg-item.active .fg-content{
	display:block;
}*/

/*.fg-item.active .fg-title{
	margin-bottom:20px;
}*/

.fg-item.active .fg-inner {
  transform: rotateY(180deg);
}

.fg-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.fg-front, .fg-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
	padding:30px 10px;
}

.fg-back{
	background-color:#f3f2ed;
	transform: rotateY(180deg);
}


/*** 

====================================================================
	HISTORY TIMELINE
====================================================================

***/

.history-timeline .col-full{
	padding-left:0;
	padding-right:0;
}



#year-bar{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-around;
	margin:30px auto 20px;
	border-bottom:1px dashed #444444;
	overflow:visible;
	position:relative;
	max-width:1080px;
}

.tl-year{
	font-family:'Smooch Sans',sans-serif;
	font-size:32px;
	font-weight:400;
	color:#afbb22;
	padding-bottom:10px;
	transform:translateY(2px);
	cursor:pointer;
}

.tl-year.active{
	border-bottom:3px solid #989532;
}

#tl-wrap{
	min-height:450px;
}

#tl-wrap-inner{
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items:center;
}

#tl-left{
	width: 100%;
  padding-top: 60px;
  padding-bottom: 40px;
  padding-right: 15px;
	padding-left:15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
}

#tl-right{
	width:100%;
}

#tl-wrap-inner{
	max-width:1080px;
	margin:0 auto;
}

.tl-item{
	display:none;
}

.tl-item.active{
	display:block;
}

.tl-title{
	font-family:'Smooch Sans',sans-serif;
	font-weight:normal;
	font-size:24px;
	margin-bottom:20px;
}

.tl-content{
	font-size:16px;
}

#tl-img{
	text-align:right;
}

#tl-img img{
	max-height:450px;
}

.tl-nav{
	margin-top:50px;
}

.tl-nav .arrow-left{
	border-left-width:1px;
}

.tl-nav .arrow-right{
	border-right-width:1px;
}

/*** 

====================================================================
	NAV
====================================================================

***/

.wb-nav,
.owl-theme .owl-nav{
	border-top:1px solid #000;
	border-bottom:1px solid #000;
	border-right:1px solid #000;
	display:inline-block;
}

	
.wb-nav .nav-arrow,
.owl-theme .owl-nav .nav-arrow{
	cursor:pointer;
	display: inline-block;
	font-family: wb-icons;
	font-size:30px;
	vertical-align: top;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	transform: rotate(0);
	color: inherit;
	position: relative;
	background: transparent;
	height: auto;
	width: auto;
	right: auto;
	line-height: inherit;
	color:#afbb22;
	padding:8px 16px 9px;
}

.wb-nav .arrow-left,
.owl-theme .owl-nav .nav-arrow.arrow-left{
	padding-left:17px;
}


.wb-nav .arrow-left:before,
.owl-theme .owl-nav .nav-arrow.arrow-left:before{
	content: '';
	width:1px;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	background-color:#000;
}

.wb-nav .arrow-right:before,
.owl-theme .owl-nav .nav-arrow.arrow-right:before{
	content: '';
	width:1px;
	height:100%;
	position:absolute;
	left:0;
	top:0;
	background-color:#000;
}

.wb-nav .arrow-right,
.owl-theme .owl-nav .nav-arrow.arrow-right{
	/*transform:translateX(-1px);*/
	padding-left:19px;
}

.owl-theme .owl-nav .nav-arrow.arrow-left,
.owl-theme .owl-nav .nav-arrow.arrow-right{
	margin-top:-8px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev{
	margin:0;
}


/*** 

====================================================================
	BLOG
====================================================================

***/

#post-grid{
	position:relative;
	display:grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap:10px;
	padding-bottom:20px;
}

.post-box{
	position:relative;
	padding:15px;
}

/*.post-box-2:hover .pb-inner{
	opacity:1;
}*/

.post-box .pb-name,
.post-box-2 .pb-name{
	font-family:'Roboto', sans-serif;
	font-weight:bold;
	margin-top:10px;
	margin-bottom:0;
}

.pb-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pb-image a{
	display:block;
}

/*.pb-inner{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
}*/

.pb-inner .pb-excerpt{
	font-weight:300;
	letter-spacing:0.5px;
	/*flex-grow:1;*/
	margin-top:10px;
}


.pb-readmore{
	text-align:right;
}

.pb-readmore a{
	color:#afbb22;
}

.pb-readmore a i{
	transform: translateY(2px);
  display: inline-block;
  font-size:24px;
	margin-left:8px;
}

.single-post .entry-meta{
	margin: 40px 0 15px;
	line-height: 1;
	clear: both;
	color:#666;
	font-size:17px;
}

.single-post .post-image{
	margin-bottom:30px;
}


.single-post #post-header.text-only .post-title{
	text-transform:none;
}

.wp-pagenavi{
	text-align:right;
	margin-bottom:30px;
}

#pagination-row{
	border-top:1px solid #6b6969;
	margin-top:30px;
}

#pagination-row .col{
	padding-left:15px;
	padding-right:15px;
	padding-bottom:0;
	padding-top:10px;
}

.wp-pagenavi .page,
.wp-pagenavi .current{
  margin-left: 10px;
	margin-right:10px;
	padding-left:2px;
	padding-right:2px;
}

.wp-pagenavi .current{
	opacity:0.6;
}

.wp-pagenavi > a:hover {
  /*background-color: #7f322e;*/
  color: #afbb22;
}

#article-nav .post-link{
	color:#afbb22;
}

#article-nav .post-link i{
	display: inline-block;
  font-size: 24px;
	transform: translateY(2px);
}

#article-nav .post-link.post-prev i{
	margin-right:8px;
}

#article-nav .post-link.post-next i{
	margin-left:8px;
}

#news-sidebar{
	padding:15px;
}

#news-sidebar .widget-title{
	display:none;
}

#news-sidebar .widget label{
	font-family:'Smooch Sans',sans-serif;
	font-size:24px;
	margin-right:15px;
}


#related-posts{
	margin-top:60px;
}

#related-posts .heading{
	font-size:53px;
}

.post-grid-rp{
	display: grid;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 20px;
	grid-row-gap:30px;
	padding-bottom:30px;
}

.rp-grid-item{
  display: block;
  position: relative;
}

.rp-overlay{
	position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all .3s ease-out;
	background-color: rgba(0,0,0,0.3);
}

.rp-overlay{
	padding:20px;
}

.rp-overlay a{
  font-family: 'Roboto',sans-serif;
  font-weight: bold;
  font-size: 23px;
  color: #fff;
  position: relative;
  justify-content: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  height: 100%;
}

.rp-grid-item:hover .rp-overlay {
  background-color: rgba(138,14,4,0.9);
	opacity:1;
}

  /*----------- Video --------------*/

.video-list .video-box:not(:last-child){
	margin-bottom:40px;
	padding-bottom:40px;
	border-bottom:1px solid #aaa;
}

.video-list .video-content{
	font-size:18px;
	line-height:26px;
}

.video-list .video-title{
  margin-bottom:30px;
}

.single-video #post-content .lyte-wrapper{
  margin-top:40px!important;
}
.lyte-wrapper{
    border: 3px solid #666;
}

.lyte-wrapper:hover{
    border: 3px solid #ff7d00;
}

.video-box{
    text-align:center;

    margin-bottom:40px;
}

.video-box .video-player{
    margin-left:auto;
    margin-right:auto;
}

.wp-video{
    text-align:center;
    margin-left:auto;
    margin-right:auto;
}


/* -----------------------------------

 Social

------------------------------------- */

.social-icons{
	list-style-type:none;
}


.social-icons > li{
	display: inline-block;
	margin-left:5px;
	margin-right:5px;
}

/*.share_buttons{
	position:absolute;
}

.share_buttons > span{
	display:block;
	margin-bottom:10px;
}

.share_buttons > span > a,*/
.social-icons > li > a{
	display: block;
	width: 48px;
	height: 48px;
	/*border-radius: 50%;*/
	text-align: center;
	font-size: 24px;
	line-height:48px;
	color:#444;
}

/*.social-icons > li > a{
	color: #fff;
	border: 1px solid #fff;
}*/

/*.social-icons > li > a:hover{
	background: #f78f1f;
	border-color: #f78f1f;
	color:#fff;
}*/

/*.share_buttons > span > a{
	color:#61728a;
	border: 2px solid rgba(97, 114, 138, 0.4)
}

.share_buttons > span > a.icon-paper-plane:hover{
	color:#fff;
	background:#08c;
	border-color:#08c;
}

.share_buttons > span > a.icon-facebook:hover{
	color:#fff;
	background:#3b5998;
	border-color:#3b5998;
}

.share_buttons > span > a.icon-twitter:hover{
	color:#fff;
	background:#55acee;
	border-color:#55acee;
}*/

/* -----------------------------------

  Back to top

------------------------------------- */

#btt-wrap{
	width:100%;
	position:relative;
	height:20px;
}

#btt{
	cursor: pointer;
	width: 50px;
	height: 50px;
	padding: 10px;
	background-color: #7f322e;
	text-align: center;
	position: absolute;
	bottom:0;
	right:0;
}

#btt i{
	color:#fff;
}

#post-content section.cta1 + #btt-wrap{
	height:auto;
}


/* -----------------------------------

  Footer

------------------------------------- */



#footer{
	position:relative;
	background-position:center center;
	background-size:cover;
	background-repeat:no-repeat;
}

#footer a:hover{
	color:#837a18;
}

#footer .row{
	z-index:1;
	width:100%;
}

.footer-main{
	position:relative;
	padding-top:60px;
	padding-bottom:90px;
}

#footer .row > div{
	margin-top:30px;
}


/*#footer-main-overlay{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,15,35,0.5);
	z-index:0;
}*/

.footer-main .widget-title{
	font-family: 'Roboto', sans-serif;
	font-weight:bold;
	font-size:18px;
	line-height:24px;
	margin-bottom:20px;
}

.footer-main .menu > li{
	margin-bottom:10px;
}

.footer-main .menu > li a{
	color:#444;
}

.footer-col{
	padding-left:15px;
	padding-right:15px;
}

.footer-last{
	position:relative;

}

.footer-last .row{
	padding-top:20px;
	padding-bottom:20px;
	border-top:1px solid #444444;
}

#footer .social-icons{
	margin:0 5px 5px;
}

.footer-logo{
	text-align:left;
	max-height:50px;
}

#footer .menu > li > a{
	font-size:16px;
}

#footer .widget_footer_contact .office-address{
	font-size:16px;	
}

.copyright-text,
.disclaimer{
	font-size:15px;
	line-height:18px;
	color:#6b6969;
	max-width:1100px;
	margin:0 auto;
	padding-left:15px;
	padding-right:15px;
}

/* -----------------------------------

  Extras

------------------------------------- */


.no-margin,
.wpb_content_element .no-margin{
	margin-bottom:0!important;
}

.responsive-map{
	overflow:hidden;
	padding-bottom:56.25%;
	position:relative;
	height:0;
	margin-top:40px;
}
.responsive-map iframe{
	left:0;
	top:0;
	height:100%;
	width:100%;
	position:absolute;
}

#mapSelector{
	cursor:pointer;
	text-decoration:underline;
}

.sitemap-section > .pagenav{
	list-style:none;
}


.blue-bg{
	background-color:#F7FAFD;
}

.dblue-bg{
	background-color:#222D6F;	
}

.red-bg{
	background-color:#8a0e04;
}
	
.mustard-bg{
	background-color:#837a18;
}

.beige-bg{
	background-color:#f3f2ee;
}

.gray-bg{
	background-color:#1A1A1A;
}

.d-gray-bg{
	background-color:#c8c8c8;
}

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


.dark-bg,
.dark-bg a,
.dark-bg p,
.dark-bg h1,
.dark-bg h2,
.dark-bg h3,
.dark-bg h4,
.dark-bg h5,
.dark-bg h6,
.dark-bg .section-title,
.dark-bg .simple-heading,
.dark-bg .heading,
.dark-bg .widget-title{
	color:#fff;
}


/*temporary*/
.red-bg-row .row{
	background-color:#8a0e04;
}

.large-text .text-content p{
	font-size:18px;
	line-height:36px;
}

.bg-contain{
	background-size:contain!important;
	background-position:right center!important;
}

#post-content .gform_wrapper .gform_validation_errors > h2{
	font-size:23.2px;
	line-height:27.6px;
}


#post-content .gform_wrapper .gfield_validation_message,
#post-content .gform_wrapper .validation_message{
	font-size:13px;
	padding:1px 10px!important;
}



/* -----------------------------------

  Opportunities

------------------------------------- */

.opportunities-block .job-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.opportunities-block #custom-job-listings {
	width: 100%;
	max-width: 700px;
}

.opportunities-block #custom-job-listings>div:last-child {
	border-bottom: 0;
}

.opportunities-block .job-location-block {
	border-bottom: 1px solid #c1c1c1;
	padding: 10px 0;
}

.opportunities-block .job-location-header {
	font-weight: 600;
	color: #813230;
	font-size: 17px;
	margin-bottom: 0px !important;
}

.opportunities-block .job-row a {
	color: #837A18;
}

.opportunities-block .job-title {
	margin-bottom: 5px !important;
}

.opportunities-block .job-location {
	font-size: 90%;
	line-height: 1.5;
}

.opportunities-block .location-filter-dropdown #location-filter {
	font-size: 16px;
	padding: 5px;
	padding-right: 29px;
	border: 1px solid #823230;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: url('/wp-content/uploads/2025/05/down-arrow.png') no-repeat 98% center;
	background-size: 12px;
	color: #444;
	font-family: "Roboto", sans-serif;
	width: 100%;
}

.opportunities-block .location-filter-container {
	margin-bottom: 1rem;
}

.opportunities-block .location-filter-container p {
	margin: 0 !important;
	font-weight: 600;
}

.opportunities-block #custom-job-listings-wrapper {
	margin-top: 1rem;
	scroll-margin-top: 180px;
}

.opportunities-block .location-filter-container {
	margin-bottom: 1rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	grid-gap: 2rem;
}

.opportunities-block #location-search {
	font-size: 16px;
	padding: 5px;
	border: 1px solid #823230;
	width: 100%;
}

.opportunities-block #location-search:placeholder {
	font-size: 16px;
	color: #444;
	font-family: "Roboto", sans-serif;
}

.opportunities-block .filter-by-location {
	background-color: #837a18;
	color: #ffffff;
	padding: 5px 10px;
	margin-top: 10px;
	cursor: pointer;
}

.opportunities-block .filter-by-location:hover {
	background-color: #5e570d;
}

.opportunities-block .info-window-job-location {
	font-size: 16px;
}

.opportunities-block .gm-style-iw-chr {
	height: 18px;
}

.opportunities-block .gm-style-iw-chr button {
	width: 23px !important;
	height: 29px !important;
}

.opportunities-block .gm-style-iw-chr button span {
	width: 20px !important;
	height: 20px !important;
	margin: 0px !important;
}

.opportunities-block .location-filter-dropdown {
	width: 30%;
	margin-top: 2rem;
}