@charset "UTF-8";
/*
Theme Name: Premiere Staffing Services, Inc.
Theme URI: http://cdevision.com/
Author: cdeVision
Author URI: http://cdevision.com/
Description: Custom theme for Premiere Staffing Services, Inc.
Version: 5.5
License: No copy or resale
License URI: http://cdevision.com/
Text Domain: Premiere Staffing Services, Inc.
Tags: 
*/
/*	
    --------------------------------------------------
    CSS RESET 
	--------------------------------------------------
*/
/*
  1. Use a more-intuitive box-sizing model.
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

/*
  3. Allow percentage-based heights in the application
*/
html, body {
  height: 100%;
}

/*
  Typographic tweaks!
  4. Add accessible line-height
  5. Improve text rendering
*/
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/*
  Added
*/
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/*
  6. Improve media defaults
*/
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/*
  7. Remove built-in form typography styles - Used * above instead

input, button, textarea, select {
  font: inherit;
}
*/
/*
  8. Avoid text overflows
*/
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*	
    --------------------------------------------------
    Body
	--------------------------------------------------
*/
body {
  background: #FFF;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

#skipnav {
  display: none;
}

/*	
    --------------------------------------------------
   	Grid
	-------------------------------------------------- 
*/
.container {
  max-width: 1270px;
  padding: 0 20px;
  margin: 0 auto;
}

.wsidebar .container {
  max-width: 100%;
  padding: 0;
}

.main-content-inner {
  display: grid;
  max-width: 100%;
  grid-template-columns: minmax(20px, 1fr) minmax(50px, 410px) minmax(50px, 410px) minmax(50px, 410px) minmax(20px, 1fr);
}

.fullscreen {
  grid-column: 1/6;
}

.fullwidth {
  grid-column: 2/5;
}

.twothirds {
  grid-column: 3/5;
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.col {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0px;
}

.col.sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 570px;
          flex: 0 0 570px;
}

