@import url(https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700&display=swap);
@-webkit-keyframes loading {
  from {
    left: -200px;
    width: 30%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}

@keyframes loading {
  from {
    left: -200px;
    width: 30%;
  }
  50% {
    width: 30%;
  }
  70% {
    width: 70%;
  }
  80% {
    left: 50%;
  }
  95% {
    left: 120%;
  }
  to {
    left: 100%;
  }
}

#main_navigation {
  pointer-events: none;
}

.pe_all {
  pointer-events: all !important;
}

.slide-in-left {
  -webkit-animation: slide-in-left 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-left 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-out-left {
  -webkit-animation: slide-out-left 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: slide-out-left 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
}

@keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1000px);
    transform: translateX(-1000px);
    opacity: 0;
  }
}

.slide-in-right {
  -webkit-animation: slide-in-right 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-right 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-out-right {
  -webkit-animation: slide-out-right 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: slide-out-right 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
}

@keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1000px);
    transform: translateX(1000px);
    opacity: 0;
  }
}

.swirl-in-fwd {
  -webkit-animation: swirl-in-fwd 0.6s ease-out both;
  animation: swirl-in-fwd 0.6s ease-out both;
}

@-webkit-keyframes swirl-in-fwd {
  0% {
    -webkit-transform: rotate(-540deg) scale(0);
    transform: rotate(-540deg) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

@keyframes swirl-in-fwd {
  0% {
    -webkit-transform: rotate(-540deg) scale(0);
    transform: rotate(-540deg) scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

.swirl-out-bck {
  -webkit-animation: swirl-out-bck 0.6s ease-in both;
  animation: swirl-out-bck 0.6s ease-in both;
}

@-webkit-keyframes swirl-out-bck {
  0% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-540deg) scale(0);
    transform: rotate(-540deg) scale(0);
    opacity: 0;
  }
}

@keyframes swirl-out-bck {
  0% {
    -webkit-transform: rotate(0) scale(1);
    transform: rotate(0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-540deg) scale(0);
    transform: rotate(-540deg) scale(0);
    opacity: 0;
  }
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-family: 'Roboto', sans-serif;
  line-height: 1.4;
}

html {
  font-size: 11px;
}

@media screen and (min-width: 320px) {
  html {
    font-size: calc(11px + 5 * ((100vw - 320px) / 880));
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

html body {
  font-size: 16px !important;
  width: 100%;
}

html body.active-nav {
  overflow: hidden !important;
  position: relative !important;
  height: 100vh !important;
}

html body.ds-custom .hays-microsite-1-65-35-1 .portlet-layout:nth-last-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2em 2em 0 2em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html body.ds-custom .hays-microsite-1-65-35-1 .portlet-layout:nth-last-of-type(2) #column-2 {
  width: 58.33333%;
}

html body.ds-custom .hays-microsite-1-65-35-1 .portlet-layout:nth-last-of-type(2) #column-2 main {
  display: block;
  -ms-grid-columns: unset;
  grid-template-columns: unset;
  -ms-grid-rows: unset;
  grid-template-rows: unset;
}

html body.ds-custom .hays-microsite-1-65-35-1 .portlet-layout:nth-last-of-type(2) #column-2 main .innerPage {
  padding: 0 2em 0 0;
}

html body.ds-custom .hays-microsite-1-65-35-1 .portlet-layout:nth-last-of-type(2) #column-3 {
  width: 41.66667%;
}

@media (max-width: 992px) {
  html body.ds-custom .hays-microsite-1-65-35-1 .portlet-layout:nth-last-of-type(2) #column-2 {
    width: 100%;
  }
  html body.ds-custom .hays-microsite-1-65-35-1 .portlet-layout:nth-last-of-type(2) #column-2 main .innerPage {
    padding: 0 0em 0 0;
  }
  html body.ds-custom .hays-microsite-1-65-35-1 .portlet-layout:nth-last-of-type(2) #column-3 {
    width: 100%;
  }
}

html body .loader-wrapper {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #2a3338;
  z-index: 999;
  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;
  text-align: center;
}

html body .loader-wrapper svg {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

/* @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body .loader-wrapper svg {
    height: 50px;
    position: relative;
    top: calc(50% - 50px);
  }
} */
html body .loader-wrapper .loader {
  margin: 20px auto 0 auto;
  height: 4px;
  width: 250px;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

/* @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body .loader-wrapper .loader {
    top: calc(50% - 24px);
  }
} */
html body .loader-wrapper .loader:before {
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 4px;
  background-color: #91b3c4;
  -webkit-animation: loading 2s linear infinite;
  animation: loading 2s linear infinite;
}

html body .slide-in-fwd-top {
  -webkit-animation: slide-in-fwd-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: slide-in-fwd-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

html body .slide-out-bck-top {
  -webkit-animation: slide-out-bck-top 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
  animation: slide-out-bck-top 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes slide-in-fwd-top {
  0% {
    -webkit-transform: translateZ(-1400px) translateY(-800px);
    transform: translateZ(-1400px) translateY(-800px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}

@keyframes slide-in-fwd-top {
  0% {
    -webkit-transform: translateZ(-1400px) translateY(-800px);
    transform: translateZ(-1400px) translateY(-800px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
    transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-out-bck-top {
  0% {
    -webkit-transform: translateZ(1) translateY(0);
    transform: translateZ(1) translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-1100px) translateY(-1000px);
    transform: translateZ(-1100px) translateY(-1000px);
    opacity: 0;
  }
}

@keyframes slide-out-bck-top {
  0% {
    -webkit-transform: translateZ(1) translateY(0);
    transform: translateZ(1) translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(-1100px) translateY(-1000px);
    transform: translateZ(-1100px) translateY(-1000px);
    opacity: 0;
  }
}

html body #wrapper {
  /*opacity: 0; */
}

html body #wrapper.active-nav {
  overflow: hidden !important;
  position: relative !important;
  height: 100vh !important;
}

html body #wrapper header#header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2em 1fr fit-content(50px) fit-content(50px) 2em;
  grid-template-columns: 2em 1fr fit-content(50px) fit-content(50px) 2em;
  -ms-grid-rows: fit-content(50px);
  grid-template-rows: fit-content(50px);
  grid-column-gap: 0;
  grid-row-gap: 0;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2em 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper header#header {
    -ms-grid-columns: 2em 1fr auto auto 2em;
  }
}

html body #wrapper header#header:after {
  display: block;
  content: "";
  width: calc(100% - 2em);
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  padding: 0 2rem;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-column: 2/span 2;
  -ms-grid-row: 2;
  grid-row: 2;
  margin-top: 2em;
}

html body #wrapper header#header a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 250px;
  position: relative;
  z-index: 9;
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper header#header a img {
  width: 100%;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper header#header a img {
    max-height: 45px;
  }
}

html body #wrapper header#header #lingumania_langswitcher {
  display: none !important;
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative !important;
  width: 44px !important;
  height: 32px !important;
  margin-right: 2rem;
  max-height: 60px !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: distribute;
  align-content: space-around;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-item-align: center;
  align-self: center;
}

html body #wrapper header#header #lingumania_langswitcher a#lingumania_currentlanglink {
  width: 44px !important;
  height: 26px !important;
  background: transparent;
  border: 2px solid #fff;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

html body #wrapper header#header #lingumania_langswitcher .lingumania_poweredby {
  display: none !important;
}

html body #wrapper header#header #lingumania_langswitcher .lingumania_target {
  display: none !important;
  width: 44px !important;
  border: 2px solid #2a3338;
  background: #2a3338;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper header#header #lingumania_langswitcher .lingumania_target:hover {
  background: #91b3c4;
  border: 2px solid #91b3c4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper header#header #lingumania_langswitcher:hover .lingumania_target {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  display: block !important;
}

html body #wrapper header#header .burger {
  width: 40px;
  -ms-grid-column: 4;
  grid-column: 4;
  -ms-grid-row: 1;
  grid-row: 1;
  cursor: pointer;
  position: relative;
  z-index: 9;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper header#header .burger div {
  width: 100%;
  height: 3px;
  background: #fff;
}

html body #wrapper header#header .burger div.line_1 {
  margin-bottom: .6rem;
}

html body #wrapper header#header .burger div.line_2 {
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

html body #wrapper header#header .burger div.line_3 {
  margin-top: .6rem;
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

html body #wrapper header#header .burger span {
  color: #fff;
  display: block;
  margin-top: .6rem;
  text-align: center;
  font-size: 14px;
}

html body #wrapper header#header .burger_close {
  width: 40px;
  -ms-grid-column: 4;
  grid-column: 4;
  -ms-grid-row: 1;
  grid-row: 1;
  cursor: pointer;
  position: relative;
  z-index: 9;
  display: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper header#header .burger_close span {
  color: #fff;
  display: block;
  text-align: center;
  font-size: 14px;
}

html body #wrapper header#header .burger_close img {
  max-height: 2.37rem;
}

html body #wrapper header#header nav {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 7;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 0;
}

html body #wrapper header#header nav ul {
  display: block;
  list-style: none;
}

html body #wrapper header#header nav ul li {
  display: list-item;
}

html body #wrapper header#header nav ul li a {
  color: #fff;
  font-size: 4rem;
  text-decoration: none;
  font-weight: 100;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  max-width: 100%;
}

html body #wrapper header#header nav ul li a:hover {
  color: #91b3c4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 992px) {
  html body #wrapper header#header .burger_close img {
    max-height: 2.456rem;
  }
}

@media (max-width: 768px) {
  html body #wrapper header#header .logo {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  html body #wrapper header#header #lingumania_langswitcher {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  html body #wrapper header#header .burger {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  html body #wrapper header#header .burger_close {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }
  html body #wrapper header#header .burger_close img {
    max-height: 2.54rem;
  }
  html body #wrapper header#header:after {
    margin-top: 1rem;
  }
}

html body #wrapper header#header.seven_five_per {
  background: rgba(42, 51, 56, 0.8) !important;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: .5rem 0;
}

html body #wrapper header#header.seven_five_per .logo {
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-transform-origin: left;
  transform-origin: left;
}

html body #wrapper header#header.seven_five_per #lingumania_langswitcher {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper header#header.seven_five_per .burger {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper header#header.seven_five_per .burger_close {
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper header#header.seven_five_per:after {
  margin-top: 0;
}

html body #wrapper #alt-header {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  grid-template-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  background-color: #ffffff;
  height: 80px;
  -webkit-box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.3);
}

html body #wrapper #alt-header .inner-container {
  -ms-grid-column: 2;
  grid-column: 2;
  padding: 0 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

html body #wrapper #alt-header .inner-container .logo-area {
  width: 100%;
  max-width: 110px;
}

html body #wrapper #alt-header .inner-container .logo-area img {
  max-width: 100%;
  width: 100%;
}

html body #wrapper #alt-header .inner-container nav ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin-bottom: 0;
}

html body #wrapper #alt-header .inner-container nav ul li {
  margin: 0 0.35em;
}

html body #wrapper #alt-header .inner-container nav ul li:last-child {
  margin-right: 0;
}

html body #wrapper #alt-header .inner-container nav ul li a {
  color: #444444;
  text-decoration: none;
  padding: 0.65em 0.65em;
  text-transform: uppercase;
}

html body #wrapper #alt-header .inner-container nav ul li a:hover, html body #wrapper #alt-header .inner-container nav ul li a.active {
  color: #003087;
}

html body #wrapper #alt-header .inner-container nav ul li.active a {
  color: #003087;
}

@media (max-width: 768px) {
  html body #wrapper #alt-header .inner-container nav {
    display: none;
  }
}

html body #wrapper #alt-header .inner-container .burger2 {
  display: none;
  position: absolute;
  background: transparent;
  z-index: 13;
  top: 1em;
  right: 1.4em;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

html body #wrapper #alt-header .inner-container .burger2 .bar {
  width: 50px;
  height: 2px;
  margin: 10px auto;
  background-color: #003087;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

html body #wrapper #alt-header .inner-container .burger2.active-nav .bar {
  background-color: #fff;
}

html body #wrapper #alt-header .inner-container .burger2.active-nav .bar:nth-child(2) {
  -webkit-transform: translateX(50px);
  transform: translateX(50px);
  opacity: 0;
}

html body #wrapper #alt-header .inner-container .burger2.active-nav .bar:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

html body #wrapper #alt-header .inner-container .burger2.active-nav .bar:nth-child(3) {
  -webkit-transform: translateY(-13px) rotate(-45deg);
  transform: translateY(-13px) rotate(-45deg);
}

html body #wrapper #alt-header .inner-container .burger2.active-nav p {
  display: none;
  color: red;
}

html body #wrapper #alt-header .inner-container .burger2 p {
  color: red;
  font-size: 0.8em;
  text-align: center;
}

@media (max-width: 768px) {
  html body #wrapper #alt-header .inner-container .burger2 {
    display: block;
  }
}

html body #wrapper .overlay {
  display: none;
  height: 0%;
  width: 100%;
  position: absolute;
  z-index: 12;
  left: 0;
  top: 0;
  background-color: #003087;
  overflow: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 768px) {
  html body #wrapper .overlay {
    display: block;
  }
}

html body #wrapper .overlay.active-nav {
  height: 100vh;
}

html body #wrapper .overlay .overlay-content {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}

html body #wrapper .overlay .overlay-content nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

html body #wrapper .overlay .overlay-content nav ul li a {
  display: inline-block;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  font-size: 1.5em;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 auto;
  padding: 12px 0;
}

html body #wrapper .overlay .overlay-content nav ul li a:last-child {
  border: none;
}

html body #wrapper .overlay .overlay-content nav ul li a:hover, html body #wrapper .overlay .overlay-content nav ul li a:focus {
  color: #009ed9;
}

@media (max-width: 480px) {
  html body #wrapper .overlay .overlay-content nav ul li a {
    font-size: 1.8em;
    padding: 0.5em 0;
  }
}

html body #wrapper .overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 60px;
  font-size: 60px;
  color: #818181;
  font-weight: 300;
  cursor: pointer;
}

html body #wrapper .overlay .closebtn:hover, html body #wrapper .overlay .closebtn:focus {
  color: #f1f1f1;
}

html body #wrapper #hero {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  position: relative;
}

html body #wrapper #hero #hero_image {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
}

html body #wrapper #hero #hero_image img {
  color: #fff;
  width: 100%;
}

@media (max-width: 640px) {
  html body #wrapper #hero #hero_image img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center bottom;
       object-position: center bottom;
    height: 400px;
  }
}

@media (max-width: 480px) {
  html body #wrapper #hero #hero_image img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 400px;
  }
}

html body #wrapper #hero #hero_strapline {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper {
  padding: 1.5em 2em;
  position: relative;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgba(0, 48, 135, 0.8);
}

@media (max-width: 768px) {
  html body #wrapper #hero #hero_strapline #hero_strapline_wrapper {
    -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;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 {
  margin: 0 !important;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span {
  display: block;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:first-of-type {
  color: #fff;
  font-weight: 400;
  font-size: 1.4rem;
}

@media (max-width: 992px) {
  html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:first-of-type {
    font-size: 2.1vw;
  }
}

@media (max-width: 640px) {
  html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:first-of-type {
    font-size: 2.9vw;
  }
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:last-of-type p {
  color: #fff;
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 0rem;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:last-of-type svg {
  max-width: 500px;
  display: none;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:last-of-type svg #s_kepler_k {
  -webkit-animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;;
  animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  -webkit-animation-delay: 2.2s;
  animation-delay: 2.2s;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:last-of-type svg #s_kepler_e {
  -webkit-animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:last-of-type svg #s_kepler_p {
  -webkit-animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:last-of-type svg #s_kepler_l {
  -webkit-animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:last-of-type svg #s_kepler_e-2 {
  -webkit-animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:last-of-type svg #s_kepler_r {
  -webkit-animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper h1 span:last-of-type svg .slide-in-blurred-left {
  -webkit-animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
  animation: slide-in-blurred-left 0.5s cubic-bezier(0.23, 1, 0.32, 1) both;
}

@-webkit-keyframes slide-in-blurred-left {
  0% {
    -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) scaleY(1) scaleX(1);
    transform: translateX(0) scaleY(1) scaleX(1);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes slide-in-blurred-left {
  0% {
    -webkit-transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    transform: translateX(-1000px) scaleX(2.5) scaleY(0.2);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -webkit-filter: blur(40px);
    filter: blur(40px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0) scaleY(1) scaleX(1);
    transform: translateX(0) scaleY(1) scaleX(1)
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-filter: blur(0);
    filter: blur(0);
    opacity: 1;
  }
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper a {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 11.5em;
}

@media (max-width: 992px) {
  html body #wrapper #hero #hero_strapline #hero_strapline_wrapper a {
    font-size: 2.1vw;
  }
}

@media (max-width: 768px) {
  html body #wrapper #hero #hero_strapline #hero_strapline_wrapper a {
    margin-top: 0.5em;
  }
}

@media (max-width: 480px) {
  html body #wrapper #hero #hero_strapline #hero_strapline_wrapper a {
    min-width: 12.5em;
  }
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper a span {
  display: inline-block;
}

@media (max-width: 1280px) {
  html body #wrapper #hero #hero_strapline #hero_strapline_wrapper a span {
    margin-bottom: 0em;
  }
}

@media (max-width: 992px) {
  html body #wrapper #hero #hero_strapline #hero_strapline_wrapper a span {
    margin-bottom: 0;
  }
}

html body #wrapper #hero #hero_strapline #hero_strapline_wrapper a img {
  max-width: 10px;
  display: inline-block;
  margin-left: 1em;
  max-height: 22px;
}

@media (max-width: 768px) {
  html body #wrapper #hero #hero_strapline #hero_strapline_wrapper a img {
    max-width: 10px !important;
  }
}

html body #wrapper #hero #hero_job-cards {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: end;
  aliggn-self: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-self: center;
  width: calc(100% - 4em);
  padding: 1em 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper #hero #hero_job-cards {
    width: 100%;
  }
}

html body #wrapper #hero #hero_job-cards .cards-jobs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  width: 100%;
  opacity: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper #hero #hero_job-cards .cards-jobs {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 0 2rem;
  }
}

html body #wrapper #hero #hero_job-cards .cards-jobs a {
  display: none;
  width: 32.33%;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper #hero #hero_job-cards .cards-jobs a:hover .job-card {
  background: rgba(37, 45, 51, 0.5);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper #hero #hero_job-cards .cards-jobs a .job-card {
  border: 1px solid #fff;
  padding: 1rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

html body #wrapper #hero #hero_job-cards .cards-jobs a .job-card h1 {
  font-size: 1.5rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-weight: 100;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper #hero #hero_job-cards .cards-jobs a .job-card h1 {
    line-height: 1.3;
    margin-bottom: 0.4rem;
  }
}

html body #wrapper #hero #hero_job-cards .cards-jobs a .job-card h2 {
  display: none;
}

html body #wrapper #hero #hero_job-cards .cards-jobs a .job-card .jc-chevron {
  max-width: 10px;
  max-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
}

html body #wrapper #hero #hero_job-cards .cards-jobs a:nth-of-type(1) {
  display: block;
}

html body #wrapper #hero #hero_job-cards .cards-jobs a:nth-of-type(2) {
  display: block;
}

html body #wrapper #hero #hero_job-cards .cards-jobs a:nth-of-type(3) {
  display: block;
}

@media (max-width: 992px) {
  html body #wrapper #hero {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    -ms-grid-rows: 1fr fit-content(100px);
    grid-template-rows: 1fr fit-content(100px);
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  html body #wrapper #hero_strapline_wrapper h1 {
    margin-bottom: .5rem !important;
  }
  html body #wrapper #hero_strapline_wrapper h1 span svg {
    max-width: 250px !important;
  }
  html body #wrapper #hero_job-cards {
    -ms-grid-column: 1 !important;
    grid-column: 1 !important;
    -ms-grid-row: 2 !important;
    grid-row: 2 !important;
    background: #2a3338;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
    justify-self: baseline !important;
    width: 100% !important;
    padding: 2rem 2rem !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  html body #wrapper #hero_job-cards .cards-jobs {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  html body #wrapper #hero_job-cards .cards-jobs a {
    width: 100% !important;
    margin-bottom: 1rem;
  }
  html body #wrapper #hero_job-cards .cards-jobs a:last-of-type {
    margin: 0;
  }
}

html body #wrapper #hero.innerPage {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  position: relative;
}

html body #wrapper #hero.innerPage #hero_image {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
}

html body #wrapper hero.innerPage #hero_image img {
  color: #fff;
  width: 100%;
}