@media (max-width: 1270px) {
  .col.sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
/* tablet */
@media (max-width: 1000px) {
  .main-content-inner {
    grid-template-columns: 20px minmax(50px, 1fr) minmax(50px, 1fr) minmax(50px, 1fr) 20px;
  }
  .columns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .columns.four {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 20px;
  }
  .col.sidebar {
    max-width: 100%;
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
  }
  .columns.revmob {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
/* small Mobile */
@media (max-width: 650px) {
  .container {
    max-width: 100%;
  }
  .columns,
.columns.four {
    display: block;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
    gap: 0;
  }
  .columns .col,
.col.sidebar {
    max-width: 100% !important;
    width: 100% !important;
    margin-right: 0;
    margin-left: 0;
    padding: 0;
  }
  .col.sidebar {
    margin-top: 50px;
  }
}
/*	
  ----------------------------------------------------------------
  Base - Typography and other classes - included into TinyMCE
	----------------------------------------------------------------
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  margin: 20px 0 6px 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-wrap: balance;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
}

h1.center,
h2.center,
h3.center,
h4.center,
h5.center,
h6.center {
  text-align: center;
}

h1,
.h1 {
  font-size: 45px;
  line-height: 55px;
  color: #333;
  font-weight: 700;
  margin: 20px 0 6px 0;
}

h2,
.h2 {
  font-size: 36px;
  line-height: 46px;
  color: #333;
  font-weight: 700;
  margin: 20px 0 6px 0;
}

h3,
.h3 {
  font-size: 30px;
  line-height: 40px;
  color: #333;
  font-weight: 700;
  margin: 20px 0 6px 0;
}

h4,
.h4 {
  font-size: 24px;
  line-height: 34px;
  color: #333;
  font-weight: 700;
  margin: 20px 0 6px 0;
}

h5,
h6 {
  font-size: 24px;
  line-height: 34px;
  color: #333;
  font-weight: 700;
  margin: 20px 0 6px 0;
}

/* Mobile */
@media (max-width: 767px) {
  h1,
.h1 {
    font-size: 39px;
    line-height: 49px;
  }
  h2,
.h2 {
    font-size: 30px;
    line-height: 40px;
  }
  h3,
.h3 {
    font-size: 24px;
    line-height: 34px;
  }
  h4,
.h4 {
    font-size: 20px;
    line-height: 30px;
  }
  h5,
h6 {
    font-size: 20px;
    line-height: 30px;
  }
  h1 br,
h2 br,
h3 br,
h4 br,
h5 br,
h6 br {
    display: none;
  }
}
p {
  font-size: 18px;
  line-height: 1.6;
  color: #444;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  font-weight: normal;
  margin: 0 0 24px 0;
}

p.smallmargin {
  margin: 0 0 10px 0;
}

p img {
  margin: 0;
}

em,
i {
  font-style: italic;
  line-height: inherit;
}

strong,
b {
  font-weight: bold;
  line-height: inherit;
}

small {
  font-size: 60%;
  line-height: inherit;
}

ul {
  margin: 0 0 24px 24px;
  padding: 0;
}

ul li {
  margin: 0 0 10px 0;
  padding: 0;
  list-style: url(images/bullet.png); /* Also change .white-text Helper Class in _misc.scss */
}

ul ul {
  margin: 10px 0 10px 60px;
  padding: 0;
}

ol {
  margin: 0 0 24px 20px;
  padding: 0;
}

ol li {
  margin: 0 0 12px 0;
  padding: 0 0 0 4px;
}

ol ol {
  margin: 10px 0 10px 60px;
  padding: 0;
}

blockquote {
  padding: 0;
  margin: 0;
  border: none;
  font-size: 16px;
  line-height: 22px;
}

blockquote p {
  padding: 0 0 0 45px;
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 22px;
  border: none;
}

p.wp-caption-text {
  font-size: 12px !important;
  line-height: 20px !important;
  text-align: center !important;
  padding: 0 20px 0 20px;
  color: #666;
  font-style: normal;
  margin: 0;
}

.gallery-caption {
  font-size: 14px !important;
  line-height: 22px !important;
  text-align: center !important;
  padding: 10px 20px 0 20px;
  color: #666;
  font-style: normal;
  margin: 0;
}

/*	--------------------------------------------------
	Links
	-------------------------------------------------- */
a {
  color: #800020;
  line-height: inherit;
  word-wrap: break-word;
  font-weight: bold;
  text-decoration: none;
}

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

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

a:visited {
  line-height: inherit;
  color: #800020;
}

a:hover {
  color: #B8002E;
  font-weight: bold;
  text-decoration: none !important;
}

a.box {
  display: inline-block;
  margin: 0;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 700 !important;
  position: relative;
  background: #800020;
  text-transform: uppercase;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  border-radius: 6px;
}

a.box:visited {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
}

a.box:after {
  font-size: 16px;
  content: "\f054";
  padding-left: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

a.box.back:before {
  font-size: 16px;
  content: "\f054";
  padding-right: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

a.box.back:after {
  display: none;
}

a.box.rev {
  padding: 0;
  color: #800020;
  background: none;
}

a.box.rev:visited {
  color: #800020;
}

a.box.white {
  color: #FFF;
  padding-left: 0;
  background: transparent;
}

a.box.white:visited {
  color: #FFF;
}

a.box.pdf:after {
  font-size: 18px;
  padding-left: 8px;
  content: "\f1c1";
}

a.box.view_more::after {
  content: "\f078";
}

a.box:hover {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
  background: #B8002E;
  text-decoration: none !important;
}

a.box.rev:hover {
  color: #B8002E;
  text-decoration: inherit;
  font-weight: inherit;
  background: none;
}

a.box.white:hover {
  color: #FFF;
  background: transparent;
  opacity: 0.6;
}

p + p.linkwrap {
  margin-top: -10px;
}

/*	--------------------------------------------------
	Misc
	-------------------------------------------------- */
/* Utility classes */
.no-pad {
  padding: 0;
}

.no-margin {
  margin: 0;
}

.no-margin-top {
  margin-top: 0;
}

.color-white {
  color: #FFF;
}

.pretty {
  text-wrap: pretty;
}

.balance {
  text-wrap: balance;
}

.screen-reader-text {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.clearfloats {
  clear: both;
  line-height: 0px;
  height: 0px;
  font-size: 0px;
}

div[id*=gallery-] {
  margin: 20px 0 20px 0 !important;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.two div[id*=gallery-] {
  grid-template-columns: 1fr 1fr;
}

.accordiancontent div[id*=gallery-] {
  margin: 30px 0 !important;
}

div[id*=gallery-] .gallery-item {
  margin: 0 !important;
}

.gallery-item {
  margin: 0 !important;
  width: 100% !important;
  padding: 0 !important;
}

.gallery br {
  display: none !important;
}

/* Mobile */
@media (max-width: 767px) {
  div[id*=gallery-] {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
div[id*=gallery-] img {
  border: none !important;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

div[id*=gallery-] img:hover {
  opacity: 0.8;
}

img[class*=wp-image-] {
  margin-top: 0;
  margin-bottom: 0;
}

/* Images sizes */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.alignleft {
  float: left;
  margin: 4px 30px 20px 0 !important;
  display: block;
}

.alignright {
  float: right;
  margin: 4px 0 20px 30px !important;
  display: block;
}

.widget {
  margin-bottom: 0;
  margin-top: 0;
}

.wp-caption {
  padding: 0;
  border: none;
}

@media handheld, only screen and (max-width: 767px) {
  .alignleft {
    max-width: 40% !important;
    height: auto;
  }
  .alignright {
    max-width: 40% !important;
    height: auto;
  }
  .main-content-inner img {
    max-width: 100%;
    height: auto;
  }
}
@media (max-width: 767px) {
  .attachment-thumbnail {
    max-width: 100% !important;
    height: auto !important;
  }
}
.fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.fancybox-toolbar {
  right: auto !important;
  left: 0;
  top: 0;
}

/* Object Fit Image */
.object-fit-image {
  position: relative;
  padding-bottom: 70%;
  overflow: hidden;
}

.object-fit-image img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  -o-object-position: center center;
     object-position: center center;
}

/* Appear Items */
.has-animation {
  opacity: 0;
  -webkit-transition-timing-function: ease-in;
          transition-timing-function: ease-in;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

.has-animation.animate-in {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

/* Helper Classes */
.clear-first-child-margin-top > *:first-child {
  margin-top: 0 !important;
}

.clear-last-child-margin-bottom > *:last-child {
  margin-bottom: 0 !important;
}

.clear-child-margin-top-bottom > *:first-child {
  margin-top: 0 !important;
}

.clear-child-margin-top-bottom > *:last-child {
  margin-bottom: 0 !important;
}

.white-text {
  color: #FFF;
}
.white-text h1,
.white-text h2,
.white-text h3,
.white-text p,
.white-text ul,
.white-text a {
  color: #FFF;
}
.white-text a:not(a.box) {
  color: #FFF;
  text-decoration: underline !important;
}
.white-text a:hover:not(a.box),
.white-text a:visited:not(a.box) {
  color: #FFF;
  text-decoration: underline !important;
  opacity: 0.6;
}
.white-text ul li {
  list-style: url(images/bullet_white.png);
}

/*	--------------------------------------------------
   	Header
	-------------------------------------------------- */
/* Alert */
.alertbar {
  background: #800020;
  padding: 15px 0;
  color: #FFF;
}

.alertbar .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.alertbar .text {
  font-size: 16px;
  color: #FFF;
}

.alertbar .text p {
  font-size: 16px;
  color: #FFF;
  margin: 0;
}

.alertbar .text a {
  color: #FFF;
  font-weight: 400;
  text-decoration: underline;
}

.alertbar .text a:hover {
  color: #FFF;
  font-weight: 400;
  text-decoration: none;
}

.alertbar .close {
  font-size: 18px;
  color: #FFF;
  margin: 4px 10px 0 0;
}

.alertbar .close:hover {
  opacity: 0.8;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 1150px) {
  .alertbar .text {
    padding-right: 50px;
  }
}
/* Header */
.site-header {
  margin: 0;
  padding: 0;
  width: 100%;
}

.site-header .wrap {
  position: static;
}

.site-header__pad {
  height: 150px;
  position: relative;
}

/* Site Branding */
.site-branding {
  width: 286px;
  height: 107px;
  position: absolute;
  bottom: 15px;
  left: 0;
}

.site-branding__site-title {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.site-branding__site-title a {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
  text-indent: -4000px;
  background: url(images/logo.png) no-repeat;
  background-position: center center;
  background-size: contain;
}

/* Mobile */
@media (max-width: 1150px) {
  .site-branding {
    width: 260px;
    height: 90px;
    position: absolute;
    bottom: auto;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
/* Tool */
.tool {
  position: absolute;
  right: 0;
  top: 26px;
}

.scrolled .tool {
  top: 0;
}

.tool .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

@media (max-width: 1150px) {
  #masthead .tool {
    right: 50px;
    top: 20px;
  }
  .mobile-menu-cover .tool {
    display: none;
    position: static;
    margin: 15px 30px 0 30px;
  }
  .mobile-menu-cover .tool .wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* Mobile */
@media (max-width: 860px) {
  #masthead .tool {
    display: none;
  }
  .social.header {
    margin: 0 0 25px 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
/* Tool Menu */
ul.menu-tool {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
ul.menu-tool li {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.menu-tool li a {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-decoration: none;
  color: #444;
  text-transform: uppercase;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
ul.menu-tool li a:hover {
  color: #B8002E;
}
ul.menu-tool li a i {
  padding-left: 4px;
}
ul.menu-tool li.current_page_item a {
  color: #B8002E;
}

@media (max-width: 1150px) {
  .site-header ul.menu-tool {
    display: none;
  }
}
/* Social */
.social {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.social span {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-decoration: none;
  color: #444;
  text-transform: uppercase;
}
.social a {
  font-size: 18px;
  line-height: 30px;
  padding: 0;
  text-align: center;
  text-decoration: none;
  color: #444;
  text-decoration: none;
  font-weight: normal;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}
.social a:hover {
  color: #B8002E;
}

@media (max-width: 1150px) {
  .site-header .social {
    display: none;
  }
  .mobile-menu-cover .tool .social {
    position: static;
    margin: 0 0 50px 0;
  }
  .mobile-menu-cover .tool .social a {
    font-size: 30px;
    line-height: 30px;
    color: #FFF;
    padding: 0;
    margin: 0 20px 0 0;
  }
  .mobile-menu-cover .tool .social a:hover {
    color: #FFF;
    opacity: 0.6;
  }
}
/* Google Translate */
.glink {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  text-decoration: none;
  color: #444;
  text-transform: uppercase;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  /* target the google translate button data-gt-lang = es */
}
.glink:hover {
  color: #B8002E;
  font-weight: 400;
  text-decoration: none;
}
.glink i {
  padding-left: 4px;
}
.glink img {
  display: none !important;
}
.glink::before {
  content: "Translate";
}
.glink::after {
  content: "\f0ac";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 30px;
  font-style: normal;
  font-variant: normal;
  text-transform: none;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  padding-left: 6px;
}
.glink[data-gt-lang=es]::before {
  content: "ESPAÑOL";
}
.glink[data-gt-lang=en]::before {
  content: "ENGLISH";
}
.glink.gt-current-lang {
  display: none;
}

.gtranslate_wrap.mob .glink {
  color: #FFF;
}
.gtranslate_wrap.mob .glink:hover {
  color: #FFF;
}

/*	--------------------------------------------------
   	Nav Bar - Desk
	-------------------------------------------------- */
.primary-navigation {
  position: absolute;
  bottom: 15px;
  right: 0;
}

.primary-navigation .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.primary-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  z-index: 9999;
  gap: 25px;
}

.primary-menu .menu-item {
  padding: 0;
  margin: 0;
  position: relative;
  list-style: none;
}

.primary-menu .menu-item a {
  display: block;
  font-size: 18px;
  line-height: 50px;
  margin: 0;
  padding: 0 20px;
  text-decoration: none;
  color: #FFF;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 700;
  background-color: #800020;
  border-radius: 6px;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

.primary-menu .menu-item.current_page_item > a,
.primary-menu .menu-item.current-menu-item > a,
.primary-menu .menu-item.current-post-ancestor > a,
.primary-menu .menu-item.current-category-ancestor > a,
.primary-menu .menu-item.current_page_ancestor > a {
  color: #FFF;
  background-color: #B8002E;
}

.primary-menu .menu-item:hover > a {
  color: #FFF;
  background-color: #B8002E;
}

.primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 0;
  z-index: 99999;
  background: #333;
  padding: 0;
}

/*.menu-desk > ul > li:hover > ul { display:block; }*/
.primary-menu .sub-menu .menu-item {
  padding: 0;
  margin: 0;
}

.primary-menu .menu-item .sub-menu .menu-item a {
  display: block;
  font-size: 16px;
  line-height: 24px;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 700;
  padding: 5px 15px;
  color: #FFF;
  background: none;
  white-space: nowrap;
}

.primary-menu .sub-menu .menu-item:first-child a {
  padding-top: 12px;
}

.primary-menu .sub-menu .menu-item:last-child a {
  padding-bottom: 12px;
}

.primary-menu .menu-item .sub-menu .menu-item a:hover {
  color: #FFF;
  opacity: 0.6;
}

.primary-menu .menu-item .sub-menu .menu-item.current-menu-item > a {
  color: #FFF;
  opacity: 0.6;
}

@media (max-width: 1150px) {
  .primary-navigation {
    display: none;
  }
}
/*	--------------------------------------------------
   	Menu Mobile
	-------------------------------------------------- */
.mobile-hamburger {
  display: none;
  width: 30px;
  height: 30px;
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 999999;
}

.mobile-hamburger__link {
  background: #444 url(images/mob.png) 0 0 no-repeat !important;
  display: block;
  width: 30px;
  height: 30px;
  padding: 0;
  padding: 0;
  text-indent: -4000px;
}

.mobile-hamburger__link.open {
  background: #444 url(images/mob.png) 0 -30px no-repeat !important;
}

.mobile-menu-cover {
  display: none;
  background: #444;
  color: #FFF;
  padding: 0;
  clear: both;
  margin: 0 auto;
  position: fixed;
  top: 0;
  right: 0;
  height: 150%;
  max-width: 340px;
  min-width: 340px;
  overflow: auto;
  z-index: 99999;
}

.mob-nav-container {
  margin: 0;
  padding: 0;
  display: none;
}
.mob-nav-container:first-child {
  margin-top: 40px;
}

.mob-nav-menu {
  margin: 0 30px 0 30px;
  padding: 0;
}

.mob-nav-menu .menu-item {
  display: block;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mob-nav-menu .menu-item a {
  font-size: 24px;
  line-height: 30px;
  padding: 10px 0;
  display: block;
  text-decoration: none;
  color: #FFF;
  margin: 0;
  font-weight: 700;
  font-style: normal;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

.mob-nav-menu .menu-item a:hover {
  color: #FFF;
  opacity: 0.6;
}

.mob-nav-menu .sub-menu {
  display: none;
  margin: 0 0 10px 0;
  padding: 0;
  z-index: 99999;
  padding: 0;
}

.mob-nav-menu .sub-menu .menu-item a {
  font-size: 16px;
  line-height: 24px;
  padding: 8px 0;
  display: block;
  text-decoration: none;
  color: #FFF;
  margin: 0;
  font-weight: 400;
  font-style: normal;
}

.mob-nav-menu .sub-menu .menu-item:first-child a {
  padding-top: 4px;
}

.mob-nav-menu .sub-menu .menu-item:last-child a {
  padding-bottom: 10px;
}

@media (max-width: 1150px) {
  .mobile-hamburger {
    display: block;
    top: 22px;
    right: 20px;
  }
  .mobile-menu-cover {
    max-width: 400px;
    min-width: 400px;
  }
}
@media (max-width: 660px) {
  .mobile-hamburger {
    top: 10px;
    right: 10px;
  }
  .mobile-menu-cover {
    max-width: 100%;
    min-width: 100%;
  }
}
/*	--------------------------------------------------
   	Home
	-------------------------------------------------- */
/* Stop Chrome Slick Flicker */
.slick-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Home panels */
.home-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 550px;
}

@media (max-width: 767px) {
  .home-panels {
    grid-template-columns: 1fr;
    grid-template-rows: 350px 350px;
  }
}
.home-panel {
  position: relative;
}
.home-panel .text_overlay {
  position: absolute;
  bottom: 50px;
  right: 30px;
  padding: 0 0 0 30px;
  z-index: 20;
}
.home-panel .text_overlay .small_headline {
  font-size: 25px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  margin: 0 0 5px 0;
  text-shadow: 0px 8px 12px rgba(0, 0, 0, 0.45);
}
.home-panel .text_overlay h2 {
  font-size: 55px;
  line-height: 65px;
  margin: 0 0 20px 0;
  text-shadow: 0px 8px 12px rgba(0, 0, 0, 0.45);
}
@media (max-width: 1100px) {
  .home-panel .text_overlay .small_headline {
    font-size: 18px;
  }
  .home-panel .text_overlay h2 {
    font-size: 40px;
    line-height: 50px;
    margin: 0 0 16px 0;
  }
}
@media (max-width: 840px) {
  .home-panel .text_overlay .small_headline {
    font-size: 18px;
    margin: 0;
  }
  .home-panel .text_overlay h2 {
    font-size: 35px;
    line-height: 45px;
    margin: 0 0 16px 0;
  }
}
.home-panel:last-child .text_overlay {
  right: auto;
  left: 30px;
  padding: 0 30px 0 0;
}
.home-panel:last-child img {
  -o-object-position: left center;
     object-position: left center;
}
.home-panel img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right center;
     object-position: right center;
  z-index: 10;
}
.home-panel .gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.9)));
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 0.7;
  z-index: 15;
}
@media (max-width: 800px) {
  .home-panel img {
    -o-object-position: center center !important;
       object-position: center center !important;
  }
}
@media (max-width: 767px) {
  .home-panel .text_overlay {
    right: auto !important;
    left: 30px !important;
    padding: 0 30px 0 0 !important;
  }
  .home-panel img {
    -o-object-position: center center !important;
       object-position: center center !important;
  }
}

/* Elevator */
.elevator {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
  background-color: #FBFBF2;
}
.elevator .container {
  position: relative;
  z-index: 20;
}
.elevator .text {
  max-width: 500px;
}
.elevator .text h2 {
  font-size: 45px;
  line-height: 55px;
}
.elevator .image_wrap {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-100px, 0);
          transform: translate(-100px, 0);
  width: 1090px;
  height: 100%;
  z-index: 10;
}
.elevator img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
}
@media (max-width: 1000px) {
  .elevator .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .elevator .image_wrap {
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    width: 100%;
    height: 320px;
    z-index: 10;
  }
  .elevator .text {
    max-width: 100%;
    padding-top: 350px;
    padding-bottom: 30px;
  }
  .elevator .text h2 {
    font-size: 30px;
    line-height: 40px;
  }
}

/* mobile */
@media (max-width: 1000px) {
  .elevator {
    padding: 0;
  }
}
/* Home Features */
.home-feature {
  display: grid;
  grid-template-columns: 1fr 615px 615px 1fr;
  grid-auto-flow: dense;
  min-height: 450px;
  background-color: #F5E3C7;
}
.home-feature img {
  grid-column: 1/3;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  background-color: #E8B973;
}
.home-feature .text-wrap {
  grid-column: 3/4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 30px 0 30px 30px;
}
.home-feature .text-wrap h2 {
  font-size: 36px;
  line-height: 46px;
  margin: 0 0 10px 0;
}
.home-feature.even {
  background-color: #EEECEB;
}
.home-feature.even img {
  grid-column: 3/5;
  background-color: #BAB5AF;
}
.home-feature.even .text-wrap {
  grid-column: 2/3;
  padding: 30px 30px 30px 0;
}

/* mobile */
@media (max-width: 1230px) {
  .home-feature {
    grid-template-columns: 20px 1fr 1fr 20px;
  }
  .home-feature .text-wrap h2 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 800px) {
  .home-feature {
    grid-template-columns: 1fr;
  }
  .home-feature img {
    grid-column: 1/-1 !important;
    height: 320px;
  }
  .home-feature .text-wrap {
    grid-column: 1/-1 !important;
    padding: 30px !important;
  }
}
/*	--------------------------------------------------
   	Content
	-------------------------------------------------- */
/* Page wrap */
.pagewrap {
  padding: 0;
}

/* Page header */
#header {
  background-color: #800020;
  height: 150px;
  position: relative;
  overflow: hidden;
}

.page-header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(calc(-1230px/2), 0);
          transform: translate(calc(-1230px/2), 0);
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 20;
}

.page-header h1 {
  margin: 0;
  padding: 0;
  color: #FFF;
}

/* Mobile */
@media (max-width: calc(1230px + 40px)) {
  .page-header .wrap {
    left: 0;
    -webkit-transform: none;
            transform: none;
    padding-left: 20px;
  }
}
/* Mobile */
@media (max-width: 767px) {
  .page-header h1,
.page-header .blog-title {
    font-size: 31px;
    line-height: 41px;
    margin: 0 0 20px 0;
  }
}
/* Main Content */
.intro {
  font-size: 20px;
  line-height: 1.6;
}

.intro p {
  font-size: 20px;
  line-height: 1.6;
}

/*	--------------------------------------------------
   	Sidebar
	-------------------------------------------------- */
.sidebar {
  padding: 54px 0 0 0;
}
.sidebar .linkwrap {
  margin-top: -10px;
}

.sidebar .fullwidthphoto {
  margin-bottom: 20px;
}

/*	--------------------------------------------------
   	Blog
	-------------------------------------------------- */
/* Blog Header */
.blog_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 0 0 50px 0;
  gap: 30px;
}

.blog_header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.blog_header ul li {
  list-style: none;
  margin: 0;
}

.blog_header ul li a {
  display: block;
  font-size: 18px;
  line-height: 26px;
  font-weight: 700;
  color: #800020;
}

.blog_header ul li a:hover,
.blog_header ul li.active a {
  font-weight: 700;
  color: #B8002E;
}

@media (max-width: 767px) {
  .blog_header ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
/* Blog Grid */
.bloggrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 40px 30px;
}

.object-fit-image {
  margin-bottom: 10px;
}

.blogitem h3 {
  margin-top: 0;
}

@media (max-width: 600px) {
  .bloggrid {
    max-width: 285px;
    margin-left: auto;
    margin-right: auto;
  }
}
/*	--------------------------------------------------
   	Pager
	-------------------------------------------------- */
ul.pager {
  margin: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

#nav-below {
  margin: 30px 0 0 0;
}

ul.pager li {
  margin: 0;
  padding: 0;
  list-style: none !important;
}

ul.pager a {
  display: inline-block;
  margin: 0;
  padding: 6px 12px;
  font-size: 16px;
  line-height: 24px;
  color: #FFF;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 700 !important;
  position: relative;
  background: #800020;
  text-transform: uppercase;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  border-radius: 6px;
}

ul.pager a:visited {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
}

ul.pager a:after {
  font-size: 16px;
  content: "\f054";
  padding-left: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

ul.pager a:hover {
  color: #FFF;
  text-decoration: inherit;
  font-weight: inherit;
  background: #B8002E;
  text-decoration: none !important;
}

ul.pager .previous a:before {
  font-size: 16px;
  content: "\f053";
  padding-right: 6px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

ul.pager .previous a:after {
  display: none;
}

/* Mobile */
/*	--------------------------------------------------
   	Footer
	-------------------------------------------------- */
#colophon {
  padding: 40px 0 100px 0;
}

.site-footer {
  background: #520014;
  padding: 0 0 100px 0;
}

.site-footer h2 {
  color: #FFF;
  text-align: center;
  font-size: 25px;
  line-height: 35px;
  margin: 0 0 30px 0;
}

.site-footer p {
  color: #FFF;
}

.site-footer a {
  color: #FFF;
  font-weight: 400;
}

.site-footer a:hover {
  color: #FFF;
  opacity: 0.8;
}

.site-footer a:visited {
  color: #FFF;
}

/* Mobile */
@media (max-width: 767px) {
  .site-footer {
    padding: 0 0 30px 0;
  }
}
/* Mobile */
.locations {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px 150px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.locations .location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.locations .location img {
  border-radius: 50%;
  width: 125px;
  height: 125px;
}
.locations .location .location-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.locations .location .location-info h3 {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
.locations .location .location-info a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 15px;
  line-height: 25px;
  font-weight: 700;
  margin: 0;
  text-decoration: none !important;
}
.locations .location .location-info a i {
  width: 20px;
  text-align: center;
}
.locations .location .location-info a:hover {
  opacity: 0.8;
  text-decoration: none !important;
}

@media (max-width: 780px) {
  .locations {
    gap: 30px;
  }
}
@media (max-width: 660px) {
  .locations {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
/* Copyright */
.site-info {
  font-size: 12px;
  line-height: 16px;
}

.site-info p {
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 15px 0;
}
.site-info p:last-child {
  padding-top: 15px;
}

.site-info a {
  font-size: 12px;
  line-height: 16px;
  font-weight: normal;
  text-decoration: none;
  padding-left: 5px;
}

.site-info a:hover {
  text-decoration: underline;
}

/*	--------------------------------------------------
   	Flexible Content
	-------------------------------------------------- */
/* UL columns */
.ul_two ul {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
  -webkit-column-gap: 80px;
     -moz-column-gap: 80px;
          column-gap: 80px;
}

.ul_three ul {
  -webkit-columns: 3;
     -moz-columns: 3;
          columns: 3;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.ul_four ul {
  -webkit-columns: 4;
     -moz-columns: 4;
          columns: 4;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.ul_two ul li,
.ul_three ul li,
.ul_four ul li {
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid-column;
}

@media (max-width: 1200px) {
  .ul_four ul {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
  }
}
@media (max-width: 1000px) {
  .ul_three ul,
.ul_four ul {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}
@media (max-width: 700px) {
  .ul_two ul,
.ul_three ul,
.ul_four ul {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .ul_two ul li,
.ul_three ul li,
.ul_four ul li {
    -webkit-column-break-inside: auto;
       -moz-column-break-inside: auto;
            break-inside: auto;
  }
}
/* Padding Before and After */
.pad_before_small {
  padding-top: 20px;
}

.pad_before_med {
  padding-top: 40px;
}

.pad_before_large {
  padding-top: 80px;
}

.pad_after_small {
  padding-bottom: 20px;
}

.pad_after_med {
  padding-bottom: 40px;
}

.pad_after_large {
  padding-bottom: 80px;
}

/* Block Background */
.block_background_light {
  background-color: #FBFBF2;
  padding: 54px 0 30px 0;
}
.block_background_light.even_pad {
  padding: 60px 0;
}
.block_background_light.no-pad {
  padding: 0;
}

.block_background_dark {
  background-color: #800020;
  padding: 54px 0 30px 0;
  color: #FFF;
}
.block_background_dark.even_pad {
  padding: 60px 0;
}
.block_background_dark.no-pad {
  padding: 0;
}
.block_background_dark h1,
.block_background_dark h2,
.block_background_dark h3,
.block_background_dark p,
.block_background_dark ul,
.block_background_dark a {
  color: #FFF;
}
.block_background_dark a:not(a.box) {
  color: #FFF;
  text-decoration: underline !important;
}
.block_background_dark a:hover:not(a.box),
.block_background_dark a:visited:not(a.box) {
  color: #FFF;
  text-decoration: underline !important;
  opacity: 0.6;
}
.block_background_dark ul li {
  list-style: url(images/bullet_white.png);
}

/*	--------------------------------------------------
   	Flexible Content Styles
	-------------------------------------------------- */
/* Headline */
.testing {
  color: green;
}

/* Headline Left Intro */
.headline_left_intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 800px) {
  .headline_left_intro {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .headline_left_intro .headline br {
    display: none;
  }
}
/* Spacer Block */
.spacer_small {
  height: 20px;
}

.spacer_medium {
  height: 40px;
}

.spacer_large {
  height: 60px;
}

.spacer_lumbo {
  height: 80px;
}

/* 1 Column */
/* 4 Column / Multi Column */
.column_image.object-fit-image {
  padding-bottom: 66%;
  margin: 0 0 20px 0;
}

.fullwidth.columns.four .linkwrap {
  margin-bottom: 50px;
}

.columns.four.button_end .col {
  position: relative;
  padding-bottom: 60px;
}
.columns.four.button_end .col .linkwrap {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* Full width Photo */
.fullwidthphoto {
  margin-bottom: 30px;
}

.fullwidthphoto img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* Highlight Box */
.highlight_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 50px 0;
  gap: 30px;
}

.block_background_light .highlight_box,
.block_background_dark .highlight_box {
  margin: 0 0 24px 0;
}

.highlight_box.left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.highlight_box .imagecol {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 600px;
          flex: 0 0 600px;
}

.highlight_box.narrow .imagecol {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 400px;
          flex: 0 0 400px;
}

.highlight_box img {
  display: block;
  max-width: 100%;
  height: auto;
}

.highlight_box p.caption {
  font-size: 14px;
  line-height: 22px;
  margin: 10px 0 0 0;
  text-align: center;
}

.highlight_box ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

@media (max-width: 1100px) {
  .highlight_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 30px 0 30px 0;
  }
  .highlight_box .imagecol {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
  .highlight_box.narrow .imagecol {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
  .highlight_box ul {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
  .highlight_box.left {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .highlight_box .imagecol {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
  .highlight_box h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
/* Hero Image & Text */
.hero_image {
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  background-attachment: fixed;
}
.hero_image .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero_image .text.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.hero_image .text .wrap {
  padding: 30px;
  max-width: 600px;
  background-color: rgba(0, 0, 0, 0.5);
}
.hero_image .text ul {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

/* Mobile */
@media (max-width: 767px) {
  .hero_image {
    background-attachment: scroll;
    padding: 60px 0;
  }
  .hero_image .container {
    padding: 0;
    margin: 0;
  }
  .hero_image .text {
    padding: 0 20px;
  }
  .hero_image .text.right {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .hero_image .text .wrap {
    padding: 20px;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
  }
}
/* Page Quote */
.page-quote {
  padding: 0;
  margin: 30px 150px;
}

.page-quote .quotetext {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.page-quote .quotetext p {
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.page-quote .by {
  font-weight: 400;
  text-align: center;
}

/* small screen - hide on ipad */
@media (max-width: 767px) {
  .page-quote {
    padding: 0;
    margin: 40px 0;
  }
  .page-quote .quotetext {
    font-size: 26px;
    line-height: 36px;
  }
  .page-quote .quotetext p {
    font-size: 26px;
    line-height: 36px;
  }
}
/* Video embeds */
.vwrap {
  max-width: 100%;
  margin: 0 auto 30px auto;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 0;
  height: 0;
  margin-bottom: 30px;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Gallery */
.galleryblock {
  text-align: center;
  margin-bottom: 60px;
}
.galleryblock h3 {
  text-align: left;
}
.galleryblock p {
  text-align: left;
  margin-bottom: 20px;
}
.galleryblock a.box {
  margin-top: 30px;
}

.gallery_custom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.gallery_custom a:nth-child(n+5) {
  display: none;
}

/* Accordion */
.accordianwrap {
  margin: 10px 0 30px 0;
  border-top: 1px solid #dddddd;
}

.accordianwrap.add {
  margin: -31px 0 30px 0;
}

.accordiantitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px;
  border-bottom: 1px solid #dddddd;
}

.accordiantitle .fa-solid {
  font-size: 16px;
  line-height: 30px;
  font-weight: 900;
  color: #800020;
  float: left;
  margin: 0;
}

.accordiantitle:hover .fa-solid {
  cursor: pointer;
  color: #B8002E;
}

.accordiantitle.open .closedicon {
  display: none;
}

.accordiantitle.open .openicon {
  display: block;
}

.accordiantitle .openicon {
  display: none;
}

.accordiantitle h3 {
  line-height: 30px;
  font-size: 20px;
  color: #333;
  padding: 0 0 0 8px;
  margin: 0;
  font-weight: 700;
}

.accordiantitle:hover h3 {
  cursor: pointer;
  color: #444;
}

.accordiantitle.open:hover h3 {
  cursor: pointer;
}

.accordiancontent {
  display: none;
  padding: 20px 34px 1px 34px;
  margin: 0;
}
.accordiancontent ul {
  margin-left: 30px;
}

/* Mobile */
@media (max-width: 767px) {
  .accordiancontent {
    display: none;
    padding: 20px 0 1px 0;
    margin: 0;
  }
}
/* Color Box */
.color_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  background-color: #800020;
  min-height: 285px;
}

.color_box .imagecol {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 285px;
          flex: 0 0 285px;
}
.color_box .imagecol img {
  display: block;
  max-width: 100%;
  height: auto;
}

.color_box .text {
  padding: 30px;
}

/* Mobile */
@media (max-width: 900px) {
  .color_box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 600px;
    margin: 50px auto;
  }
  .color_box .imagecol {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    height: 100%;
  }
  .color_box .text {
    padding: 20px;
  }
}
/* Reviews */
.reviews_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.reviews_grid .review_text {
  margin: 0 0 10px 0;
}
.reviews_grid .review_text p {
  margin: 0;
  font-weight: 700;
}
.reviews_grid .review_by {
  margin: 0;
}

.block_background_light .reviews_grid,
.block_background_dark .reviews_grid {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .reviews_grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
/* Button */
p.linkwrap.center {
  text-align: center;
}

p.linkwrap.right {
  text-align: right;
}

/* Link Bar */
.link_bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.link_bar.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.link_bar.right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

/* Logo Slider */
/* Stop Chrome Slick Flicker */
.slick-slide {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.logo_slideshow {
  width: calc(100% - 80px);
  opacity: 0;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  margin: 0 auto !important;
}

.logo_slideshow.slick-initialized {
  opacity: 1;
}

.logo_slideshow .logo {
  height: 100px;
  position: relative;
  -webkit-animation-duration: 0.25s;
          animation-duration: 0.25s;
}

.logo_slideshow a.logo:hover {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.8;
}

.logo_slideshow img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: calc(100% - 20px);
  height: auto;
  margin: 0 auto;
}

/* Arrows */
.logo_slideshow .slick-prev, .logo_slideshow .slick-next {
  width: 30px;
  height: 50px;
}

.logo_slideshow .slick-prev {
  left: -40px;
  z-index: 99;
}

.logo_slideshow .slick-next {
  right: -40px;
  z-index: 99;
}

.logo_slideshow .slick-prev:before,
.logo_slideshow .slick-next:before {
  font-size: 40px;
  line-height: 40px;
  width: 30px;
  text-align: center;
  opacity: 1;
  color: #BFBFBF;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.slick-prev:hover:before,
.slick-next:hover:before {
  color: #B8002E;
}

/* Staff */
.staff-block {
  padding: 80px 0;
}
.staff-block h3 {
  text-align: center;
  margin: 0 0 30px 0;
}

.staff-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 25px;
}

@media (max-width: calc( 40px + 1230px)) {
  .staff-grid {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px 100px;
  }
}
@media (max-width: 620px) {
  .staff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 0;
  }
}
@media (max-width: 560px) {
  .staff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px 0;
    padding: 0 30px;
  }
}
.staff-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.staff-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.staff-card .staff-name {
  font-weight: 700;
}
.staff-card .staff-location {
  font-size: 14px;
}

.sidebar .locations {
  margin-bottom: 40px;
  margin-top: 20px;
  gap: 30px;
}
.sidebar .locations .location .location-info h3 {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
.sidebar .locations .location .location-info a {
  color: #444444;
}
.sidebar .locations .location .location-info a:hover {
  opacity: 1;
  text-decoration: none !important;
  color: #B8002E;
}

/* Job Listings */
.job_listing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 30px;
  padding: 40px 0;
}
.job_listing .spec {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.job_listing h3 {
  font-size: 24px;
  line-height: 1.2;
}
.job_listing a.box {
  -ms-flex-item-align: center;
      align-self: center;
  justify-self: flex-end;
}

@media (max-width: 1200px) {
  .job_listing {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .job_listing .col-title {
    grid-column: 1/3;
  }
  .job_listing a.box {
    grid-column: 1/3;
    justify-self: flex-start;
  }
}
@media (max-width: 600px) {
  .job_listing {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .job_listing .col-title {
    grid-column: auto;
  }
  .job_listing a.box {
    grid-column: auto;
    justify-self: flex-start;
    margin-top: 10px;
  }
}
/* Mobile */
.job-overview {
  display: grid;
  grid-template-columns: 1fr 285px;
  gap: 50px;
}
.job-overview .spec {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.job-overview a.box {
  margin-top: 10px;
}

@media (max-width: 800px) {
  .job-overview {
    grid-template-columns: 1fr 250px;
  }
}
@media (max-width: 700px) {
  .job-overview {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }
}
/*	--------------------------------------------------
   	Form - Gravity Forms (labels inside)
	-------------------------------------------------- */
/* Theme */
.gform_wrapper .gform_fields {
  grid-column-gap: 16px !important;
  grid-row-gap: 16px !important;
}

.gform_wrapper h3 {
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 26px !important;
  font-weight: 700 !important;
  margin: 10px 0 0 0 !important;
}

.gform_wrapper input[type=color],
.gform_wrapper input[type=date],
.gform_wrapper input[type=datetime-local],
.gform_wrapper input[type=datetime],
.gform_wrapper input[type=email],
.gform_wrapper input[type=month],
.gform_wrapper input[type=number],
.gform_wrapper input[type=password],
.gform_wrapper input[type=search],
.gform_wrapper input[type=tel],
.gform_wrapper input[type=text],
.gform_wrapper input[type=time],
.gform_wrapper input[type=url],
.gform_wrapper input[type=week],
.gform_wrapper select,
.gform_wrapper textarea {
  font-size: 16px !important;
  line-height: 24px !important;
  margin: 0 !important;
  padding: 5px 10px !important;
  border: 1px solid #CCCCCC !important;
}

.gform_wrapper textarea.textarea {
  height: 140px !important;
  display: block !important;
  margin: 0 !important;
}

/* Address */
.gform_wrapper .ginput_container_address {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.gform_wrapper .ginput_container_address span {
  margin: 0 !important;
  padding: 0 !important;
}

.gform_wrapper .ginput_container_address span.address_line_1 {
  margin-bottom: 8px !important;
}

.gform_wrapper .ginput_container_address span.address_line_2 {
  margin-bottom: 8px !important;
}

.gform_wrapper .ginput_container_address span.address_city {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 40% !important;
          flex: 0 0 40% !important;
}

.gform_wrapper .ginput_container_address span.address_state {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 calc(40% - 16px) !important;
          flex: 0 0 calc(40% - 16px) !important;
  margin-left: 16px !important;
}

.gform_wrapper .ginput_container_address span.address_zip {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 calc(20% - 16px) !important;
          flex: 0 0 calc(20% - 16px) !important;
  margin-left: 16px !important;
}

/* Submit */
.gform_wrapper .gform_footer, .gform_wrapper .gform_page_footer {
  margin: 0 !important;
  padding: 0 !important;
}

.gform_wrapper input[type=submit] {
  display: inline-block;
  margin: 0;
  padding: 5px 20px !important;
  font-size: 15px !important;
  line-height: 30px !important;
  color: #FFF !important;
  text-decoration: none;
  font-style: normal !important;
  font-weight: 700 !important;
  position: relative;
  background: #800020 !important;
  text-transform: uppercase !important;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
  border-radius: 6px;
  border: none !important;
  -webkit-appearance: none;
}

.gform_wrapper input[type=submit]:hover {
  background: #B8002E !important;
  cursor: pointer !important;
}

/* Error */
.gform_validation_errors {
  margin-bottom: 30px !important;
}

h2.gform_submission_error {
  text-transform: none;
}

p.gform_required_legend {
  display: none;
}

.gform_wrapper .gform_validation_errors {
  background: #fff9f9;
  border: 1.5px solid #c02b0a;
  border-radius: 5px;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  margin-bottom: 8px;
  margin-top: 8px;
  padding: 15px !important;
  position: relative;
  width: 100%;
}

.gform_wrapper .gfield_validation_message,
.gform_wrapper .validation_message {
  background: transparent !important;
  border: none !important;
  font-size: 13px !important;
  margin-top: 8px;
  padding: 0 !important;
}

/* Placeholder color */
.gform_wrapper .gform_fields .gfield input::-webkit-input-placeholder,
.gform_wrapper .gform_body .gform_fields .gfield textarea::-webkit-input-placeholder,
.ginput_container_select select:first-child {
  color: #777777;
}

/* Focus color */
.gfield input[type=text]:focus,
.gfield input[type=email]:focus,
.gfield input[type=tel]:focus,
.gfield input[type=url]:focus,
.gfield input[type=number]:focus,
.gfield input[type=password]:focus,
.gfield select:focus,
.gfield textarea:focus {
  border: 1px solid #333 !important;
  border-radius: 0 !important;
  font-size: 16px !important;
  line-height: 24px !important;
  padding: 5px 10px !important;
}

/* Focus visible */
.gfield :focus-visible {
  outline: none !important;
}

.gform_ajax_spinner {
  margin: 5px 0 0 20px !important;
  width: 24px !important;
  max-width: 24px !important;
  height: 24px !important;
}

/* Column plugin */
.gfmc-container {
  grid-column: 1/-1 !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 30px !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.gfmc-column {
  grid-column: auto !important;
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 0 20px !important;
}

@media (max-width: 800px) {
  .gfmc-container {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-bottom: 20px !important;
  }
}
/*	--------------------------------------------------
	Print
	-------------------------------------------------- */
.showprint {
  display: none;
}

@media print {
  body {
    padding: 20px !important;
  }
  .container {
    padding: 0;
    margin: 0;
  }
  .showprint {
    display: block;
  }
  .hideprint {
    display: none;
  }
  .printlogo {
    margin: 15px 0;
  }
  .header-pad {
    display: none;
  }
  .page-header {
    margin: 0;
    padding: 0;
  }
  .page-header .wrap {
    display: block;
    height: auto;
  }
  .page-header h1 {
    color: #000;
    padding: 0;
    margin: 0 0 20px 0;
  }
  .main-content-inner {
    margin: 0;
  }
  p {
    margin: 0 0 20px 0;
  }
  #colophon a {
    display: none !important;
  }
}