html body #wrapper #hero.innerPage #hero_strapline {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper {
  padding: 1em 2em;
  position: relative;
  bottom: 0;
}

html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper h1 {
  margin-bottom: 1rem;
}

html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper h1 span {
  display: block;
}

html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper h1 span:first-of-type {
  color: #fff;
  font-weight: 400;
  font-size: 1.2em;
  margin-bottom: 0rem;
}

html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper h1 span:last-of-type svg {
  max-width: 500px;
}

html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper a {
  color: #fff;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 0;
}

html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper a span {
  display: inline-block;
}

html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper a img {
  max-width: 10px;
  display: inline-block;
  mmargin-left: 1em;
}

@media (max-width: 480px) {
  html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-diretion: column;
    flex-direction: column;
  }
  html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper h1 {
    width: 100%;
    font-size: 5.8vw;
  }
  html body #wrapper #hero.innerPage #hero_strapline #hero_strapline_wrapper a {
    display: block !important;
  }
}

html body #wrapper #hero.innerPage #hero_job-cards {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item--align: end;
  align-self: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  justify-self: center;
  width: calc(100% - 4em);
  padding: 1em 0;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  width: 100%;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs a {
  display: none;
  width: 32.33%;
 text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs a:hover .job-card {
  background: rgba(37, 45, 51, 0.5);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs a .job-card {
  border: 1px solid #fff;
  padding: 0rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit--box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs a .job-card h1 {
  font-size: 1.5rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-weight: 100;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs a .job-card h2 {
  display: none;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs a .job-card .jc-chevron {
  max-width: 10px;
  max-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs a .job-card .jc-chevron .cls-1 {
  fill: #fff !important;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs a:nth-of-type(1) {
  display: block;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs a:nth-of-type(2) {
  display: block;
}

html body #wrapper #hero.innerPage #hero_job-cards .cards-jobs a:nth-of-type(3) {
  display: block;
}

@media (max-width: 992px) {
  html body #wrapper #hero.innerPage {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    -ms-grid-rows: 1fr fit-content(100px);
    grid-template-rows: 1fr fit-content(100px);
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  html body #wrapper #hero.innerPage #hero_strapline_wrapper h1 {
    margin-bottom: .5rem !important;
  }
  html body #wrapper #hero.innerPage #hero_strapline_wrapper h1 span svg {
    max-width: 250px !important;
  }
  html body #wrapper #hero.innerPage_job-cards {
    -ms-grid-column: 1 !important;
    grid-column: 1 !important;
    -ms-grid-row: 2 !important;
    grid-row: 2 !important;
    background: #2a3338;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
    justify-self: baseline !important;
    width: 100% !important;
    padding: 2rem 2rem !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  html body #wrapper #hero.innerPage_job-cards .cards-jobs {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  html body #wrapper #hero.innerPage_job-cards .cards-jobs a {
    width: 100% !important;
    margin-bttom: 1rem;
  }
  html body #wrapper #hero.innerPage_job-cards .cards-jobs a:last-of-type {
    margin: 0;
  }
}

@media (max-width: 768px) {
  html body #wrapper #hero.innerPage #hero_strapline {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-bottom: 0;
  }
  html body #wrapper #hero.innerPage #hero_strapline_wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  html body #wrapper #hero.innerPage #hero_strapline_wrapper h1 {
    margin-bottom: .5rem !important;
  }
  html body #wrapper #hero.innerPage #hero_strapline_wrapper a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: end;
    align-content: flex-end;
    height: 20px;
  }
  html body #wrapper #hero.innerPage #hero_strapline_wrapper a span {
    height: 20px;
  }
  html body #wrapper #hero.innerPage #hero_strapline_wrapper a img {
    height: 20px;
  }
}

html body #wrapper #heroJd {
  background: #2a3338;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  grid-template-columns: 1fr minmax(320px, calc(1500ppx + 4rem)) 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  padding: 12rem 0 3rem 0;
}

html body #wrapper #heroJd_twoCol {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  padding: 0 2rem;
}

html body #wrapper #heroJd_twoCol_left {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

html body #wrapper #heroJd_twoCol_left h1 {
  margin-top: 0;
}

html body #wrapper #heroJd_twoCol_left h1 span {
  color: #91b3c4;
  font-weight: 400;
  font-size: 3rem;
  margin-bottom: .8rem;
}

html body #wrapper #heroJd_twoCol_left a {
  color: #fff;
  text-decoration: none;
}

html body #wrapper #heroJd_twoCol_left a span {
  display: inline-block;
}

html body #wrapper #heroJd_twoCol_left a img {
  max-width: 10px;
  display: inline-block;
  margin-left: 1em;
}

html body #wrapper #heroJd_twoCol_right {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  margin-top: 1.2rem;
}

html body #wrapper #heroJd_twoCol_right span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: .5rem 0;
}

html body #wrapper #heroJd_twoCol_right span:first-of-type {
  margin-top: 0;
}

html body #wrapper #heroJd_twoCol_right .dlReplace span {
  color: #91b3c4;
  font-weight: 600;
  font-size: 1.2rem;
  font-style: italic;
  margin-right: 1rem;
}

html body #wrapper #heroJd_twoCol_right .dlReplace div {
  color: #fff;
  font-weight: 300;
  font-size: 1.2rem;
}

html body #wrapper #heroJd_twoCol_right .dsReplace span {
  color: #91b3c4;
  font-weight: 600;
  font-size: 1.2rem;
  font-style: italic;
  margin-right: 1rem;
}

html body #wrapper #heroJd_twoCol_right .dsReplace div {
  color: #fff;
  font-weight: 300;
  font-size: 1.2rem;
}

html body #wrapper #heroJd_twoCol_right .dTyReplace span {
  color: #91b3c4;
  font-weight: 600;
  font-size: 1.2rem;
  font-style: italic;
  margin-right: 1rem;
}

html body #wrapper #heroJd_twoCol_right .dTyReplace div {
  color: #fff;
  font-weight: 300;
  font-size: 1.2rem;
}

html body #wrapper #heroJd_twoCol_right .dCdReplace span {
  color: #91b3c4;
  font-weight: 600;
  font-size: 1.2rem;
  font-style: italic;
  margin-right: 1rem;
}

html body #wrapper #heroJd_twoCol_right .dCdReplace div {
  color: #fff;
  font-weight: 300;
  font-size: 1.2rem;
}

html body #wrapper #heroJd_twoCol_right .drReplace span {
  color: #91b3c4;
  font-weight: 600;
  font-size: 1.2rem;
  font-style: italic;
  margin-right: 1rem;
}

html body #wrapper #heroJd_twoCol_right .drReplace div {
  color: #fff;
  font-weight: 300;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  html body #wrapper #heroJd_twoCol {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: fit-content(100px) fit-content(100px);
    grid-template-rows: fit-content(100px) fit-content(100px);
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  html body #wrapper #heroJd_twoColleft {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  html body #wrapper #heroJd_twoCol_right {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
    margin-top: 3rem;
  }
}

@media (min-width: 1501px) {
  html body #wrapper #heroJd {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr minmax(320px, calc(100% - 4rem)) 1fr;
    grid-template-columns: 1fr minmax(320px, calc(100% - 4rem)) 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
}

html body #wrapper .stickyMenu {
  background: #dadada;
  position: -webkit-sticky;
  position: sticky;
  top: 4.8rem;
  z-index: 6;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  grid-template-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

html body #wrapper .stickyMenu_wrapper {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  padding: 1rem 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

html body #wrapper .stickyMenu_wrapper .titleSticky {
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  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;
}

html body #wrapper .stickyMenu_wrapper .titleSticky h2 {
  font-size: 1.4rem;
  margin: 0;
}

html body #wrapper .stickyMenu_wrapper .navSticky {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

html body #wrapper .stickyMenu_wrapper .navSticky .navStickyBack {
  display: block;
}

html body #wrapper .stickyMenu_wrapper .navSticky .navStickyBack .detailedBack {
  display: block;
  border: 1px solid #91b3c4;
  text-decoration: none;
  font-weight: 600;
  color: #91b3c4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 1rem 1.5rem;
  margin-right: 1rem;
  background: rgba(255, 255, 255, 0.4);
}

html body #wrapper .stickyMenu_wrapper .navSticky .navStickyBack .detailedBack:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #91b3c4;
  color: #ffffff;
}

html body #wrapper .stickyMenu_wrapper .navSticky .navStickyApply {
  display: block;
}

html body #wrapper .stickyMenu_wrapper .navSticky .navStickyApply .detailedApply {
  display: block;
  border: 1px solid #2a3338;
  text-decoration: none;
  font-weight: 600;
  color: #2a3338;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.4);
}

html body #wrapper .stickyMenu_wrapper .navSticky .navStickyApply .detailedApply:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #2a3338;
  color: #ffffff;
}

@media (max-width: 768px) {
  html body #wrapper .stickyMenu {
    position: fixed;
    top: auto;
    bottom: 0;
    z-index: 8;
  }
}

@media (min-width: 1501px) {
  html body #wrapper .stickyMenu {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr minmax(320px, calc(100% - 4rem)) 1fr;
    grid-template-columns: 1fr minmax(320px, calc(100% - 4rem)) 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
}

html body #wrapper .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  margin: 4em 0;
}

html body #wrapper .profile_img {
  margin-right: 2em;
  max-width: 140px;
  min-height: 140px;
}

html body #wrapper .profile_text {
  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;
}

html body #wrapper .profile_text_name {
  font-weight: 500;
  margin: 0;
}

html body #wrapper .profile_text_subname {
  font-weight: 700;
  font-size: 1.6rem;
}

html body #wrapper .bios {
  /* EXPAND AND CLOSE FAQ */
}

html body #wrapper .bios .inner-container {
  padding: 0 2em;
}

@media (max-width: 480px) {
  html body #wrapper .bios .inner-container {
    padding: 0 1em;
  }
}

html body #wrapper .bios .expand {
  background: #2a3338;
  background-size: 2%;
  color: #da1e1e !important;
  text-decoration: none !important;
  padding: 20px;
  margin: 10px 0px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

html body #wrapper .bios .expand:hover {
  background-color: #46606f;
  color: #fff !important;
}

html body #wrapper .bios .expand.open {
  background: #46606f;
  background-size: 2%;
  color: #fff !important;
}

html body #wrapper .bios .collapse {
  display: none;
}

html body #wrapper .bios .collapse:after {
  content: "";
  display: table;
  clear: both;
}

html body #wrapper .bios .collapse p {
  padding: 10px;
  margin: 0 !important;
}

html body #wrapper .expand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

html body #wrapper .expand .image-pro {
  width: 80px;
  max-width: 100%;
}

html body #wrapper .expand .image-pro img {
  max-width: 100%;
  border-radius: 50%;
}

html body #wrapper .expand .title {
  width: calc(100% - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

html body #wrapper .expand .title h3 {
  color: #ffffff;
  font-weight: 300;
  font-size: 1.25em;
}

html body #wrapper main {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  grid-template-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

html body #wrapper main .main_copy {
  padding: 2rem;
  -ms-grid-column: 2;
  grid-column: 2;
}

html body #wrapper main .main_copy h1 {
  font-size: 2rem;
}

@media (min-width: 1501px) {
  html body #wrapper main {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr minmax(320px, calc(100% - 4rem)) 1fr;
    grid-template-columns: 1fr minmax(320px, calc(100% - 4rem)) 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
}

html body #wrapper .secondary_nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  grid-template-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  background: url(https://expertcontribdev.hays.com/documents/1083086/1083163/sec_nav_background.jpg/a07c0b06-1aa4-283d-617f-561ee946d06b?t=1574327417599) no-repeat center center;
  background-size: cover;
}

html body #wrapper .secondary_nav_wrapper {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 0;
  padding: 6rem 2rem 12rem 2rem;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .secondary_nav_wrapper {
    -ms-grid-columns: minmax(0, 1fr) 3rem minmax(0, 1fr) 3rem minmax(0, 1fr);
  }
}

html body #wrapper .secondary_nav_wrapper_block1 {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  display: block;
  overflow: hidden;
}

html body #wrapper .secondary_nav_wrapper_block1 a {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block1 a img {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block1 a p {
  background: rgba(37, 45, 51, 0.8);
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0;
  padding: 1em;
  text-align: center;
}

html body #wrapper .secondary_nav_wrapper_block1 a:hover img {
  -webkit-transform: scale(1.3) rotate(30deg);
  transform: scale(1.3) rotate(30deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block1 a:hover p {
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block2 {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  display: block;
  overflow: hidden;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .secondary_nav_wrapper_block2 {
    -ms-grid-column: 3;
  }
}

html body #wrapper .secondary_nav_wrapper_block2 a {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block2 a img {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block2 a p {
  background: rgba(37, 45, 51, 0.8);
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0;
  padding: 1em;
  text-align: center;
}

html body #wrapper .secondary_nav_wrapper_block2 a:hover img {
  -webkit-transform: scale(1.3) rotate(30deg);
  transform: scale(1.3) rotate(30deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block2 a:hover p {
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block3 {
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  display: block;
  overflow: hidden;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .secondary_nav_wrapper_block3 {
    -ms-grid-column: 5;
  }
}

html body #wrapper .secondary_nav_wrapper_block3 a {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block3 a img {
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block3 a p {
  background: rgba(37, 45, 51, 0.8);
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  margin: 0;
  padding: 1em;
  text-align: center;
}

html body #wrapper .secondary_nav_wrapper_block3 a:hover img {
  -webkit-transform: scale(1.3) rotate(30deg);
  transform: scale(1.3) rotate(30deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .secondary_nav_wrapper_block3 a:hover p {
  background: rgba(0, 0, 0, 0.8);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 768px) {
  html body #wrapper .secondary_nav_wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: 1fr 2rem 1fr 2rem 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-column-gap: 0;
    grid-row-gap: 2rem;
  }
  html body #wrapper .secondary_nav_wrapper_block1 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  html body #wrapper .secondary_nav_wrapper_block2 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 2;
  }
  html body #wrapper .secondary_nav_wrapper_block3 {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 5;
    grid-row: 3;
  }
}

@media (min-width: 1501px) {
  html body #wrapper .secondary_nav {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr minmax(320px, calc(100% - 4rem)) 1fr;
    grid-template-columns: 1fr minmax(320px, calc(100% - 4rem)) 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
}

html body #wrapper footer {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  grid-template-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

html body #wrapper footer #inner-footer-expert {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
  padding: 0 2rem;
}

html body #wrapper footer #inner-footer-expert #defaultLogo {
  max-width: 192px;
  padding: 10px;
}

html body #wrapper footer #inner-footer-expert #footerLogo-Links a {
  color: #666;
  font-size: 16px;
  margin-left: 20px;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

html body #wrapper footer #inner-footer-expert #footerLogo-Links a:hover {
  color: #002776;
}

html body #wrapper footer #inner-footer-expert .expertLink1 {
  display: none !important;
}

html body #wrapper footer #inner-footer-expert #copyright-expert p {
  margin: 0;
}

html body #wrapper footer #inner-footer-expert #copyright-expert p a {
  margin-bottom: 5px;
  font-size: 12px;
  color: #009ed9;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
}

html body #wrapper footer #inner-footer-expert #copyright-expert p a span {
  margin-left: 10px;
}

@media (max-width: 480px) {
  html body #wrapper footer #inner-footer-expert #footerLogo-Links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  html body #wrapper footer #inner-footer-expert #footerLogo-Links a {
    margin-left: 10px;
  }
}

html body #wrapper footer #expert-site-footer {
  padding-left: 5px;
}

html body #wrapper footer #expert-site-footer.line-footer {
  border-top: 1px solid #e5e5e5;
  padding-top: 10px;
  line-height: 1;
}

html body #wrapper footer #expert-site-footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  padding-left: 0;
  margin: 0;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
}

html body #wrapper footer #expert-site-footer ul li {
  border-left: 1px solid #d1d1d1;
  margin-bottom: 8px;
  padding: 0px 6px;
  list-style: none;
}

html body #wrapper footer #expert-site-footer ul li.first {
  border-left: none !important;
}

html body #wrapper footer #expert-site-footer ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: #333;
  text-decoration: none;
}

html body #wrapper footer #expert-site-footer ul li a:hover {
  color: #002776;
}

@media (max-width: 480px) {
  html body #wrapper .stickyMenu ~ footer {
    margin-bottom: 7rm;
  }
}

html body #wrapper .two_col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 2fr) minmax(0, 1fr);
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .two_col {
    -ms-grid-columns: minmax(0, 2fr) 3rem minmax(0, 1fr);
  }
}

html body #wrapper .two_col_left {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

html body #wrapper .two_col_right {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

html body #wrapper .two_col_right .cards-jobs a {
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin-bottom: 1rem;
}

html body #wrapper .two_col_right .cards-jobs a .job-card {
  background: #003087;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

html body #wrapper .two_col_right .cards-jobs a .job-card h1 {
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
  max-width: calc(100% - 2rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

html body #wrapper .two_col_right .cards-jobs a .job-card h2 {
  display: none;
}

html body #wrapper .two_col_right .cards-jobs a .job-card svg {
  width: 22px;
  height: 30px;
}

html body #wrapper .two_col_right .cards-jobs a:hover {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

html body #wrapper .two_col_right .cards-jobs a:hover .job-card {
  background: #000;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.viewAllJobsBtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.viewAllJobsBtn a svg {
  max-height: 30px;
  height: 30px;
  width: 20px;
  display: none;
}

.viewAllJobsBtn a svg .chevron-1 {
  fill: #003087;
  display: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .two_col_right {
    -ms-grid-column: 3;
  }
}

html body #wrapper .two_col_right img {
  width: 100%;
}

html body #wrapper .two_col_right .caption {
  background: #2a3338;
  padding: 1.5rem;
}

html body #wrapper .two_col_right .caption_text {
  margin: 0;
  color: #fff !important;

  font-weight: 600;
  font-size: 1.4rem;
}

@media (max-width: 992px) {
  html body #wrapper .two_col {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    -ms-grid-rows: fit-content(100px) fit-content(100px);
    grid-template-rows: fit-content(100px) fit-content(100px);
    grid-column-gap: 0;
    grid-row-gap: 2rem;
  }
  html body #wrapper .two_col_left {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  html body #wrapper .two_col_right {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

html body #wrapper .three-col {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 0;
  margin: 3rem 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .three-col {
    -ms-grid-columns: minmax(0, 1fr) 3rem minmax(0, 1fr) 3rem minmax(0, 1fr);
  }
}

html body #wrapper .three-col_block {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: fit-content(100px) 1fr;
  grid-template-rows: fit-content(100px) 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

html body #wrapper .three-col_block:nth-of-type(1) {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

html body #wrapper .three-col_block:nth-of-type(2) {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .three-col_block:nth-of-type(2) {
    -ms-grid-column: 3;
  }
}

html body #wrapper .three-col_block:nth-of-type(3) {
  -ms-grid-column: 3;
  grid-column: 3;
  -ms-grid-row: 1;
  grid-row: 1;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .three-col_block:nth-of-type(3) {
    -ms-grid-column: 5;
  }
}

html body #wrapper .three-col_block_img {
  border: 1px solid #2a3338;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  padding: 6rem;
}

html body #wrapper .three-col_block_img img {
  max-height: 12rem;
  display: block;
}

html body #wrapper .three-col_block_text {
  background: #2a3338;
  padding: 2rem 3rem;
}

html body #wrapper .three-col_block_text h2 {
  color: #91b3c4;
}

html body #wrapper .three-col_block_text p {
  color: #fff;
}

@media (max-width: 992px) {
  html body #wrapper .three-col {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 2rem auto 2rem auto;
    grid-template-rows: fit-content(300px) fit-content(300px) fit-content(300px);
    grid-column-gap: 0;
    grid-row-gap: 2rem;
  }
  html body #wrapper .three-col_block:nth-of-type(1) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  html body #wrapper .three-col_block:nth-of-type(2) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 2;
  }
  html body #wrapper .three-col_block:nth-of-type(3) {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 5;
    grid-row: 3;
  }
}

html body #wrapper .two-col_wideRight {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) minmax(0, 1.8fr);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

html body #wrapper .two-col_wideRight_left {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  background: #91b3c4;
  overflow-y: hidden;
  position: relative;
}

html body #wrapper .two-col_wideRight_left h2 {
  padding: 2rem 3rem 0 3rem;
}

html body #wrapper .two-col_wideRight_left .scroll_wrapper {
  position: absolute;
  top: 3rem;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 3rem 2rem 3rem 3rem;
  padding-right: 3rem;
}

html body #wrapper .two-col_wideRight_right {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

@media (max-width: 992px) {
  html body #wrapper .two-col_wideRight {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: minmax(100px, 400px) fit-content(100px);
    grid-template-rows: minmax(100px, 400px) fit-content(100px);
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  html body #wrapper .two-col_wideRight_left {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  html body #wrapper .two-col_wideRight_right {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

html body #wrapper .tabSystem {
  width: 100%;
  height: 50rem;
  margin: auto;
  position: relative;
  padding: 2em 0;
}

html body #wrapper .tabSystem header {
  width: 100%;
}

html body #wrapper .tabSystem header h1 {
  background: #3c6b85;
  color: #fff;
  padding: 1rem;
  position: relative;
  z-index: 8;
}

html body #wrapper .tabSystem nav {
  width: 100%;
}

html body #wrapper .tabSystem nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

html body #wrapper .tabSystem nav ul li {
  padding: 1rem;
  cursor: pointer;
  color: #91b3c4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  text-align: center;
  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;
}

@media (min-width: 769px) {
  html body #wrapper .tabSystem nav ul li {
    border-right: none;
    background: #2a3338;
    margin: 0.06rem 0;
    height: 7rem;
  }
}

html body #wrapper .tabSystem nav ul li:hover {
  background: #dadada;
  color: #91b3c4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .tabSystem nav ul li:hover svg .cls-1 {
  fill: #2a3338 !important;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .tabSystem nav ul li:hover span {
  color: #2a3338;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .tabSystem nav ul li.pressed {
  background: #dadada;
  color: #91b3c4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .tabSystem nav ul li.pressed svg .cls-1 {
  fill: #2a3338 !important;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .tabSystem nav ul li.pressed span {
  color: #2a3338;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .tabSystem nav ul li.currentPage {
  background: #dadada;
  color: #91b3c4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .tabSystem nav ul li.currentPage svg .cls-1 {
  fill: #2a3338 !important;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .tabSystem nav ul li.currentPage span {
  color: #2a3338;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .tabSystem nav ul li svg {
  width: 3.5rem;
  max-height: 3.5rem;
  display: block;
  margin: 0 auto .5rem auto;
}

html body #wrapper .tabSystem nav ul li svg .cls-1 {
  fill: #91b3c4;
}

@media (max-width: 768px) {
  html body #wrapper .tabSystem nav ul li {
    line-height: 4.2rem;
    background: #2a3338;
  }
}

@media (min-width: 769px) {
  html body #wrapper .tabSystem nav ul {
    display: block;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 768px) {
  html body #wrapper .tabSystem nav ul {
    padding-left: 0;
    margin: 0;
    height: 4.2rem;
  }
}

@media (min-width: 769px) {
  html body #wrapper .tabSystem nav {
    float: left;
    width: 8rem;
    height: 44rem;
    position: relative;
    bottom: 1.4rem;
  }
}

@media (max-width: 768px) {
  html body #wrapper .tabSystem nav {
    position: relative;
    top: -1.3rem;
  }
}

html body #wrapper .tabSystem #tabSystem_contents {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  height: calc(100% - 6rem);
  width: 100%;
  top: 9rem;
  left: 0;
  overflow: hidden;
  background: #2a3338;
}

@media (min-width: 769px) {
  html body #wrapper .tabSystem #tabSystem_contents {
    height: calc(100% - 4.8rem);
    width: calc(100% - 8rem);
    top: 7.1rem;
    left: 8rem;
  }
}

@media (max-width: 768px) {
  html body #wrapper .tabSystem #tabSystem_contents {
    top: 12rem;
    height: calc(100% - 12rem);
  }
}

html body #wrapper .tabSystem #tabSystem_contents article {
  position: absolute;
  height: 100%;
  width: 100%;
  padding: 2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #dadada;
  top: 0;
  left: -100%;
}

html body #wrapper .tabSystem #tabSystem_contents article.hide {
  -webkit-transition: left 0s 0.5s;
  transition: left 0s 0.5s;
}

html body #wrapper .tabSystem #tabSystem_contents article:nth-of-type(1) {
  z-index: 5;
}

html body #wrapper .tabSystem #tabSystem_contents article:nth-of-type(2) {
  z-index: 4;
}

html body #wrapper .tabSystem #tabSystem_contents article:nth-of-type(3) {
  z-index: 3;
}

html body #wrapper .tabSystem #tabSystem_contents article:nth-of-type(4) {
  z-index: 2;
}

html body #wrapper .tabSystem #tabSystem_contents article:nth-of-type(5) {
  z-index: 1;
}

html body #wrapper .tabSystem #tabSystem_contents article.show {
  -webkit-transition: left 0.5s;
  transition: left 0.5s;
  left: 0;
  z-index: 6;
}

html body #wrapper .tabSystem #tabSystem_contents article section {
  width: 100%;
  color: #91b3c4;
}

html body #wrapper .tabSystem #tabSystem_contents article section h1 {
  font-size: 1.5rem;
  margin: 0 0 2rem 0;
  color: #2a3338;
}

html body #wrapper .two-col_wideRightTwoRow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1fr) minmax(0, 1.8fr);
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

html body #wrapper .two-col_wideRightTwoRow_left {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  background: #91b3c4;
  overflow-y: hidden;
  position: relative;
}

html body #wrapper .two-col_wideRightTwoRow_left h2 {
  padding: 2rem 3rem 0 3rem;
}

html body #wrapper .two-col_wideRightTwoRow_left .scroll_wrapper {
  position: absolute;
  top: 3rem;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 3rem 2rem 3rem 3rem;
  padding-right: 3rem;
}

html body #wrapper .two-col_wideRightTwoRow_right {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

html body #wrapper .two-col_wideRightTwoRow_right .custom_map {
  overflow: hidden;
}

html body #wrapper .two-col_wideRightTwoRow_right .custom_map iframe {
  margin-top: -46px;
  border: 0 !important;
}

html body #wrapper .two-col_wideRightTwoRow_rowTwoFullWidth {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/span 2;
  -ms-grid-row: 2;
  grid-row: 2;
}

html body #wrapper .two-col_wideRightTwoRow_rowTwoFullWidth img {
  width: 100%;
}

@media (max-width: 992px) {
  html body #wrapper .two-col_wideRightTwoRow {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: minmax(100px, 300px) fit-content(100px) fit-content(100px);
    grid-template-rows: minmax(100px, 300px) fit-content(100px) fit-content(100px);
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
  html body #wrapper .two-col_wideRightTwoRow_left {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  html body #wrapper .two-col_wideRightTwoRow_right {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  html body #wrapper .two-col_wideRightTwoRow_rowTwoFullWidth {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}

html body #wrapper .accordion {
  margin: 3em auto;
}

html body #wrapper .accordion .toggle {
  display: none;
}

html body #wrapper .accordion .option {
  position: relative;
  margin-bottom: 1em;
}

html body #wrapper .accordion .title,
html body #wrapper .accordion .content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .accordion .title {
  background: #fff;
  padding: 1em 0 1em 0;
  display: block;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .accordion .title:after,
html body #wrapper .accordion .title:before {
  content: '';
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #000;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .accordion .title:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

html body #wrapper .accordion .content {
  max-height: 0;
  overflow: auto;
  background-color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-top: 1px solid rgba(0, 0, 0, 0.5);
}

html body #wrapper .accordion .content p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 0.9em;
  line-height: 1.5;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .accordion .toggle:checked + .title,
html body #wrapper .accordion .toggle:checked + .title + .content {
  border-top: 1px solid #91b3c4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .accordion .toggle:checked + .title + .content {
  max-height: 500px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .accordion .toggle:checked + .title:before {
  -webkit-transform: rotate(90deg) !important;
  transform: rotate(90deg) !important;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .jobs-styling {
  padding: 2rem;
}

html body #wrapper .jobs-styling .cards-jobs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  width: 100%;
  margin: 3rem 0 2rem 0;
  opacity: 0;
}

html body #wrapper .jobs-styling .cards-jobs a {
  display: block;
  width: 32.3%;
  text-decoration: none;
  margin-bottom: 1rem;
}

html body #wrapper .jobs-styling .cards-jobs a .job-card {
  border: 1px solid #2a3338;
  position: relative;
  padding: 1rem;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

html body #wrapper .jobs-styling .cards-jobs a .job-card h1 {
  font-size: 1.3rem;
  color: #2a3338;
  position: relative;
  z-index: 2;
  font-weight: 300;
  max-width: 88%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .jobs-styling .cards-jobs a .job-card h1 {
    line-height: 1.35;
    margin-bottom: 0.35rem;
  }
}

html body #wrapper .jobs-styling .cards-jobs a .job-card h2 {
  display: none;
}

html body #wrapper .jobs-styling .cards-jobs a .job-card .jc-chevron {
  max-width: 10px;
  max-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
  position: relative;
  z-index: 2;
}

html body #wrapper .jobs-styling .cards-jobs a .job-card .jc-chevron .cls-1 {
  fill: #2a3338 !important;
}

html body #wrapper .jobs-styling .cards-jobs a .job-card:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #dadada;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  opacity: .8;
}

html body #wrapper .jobs-styling .cards-jobs a .job-card:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 100%;
  background: #91b3c4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  opacity: .8;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .jobs-styling .cards-jobs a .job-card:after, html body #wrapper .jobs-styling .cards-jobs a .job-card:before {
    display: none !important;
  }
}

html body #wrapper .jobs-styling .cards-jobs a .job-card:hover::before {
  left: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .jobs-styling .cards-jobs a .job-card:hover::after {
  right: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

@media (max-width: 992px) {
  html body #wrapper .jobs-styling .cards-jobs a {
    width: 100%;
  }
}

html body #wrapper .text {
  padding: 2em;
}

html body #wrapper .right-side-hero {
  width: 30%;
}

@media (max-width: 768px) {
  html body #wrapper .right-side-hero {
    width: 100%;
  }
}

html body #wrapper div.job-description-hero .job-description-hero:first-child {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

html body #wrapper .job-description-hero {
  margin-top: 153px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
}

@media (max-width: 768px) {
  html body #wrapper .job-description-hero {
    margin-top: 100px;
  }
}

html body #wrapper #Form1 > p {
  display: none;
}

html body #wrapper #Form1 {
  padding: 1em 0;
  font-size: 1.3rem;
}

html body #wrapper #Form1 p {
  color: #ffffff;
  margin: 0;
}

html body #wrapper #Form1 p span {
  color: #91b3c4;
  font-style: italic;
}

html body #wrapper #Form1 p:not(:last-child) {
  margin-bottom: 1rem;
}

html body #wrapper #Form1 p:last-child {
  display: none;
}

html body #wrapper #Form1 .detail-wrapper {
  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;
}

html body #wrapper .details-wrapper-main {
  width: 25%;
}

@media (max-width: 768px) {
  html body #wrapper .details-wrapper-main {
    width: 100%;
    margin-top: 2em;
  }
}

html body #wrapper .deails-wrapper-main p {
  background: #003087;
}

html body #wrapper .details-wrapper-main span {
  color: #ffffff;
  background: #000000;
  display: block;
  padding: .5rem 1rem;
  width: 100%;
  font-size: 1.2rem;
}

html body #wrapper .details-wrapper-main .dc_text {
  padding: .5rem 1rem;
  width: 100%;
  font-size: 1.2rem;
  background: #003087;
  color: #fff;
}

html body #wrapper .details-wrapper-hero p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-contennt: space-between;
}

html body #wrapper .rule {
  display: none;
}

html body #wrapper .MAIN-job-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 768px) {
  html body #wrapper .MAIN-job-description {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

html body #wrapper .MAIN-job-description .detailedDescription {
  width: 65%;
}

@media (max-width: 768px) {
  html body #wrapper .MAIN-job-description .detailedDescription {
    width: 100%;
  }
}

html body #wrapper .MAIN-job-description .jd-aside {
  width: 30%;
}

@media (max-width: 768px) {
  html body #wrapper .MAIN-job-description .jd-aside {
    width: 100%;
  }
}

html body #wrapper .applyBtns {
  background: #dadada;
  height: 100px;
  padding: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

html body #wrapper .applyBtns .detailedTitle {
  font-size: 1.4rem;
  margin: 0;
  font-weight: 600;
}

html body #wrapper .applyBtns .apply-btns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

html body #wrapper .applyBtns .detailedBack {
  display: block;
  border: 1px solid #91b3c4;
  text-decoration: none;
  font-weight: 600;
  color: #91b3c4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 1rem 1.5rem;
  margin-right: 1rem;
  background: rgba(255, 255, 255, 0.4);
}

html body #wrapper .applyBtns .detailedBack:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #91b3c4;
  color: #ffffff;
}

html body #wrapper .applyBtns .detailedApply {
  display: block;
  border: 1px solid #2a3338;
  text-decoration: none;
  font-weight: 600;
  color: #2a3338;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.4);
}

html body #wrapper .applyBtns .detailedApply:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #2a3338;
  color: #ffffff;
}

html body #wrapper .job-details .main_copy.innerPage {
  padding: 4rem 2rem;
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

html body #wrapper .job-details .main_copy.innerPage .detailedContact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: .5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html body #wrapper .job-details .main_copy.innerPage .detailedContact span {
  background: #2a3338;
  color: #fff;
  padding: .5rem 1rem;
  width: 100%;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html body #wrapper .job-details .main_copy.innerPage .detailedContact div {
  background: #91b3c4;
  color: #2a3338;
  padding: 1rem;
  width: 100%;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html body #wrapper .job-details .main_copy.innerPage .detailedOffice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: .5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html body #wrapper .job-details .main_copy.innerPage .detailedOffice span {
  background: #2a3338;
  color: #fff;
  padding: .5rem 1rem;
  width: 100%;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html body #wrapper .job-details .main_copy.innerPage .detailedOffice div {
  background: #91b3c4;
  color: #2a3338;
  padding: 1rem;
  width: 100%;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html body #wrapper .job-details .main_copy.innerPage .detailedPhone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: .5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html body #wrapper .job-details .main_copy.innerPage .detailedPhone span {
  background: #2a3338;
  color: #fff;
  padding: .5rem 1rem;
  width: 100%;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html body #wrapper .job-details .main_copy.innerPage .detailedPhone div {
  background: #91b3c4;
  color: #2a3338;
  padding: 1rem;
  width: 100%;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html body #wrapper .job-details .main_copy.innerPage .detailedEmail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: .5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

html body #wrapper .job-details .main_copy.innerPage .detailedEmail span {
  background: #2a3338;
  color: #fff;
  padding: .5rem 1rem;
  width: 100%;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html body #wrapper .job-details .main_copy.innerPage .detailedEmail div {
  background: #91b3c4;
  color: #2a3338;
  padding: 1rem;
  width: 100%;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html body #wrapper .job-details .main_copy.innerPage .detailedBack {
  display: inline-block;
  background: #dadada;
  color: #111111;
  text-decoration: none;
  padding: .5rem 1.5rem;
  margin: 1rem 1rem 0 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .job-details .main_copy.innerPage .detailedBack:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #111;
  color: #fff;
}

html body #wrapper .job-details .main_copy.innerPage .detailedApply {
  display: inline-block;
  background: #dadada;
  color: #111111;
  text-decoration: none;
  padding: .5rem 1.5rem;
  margin-top: 1rem;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .job-details .main_copy.innerPage .detailedApply:hover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #111;
  color: #fff;
}

html body #wrapper .job-details .main_copy.innerPage .twoColumnJd {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 3rem;
  grid-row-gap: 0;
}

html body #wrapper .job-details .main_copy.innerPage .twoColumnJd .detailedDescription {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
}

html body #wrapper .job-details .main_copy.innerPage .twoColumnJd .jd-aside {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 1;
  grid-row: 1;
}

@media (max-width: 768px) {
  html body #wrapper .job-details .main_copy.innerPage .twoColumnJd {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: fit-content(100px) fit-content(100px);
    grid-template-rows: fit-content(100px) fit-content(100px);
    grid-column-gap: 0;
    grid-row-gap: 3rem;
  }
  html body #wrapper .job-details .main_copy.innerPage .twoColumnJd .detailedDescription {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1;
  }
  html body #wrapper .job-details .main_copy.innerPage .twoColumnJd .jd-aside {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}

html body #wrapper .map-only {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  grid-template-columns: 1fr minmax(320px, calc(1500px + 4rem)) 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
}

html body #wrapper .map-only .inner-container {
  padding: 2rem;
  -ms-grid-column: 2;
  grid-column: 2;
}

html body #wrapper .map-only .inner-container iframe {
  border: 1px solid #2a3338 !important;
}

@media (min-width: 1501px) {
  html body #wrapper .map-only {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr minmax(320px, calc(100% - 4rem)) 1fr;
    grid-template-columns: 1fr minmax(320px, calc(100% - 4rem)) 1fr;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-row-gap: 0;
  }
}

@media (max-width: 480px) {
  html body #wrapper .map-only .inner-container iframe {
    height: 400px;
  }
}

html body #wrapper .latest-jobs-section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(320px, calc(1920px + 4rem)) 1fr;
  grid-template-columns: 1fr minmax(320px, calc(1920px + 4rem)) 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  background-color: #f3f3f3;
}

html body #wrapper .latest-jobs-section .inner-container {
  padding: 2rem;
  -ms-grid-column: 2;
  grid-column: 2;
}

html body #wrapper .latest-jobs-section .inner-container > h2 {
  display: none;
}

html body #wrapper .latest-jobs-section .inner-container .view-more {
  display: none;
}

html body #wrapper .latest-jobs-section .inner-container .Viewall {
  display: none;
}

html body #wrapper .latest-jobs-section .inner-container .lfr-search-container.lfr-search-container-wrapper {
  display: none;
}

html body #wrapper .latest-jobs-section .inner-container .cards-jobs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-flow: wrap;
  flex-flow: wrap;
  width: 100%;
  opacity: 0;
}

html body #wrapper .latest-jobs-section .inner-container .cards-jobs a {
  display: none;
  width: 32.33%;
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  background: #2a3338;
}

html body #wrapper .latest-jobs-section .inner-container .cards-jobs a:hover .job-card {
  background: #91b3c4;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html body #wrapper .latest-jobs-section .inner-container .cards-jobs a .job-card {
  border: 1px solid #fff;
  padding: 1rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

html body #wrapper .latest-jobs-section .inner-container .cards-jobs a .job-card h1 {
  font-size: 1.5rem;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  font-weight: 100;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  html body #wrapper .latest-jobs-section .inner-container .cards-jobs a .job-card h1 {
    line-height: 1.35;
    margin-bottom: 0.35rem;
  }
}

html body #wrapper .latest-jobs-section .inner-container .cards-jobs a .job-card h2 {
  display: none;
}

html body #wrapper .latest-jobs-section .inner-container .cards-jobs a .job-card .jc-chevron {
  max-width: 10px;
  max-height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
  align-self: center;
}

html body #wrapper .latest-jobs-section .inner-container .cards-jobs a:nth-of-type(1) {
  display: block;
}

html body #wrapper .latest-jobs-section .inner-container .cards-jobs a:nth-of-type(2) {
  display: block;
}

html body #wrapper .latest-jobs-section .inner-container .cards-jobs a:nth-of-type(3) {
  display: block;
}

@media (max-width: 768px) {
  html body #wrapper .latest-jobs-section .inner-container .cards-jobs a {
    width: 49%;
    margin-bottom: 1em;
  }
}

@media (max-width: 480px) {
  html body #wrapper .latest-jobs-section .inner-container .cards-jobs a {
    width: 100%;
  }
}

html body #wrapper .latest-jobs-section.single {
  margin: 0em 0em 2em 0;
  -ms-grid-columns: minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
}

html body #wrapper .latest-jobs-section.single .inner-container {
  padding: 1em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-grid-column: 1;
  grid-column: 1;
}

html body #wrapper .latest-jobs-section.single .inner-container > h2 {
  display: block;
  font-weight: 500;
  color: #2a3338;
}

html body #wrapper .latest-jobs-section.single .inner-container .view-more {
  display: block;
  margin-top: 1em;
}

html body #wrapper .latest-jobs-section.single .inner-container .view-more button {
  width: 100%;
  background-color: transparent;
  border: 2px solid #2a3338;
  padding: 1em 1.8em;
  cursor: pointer;
  font-weight: 300;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 1.25em;
  color: #2a3338;
}

html body #wrapper .latest-jobs-section.single .inner-container .view-more button:hover {
  background-color: #2a3338;
  color: #ffffff;
  border: 2px solid #91b3c4;
}

html body #wrapper .latest-jobs-section.single .inner-container .Viewall {
  display: block;
  width: 100%;
  background-color: transparent;
  border: 2px solid #2a3338;
  padding: 1em 1.8em 0.68em;
  cursor: pointer;
  font-weight: 300;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 1.25em;
  color: #2a3338;
  text-decoration: none;
  text-align: center;
}

html body #wrapper .latest-jobs-section.single .inner-container .Viewall:hover {
  background-color: #2a3338;
  color: #ffffff;
  border: 2px solid #91b3c4;
}

html body #wrapper .latest-jobs-section.single .inner-container .cards-jobs a {
  width: 100%;
  margin-bottom: 1em;
}

body .main-jobs {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr minmax(320px, calc(1153px + 4rem)) 1fr;
  grid-template-columns: 1fr minmax(320px, calc(1153px + 4rem)) 1fr;
  padding: 4em 0;
}
body .main-jobs .inner-container {
  -ms-grid-column: 2;
  grid-column: 2;
  padding: 0 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body .main-jobs .inner-container h1, body .main-jobs .inner-container h2 {
  font-family: "Gotham Narrow", sans-serif;
  font-size: 2.3em;
  margin-bottom: 0.5em;
  color: #002776;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1.2;
}
body .main-jobs .inner-container h1 span, body .main-jobs .inner-container h2 span {
  display: block;
  font-family: "Gotham Narrow", sans-serif;
  color: #009fda;
  font-weight: bold;
  text-transform: uppercase;
}
body .main-jobs .inner-container .searchStrip {
  padding: 0 0 4em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body .main-jobs .inner-container .searchStrip .clearSearch {
  display: inline-block;
  padding: 1em 1.5em;
  border: 0;
  background-color: #000000;
  color: #ffffff;
  font-weight: bold;
  font-size: 1em;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
body .main-jobs .inner-container .searchStrip .clearSearch:hover {
  background-color: #000000;
}
body .main-jobs .inner-container .searchStrip label {
  display: inline-block;
  width: calc(100% - 180px);
  padding: 0.75em 1.5em;
  background: #000000;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body .main-jobs .inner-container .searchStrip .newSearchInput {
  display: inline-block;
  width: calc(100% - 180px);
  padding: 1em 1.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 0;
  border-bottom: 2px solid #000000;
  background-color: #f2f2f2;
  font-size: 1em;
  color: #000000;
  font-family: "Gotham Narrow", sans-serif;
}
body .main-jobs .inner-container .searchStrip .newSearchInput::-webkit-input-placeholder {
  color: rgba(87, 87, 87, 0.7);
}
body .main-jobs .inner-container .searchStrip .newSearchInput::-moz-placeholder {
  color: rgba(87, 87, 87, 0.7);
}
body .main-jobs .inner-container .searchStrip .newSearchInput:-ms-input-placeholder {
  color: rgba(87, 87, 87, 0.7);
}
body .main-jobs .inner-container .searchStrip .newSearchInput::-ms-input-placeholder {
  color: rgba(87, 87, 87, 0.7);
}
body .main-jobs .inner-container .searchStrip .newSearchInput::placeholder {
  color: rgba(87, 87, 87, 0.7);
}
@media (max-width: 640px) {
  body .main-jobs .inner-container .searchStrip label {
    width: 100%;
  }
  body .main-jobs .inner-container .searchStrip .newSearchInput {
    margin-bottom: 1em;
    width: 100%;
  }
  body .main-jobs .inner-container .searchStrip .clearSearch {
    width: 100%;
  }
}
body .main-jobs .inner-container .pNav {
  padding: 2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body .main-jobs .inner-container .pNav button {
  border: none;
  background: #000000;
  padding: 1em 1.2em;
  margin-right: 1rem;
  line-height: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body .main-jobs .inner-container .pNav button svg {
    height: 17px;
  }
}
body .main-jobs .inner-container .pNav .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .main-jobs .inner-container .pNav .pagination li {
  margin-left: 0.25em;
  cursor: pointer;
}
body .main-jobs .inner-container .pNav .pagination li:first-child {
  margin-left: 0;
}
body .main-jobs .inner-container .pNav .pagination li.active a {
  color: #000000;
}
body .main-jobs .inner-container .pNav .pagination a {
  text-decoration: none;
  color: #000000;
  font-weight: bold;
  font-size: 1.125em;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
body .main-jobs .inner-container .pNav .pagination a:hover {
  color: #000000;
}
body .main-jobs .inner-container .job-cards .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          list-style-type: none;
          padding: 0;
}
body .main-jobs .inner-container .job-cards .list li {
  width: 49%;
  text-decoration: none;
  margin-bottom: 1em;
  border-radius: 0px;
  background: #fdfdfd;
  -webkit-box-shadow: 11px 11px 31px #d7d7d7, -11px -11px 31px #ffffff;
          box-shadow: 11px 11px 31px #d7d7d7, -11px -11px 31px #ffffff;
  padding: 1.25em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
body .main-jobs .inner-container .job-cards .list li a {
  display: block;
  text-decoration: none;
}
body .main-jobs .inner-container .job-cards .list li a .job-card {
  height: inherit;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}
body .main-jobs .inner-container .job-cards .list li a .job-card .newJobCards {
  color: #000000;
}
body .main-jobs .inner-container .job-cards .list li a .job-card .newJobCards .job-title {
  /* font-family: "Gotham Narrow", sans-serif; */
  text-transform: uppercase;
  font-size: 1.25em;
  margin-bottom: 0.25em;
}
body .main-jobs .inner-container .job-cards .list li a .job-card .newJobCards .job-location {
  font-weight: 300;
  font-size: 1.125em;
  margin-bottom: 1em;
}


body .main-jobs .inner-container .job-cards .list li a .job-card .cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
body .main-jobs .inner-container .job-cards .list li a .job-card .cta span {
  display: inline-block;
  color: #000000;
  font-size: 1.125em;
  font-weight: bold;
}
body .main-jobs .inner-container .job-cards .list li a .job-card .cta svg {
  width: 40px;
  fill: #000000;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body .main-jobs .inner-container .job-cards .list li a .job-card .cta svg {
    height: 27px;
  }
}
body .main-jobs .inner-container .job-cards .list li:hover {
  z-index: 10;
  border-radius: 0px;
  background: #002776;
}
body .main-jobs .inner-container .job-cards .list li:hover .job-card .newJobCards {
  color: #ffffff;
}
body .main-jobs .inner-container .job-cards .list li:hover .job-card .newJobCards .job-title  {
  color: #ffffff;
}
body .main-jobs .inner-container .job-cards .list li:hover .job-card .newJobCards .job-location {
  color: #ffffff;
}
body .latest-jobs .inner-container .job-cards a:hover .job-card .newJobCards .job-title {
  color: #FFFFFF;
}
body .latest-jobs .inner-container .job-cards a:hover .job-card .newJobCards .job-location {
  color: #FFFFFF;
}
body .main-jobs .inner-container .job-cards .list li:hover .job-card .cta span, body .main-jobs .inner-container .job-cards .list li:hover .job-card .cta svg {
  fill: #ffffff;
  color: #ffffff;
}
@media (max-width: 660px) {
  body .main-jobs .inner-container .job-cards .list li {
    width: 100%;
    margin-bottom: 1em;
  } 
}

html p {
  margin: 0 0 1rem 0;
  line-height: 1.8rem;
  color: #000;
}

html p .emphasis {
  font-weight: bold;
}

html a {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html ahover {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

html .jobTable {
  opacity: 0;
}

html .nopadding {
  padding: 0 !important;
}

html .nopadding_top {
  padding-top: 0 !important;
}

html .nopadding_bottom {
  padding-bottom: 0 !important;
}

html .nomargin {
  margin: 0 !important;
}

html .nomargin_top {
  margin-top: 0 !important;
}

html .nomargin_bottom {
  margin-bottom: 0 !important;
}

html .video-js {
  padding-top: 56.25%;
  width: 100%;
}

html .video-js.youtube_video-dimensions {
  width: 100% !important;
}

html .video-js.vjs-waiting .vjs-loading-spinner {
  display: none !important;
}

html .video-js .vjs-big-play-button {
  font-size: 4em;
  line-height: 3em;
  height: 3em;
  width: 3em;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  cursor: pointer;
  opacity: 1;
  border: 2px solid #91b3c4 !important;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  bottom: 0;
  right: 0;
  margin: auto;
  background: rgba(42, 51, 56, 0.8);
}

html .video-js .vjs-big-play-button .vjs-icon-placeholder::before {
  content: "\f101";
  font-size: 2em;
  color: #91b3c4;
}

html .video-js.vjs-has-started .vjs-big-play-button {
  display: none;
}

#lingumania_langswitcher {
  z-index: 9 !important;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
  width: 100%;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*------------------------*/
/*	 Hays footer styles	  */
/*------------------------*/
#outer-footer {
  font-family: 'Arial', Helvetica, sans-serif;
  background: #fff;
  border-top: 1px solid #eee;
  width: 100% !important;
  max-width: calc(1500px + 4rem);
  margin: 0 auto;
  padding: 0 20px !important;
}

#outer-footer p {
  margin: 0;
}

#inner-footer-expert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto 0 auto;
}

#inner-footer-expert #footerLogo-Links {
  margin: 10px 0px 0px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 43px;
  font-size: 17px;
  margin-left: 20px;
}

div#footer-bottom {
  font-size: 13px;
  margin-bottom: 5px;
  margin-left: 11px;
}

#inner-footer-expert #footer-bottom .single-col .col.col-12 nav ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#inner-footer-expert #footer-bottom .single-col .col.col-12 nav ul li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*NEED AMEND*/
#inner-footer-expert #copyright-text {
  font-family: Arial, Helvetica, sans-serif !important;
  margin: 19px 0px 0px 20px;
}

#inner-footer-expert #footerLogo {
  margin: 10px 0px 0px 0px;
}

#inner-footer-expert p {
  color: #304a7f;
}

#inner-footer-expert span {
  color: #333;
}

#inner-footer-expert a {
  margin-right: 8px;
  color: #666;
  font-weight: normal;
}

#inner-footer-expert a:hover {
  text-decoration: none;
  color: #002776;
}

#inner-footer-expert #copyright-text {
  display: none;
}

/* * * * * JOBS DISPLAY * * * * * */
.module.d {
  display: none;
}

.module.d.latestJobs {
  display: none;
}

/* ==========================================================================
    Liferay classes RESET
     ========================================================================== */
div.row {
  clear: left;
  padding: unset;
  width: 100%;
}

.ds-custom #wrapper {
  padding-bottom: unset;
  padding-top: unset;
  position: relative;
}

.ds-custom #wrapper .portlet-column-content.empty {
  padding: unset;
}

.ds-custom #wrapper .portlet-title-text {
  display: none;
}

.ds-custom #wrapper .portlet-content,
.ds-custom #wrapper .portlet-minimized .portlet-content-container {
  padding: unset;
}

.ds-custom #wrapper .portlet-decorate .portlet-content {
  border: unset;
}

.ds-custom #wrapper .portlet {
  margin: 0;
}

.ds-custom #wrapper .row {
  margin: 0 !important;
}

.ds-custom #wrapper .col-xs-1,
.ds-custom #wrapper .col-sm-1,
.ds-custom #wrapper .col-md-1,
.ds-custom #wrapper .col-lg-1,
.ds-custom #wrapper .col-xs-2,
.ds-custom #wrapper .col-sm-2,
.ds-custom #wrapper .col-md-2,
.ds-custom #wrapper .col-lg-2,
.ds-custom #wrapper .col-xs-3,
.ds-custom #wrapper .col-sm-3,
.ds-custom #wrapper .col-md-3,
.ds-custom #wrapper .col-lg-3,
.ds-custom #wrapper .col-xs-4,
.ds-custom #wrapper .col-sm-4,
.ds-custom #wrapper .col-md-4,
.ds-custom #wrapper .col-lg-4,
.ds-custom #wrapper .col-xs-5,
.ds-custom #wrapper .col-sm-5,
.ds-custom #wrapper .col-md-5,
.ds-custom #wrapper .col-lg-5,
.ds-custom #wrapper .col-xs-6,
.ds-custom #wrapper .col-sm-6,
.ds-custom #wrapper .col-md-6,
.ds-custom #wrapper .col-lg-6,
.ds-custom #wrapper .col-xs-7,
.ds-custom #wrapper .col-sm-7,
.ds-custom #wrapper .col-md-7,
.ds-custom #wrapper .col-lg-7,
.ds-custom #wrapper .col-xs-8,
.ds-custom #wrapper .col-sm-8,
.ds-custom #wrapper .col-md-8,
.ds-custom #wrapper .col-lg-8,
.ds-custom #wrapper .col-xs-9,
.ds-custom #wrapper .col-sm-9,
.ds-custom #wrapper .col-md-9,
.ds-custom #wrapper .col-lg-9,
.ds-custom #wrapper .col-xs-10,
.ds-custom #wrapper .col-sm-10,
.ds-custom #wrapper .col-md-10,
.ds-custom #wrapper .col-lg-10,
.ds-custom #wrapper .col-xs-11,
.ds-custom #wrapper .col-sm-11,
.ds-custom #wrapper .col-md-11,
.ds-custom #wrapper .col-lg-11,
.ds-custom #wrapper .col-xs-12,
.ds-custom #wrapper .col-sm-12,
.ds-custom #wrapper .col-md-12,
.ds-custom #wrapper .col-lg-12 {
  padding: unset;
  width: unset;
  margin: unset;
  float: none;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .ds-custom #wrapper {
    padding: 0;
    margin: 0;
  }
  .ds-custom .portlet-decorate .portlet-content {
    border: none;
    margin: 0;
    padding: 0;
  }
  .ds-custom .col-xs-1,
  .ds-custom .col-sm-1,
  .ds-custom .col-md-1,
  .ds-custom .col-lg-1,
  .ds-custom .col-xs-2,
  .ds-custom .col-sm-2,
  .ds-custom .col-md-2,
  .ds-custom .col-lg-2,
  .ds-custom .col-xs-3,
  .ds-custom .col-sm-3,
  .ds-custom .col-md-3,
  .ds-custom .col-lg-3,
  .ds-custom .col-xs-4,
  .ds-custom .col-sm-4,
  .ds-custom .col-md-4,
  .ds-custom .col-lg-4,
  .ds-custom .col-xs-5,
  .ds-custom .col-sm-5,
  .ds-custom .col-md-5,
  .ds-custom .col-lg-5,
  .ds-custom .col-xs-6,
  .ds-custom .col-sm-6,
  .ds-custom .col-md-6,
  .ds-custom .col-lg-6,
  .ds-custom .col-xs-7,
  .ds-custom .col-sm-7,
  .ds-custom .col-md-7,
  .ds-custom .col-lg-7,
  .ds-custom .col-xs-8,
  .ds-custom .col-sm-8,
  .ds-custom .col-md-8,
  .ds-custom .col-lg-8,
  .ds-custom .col-xs-9,
  .ds-custom .col-sm-9,
  .ds-custom .col-md-9,
  .ds-custom .col-lg-9,
  .ds-custom .col-xs-10,
  .ds-custom .col-sm-10,
  .ds-custom .col-md-10,
  .ds-custom .col-lg-10,
  .ds-custom .col-xs-11,
  .ds-custom .col-sm-11,
  .ds-custom .col-md-11,
  .ds-custom .col-lg-11,
  .ds-custom .col-xs-12,
  .ds-custom .col-sm-12,
  .ds-custom .col-md-12,
  .ds-custom .col-lg-12 {
    padding: 0;
    width: unset;
    margin: 0;
    float: none;
  }
}

/*TINY SLIDER MAIN CSS TO WORK*/
.tns-outer {
  padding: 0 !important;
}

.tns-outer [hidden] {
  display: none !important;
}

.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  -webkit-transition: all 0s;
  transition: all 0s;
}

.tns-slider > .tns-item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}

.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.tns-horizontal.tns-no-subpixel:after {
  content: '';
  display: table;
  clear: both;
}

.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}

.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}

.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  -webkit-transition: transform 0s, opacity 0s;
  -webkit-transition: opacity 0s, -webkit-transform 0s;
  transition: opacity 0s, -webkit-transform 0s;
  transition: transform 0s, opacity 0s;
  transition: transform 0s, opacity 0s, -webkit-transform 0s;
}

.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}

.tns-gallery > .tns-moving {
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  opacity: 0.6;
}

.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  -webkit-transition: height 0s;
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}

.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}

.tns-t-ct {
  width: 2333.3333333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}

.tns-t-ct:after {
  content: '';
  display: table;
  clear: both;
}

.tns-t-ct > div {
  width: 1.4285714%;
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

/*TINY SLIDER --> REMOVE CONTROLS */
.tns-controls {
  display: none;
}

.tns-nav {
  display: none;
}

button[data-action="stop"] {
  display: none;
}

/*TINY SLIDER --> ADD GRID CSS */
.tns-outer {
  padding: 0 !important;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
}

/* * * * * * SIMPLE BAR CSS * * * * * * */
[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  /* Required for horizontal native scrollbar to not appear if parent is taller than natural height */
  width: auto;
  visibility: visible;
  max-width: 100%;
  /* Not required for horizontal scroll to trigger */
  max-height: 100%;
  /* Needed for vertical scroll to trigger */
  scrollbar-width: none;
}

.simplebar-content-wrapper::-webkit-scrollbar,
.simplebar-hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.simplebar-content:before,
.simplebar-content:after {
  content: ' ';
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  -webkit-box-sizing: inherit !important;
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  -webkit-box-flex: inherit;
  -ms-flex-positive: inherit;
  flex-grow: inherit;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  width: 7px;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: '';
  background: black;
  border-radius: 7px;
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  -webkit-transition: opacity 0s linear;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

/* Rtl support */
[data-simplebar-direction='rtl'] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */
}

/*
* Extends the .sr-only class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}

/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}

@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
     * Printing Tables:
     * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
     */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

.job-description-hero div:first-child {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .job-description-hero {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important
  }
  .job-description-hero h1 span {
    font-size: 2.8rem !important;
  }
}

.twclogo {
  max-width: 200px !important;
  width: 100%;
  display: block;
}

.downloadBtn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin: 1rem 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: .5rem 1rem;
  background: #003087;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
}

.downloadBtn span {
  display: block;
  margin-right: 1em;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  max-width: calc(100% - 30px - .5rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.downloadBtn svg {
  max-width: 30px;
}

.downloadBtn svg .pdf-icon {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.downloadBtn:hover {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  background: #000000;
  text-decoration: none;
}

.downloadBtn.pdfIcon:hover svg .pdf-icon {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  fill: #e60000;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.allJobs {
  display: none;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.allJobs .cards-jobs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.allJobs .cards-jobs a {
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin-bottom: 1rem;
  width: 49%;
  width: calc(50% - .5em);
}

.allJobs .cards-jobs a:nth-of-type(2n+1) {
  margin-right: .5em;
}

.allJobs .cards-jobs a:nth-of-type(2n+2) {
  margin-left: .5em;
}

.allJobs .cards-jobs a .job-card {
  background: #003087;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.allJobs .cards-jobs a .job-card h1 {
  padding: 0;
  margin: 0;
  color: #ffffff;
  font-size: 1.2em;
  max-width: calc(100% - 2rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.allJobs .cards-jobs a .job-card h2 {
  display: none;
}

.allJobs .cards-jobs a .job-card svg {
  width: 22px;
  height: 30px;
}

.allJobs .cards-jobs a:hover {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.allJobs .cards-jobs a:hover .job-card {
  background: #000;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

@media (max-width: 768px) {
  .allJobs .cards-jobs a {
    width: 100%;
  }
  .allJobs .cards-jobs a:nth-of-type(2n+1) {
    margin-right: 0em;
  }
  .allJobs .cards-jobs a:nth-of-type(2n+2) {
    margin-left: 0em;
  }
}

.expand {
  background: #003087;
  padding: 1em;
  cursor: pointer;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin-bottom: 1em;
}

.expand p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 0;
}

.expand p span {
  color: #fff;
  display: block;
}

.expand p span:nth-of-type(1) {
  font-weight: bold;
  margin-right: 0.5em;
}

.expand svg {
  width: 22px;
  height: 30px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.expand:hover {
  background: #000;
}

.expand.open svg {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}

.collapse p, .collapse h1, .collapse h2, .collapse h3, .collapse h4, .collapse h5, .collapse ul, .collapse ol {
  padding: 1rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/*# sourceMappingURL=main.css.map */